2018-07-04 14:13:05 +03:00
|
|
|
import es from '../../db/elasticsearch';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { publishMainStream, publishNotesStream } from '../stream';
|
2019-11-09 11:51:54 +02:00
|
|
|
import DeliverManager from '../../remote/activitypub/deliver-manager';
|
2018-04-04 18:40:34 +03:00
|
|
|
import renderNote from '../../remote/activitypub/renderer/note';
|
|
|
|
import renderCreate from '../../remote/activitypub/renderer/create';
|
2018-04-08 00:55:26 +03:00
|
|
|
import renderAnnounce from '../../remote/activitypub/renderer/announce';
|
2019-01-30 19:29:36 +02:00
|
|
|
import { renderActivity } from '../../remote/activitypub/renderer';
|
2018-04-04 18:40:34 +03:00
|
|
|
import watch from './watch';
|
2019-01-30 09:56:27 +02:00
|
|
|
import { parse } from '../../mfm/parse';
|
2019-04-07 17:06:07 +03:00
|
|
|
import { resolveUser } from '../../remote/resolve-user';
|
2018-07-04 07:21:30 +03:00
|
|
|
import config from '../../config';
|
2019-08-18 06:47:45 +03:00
|
|
|
import { updateHashtags } from '../update-hashtag';
|
2019-04-12 19:43:22 +03:00
|
|
|
import { concat } from '../../prelude/array';
|
2018-09-19 08:18:34 +03:00
|
|
|
import insertNoteUnread from './unread';
|
2019-02-07 08:00:44 +02:00
|
|
|
import { registerOrFetchInstanceDoc } from '../register-or-fetch-instance-doc';
|
2018-12-19 04:16:29 +02:00
|
|
|
import extractMentions from '../../misc/extract-mentions';
|
2018-12-20 12:41:04 +02:00
|
|
|
import extractEmojis from '../../misc/extract-emojis';
|
|
|
|
import extractHashtags from '../../misc/extract-hashtags';
|
2019-10-31 22:43:54 +02:00
|
|
|
import { Note, IMentionedRemoteUsers } from '../../models/entities/note';
|
2020-08-18 16:44:21 +03:00
|
|
|
import { Mutings, Users, NoteWatchings, Notes, Instances, UserProfiles, Antennas, Followings, MutedNotes, Channels, ChannelFollowings } from '../../models';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { DriveFile } from '../../models/entities/drive-file';
|
|
|
|
import { App } from '../../models/entities/app';
|
2019-10-31 22:43:54 +02:00
|
|
|
import { Not, getConnection, In } from 'typeorm';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { User, ILocalUser, IRemoteUser } from '../../models/entities/user';
|
|
|
|
import { genId } from '../../misc/gen-id';
|
|
|
|
import { notesChart, perUserNotesChart, activeUsersChart, instanceChart } from '../chart';
|
|
|
|
import { Poll, IPoll } from '../../models/entities/poll';
|
|
|
|
import { createNotification } from '../create-notification';
|
|
|
|
import { isDuplicateKeyValueError } from '../../misc/is-duplicate-key-value-error';
|
2019-04-12 19:43:22 +03:00
|
|
|
import { ensure } from '../../prelude/ensure';
|
2020-01-29 21:37:25 +02:00
|
|
|
import { checkHitAntenna } from '../../misc/check-hit-antenna';
|
2020-07-27 07:34:20 +03:00
|
|
|
import { checkWordMute } from '../../misc/check-word-mute';
|
2020-01-29 21:37:25 +02:00
|
|
|
import { addNoteToAntenna } from '../add-note-to-antenna';
|
2020-02-26 00:56:32 +02:00
|
|
|
import { countSameRenotes } from '../../misc/count-same-renotes';
|
2020-05-10 12:42:31 +03:00
|
|
|
import { deliverToRelays } from '../relay';
|
2020-08-18 16:44:21 +03:00
|
|
|
import { Channel } from '../../models/entities/channel';
|
2018-04-02 11:11:14 +03:00
|
|
|
|
2018-07-21 05:08:27 +03:00
|
|
|
type NotificationType = 'reply' | 'renote' | 'quote' | 'mention';
|
2018-05-06 22:08:39 +03:00
|
|
|
|
|
|
|
class NotificationManager {
|
2019-04-07 15:50:36 +03:00
|
|
|
private notifier: User;
|
|
|
|
private note: Note;
|
2019-02-04 11:27:45 +02:00
|
|
|
private queue: {
|
2019-04-07 15:50:36 +03:00
|
|
|
target: ILocalUser['id'];
|
2018-07-21 05:08:27 +03:00
|
|
|
reason: NotificationType;
|
2019-02-04 11:27:45 +02:00
|
|
|
}[];
|
2018-05-06 22:08:39 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
constructor(notifier: User, note: Note) {
|
2018-06-21 05:35:28 +03:00
|
|
|
this.notifier = notifier;
|
2018-05-06 22:08:39 +03:00
|
|
|
this.note = note;
|
2018-07-21 02:47:48 +03:00
|
|
|
this.queue = [];
|
2018-05-06 22:08:39 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
public push(notifiee: ILocalUser['id'], reason: NotificationType) {
|
2018-05-06 22:08:39 +03:00
|
|
|
// 自分自身へは通知しない
|
2019-04-07 15:50:36 +03:00
|
|
|
if (this.notifier.id === notifiee) return;
|
2018-05-06 22:08:39 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const exist = this.queue.find(x => x.target === notifiee);
|
2018-05-06 22:08:39 +03:00
|
|
|
|
2018-07-21 02:47:48 +03:00
|
|
|
if (exist) {
|
|
|
|
// 「メンションされているかつ返信されている」場合は、メンションとしての通知ではなく返信としての通知にする
|
|
|
|
if (reason != 'mention') {
|
|
|
|
exist.reason = reason;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.queue.push({
|
|
|
|
reason: reason,
|
|
|
|
target: notifiee
|
2018-05-06 22:08:39 +03:00
|
|
|
});
|
2018-06-24 09:51:03 +03:00
|
|
|
}
|
2018-05-06 22:08:39 +03:00
|
|
|
}
|
2018-07-21 02:47:48 +03:00
|
|
|
|
2018-12-11 13:36:55 +02:00
|
|
|
public async deliver() {
|
|
|
|
for (const x of this.queue) {
|
2018-07-21 02:47:48 +03:00
|
|
|
// ミュート情報を取得
|
2019-04-07 15:50:36 +03:00
|
|
|
const mentioneeMutes = await Mutings.find({
|
2018-07-21 02:47:48 +03:00
|
|
|
muterId: x.target
|
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const mentioneesMutedUserIds = mentioneeMutes.map(m => m.muteeId);
|
2018-07-21 02:47:48 +03:00
|
|
|
|
|
|
|
// 通知される側のユーザーが通知する側のユーザーをミュートしていない限りは通知する
|
2019-04-07 15:50:36 +03:00
|
|
|
if (!mentioneesMutedUserIds.includes(this.notifier.id)) {
|
2020-03-28 11:07:41 +02:00
|
|
|
createNotification(x.target, x.reason, {
|
|
|
|
notifierId: this.notifier.id,
|
2019-04-07 15:50:36 +03:00
|
|
|
noteId: this.note.id
|
2018-07-21 02:47:48 +03:00
|
|
|
});
|
|
|
|
}
|
2018-12-11 13:36:55 +02:00
|
|
|
}
|
2018-07-21 02:47:48 +03:00
|
|
|
}
|
2018-05-06 22:08:39 +03:00
|
|
|
}
|
|
|
|
|
2018-07-21 00:59:53 +03:00
|
|
|
type Option = {
|
2019-04-12 19:43:22 +03:00
|
|
|
createdAt?: Date | null;
|
|
|
|
name?: string | null;
|
|
|
|
text?: string | null;
|
|
|
|
reply?: Note | null;
|
|
|
|
renote?: Note | null;
|
|
|
|
files?: DriveFile[] | null;
|
|
|
|
poll?: IPoll | null;
|
|
|
|
viaMobile?: boolean | null;
|
|
|
|
localOnly?: boolean | null;
|
|
|
|
cw?: string | null;
|
2018-04-04 21:21:11 +03:00
|
|
|
visibility?: string;
|
2019-04-12 19:43:22 +03:00
|
|
|
visibleUsers?: User[] | null;
|
2020-08-18 16:44:21 +03:00
|
|
|
channel?: Channel | null;
|
2019-04-12 19:43:22 +03:00
|
|
|
apMentions?: User[] | null;
|
|
|
|
apHashtags?: string[] | null;
|
|
|
|
apEmojis?: string[] | null;
|
|
|
|
uri?: string | null;
|
2020-04-02 15:59:14 +03:00
|
|
|
url?: string | null;
|
2019-04-12 19:43:22 +03:00
|
|
|
app?: App | null;
|
2018-07-21 00:59:53 +03:00
|
|
|
};
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
export default async (user: User, data: Option, silent = false) => new Promise<Note>(async (res, rej) => {
|
2020-08-18 16:44:21 +03:00
|
|
|
// チャンネル外にリプライしたら対象のスコープに合わせる
|
|
|
|
// (クライアントサイドでやっても良い処理だと思うけどとりあえずサーバーサイドで)
|
|
|
|
if (data.reply && data.channel && data.reply.channelId !== data.channel.id) {
|
|
|
|
if (data.reply.channelId) {
|
|
|
|
data.channel = await Channels.findOne(data.reply.channelId);
|
|
|
|
} else {
|
|
|
|
data.channel = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// チャンネル内にリプライしたら対象のスコープに合わせる
|
|
|
|
// (クライアントサイドでやっても良い処理だと思うけどとりあえずサーバーサイドで)
|
|
|
|
if (data.reply && (data.channel == null) && data.reply.channelId) {
|
|
|
|
data.channel = await Channels.findOne(data.reply.channelId);
|
|
|
|
}
|
|
|
|
|
2018-04-05 22:04:50 +03:00
|
|
|
if (data.createdAt == null) data.createdAt = new Date();
|
|
|
|
if (data.visibility == null) data.visibility = 'public';
|
2018-04-08 00:55:26 +03:00
|
|
|
if (data.viaMobile == null) data.viaMobile = false;
|
2018-11-15 22:47:29 +02:00
|
|
|
if (data.localOnly == null) data.localOnly = false;
|
2020-08-18 16:44:21 +03:00
|
|
|
if (data.channel != null) data.visibility = 'public';
|
|
|
|
if (data.channel != null) data.visibleUsers = [];
|
2018-04-04 21:21:11 +03:00
|
|
|
|
2019-01-30 10:25:56 +02:00
|
|
|
// サイレンス
|
2020-08-18 16:44:21 +03:00
|
|
|
if (user.isSilenced && data.visibility === 'public' && data.channel == null) {
|
2019-01-30 10:25:56 +02:00
|
|
|
data.visibility = 'home';
|
|
|
|
}
|
|
|
|
|
2018-09-24 10:02:01 +03:00
|
|
|
// Renote対象が「ホームまたは全体」以外の公開範囲ならreject
|
2020-02-16 14:11:27 +02:00
|
|
|
if (data.renote && data.renote.visibility !== 'public' && data.renote.visibility !== 'home' && data.renote.userId !== user.id) {
|
2018-11-13 12:34:09 +02:00
|
|
|
return rej('Renote target is not public or home');
|
2018-09-24 10:02:01 +03:00
|
|
|
}
|
|
|
|
|
2019-01-31 10:37:57 +02:00
|
|
|
// Renote対象がpublicではないならhomeにする
|
2020-02-16 14:11:27 +02:00
|
|
|
if (data.renote && data.renote.visibility !== 'public' && data.visibility === 'public') {
|
2019-01-31 10:37:57 +02:00
|
|
|
data.visibility = 'home';
|
|
|
|
}
|
|
|
|
|
2020-02-16 14:10:52 +02:00
|
|
|
// Renote対象がfollowersならfollowersにする
|
|
|
|
if (data.renote && data.renote.visibility === 'followers') {
|
|
|
|
data.visibility = 'followers';
|
|
|
|
}
|
|
|
|
|
2019-01-31 10:37:57 +02:00
|
|
|
// 返信対象がpublicではないならhomeにする
|
2020-02-16 14:11:27 +02:00
|
|
|
if (data.reply && data.reply.visibility !== 'public' && data.visibility === 'public') {
|
2019-01-31 10:37:57 +02:00
|
|
|
data.visibility = 'home';
|
|
|
|
}
|
|
|
|
|
2018-11-15 22:47:29 +02:00
|
|
|
// ローカルのみをRenoteしたらローカルのみにする
|
2020-08-18 16:44:21 +03:00
|
|
|
if (data.renote && data.renote.localOnly && data.channel == null) {
|
2018-11-15 22:47:29 +02:00
|
|
|
data.localOnly = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ローカルのみにリプライしたらローカルのみにする
|
2020-08-18 16:44:21 +03:00
|
|
|
if (data.reply && data.reply.localOnly && data.channel == null) {
|
2018-11-15 22:47:29 +02:00
|
|
|
data.localOnly = true;
|
|
|
|
}
|
|
|
|
|
2018-08-03 19:09:00 +03:00
|
|
|
if (data.text) {
|
|
|
|
data.text = data.text.trim();
|
|
|
|
}
|
|
|
|
|
2018-12-02 11:05:33 +02:00
|
|
|
let tags = data.apHashtags;
|
|
|
|
let emojis = data.apEmojis;
|
|
|
|
let mentionedUsers = data.apMentions;
|
2018-04-02 11:11:14 +03:00
|
|
|
|
2018-12-02 11:05:33 +02:00
|
|
|
// Parse MFM if needed
|
|
|
|
if (!tags || !emojis || !mentionedUsers) {
|
2019-04-12 19:43:22 +03:00
|
|
|
const tokens = data.text ? parse(data.text)! : [];
|
|
|
|
const cwTokens = data.cw ? parse(data.cw)! : [];
|
2019-01-22 21:49:16 +02:00
|
|
|
const choiceTokens = data.poll && data.poll.choices
|
2019-04-12 19:43:22 +03:00
|
|
|
? concat(data.poll.choices.map(choice => parse(choice)!))
|
2019-01-22 21:49:16 +02:00
|
|
|
: [];
|
|
|
|
|
|
|
|
const combinedTokens = tokens.concat(cwTokens).concat(choiceTokens);
|
2018-04-05 09:50:52 +03:00
|
|
|
|
2018-12-02 11:05:33 +02:00
|
|
|
tags = data.apHashtags || extractHashtags(combinedTokens);
|
2018-12-08 03:20:43 +02:00
|
|
|
|
2018-12-02 11:05:33 +02:00
|
|
|
emojis = data.apEmojis || extractEmojis(combinedTokens);
|
|
|
|
|
|
|
|
mentionedUsers = data.apMentions || await extractMentionedUsers(user, combinedTokens);
|
|
|
|
}
|
2018-07-20 23:35:43 +03:00
|
|
|
|
2019-09-26 23:18:09 +03:00
|
|
|
tags = tags.filter(tag => Array.from(tag || '').length <= 128).splice(0, 32);
|
2018-12-19 19:20:56 +02:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (data.reply && (user.id !== data.reply.userId) && !mentionedUsers.some(u => u.id === data.reply!.userId)) {
|
|
|
|
mentionedUsers.push(await Users.findOne(data.reply.userId).then(ensure));
|
2018-09-16 16:48:57 +03:00
|
|
|
}
|
|
|
|
|
2018-09-17 20:14:12 +03:00
|
|
|
if (data.visibility == 'specified') {
|
2019-04-13 22:17:24 +03:00
|
|
|
if (data.visibleUsers == null) throw new Error('invalid param');
|
2019-04-12 19:43:22 +03:00
|
|
|
|
2018-12-11 13:36:55 +02:00
|
|
|
for (const u of data.visibleUsers) {
|
2019-04-07 15:50:36 +03:00
|
|
|
if (!mentionedUsers.some(x => x.id === u.id)) {
|
2018-09-17 20:14:12 +03:00
|
|
|
mentionedUsers.push(u);
|
|
|
|
}
|
2018-12-11 13:36:55 +02:00
|
|
|
}
|
2018-12-22 20:44:18 +02:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (data.reply && !data.visibleUsers.some(x => x.id === data.reply!.userId)) {
|
|
|
|
data.visibleUsers.push(await Users.findOne(data.reply.userId).then(ensure));
|
2018-12-22 20:44:18 +02:00
|
|
|
}
|
2018-09-17 20:14:12 +03:00
|
|
|
}
|
|
|
|
|
2018-11-03 20:32:20 +02:00
|
|
|
const note = await insertNote(user, data, tags, emojis, mentionedUsers);
|
2018-07-20 23:35:43 +03:00
|
|
|
|
2018-07-21 00:59:53 +03:00
|
|
|
res(note);
|
2018-04-18 08:53:17 +03:00
|
|
|
|
2018-08-18 17:56:44 +03:00
|
|
|
// 統計を更新
|
2018-10-22 23:36:35 +03:00
|
|
|
notesChart.update(note, true);
|
|
|
|
perUserNotesChart.update(user, note, true);
|
2018-08-18 17:56:44 +03:00
|
|
|
|
2018-10-24 00:17:55 +03:00
|
|
|
// Register host
|
2019-04-07 15:50:36 +03:00
|
|
|
if (Users.isRemoteUser(user)) {
|
2019-02-07 08:00:44 +02:00
|
|
|
registerOrFetchInstanceDoc(user.host).then(i => {
|
2019-04-07 15:50:36 +03:00
|
|
|
Instances.increment({ id: i.id }, 'notesCount', 1);
|
2019-04-08 08:29:17 +03:00
|
|
|
instanceChart.updateNote(i.host, note, true);
|
2018-10-24 00:17:55 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-02-17 18:11:14 +02:00
|
|
|
// ハッシュタグ更新
|
2020-02-01 22:42:58 +02:00
|
|
|
if (data.visibility === 'public' || data.visibility === 'home') {
|
|
|
|
updateHashtags(user, tags);
|
|
|
|
}
|
2018-07-18 01:19:24 +03:00
|
|
|
|
2018-06-16 04:40:53 +03:00
|
|
|
// Increment notes count (user)
|
2018-07-20 23:35:43 +03:00
|
|
|
incNotesCountOfUser(user);
|
2018-04-04 17:12:35 +03:00
|
|
|
|
2020-07-27 07:34:20 +03:00
|
|
|
// Word mute
|
|
|
|
UserProfiles.find({
|
|
|
|
enableWordMute: true
|
|
|
|
}).then(us => {
|
|
|
|
for (const u of us) {
|
|
|
|
checkWordMute(note, { id: u.userId }, u.mutedWords).then(shouldMute => {
|
|
|
|
if (shouldMute) {
|
|
|
|
MutedNotes.save({
|
|
|
|
id: genId(),
|
|
|
|
userId: u.userId,
|
|
|
|
noteId: note.id,
|
|
|
|
reason: 'word',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
// Antenna
|
|
|
|
Antennas.find().then(async antennas => {
|
|
|
|
const followings = await Followings.createQueryBuilder('following')
|
|
|
|
.andWhere(`following.followeeId = :userId`, { userId: note.userId })
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
const followers = followings.map(f => f.followerId);
|
2020-03-04 04:45:33 +02:00
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
for (const antenna of antennas) {
|
|
|
|
checkHitAntenna(antenna, note, user, followers).then(hit => {
|
|
|
|
if (hit) {
|
|
|
|
addNoteToAntenna(antenna, note, user);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-08-18 16:44:21 +03:00
|
|
|
// Channel
|
|
|
|
if (note.channelId) {
|
|
|
|
ChannelFollowings.find({ followeeId: note.channelId }).then(followings => {
|
|
|
|
for (const following of followings) {
|
|
|
|
insertNoteUnread(following.followerId, note, {
|
|
|
|
isSpecified: false,
|
|
|
|
isMentioned: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-28 18:36:52 +03:00
|
|
|
if (data.reply) {
|
2018-07-20 23:35:43 +03:00
|
|
|
saveReply(data.reply, note);
|
2018-05-28 18:36:52 +03:00
|
|
|
}
|
|
|
|
|
2020-02-26 00:56:32 +02:00
|
|
|
// この投稿を除く指定したユーザーによる指定したノートのリノートが存在しないとき
|
2020-02-26 00:54:35 +02:00
|
|
|
if (data.renote && (await countSameRenotes(user.id, data.renote.id, note.id) === 0)) {
|
2018-07-21 01:05:51 +03:00
|
|
|
incRenoteCount(data.renote);
|
|
|
|
}
|
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
if (!silent) {
|
|
|
|
// ローカルユーザーのチャートはタイムライン取得時に更新しているのでリモートユーザーの場合だけでよい
|
|
|
|
if (Users.isRemoteUser(user)) activeUsersChart.update(user);
|
2018-04-04 17:12:35 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
// 未読通知を作成
|
|
|
|
if (data.visibility == 'specified') {
|
|
|
|
if (data.visibleUsers == null) throw new Error('invalid param');
|
2018-08-14 02:16:21 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
for (const u of data.visibleUsers) {
|
2020-08-18 16:44:21 +03:00
|
|
|
// ローカルユーザーのみ
|
|
|
|
if (!Users.isLocalUser(u)) continue;
|
|
|
|
|
|
|
|
insertNoteUnread(u.id, note, {
|
|
|
|
isSpecified: true,
|
|
|
|
isMentioned: false,
|
|
|
|
});
|
2019-04-24 22:17:03 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (const u of mentionedUsers) {
|
2020-08-18 16:44:21 +03:00
|
|
|
// ローカルユーザーのみ
|
|
|
|
if (!Users.isLocalUser(u)) continue;
|
|
|
|
|
|
|
|
insertNoteUnread(u.id, note, {
|
|
|
|
isSpecified: false,
|
|
|
|
isMentioned: true,
|
|
|
|
});
|
2019-04-24 22:17:03 +03:00
|
|
|
}
|
|
|
|
}
|
2018-09-17 03:00:20 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
// Pack the note
|
|
|
|
const noteObj = await Notes.pack(note);
|
2018-06-12 23:40:12 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
if (user.notesCount === 0) {
|
|
|
|
(noteObj as any).isFirstNote = true;
|
|
|
|
}
|
2018-06-12 23:40:12 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
publishNotesStream(noteObj);
|
2018-07-21 01:05:51 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
const nm = new NotificationManager(user, note);
|
|
|
|
const nmRelatedPromises = [];
|
2018-06-12 23:40:12 +03:00
|
|
|
|
2019-11-23 02:43:47 +02:00
|
|
|
await createMentionedEvents(mentionedUsers, note, nm);
|
2019-04-10 09:04:27 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
const profile = await UserProfiles.findOne(user.id).then(ensure);
|
2018-04-04 18:40:34 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
// If has in reply to note
|
|
|
|
if (data.reply) {
|
|
|
|
// Fetch watchers
|
|
|
|
nmRelatedPromises.push(notifyToWatchersOfReplyee(data.reply, user, nm));
|
2018-08-02 03:37:13 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
// この投稿をWatchする
|
|
|
|
if (Users.isLocalUser(user) && profile.autoWatch) {
|
|
|
|
watch(user.id, data.reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 通知
|
|
|
|
if (data.reply.userHost === null) {
|
|
|
|
nm.push(data.reply.userId, 'reply');
|
|
|
|
publishMainStream(data.reply.userId, 'reply', noteObj);
|
|
|
|
}
|
2018-08-02 03:37:13 +03:00
|
|
|
}
|
2018-04-04 18:40:34 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
// If it is renote
|
|
|
|
if (data.renote) {
|
|
|
|
const type = data.text ? 'quote' : 'renote';
|
2018-04-04 18:40:34 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
// Notify
|
|
|
|
if (data.renote.userHost === null) {
|
|
|
|
nm.push(data.renote.userId, type);
|
|
|
|
}
|
2018-04-04 18:40:34 +03:00
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
// Fetch watchers
|
|
|
|
nmRelatedPromises.push(notifyToWatchersOfRenotee(data.renote, user, nm, type));
|
|
|
|
|
|
|
|
// この投稿をWatchする
|
|
|
|
if (Users.isLocalUser(user) && profile.autoWatch) {
|
|
|
|
watch(user.id, data.renote);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Publish event
|
|
|
|
if ((user.id !== data.renote.userId) && data.renote.userHost === null) {
|
|
|
|
publishMainStream(data.renote.userId, 'renote', noteObj);
|
|
|
|
}
|
2018-04-04 18:40:34 +03:00
|
|
|
}
|
|
|
|
|
2019-04-24 22:17:03 +03:00
|
|
|
Promise.all(nmRelatedPromises).then(() => {
|
|
|
|
nm.deliver();
|
|
|
|
});
|
2019-11-09 11:51:54 +02:00
|
|
|
|
|
|
|
//#region AP deliver
|
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
(async () => {
|
|
|
|
const noteActivity = await renderNoteOrRenoteActivity(data, note);
|
|
|
|
const dm = new DeliverManager(user, noteActivity);
|
|
|
|
|
|
|
|
// メンションされたリモートユーザーに配送
|
|
|
|
for (const u of mentionedUsers.filter(u => Users.isRemoteUser(u))) {
|
|
|
|
dm.addDirectRecipe(u as IRemoteUser);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 投稿がリプライかつ投稿者がローカルユーザーかつリプライ先の投稿の投稿者がリモートユーザーなら配送
|
|
|
|
if (data.reply && data.reply.userHost !== null) {
|
|
|
|
const u = await Users.findOne(data.reply.userId);
|
|
|
|
if (u && Users.isRemoteUser(u)) dm.addDirectRecipe(u);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 投稿がRenoteかつ投稿者がローカルユーザーかつRenote元の投稿の投稿者がリモートユーザーなら配送
|
|
|
|
if (data.renote && data.renote.userHost !== null) {
|
|
|
|
const u = await Users.findOne(data.renote.userId);
|
|
|
|
if (u && Users.isRemoteUser(u)) dm.addDirectRecipe(u);
|
|
|
|
}
|
|
|
|
|
|
|
|
// フォロワーに配送
|
|
|
|
if (['public', 'home', 'followers'].includes(note.visibility)) {
|
|
|
|
dm.addFollowersRecipe();
|
|
|
|
}
|
|
|
|
|
2020-05-10 12:42:31 +03:00
|
|
|
if (['public'].includes(note.visibility)) {
|
|
|
|
deliverToRelays(user, noteActivity);
|
|
|
|
}
|
|
|
|
|
2019-11-09 11:51:54 +02:00
|
|
|
dm.execute();
|
|
|
|
})();
|
|
|
|
}
|
|
|
|
//#endregion
|
2019-04-24 22:17:03 +03:00
|
|
|
}
|
2018-07-21 02:47:48 +03:00
|
|
|
|
2020-08-18 16:44:21 +03:00
|
|
|
if (data.channel) {
|
|
|
|
Channels.increment({ id: data.channel.id }, 'notesCount', 1);
|
|
|
|
Channels.update(data.channel.id, {
|
|
|
|
lastNotedAt: new Date(),
|
|
|
|
});
|
|
|
|
|
|
|
|
Notes.count({
|
|
|
|
userId: user.id,
|
|
|
|
channelId: data.channel.id,
|
|
|
|
}).then(count => {
|
|
|
|
// この処理が行われるのはノート作成後なので、ノートが一つしかなかったら最初の投稿だと判断できる
|
|
|
|
// TODO: とはいえノートを削除して何回も投稿すればその分だけインクリメントされる雑さもあるのでどうにかしたい
|
|
|
|
if (count === 1) {
|
|
|
|
Channels.increment({ id: data.channel.id }, 'usersCount', 1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-04 07:21:30 +03:00
|
|
|
// Register to search database
|
2018-07-20 23:35:43 +03:00
|
|
|
index(note);
|
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
async function renderNoteOrRenoteActivity(data: Option, note: Note) {
|
2018-11-15 22:47:29 +02:00
|
|
|
if (data.localOnly) return null;
|
|
|
|
|
2018-09-08 20:59:14 +03:00
|
|
|
const content = data.renote && data.text == null && data.poll == null && (data.files == null || data.files.length == 0)
|
2019-04-07 15:50:36 +03:00
|
|
|
? renderAnnounce(data.renote.uri ? data.renote.uri : `${config.url}/notes/${data.renote.id}`, note)
|
2018-08-25 08:12:44 +03:00
|
|
|
: renderCreate(await renderNote(note, false), note);
|
2018-07-21 01:05:51 +03:00
|
|
|
|
2019-01-30 19:29:36 +02:00
|
|
|
return renderActivity(content);
|
2018-07-21 01:05:51 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
function incRenoteCount(renote: Note) {
|
|
|
|
Notes.increment({ id: renote.id }, 'renoteCount', 1);
|
|
|
|
Notes.increment({ id: renote.id }, 'score', 1);
|
2018-07-21 01:05:51 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
async function insertNote(user: User, data: Option, tags: string[], emojis: string[], mentionedUsers: User[]) {
|
2019-04-11 19:30:10 +03:00
|
|
|
const insert = new Note({
|
2019-04-12 19:43:22 +03:00
|
|
|
id: genId(data.createdAt!),
|
|
|
|
createdAt: data.createdAt!,
|
2019-04-07 15:50:36 +03:00
|
|
|
fileIds: data.files ? data.files.map(file => file.id) : [],
|
|
|
|
replyId: data.reply ? data.reply.id : null,
|
|
|
|
renoteId: data.renote ? data.renote.id : null,
|
2020-08-18 16:44:21 +03:00
|
|
|
channelId: data.channel ? data.channel.id : null,
|
2019-03-14 17:23:24 +02:00
|
|
|
name: data.name,
|
2018-07-21 00:59:53 +03:00
|
|
|
text: data.text,
|
2019-04-07 15:50:36 +03:00
|
|
|
hasPoll: data.poll != null,
|
2018-07-21 00:59:53 +03:00
|
|
|
cw: data.cw == null ? null : data.cw,
|
2019-04-07 15:50:36 +03:00
|
|
|
tags: tags.map(tag => tag.toLowerCase()),
|
2018-11-03 20:32:20 +02:00
|
|
|
emojis,
|
2019-04-07 15:50:36 +03:00
|
|
|
userId: user.id,
|
2019-04-12 19:43:22 +03:00
|
|
|
viaMobile: data.viaMobile!,
|
|
|
|
localOnly: data.localOnly!,
|
2019-04-07 15:50:36 +03:00
|
|
|
visibility: data.visibility as any,
|
2018-07-21 00:59:53 +03:00
|
|
|
visibleUserIds: data.visibility == 'specified'
|
|
|
|
? data.visibleUsers
|
2019-04-07 15:50:36 +03:00
|
|
|
? data.visibleUsers.map(u => u.id)
|
2018-07-21 00:59:53 +03:00
|
|
|
: []
|
|
|
|
: [],
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
attachedFileTypes: data.files ? data.files.map(file => file.type) : [],
|
|
|
|
|
2018-07-21 00:59:53 +03:00
|
|
|
// 以下非正規化データ
|
2019-04-07 15:50:36 +03:00
|
|
|
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,
|
2019-04-11 19:30:10 +03:00
|
|
|
});
|
2018-07-21 00:59:53 +03:00
|
|
|
|
|
|
|
if (data.uri != null) insert.uri = data.uri;
|
2020-04-02 15:59:14 +03:00
|
|
|
if (data.url != null) insert.url = data.url;
|
2018-07-21 00:59:53 +03:00
|
|
|
|
|
|
|
// Append mentions data
|
|
|
|
if (mentionedUsers.length > 0) {
|
2019-04-07 15:50:36 +03:00
|
|
|
insert.mentions = mentionedUsers.map(u => u.id);
|
2019-10-31 22:43:54 +02:00
|
|
|
const profiles = await UserProfiles.find({ userId: In(insert.mentions) });
|
|
|
|
insert.mentionedRemoteUsers = JSON.stringify(mentionedUsers.filter(u => Users.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];
|
|
|
|
}));
|
2018-07-21 00:59:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// 投稿を作成
|
|
|
|
try {
|
2019-04-11 19:30:10 +03:00
|
|
|
if (insert.hasPoll) {
|
|
|
|
// Start transaction
|
|
|
|
await getConnection().transaction(async transactionalEntityManager => {
|
2020-06-04 02:59:03 +03:00
|
|
|
await transactionalEntityManager.insert(Note, insert);
|
2019-04-11 19:30:10 +03:00
|
|
|
|
|
|
|
const poll = new Poll({
|
2020-06-04 02:59:03 +03:00
|
|
|
noteId: insert.id,
|
2019-04-12 19:43:22 +03:00
|
|
|
choices: data.poll!.choices,
|
|
|
|
expiresAt: data.poll!.expiresAt,
|
|
|
|
multiple: data.poll!.multiple,
|
|
|
|
votes: new Array(data.poll!.choices.length).fill(0),
|
2020-06-04 02:59:03 +03:00
|
|
|
noteVisibility: insert.visibility,
|
2019-04-11 19:30:10 +03:00
|
|
|
userId: user.id,
|
|
|
|
userHost: user.host
|
|
|
|
});
|
|
|
|
|
2020-06-04 02:59:03 +03:00
|
|
|
await transactionalEntityManager.insert(Poll, poll);
|
2019-04-11 19:30:10 +03:00
|
|
|
});
|
|
|
|
} else {
|
2020-06-04 02:59:03 +03:00
|
|
|
await Notes.insert(insert);
|
2019-04-07 15:50:36 +03:00
|
|
|
}
|
|
|
|
|
2020-06-04 02:59:03 +03:00
|
|
|
return await Notes.findOneOrFail(insert.id);
|
2018-07-21 00:59:53 +03:00
|
|
|
} catch (e) {
|
|
|
|
// duplicate key error
|
2019-04-07 15:50:36 +03:00
|
|
|
if (isDuplicateKeyValueError(e)) {
|
2019-04-12 07:07:56 +03:00
|
|
|
const err = new Error('Duplicated note');
|
|
|
|
err.name = 'duplicated';
|
|
|
|
throw err;
|
2018-07-21 00:59:53 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
console.error(e);
|
|
|
|
|
2020-06-04 02:59:03 +03:00
|
|
|
throw e;
|
2018-07-21 00:59:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
function index(note: Note) {
|
2019-02-07 14:02:33 +02:00
|
|
|
if (note.text == null || config.elasticsearch == null) return;
|
2018-07-20 23:35:43 +03:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
es!.index({
|
2019-08-09 07:04:35 +03:00
|
|
|
index: config.elasticsearch.index || 'misskey_note',
|
2019-04-07 15:50:36 +03:00
|
|
|
id: note.id.toString(),
|
2018-07-20 23:35:43 +03:00
|
|
|
body: {
|
2019-04-25 01:46:39 +03:00
|
|
|
text: note.text.toLowerCase(),
|
|
|
|
userId: note.userId,
|
|
|
|
userHost: note.userHost
|
2018-07-20 23:35:43 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
async function notifyToWatchersOfRenotee(renote: Note, user: User, nm: NotificationManager, type: NotificationType) {
|
|
|
|
const watchers = await NoteWatchings.find({
|
|
|
|
noteId: renote.id,
|
|
|
|
userId: Not(user.id)
|
|
|
|
});
|
2018-07-20 23:35:43 +03:00
|
|
|
|
2018-12-11 13:36:55 +02:00
|
|
|
for (const watcher of watchers) {
|
2018-07-20 23:35:43 +03:00
|
|
|
nm.push(watcher.userId, type);
|
2018-12-11 13:36:55 +02:00
|
|
|
}
|
2018-07-20 23:35:43 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
async function notifyToWatchersOfReplyee(reply: Note, user: User, nm: NotificationManager) {
|
|
|
|
const watchers = await NoteWatchings.find({
|
|
|
|
noteId: reply.id,
|
|
|
|
userId: Not(user.id)
|
|
|
|
});
|
2018-07-20 23:35:43 +03:00
|
|
|
|
2018-12-11 13:36:55 +02:00
|
|
|
for (const watcher of watchers) {
|
2018-07-20 23:35:43 +03:00
|
|
|
nm.push(watcher.userId, 'reply');
|
2018-12-11 13:36:55 +02:00
|
|
|
}
|
2018-07-20 23:35:43 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
async function createMentionedEvents(mentionedUsers: User[], note: Note, nm: NotificationManager) {
|
|
|
|
for (const u of mentionedUsers.filter(u => Users.isLocalUser(u))) {
|
|
|
|
const detailPackedNote = await Notes.pack(note, u, {
|
2018-09-17 20:14:12 +03:00
|
|
|
detail: true
|
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
publishMainStream(u.id, 'mention', detailPackedNote);
|
2018-07-20 23:35:43 +03:00
|
|
|
|
|
|
|
// Create notification
|
2019-04-07 15:50:36 +03:00
|
|
|
nm.push(u.id, 'mention');
|
2018-12-11 13:36:55 +02:00
|
|
|
}
|
2018-07-20 23:35:43 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
function saveReply(reply: Note, note: Note) {
|
|
|
|
Notes.increment({ id: reply.id }, 'repliesCount', 1);
|
2018-07-20 23:35:43 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
function incNotesCountOfUser(user: User) {
|
|
|
|
Users.increment({ id: user.id }, 'notesCount', 1);
|
|
|
|
Users.update({ id: user.id }, {
|
|
|
|
updatedAt: new Date()
|
2018-07-20 23:35:43 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
async function extractMentionedUsers(user: User, tokens: ReturnType<typeof parse>): Promise<User[]> {
|
2018-07-20 23:35:43 +03:00
|
|
|
if (tokens == null) return [];
|
|
|
|
|
2018-12-19 04:16:29 +02:00
|
|
|
const mentions = extractMentions(tokens);
|
2018-07-21 05:06:01 +03:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
let mentionedUsers = (await Promise.all(mentions.map(m =>
|
2019-04-07 15:50:36 +03:00
|
|
|
resolveUser(m.username, m.host || user.host).catch(() => null)
|
2019-04-12 19:43:22 +03:00
|
|
|
))).filter(x => x != null) as User[];
|
2018-10-30 14:55:16 +02:00
|
|
|
|
|
|
|
// Drop duplicate users
|
|
|
|
mentionedUsers = mentionedUsers.filter((u, i, self) =>
|
2019-04-07 15:50:36 +03:00
|
|
|
i === self.findIndex(u2 => u.id === u2.id)
|
2018-09-06 18:10:03 +03:00
|
|
|
);
|
2018-07-20 23:35:43 +03:00
|
|
|
|
|
|
|
return mentionedUsers;
|
|
|
|
}
|