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