summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/NoteCreateService.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-09-18 03:27:08 +0900
committerGitHub <noreply@github.com>2022-09-18 03:27:08 +0900
commitb75184ec8e3436200bacdcd832e3324702553d20 (patch)
tree8b7e316f29e95df921db57289c8b8da476d18f07 /packages/backend/src/core/NoteCreateService.ts
parentUpdate ROADMAP.md (diff)
downloadsharkey-b75184ec8e3436200bacdcd832e3324702553d20.tar.gz
sharkey-b75184ec8e3436200bacdcd832e3324702553d20.tar.bz2
sharkey-b75184ec8e3436200bacdcd832e3324702553d20.zip
なんかもうめっちゃ変えた
Diffstat (limited to 'packages/backend/src/core/NoteCreateService.ts')
-rw-r--r--packages/backend/src/core/NoteCreateService.ts742
1 files changed, 742 insertions, 0 deletions
diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts
new file mode 100644
index 0000000000..83c080893d
--- /dev/null
+++ b/packages/backend/src/core/NoteCreateService.ts
@@ -0,0 +1,742 @@
+import * as mfm from 'mfm-js';
+import { Not, In, DataSource } from 'typeorm';
+import { Inject, Injectable } from '@nestjs/common';
+import { extractMentions } from '@/misc/extract-mentions.js';
+import { extractCustomEmojisFromMfm } from '@/misc/extract-custom-emojis-from-mfm.js';
+import { extractHashtags } from '@/misc/extract-hashtags.js';
+import type { IMentionedRemoteUsers } from '@/models/entities/Note.js';
+import { Note } from '@/models/entities/Note.js';
+import { ChannelFollowingsRepository, ChannelsRepository, InstancesRepository, MutedNotesRepository, MutingsRepository, NotesRepository, NoteThreadMutingsRepository, UserProfilesRepository, UsersRepository } from '@/models/index.js';
+import type { DriveFile } from '@/models/entities/DriveFile.js';
+import type { App } from '@/models/entities/App.js';
+import { concat } from '@/misc/prelude/array.js';
+import { IdService } from '@/core/IdService.js';
+import type { User, ILocalUser, IRemoteUser } from '@/models/entities/User.js';
+import type { IPoll } from '@/models/entities/Poll.js';
+import { Poll } from '@/models/entities/Poll.js';
+import { isDuplicateKeyValueError } from '@/misc/is-duplicate-key-value-error.js';
+import { checkWordMute } from '@/misc/check-word-mute.js';
+import type { Channel } from '@/models/entities/Channel.js';
+import { normalizeForSearch } from '@/misc/normalize-for-search.js';
+import { Cache } from '@/misc/cache.js';
+import type { UserProfile } from '@/models/entities/UserProfile.js';
+import { RelayService } from '@/core/RelayService.js';
+import { FederatedInstanceService } from '@/core/FederatedInstanceService.js';
+import { DI } from '@/di-symbols.js';
+import { Config } from '@/config.js';
+import NotesChart from '@/core/chart/charts/notes.js';
+import PerUserNotesChart from '@/core/chart/charts/per-user-notes.js';
+import InstanceChart from '@/core/chart/charts/instance.js';
+import ActiveUsersChart from '@/core/chart/charts/active-users.js';
+import { GlobalEventService } from '@/core/GlobalEventService.js';
+import { CreateNotificationService } from '@/core/CreateNotificationService.js';
+import { WebhookService } from '@/core/WebhookService.js';
+import { HashtagService } from '@/core/HashtagService.js';
+import { AntennaService } from '@/core/AntennaService.js';
+import { QueueService } from '@/core/QueueService.js';
+import { NoteEntityService } from './entities/NoteEntityService.js';
+import { UserEntityService } from './entities/UserEntityService.js';
+import { NoteReadService } from './NoteReadService.js';
+import { ApRendererService } from './remote/activitypub/ApRendererService.js';
+import { ResolveUserService } from './remote/ResolveUserService.js';
+import { ApDeliverManagerService } from './remote/activitypub/ApDeliverManagerService.js';
+
+const mutedWordsCache = new Cache<{ userId: UserProfile['userId']; mutedWords: UserProfile['mutedWords']; }[]>(1000 * 60 * 5);
+
+type NotificationType = 'reply' | 'renote' | 'quote' | 'mention';
+
+class NotificationManager {
+ private notifier: { id: User['id']; };
+ private note: Note;
+ private queue: {
+ target: ILocalUser['id'];
+ reason: NotificationType;
+ }[];
+
+ constructor(
+ private mutingsRepository: MutingsRepository,
+ private createNotificationService: CreateNotificationService,
+ notifier: { id: User['id']; },
+ note: Note,
+ ) {
+ this.notifier = notifier;
+ this.note = note;
+ this.queue = [];
+ }
+
+ public push(notifiee: ILocalUser['id'], reason: NotificationType) {
+ // 自分自身へは通知しない
+ if (this.notifier.id === notifiee) return;
+
+ const exist = this.queue.find(x => x.target === notifiee);
+
+ if (exist) {
+ // 「メンションされているかつ返信されている」場合は、メンションとしての通知ではなく返信としての通知にする
+ if (reason !== 'mention') {
+ exist.reason = reason;
+ }
+ } else {
+ this.queue.push({
+ reason: reason,
+ target: notifiee,
+ });
+ }
+ }
+
+ public async deliver() {
+ for (const x of this.queue) {
+ // ミュート情報を取得
+ const mentioneeMutes = await this.mutingsRepository.findBy({
+ muterId: x.target,
+ });
+
+ const mentioneesMutedUserIds = mentioneeMutes.map(m => m.muteeId);
+
+ // 通知される側のユーザーが通知する側のユーザーをミュートしていない限りは通知する
+ if (!mentioneesMutedUserIds.includes(this.notifier.id)) {
+ this.createNotificationService.createNotification(x.target, x.reason, {
+ notifierId: this.notifier.id,
+ noteId: this.note.id,
+ });
+ }
+ }
+ }
+}
+
+type MinimumUser = {
+ id: User['id'];
+ host: User['host'];
+ username: User['username'];
+ uri: User['uri'];
+};
+
+type Option = {
+ createdAt?: Date | null;
+ name?: string | null;
+ text?: string | null;
+ reply?: Note | null;
+ renote?: Note | null;
+ files?: DriveFile[] | null;
+ poll?: IPoll | null;
+ localOnly?: boolean | null;
+ cw?: string | null;
+ visibility?: string;
+ visibleUsers?: MinimumUser[] | null;
+ channel?: Channel | null;
+ apMentions?: MinimumUser[] | null;
+ apHashtags?: string[] | null;
+ apEmojis?: string[] | null;
+ uri?: string | null;
+ url?: string | null;
+ app?: App | null;
+};
+
+@Injectable()
+export class NoteCreateService {
+ constructor(
+ @Inject(DI.config)
+ private config: Config,
+
+ @Inject(DI.db)
+ private db: DataSource,
+
+ @Inject(DI.usersRepository)
+ private usersRepository: UsersRepository,
+
+ @Inject(DI.notesRepository)
+ private notesRepository: NotesRepository,
+
+ @Inject(DI.mutingsRepository)
+ private mutingsRepository: MutingsRepository,
+
+ @Inject(DI.instancesRepository)
+ private instancesRepository: InstancesRepository,
+
+ @Inject(DI.userProfilesRepository)
+ private userProfilesRepository: UserProfilesRepository,
+
+ @Inject(DI.mutedNotesRepository)
+ private mutedNotesRepository: MutedNotesRepository,
+
+ @Inject(DI.channelsRepository)
+ private channelsRepository: ChannelsRepository,
+
+ @Inject(DI.channelFollowingsRepository)
+ private channelFollowingsRepository: ChannelFollowingsRepository,
+
+ @Inject(DI.noteThreadMutingsRepository)
+ private noteThreadMutingsRepository: NoteThreadMutingsRepository,
+
+ private userEntityService: UserEntityService,
+ private noteEntityService: NoteEntityService,
+ private idService: IdService,
+ private globalEventServie: GlobalEventService,
+ private queueService: QueueService,
+ private noteReadService: NoteReadService,
+ private createNotificationService: CreateNotificationService,
+ private relayService: RelayService,
+ private federatedInstanceService: FederatedInstanceService,
+ private hashtagService: HashtagService,
+ private antennaService: AntennaService,
+ private webhookService: WebhookService,
+ private resolveUserService: ResolveUserService,
+ private apDeliverManagerService: ApDeliverManagerService,
+ private apRendererService: ApRendererService,
+ private notesChart: NotesChart,
+ private perUserNotesChart: PerUserNotesChart,
+ private activeUsersChart: ActiveUsersChart,
+ private instanceChart: InstanceChart,
+ ) {}
+
+ public async create(user: {
+ id: User['id'];
+ username: User['username'];
+ host: User['host'];
+ isSilenced: User['isSilenced'];
+ createdAt: User['createdAt'];
+ }, data: Option, silent = false): Promise<Note> {
+ // チャンネル外にリプライしたら対象のスコープに合わせる
+ // (クライアントサイドでやっても良い処理だと思うけどとりあえずサーバーサイドで)
+ if (data.reply && data.channel && data.reply.channelId !== data.channel.id) {
+ if (data.reply.channelId) {
+ data.channel = await this.channelsRepository.findOneBy({ id: data.reply.channelId });
+ } else {
+ data.channel = null;
+ }
+ }
+
+ // チャンネル内にリプライしたら対象のスコープに合わせる
+ // (クライアントサイドでやっても良い処理だと思うけどとりあえずサーバーサイドで)
+ if (data.reply && (data.channel == null) && data.reply.channelId) {
+ data.channel = await this.channelsRepository.findOneBy({ id: data.reply.channelId });
+ }
+
+ if (data.createdAt == null) data.createdAt = new Date();
+ if (data.visibility == null) data.visibility = 'public';
+ if (data.localOnly == null) data.localOnly = false;
+ if (data.channel != null) data.visibility = 'public';
+ if (data.channel != null) data.visibleUsers = [];
+ if (data.channel != null) data.localOnly = true;
+
+ // サイレンス
+ if (user.isSilenced && data.visibility === 'public' && data.channel == null) {
+ data.visibility = 'home';
+ }
+
+ // Renote対象が「ホームまたは全体」以外の公開範囲ならreject
+ if (data.renote && data.renote.visibility !== 'public' && data.renote.visibility !== 'home' && data.renote.userId !== user.id) {
+ throw new Error('Renote target is not public or home');
+ }
+
+ // Renote対象がpublicではないならhomeにする
+ if (data.renote && data.renote.visibility !== 'public' && data.visibility === 'public') {
+ data.visibility = 'home';
+ }
+
+ // Renote対象がfollowersならfollowersにする
+ if (data.renote && data.renote.visibility === 'followers') {
+ data.visibility = 'followers';
+ }
+
+ // 返信対象がpublicではないならhomeにする
+ if (data.reply && data.reply.visibility !== 'public' && data.visibility === 'public') {
+ data.visibility = 'home';
+ }
+
+ // ローカルのみをRenoteしたらローカルのみにする
+ if (data.renote && data.renote.localOnly && data.channel == null) {
+ data.localOnly = true;
+ }
+
+ // ローカルのみにリプライしたらローカルのみにする
+ if (data.reply && data.reply.localOnly && data.channel == null) {
+ data.localOnly = true;
+ }
+
+ if (data.text) {
+ data.text = data.text.trim();
+ } else {
+ data.text = null;
+ }
+
+ let tags = data.apHashtags;
+ let emojis = data.apEmojis;
+ let mentionedUsers = data.apMentions;
+
+ // Parse MFM if needed
+ if (!tags || !emojis || !mentionedUsers) {
+ const tokens = data.text ? mfm.parse(data.text)! : [];
+ const cwTokens = data.cw ? mfm.parse(data.cw)! : [];
+ const choiceTokens = data.poll && data.poll.choices
+ ? concat(data.poll.choices.map(choice => mfm.parse(choice)!))
+ : [];
+
+ const combinedTokens = tokens.concat(cwTokens).concat(choiceTokens);
+
+ tags = data.apHashtags ?? extractHashtags(combinedTokens);
+
+ emojis = data.apEmojis ?? extractCustomEmojisFromMfm(combinedTokens);
+
+ mentionedUsers = data.apMentions ?? await this.#extractMentionedUsers(user, combinedTokens);
+ }
+
+ tags = tags.filter(tag => Array.from(tag ?? '').length <= 128).splice(0, 32);
+
+ if (data.reply && (user.id !== data.reply.userId) && !mentionedUsers.some(u => u.id === data.reply!.userId)) {
+ mentionedUsers.push(await this.usersRepository.findOneByOrFail({ id: data.reply!.userId }));
+ }
+
+ if (data.visibility === 'specified') {
+ if (data.visibleUsers == null) throw new Error('invalid param');
+
+ for (const u of data.visibleUsers) {
+ if (!mentionedUsers.some(x => x.id === u.id)) {
+ mentionedUsers.push(u);
+ }
+ }
+
+ if (data.reply && !data.visibleUsers.some(x => x.id === data.reply!.userId)) {
+ data.visibleUsers.push(await this.usersRepository.findOneByOrFail({ id: data.reply!.userId }));
+ }
+ }
+
+ const note = await this.#insertNote(user, data, tags, emojis, mentionedUsers);
+
+ setImmediate(() => this.#postNoteCreated(note, user, data, silent, tags!, mentionedUsers!));
+
+ return note;
+ }
+
+ async #insertNote(user: { id: User['id']; host: User['host']; }, data: Option, tags: string[], emojis: string[], mentionedUsers: MinimumUser[]) {
+ const insert = new Note({
+ id: this.idService.genId(data.createdAt!),
+ createdAt: data.createdAt!,
+ fileIds: data.files ? data.files.map(file => file.id) : [],
+ replyId: data.reply ? data.reply.id : null,
+ renoteId: data.renote ? data.renote.id : null,
+ channelId: data.channel ? data.channel.id : null,
+ threadId: data.reply
+ ? data.reply.threadId
+ ? data.reply.threadId
+ : data.reply.id
+ : null,
+ name: data.name,
+ text: data.text,
+ hasPoll: data.poll != null,
+ cw: data.cw == null ? null : data.cw,
+ tags: tags.map(tag => normalizeForSearch(tag)),
+ emojis,
+ userId: user.id,
+ localOnly: data.localOnly!,
+ visibility: data.visibility as any,
+ visibleUserIds: data.visibility === 'specified'
+ ? data.visibleUsers
+ ? data.visibleUsers.map(u => u.id)
+ : []
+ : [],
+
+ attachedFileTypes: data.files ? data.files.map(file => file.type) : [],
+
+ // 以下非正規化データ
+ replyUserId: data.reply ? data.reply.userId : null,
+ replyUserHost: data.reply ? data.reply.userHost : null,
+ renoteUserId: data.renote ? data.renote.userId : null,
+ renoteUserHost: data.renote ? data.renote.userHost : null,
+ userHost: user.host,
+ });
+
+ if (data.uri != null) insert.uri = data.uri;
+ if (data.url != null) insert.url = data.url;
+
+ // Append mentions data
+ if (mentionedUsers.length > 0) {
+ insert.mentions = mentionedUsers.map(u => u.id);
+ const profiles = await this.userProfilesRepository.findBy({ userId: In(insert.mentions) });
+ insert.mentionedRemoteUsers = JSON.stringify(mentionedUsers.filter(u => this.userEntityService.isRemoteUser(u)).map(u => {
+ const profile = profiles.find(p => p.userId === u.id);
+ const url = profile != null ? profile.url : null;
+ return {
+ uri: u.uri,
+ url: url == null ? undefined : url,
+ username: u.username,
+ host: u.host,
+ } as IMentionedRemoteUsers[0];
+ }));
+ }
+
+ // 投稿を作成
+ try {
+ if (insert.hasPoll) {
+ // Start transaction
+ await this.db.transaction(async transactionalEntityManager => {
+ await transactionalEntityManager.insert(Note, insert);
+
+ const poll = new Poll({
+ noteId: insert.id,
+ choices: data.poll!.choices,
+ expiresAt: data.poll!.expiresAt,
+ multiple: data.poll!.multiple,
+ votes: new Array(data.poll!.choices.length).fill(0),
+ noteVisibility: insert.visibility,
+ userId: user.id,
+ userHost: user.host,
+ });
+
+ await transactionalEntityManager.insert(Poll, poll);
+ });
+ } else {
+ await this.notesRepository.insert(insert);
+ }
+
+ return insert;
+ } catch (e) {
+ // duplicate key error
+ if (isDuplicateKeyValueError(e)) {
+ const err = new Error('Duplicated note');
+ err.name = 'duplicated';
+ throw err;
+ }
+
+ console.error(e);
+
+ throw e;
+ }
+ }
+
+ async #postNoteCreated(note: Note, user: {
+ id: User['id'];
+ username: User['username'];
+ host: User['host'];
+ isSilenced: User['isSilenced'];
+ createdAt: User['createdAt'];
+ }, data: Option, silent: boolean, tags: string[], mentionedUsers: MinimumUser[]) {
+ // 統計を更新
+ this.notesChart.update(note, true);
+ this.perUserNotesChart.update(user, note, true);
+
+ // Register host
+ if (this.userEntityService.isRemoteUser(user)) {
+ this.federatedInstanceService.registerOrFetchInstanceDoc(user.host).then(i => {
+ this.instancesRepository.increment({ id: i.id }, 'notesCount', 1);
+ this.instanceChart.updateNote(i.host, note, true);
+ });
+ }
+
+ // ハッシュタグ更新
+ if (data.visibility === 'public' || data.visibility === 'home') {
+ this.hashtagService.updateHashtags(user, tags);
+ }
+
+ // Increment notes count (user)
+ this.#incNotesCountOfUser(user);
+
+ // Word mute
+ mutedWordsCache.fetch(null, () => this.userProfilesRepository.find({
+ where: {
+ enableWordMute: true,
+ },
+ select: ['userId', 'mutedWords'],
+ })).then(us => {
+ for (const u of us) {
+ checkWordMute(note, { id: u.userId }, u.mutedWords).then(shouldMute => {
+ if (shouldMute) {
+ this.mutedNotesRepository.insert({
+ id: this.idService.genId(),
+ userId: u.userId,
+ noteId: note.id,
+ reason: 'word',
+ });
+ }
+ });
+ }
+ });
+
+ // Antenna
+ for (const antenna of (await this.antennaService.getAntennas())) {
+ this.antennaService.checkHitAntenna(antenna, note, user).then(hit => {
+ if (hit) {
+ this.antennaService.addNoteToAntenna(antenna, note, user);
+ }
+ });
+ }
+
+ // Channel
+ if (note.channelId) {
+ this.channelFollowingsRepository.findBy({ followeeId: note.channelId }).then(followings => {
+ for (const following of followings) {
+ this.noteReadService.insertNoteUnread(following.followerId, note, {
+ isSpecified: false,
+ isMentioned: false,
+ });
+ }
+ });
+ }
+
+ if (data.reply) {
+ this.#saveReply(data.reply, note);
+ }
+
+ // この投稿を除く指定したユーザーによる指定したノートのリノートが存在しないとき
+ if (data.renote && (await this.noteEntityService.countSameRenotes(user.id, data.renote.id, note.id) === 0)) {
+ this.#incRenoteCount(data.renote);
+ }
+
+ if (data.poll && data.poll.expiresAt) {
+ const delay = data.poll.expiresAt.getTime() - Date.now();
+ this.queueService.endedPollNotificationQueue.add({
+ noteId: note.id,
+ }, {
+ delay,
+ removeOnComplete: true,
+ });
+ }
+
+ if (!silent) {
+ if (this.userEntityService.isLocalUser(user)) this.activeUsersChart.write(user);
+
+ // 未読通知を作成
+ if (data.visibility === 'specified') {
+ if (data.visibleUsers == null) throw new Error('invalid param');
+
+ for (const u of data.visibleUsers) {
+ // ローカルユーザーのみ
+ if (!this.userEntityService.isLocalUser(u)) continue;
+
+ this.noteReadService.insertNoteUnread(u.id, note, {
+ isSpecified: true,
+ isMentioned: false,
+ });
+ }
+ } else {
+ for (const u of mentionedUsers) {
+ // ローカルユーザーのみ
+ if (!this.userEntityService.isLocalUser(u)) continue;
+
+ this.noteReadService.insertNoteUnread(u.id, note, {
+ isSpecified: false,
+ isMentioned: true,
+ });
+ }
+ }
+
+ // Pack the note
+ const noteObj = await this.noteEntityService.pack(note);
+
+ this.globalEventServie.publishNotesStream(noteObj);
+
+ this.webhookService.getActiveWebhooks().then(webhooks => {
+ webhooks = webhooks.filter(x => x.userId === user.id && x.on.includes('note'));
+ for (const webhook of webhooks) {
+ this.queueService.webhookDeliver(webhook, 'note', {
+ note: noteObj,
+ });
+ }
+ });
+
+ const nm = new NotificationManager(this.mutingsRepository, this.createNotificationService, user, note);
+ const nmRelatedPromises = [];
+
+ await this.#createMentionedEvents(mentionedUsers, note, nm);
+
+ // If has in reply to note
+ if (data.reply) {
+ // 通知
+ if (data.reply.userHost === null) {
+ const threadMuted = await this.noteThreadMutingsRepository.findOneBy({
+ userId: data.reply.userId,
+ threadId: data.reply.threadId ?? data.reply.id,
+ });
+
+ if (!threadMuted) {
+ nm.push(data.reply.userId, 'reply');
+ this.globalEventServie.publishMainStream(data.reply.userId, 'reply', noteObj);
+
+ const webhooks = (await this.webhookService.getActiveWebhooks()).filter(x => x.userId === data.reply!.userId && x.on.includes('reply'));
+ for (const webhook of webhooks) {
+ this.queueService.webhookDeliver(webhook, 'reply', {
+ note: noteObj,
+ });
+ }
+ }
+ }
+ }
+
+ // If it is renote
+ if (data.renote) {
+ const type = data.text ? 'quote' : 'renote';
+
+ // Notify
+ if (data.renote.userHost === null) {
+ nm.push(data.renote.userId, type);
+ }
+
+ // Publish event
+ if ((user.id !== data.renote.userId) && data.renote.userHost === null) {
+ this.globalEventServie.publishMainStream(data.renote.userId, 'renote', noteObj);
+
+ const webhooks = (await this.webhookService.getActiveWebhooks()).filter(x => x.userId === data.renote!.userId && x.on.includes('renote'));
+ for (const webhook of webhooks) {
+ this.queueService.webhookDeliver(webhook, 'renote', {
+ note: noteObj,
+ });
+ }
+ }
+ }
+
+ Promise.all(nmRelatedPromises).then(() => {
+ nm.deliver();
+ });
+
+ //#region AP deliver
+ if (this.userEntityService.isLocalUser(user)) {
+ (async () => {
+ const noteActivity = await this.#renderNoteOrRenoteActivity(data, note);
+ const dm = this.apDeliverManagerService.createDeliverManager(user, noteActivity);
+
+ // メンションされたリモートユーザーに配送
+ for (const u of mentionedUsers.filter(u => this.userEntityService.isRemoteUser(u))) {
+ dm.addDirectRecipe(u as IRemoteUser);
+ }
+
+ // 投稿がリプライかつ投稿者がローカルユーザーかつリプライ先の投稿の投稿者がリモートユーザーなら配送
+ if (data.reply && data.reply.userHost !== null) {
+ const u = await this.usersRepository.findOneBy({ id: data.reply.userId });
+ if (u && this.userEntityService.isRemoteUser(u)) dm.addDirectRecipe(u);
+ }
+
+ // 投稿がRenoteかつ投稿者がローカルユーザーかつRenote元の投稿の投稿者がリモートユーザーなら配送
+ if (data.renote && data.renote.userHost !== null) {
+ const u = await this.usersRepository.findOneBy({ id: data.renote.userId });
+ if (u && this.userEntityService.isRemoteUser(u)) dm.addDirectRecipe(u);
+ }
+
+ // フォロワーに配送
+ if (['public', 'home', 'followers'].includes(note.visibility)) {
+ dm.addFollowersRecipe();
+ }
+
+ if (['public'].includes(note.visibility)) {
+ this.relayService.deliverToRelays(user, noteActivity);
+ }
+
+ dm.execute();
+ })();
+ }
+ //#endregion
+ }
+
+ if (data.channel) {
+ this.channelsRepository.increment({ id: data.channel.id }, 'notesCount', 1);
+ this.channelsRepository.update(data.channel.id, {
+ lastNotedAt: new Date(),
+ });
+
+ this.notesRepository.countBy({
+ userId: user.id,
+ channelId: data.channel.id,
+ }).then(count => {
+ // この処理が行われるのはノート作成後なので、ノートが一つしかなかったら最初の投稿だと判断できる
+ // TODO: とはいえノートを削除して何回も投稿すればその分だけインクリメントされる雑さもあるのでどうにかしたい
+ if (count === 1) {
+ this.channelsRepository.increment({ id: data.channel!.id }, 'usersCount', 1);
+ }
+ });
+ }
+
+ // Register to search database
+ this.#index(note);
+ }
+
+ #incRenoteCount(renote: Note) {
+ this.notesRepository.createQueryBuilder().update()
+ .set({
+ renoteCount: () => '"renoteCount" + 1',
+ score: () => '"score" + 1',
+ })
+ .where('id = :id', { id: renote.id })
+ .execute();
+ }
+
+ async #createMentionedEvents(mentionedUsers: MinimumUser[], note: Note, nm: NotificationManager) {
+ for (const u of mentionedUsers.filter(u => this.userEntityService.isLocalUser(u))) {
+ const threadMuted = await this.noteThreadMutingsRepository.findOneBy({
+ userId: u.id,
+ threadId: note.threadId ?? note.id,
+ });
+
+ if (threadMuted) {
+ continue;
+ }
+
+ const detailPackedNote = await this.noteEntityService.pack(note, u, {
+ detail: true,
+ });
+
+ this.globalEventServie.publishMainStream(u.id, 'mention', detailPackedNote);
+
+ const webhooks = (await this.webhookService.getActiveWebhooks()).filter(x => x.userId === u.id && x.on.includes('mention'));
+ for (const webhook of webhooks) {
+ this.queueService.webhookDeliver(webhook, 'mention', {
+ note: detailPackedNote,
+ });
+ }
+
+ // Create notification
+ nm.push(u.id, 'mention');
+ }
+ }
+
+ #saveReply(reply: Note, note: Note) {
+ this.notesRepository.increment({ id: reply.id }, 'repliesCount', 1);
+ }
+
+ async #renderNoteOrRenoteActivity(data: Option, note: Note) {
+ if (data.localOnly) return null;
+
+ const content = data.renote && data.text == null && data.poll == null && (data.files == null || data.files.length === 0)
+ ? this.apRendererService.renderAnnounce(data.renote.uri ? data.renote.uri : `${this.config.url}/notes/${data.renote.id}`, note)
+ : this.apRendererService.renderCreate(await this.apRendererService.renderNote(note, false), note);
+
+ return this.apRendererService.renderActivity(content);
+ }
+
+ #index(note: Note) {
+ if (note.text == null || this.config.elasticsearch == null) return;
+ /*
+ es!.index({
+ index: this.config.elasticsearch.index ?? 'misskey_note',
+ id: note.id.toString(),
+ body: {
+ text: normalizeForSearch(note.text),
+ userId: note.userId,
+ userHost: note.userHost,
+ },
+ });*/
+ }
+
+ #incNotesCountOfUser(user: { id: User['id']; }) {
+ this.usersRepository.createQueryBuilder().update()
+ .set({
+ updatedAt: new Date(),
+ notesCount: () => '"notesCount" + 1',
+ })
+ .where('id = :id', { id: user.id })
+ .execute();
+ }
+
+ async #extractMentionedUsers(user: { host: User['host']; }, tokens: mfm.MfmNode[]): Promise<User[]> {
+ if (tokens == null) return [];
+
+ const mentions = extractMentions(tokens);
+ let mentionedUsers = (await Promise.all(mentions.map(m =>
+ this.resolveUserService.resolveUser(m.username, m.host ?? user.host).catch(() => null),
+ ))).filter(x => x != null) as User[];
+
+ // Drop duplicate users
+ mentionedUsers = mentionedUsers.filter((u, i, self) =>
+ i === self.findIndex(u2 => u.id === u2.id),
+ );
+
+ return mentionedUsers;
+ }
+}