2018-07-04 13:13:05 +02:00
|
|
|
import es from '../../db/elasticsearch';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note, { pack, INote } from '../../models/note';
|
2018-05-06 21:08:39 +02:00
|
|
|
import User, { isLocalUser, IUser, isRemoteUser, IRemoteUser, ILocalUser } from '../../models/user';
|
2018-07-11 02:36:30 +02:00
|
|
|
import stream, { publishLocalTimelineStream, publishHybridTimelineStream, publishGlobalTimelineStream, publishUserListStream } from '../../stream';
|
2018-04-04 17:40:34 +02:00
|
|
|
import Following from '../../models/following';
|
2018-04-05 16:24:51 +02:00
|
|
|
import { deliver } from '../../queue';
|
2018-04-04 17:40:34 +02:00
|
|
|
import renderNote from '../../remote/activitypub/renderer/note';
|
|
|
|
import renderCreate from '../../remote/activitypub/renderer/create';
|
2018-04-07 23:55:26 +02:00
|
|
|
import renderAnnounce from '../../remote/activitypub/renderer/announce';
|
2018-04-13 07:39:08 +02:00
|
|
|
import packAp from '../../remote/activitypub/renderer';
|
2018-04-04 17:40:34 +02:00
|
|
|
import { IDriveFile } from '../../models/drive-file';
|
2018-07-07 20:19:04 +02:00
|
|
|
import notify from '../../notify';
|
2018-04-07 19:30:37 +02:00
|
|
|
import NoteWatching from '../../models/note-watching';
|
2018-04-04 17:40:34 +02:00
|
|
|
import watch from './watch';
|
|
|
|
import Mute from '../../models/mute';
|
2018-07-07 12:19:00 +02:00
|
|
|
import event from '../../stream';
|
2018-06-20 18:21:57 +02:00
|
|
|
import parse from '../../mfm/parse';
|
2018-04-04 17:50:57 +02:00
|
|
|
import { IApp } from '../../models/app';
|
2018-04-25 11:04:16 +02:00
|
|
|
import UserList from '../../models/user-list';
|
2018-05-06 20:19:24 +02:00
|
|
|
import resolveUser from '../../remote/resolve-user';
|
2018-06-16 03:40:53 +02:00
|
|
|
import Meta from '../../models/meta';
|
2018-07-04 06:21:30 +02:00
|
|
|
import config from '../../config';
|
2018-07-18 00:19:24 +02:00
|
|
|
import registerHashtag from '../register-hashtag';
|
2018-07-20 22:35:43 +02:00
|
|
|
import isQuote from '../../misc/is-quote';
|
|
|
|
import { TextElementMention } from '../../mfm/parse/elements/mention';
|
2018-04-02 10:11:14 +02:00
|
|
|
|
2018-06-21 04:35:28 +02:00
|
|
|
type Type = 'reply' | 'renote' | 'quote' | 'mention';
|
2018-05-06 21:08:39 +02:00
|
|
|
|
|
|
|
/**
|
2018-06-21 04:35:28 +02:00
|
|
|
* 通知を担当
|
2018-05-06 21:08:39 +02:00
|
|
|
*/
|
|
|
|
class NotificationManager {
|
2018-06-21 04:35:28 +02:00
|
|
|
private notifier: IUser;
|
2018-06-24 09:09:41 +02:00
|
|
|
private note: INote;
|
2018-05-06 21:08:39 +02:00
|
|
|
|
2018-06-24 09:09:41 +02:00
|
|
|
constructor(notifier: IUser, note: INote) {
|
2018-06-21 04:35:28 +02:00
|
|
|
this.notifier = notifier;
|
2018-05-06 21:08:39 +02:00
|
|
|
this.note = note;
|
|
|
|
}
|
|
|
|
|
2018-06-24 08:51:03 +02:00
|
|
|
public async push(notifiee: ILocalUser['_id'], type: Type) {
|
2018-05-06 21:08:39 +02:00
|
|
|
// 自分自身へは通知しない
|
2018-06-21 04:35:28 +02:00
|
|
|
if (this.notifier._id.equals(notifiee)) return;
|
2018-05-06 21:08:39 +02:00
|
|
|
|
2018-06-24 08:51:03 +02:00
|
|
|
// ミュート情報を取得
|
|
|
|
const mentioneeMutes = await Mute.find({
|
|
|
|
muterId: notifiee
|
|
|
|
});
|
2018-05-06 21:08:39 +02:00
|
|
|
|
2018-06-24 08:51:03 +02:00
|
|
|
const mentioneesMutedUserIds = mentioneeMutes.map(m => m.muteeId.toString());
|
2018-05-06 21:08:39 +02:00
|
|
|
|
2018-06-24 08:51:03 +02:00
|
|
|
// 通知される側のユーザーが通知する側のユーザーをミュートしていない限りは通知する
|
|
|
|
if (!mentioneesMutedUserIds.includes(this.notifier._id.toString())) {
|
|
|
|
notify(notifiee, this.notifier._id, type, {
|
|
|
|
noteId: this.note._id
|
2018-05-06 21:08:39 +02:00
|
|
|
});
|
2018-06-24 08:51:03 +02:00
|
|
|
}
|
2018-05-06 21:08:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-05 21:04:50 +02:00
|
|
|
export default async (user: IUser, data: {
|
2018-04-05 11:43:06 +02:00
|
|
|
createdAt?: Date;
|
|
|
|
text?: string;
|
2018-04-07 19:30:37 +02:00
|
|
|
reply?: INote;
|
|
|
|
renote?: INote;
|
2018-04-05 11:43:06 +02:00
|
|
|
media?: IDriveFile[];
|
|
|
|
geo?: any;
|
2018-04-04 20:21:11 +02:00
|
|
|
poll?: any;
|
2018-04-05 11:43:06 +02:00
|
|
|
viaMobile?: boolean;
|
2018-04-04 20:21:11 +02:00
|
|
|
cw?: string;
|
|
|
|
visibility?: string;
|
2018-04-28 21:30:51 +02:00
|
|
|
visibleUsers?: IUser[];
|
2018-04-04 17:50:57 +02:00
|
|
|
uri?: string;
|
|
|
|
app?: IApp;
|
2018-04-07 19:30:37 +02:00
|
|
|
}, silent = false) => new Promise<INote>(async (res, rej) => {
|
2018-04-05 21:04:50 +02:00
|
|
|
if (data.createdAt == null) data.createdAt = new Date();
|
|
|
|
if (data.visibility == null) data.visibility = 'public';
|
2018-04-07 23:55:26 +02:00
|
|
|
if (data.viaMobile == null) data.viaMobile = false;
|
2018-04-04 20:21:11 +02:00
|
|
|
|
2018-07-18 00:19:24 +02:00
|
|
|
let tags: string[] = [];
|
2018-04-02 10:11:14 +02:00
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
let tokens: any[] = null;
|
2018-04-02 10:11:14 +02:00
|
|
|
|
2018-04-05 21:04:50 +02:00
|
|
|
if (data.text) {
|
2018-04-04 17:40:34 +02:00
|
|
|
// Analyze
|
2018-04-05 21:04:50 +02:00
|
|
|
tokens = parse(data.text);
|
2018-04-02 10:11:14 +02:00
|
|
|
|
2018-04-04 17:40:34 +02:00
|
|
|
// Extract hashtags
|
|
|
|
const hashtags = tokens
|
|
|
|
.filter(t => t.type == 'hashtag')
|
|
|
|
.map(t => t.hashtag);
|
|
|
|
|
|
|
|
hashtags.forEach(tag => {
|
|
|
|
if (tags.indexOf(tag) == -1) {
|
|
|
|
tags.push(tag);
|
|
|
|
}
|
|
|
|
});
|
2018-04-02 10:11:14 +02:00
|
|
|
}
|
|
|
|
|
2018-06-10 18:12:37 +02:00
|
|
|
tags = tags.filter(tag => tag.length <= 100);
|
|
|
|
|
2018-04-28 21:30:51 +02:00
|
|
|
if (data.visibleUsers) {
|
|
|
|
data.visibleUsers = data.visibleUsers.filter(x => x != null);
|
|
|
|
}
|
|
|
|
|
2018-04-05 21:04:50 +02:00
|
|
|
const insert: any = {
|
|
|
|
createdAt: data.createdAt,
|
|
|
|
mediaIds: data.media ? data.media.map(file => file._id) : [],
|
|
|
|
replyId: data.reply ? data.reply._id : null,
|
2018-04-07 19:30:37 +02:00
|
|
|
renoteId: data.renote ? data.renote._id : null,
|
2018-04-05 21:04:50 +02:00
|
|
|
text: data.text,
|
|
|
|
poll: data.poll,
|
2018-04-22 10:04:52 +02:00
|
|
|
cw: data.cw == null ? null : data.cw,
|
2018-04-04 17:40:34 +02:00
|
|
|
tags,
|
2018-06-16 08:23:03 +02:00
|
|
|
tagsLower: tags.map(tag => tag.toLowerCase()),
|
2018-04-04 17:40:34 +02:00
|
|
|
userId: user._id,
|
2018-04-05 21:04:50 +02:00
|
|
|
viaMobile: data.viaMobile,
|
|
|
|
geo: data.geo || null,
|
|
|
|
appId: data.app ? data.app._id : null,
|
|
|
|
visibility: data.visibility,
|
2018-04-28 22:28:34 +02:00
|
|
|
visibleUserIds: data.visibility == 'specified'
|
|
|
|
? data.visibleUsers
|
|
|
|
? data.visibleUsers.map(u => u._id)
|
|
|
|
: []
|
|
|
|
: [],
|
2018-04-02 10:11:14 +02:00
|
|
|
|
2018-04-04 17:40:34 +02:00
|
|
|
// 以下非正規化データ
|
2018-04-05 21:04:50 +02:00
|
|
|
_reply: data.reply ? { userId: data.reply.userId } : null,
|
2018-04-07 19:30:37 +02:00
|
|
|
_renote: data.renote ? { userId: data.renote.userId } : null,
|
2018-04-05 21:04:50 +02:00
|
|
|
_user: {
|
|
|
|
host: user.host,
|
2018-04-07 23:55:26 +02:00
|
|
|
inbox: isRemoteUser(user) ? user.inbox : undefined
|
2018-04-05 21:04:50 +02:00
|
|
|
}
|
2018-04-05 08:50:52 +02:00
|
|
|
};
|
|
|
|
|
2018-04-05 21:04:50 +02:00
|
|
|
if (data.uri != null) insert.uri = data.uri;
|
2018-04-05 08:50:52 +02:00
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
// メンション
|
|
|
|
const mentionedUsers = await extractMentionedUsers(tokens);
|
|
|
|
|
|
|
|
// Append mentions data
|
|
|
|
if (mentionedUsers.length > 0) {
|
|
|
|
insert.mentions = mentionedUsers.map(u => u._id);
|
|
|
|
insert.mentionedRemoteUsers = mentionedUsers.filter(u => isRemoteUser(u)).map(u => ({
|
|
|
|
uri: (u as IRemoteUser).uri,
|
|
|
|
username: u.username,
|
|
|
|
host: u.host
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-04-05 08:50:52 +02:00
|
|
|
// 投稿を作成
|
2018-04-18 07:53:17 +02:00
|
|
|
let note: INote;
|
|
|
|
try {
|
|
|
|
note = await Note.insert(insert);
|
|
|
|
} catch (e) {
|
|
|
|
// duplicate key error
|
2018-04-19 02:17:42 +02:00
|
|
|
if (e.code === 11000) {
|
2018-04-18 07:53:17 +02:00
|
|
|
return res(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.error(e);
|
|
|
|
return rej('something happened');
|
|
|
|
}
|
2018-04-02 10:11:14 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
res(note);
|
2018-04-04 16:12:35 +02:00
|
|
|
|
2018-07-18 00:19:24 +02:00
|
|
|
// ハッシュタグ登録
|
|
|
|
tags.map(tag => registerHashtag(user, tag));
|
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
// Increment notes count
|
|
|
|
incNotesCount(user);
|
2018-06-16 03:40:53 +02:00
|
|
|
|
|
|
|
// Increment notes count (user)
|
2018-07-20 22:35:43 +02:00
|
|
|
incNotesCountOfUser(user);
|
2018-04-04 16:12:35 +02:00
|
|
|
|
2018-05-28 17:36:52 +02:00
|
|
|
if (data.reply) {
|
2018-07-20 22:35:43 +02:00
|
|
|
saveReply(data.reply, note);
|
2018-05-28 17:36:52 +02:00
|
|
|
}
|
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
if (isQuote(note)) {
|
|
|
|
saveQuote(data.renote, note);
|
2018-05-28 17:36:52 +02:00
|
|
|
}
|
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
// Pack the note
|
2018-04-07 19:30:37 +02:00
|
|
|
const noteObj = await pack(note);
|
2018-04-04 16:12:35 +02:00
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
const noteActivity = await (async () => {
|
2018-05-06 20:19:24 +02:00
|
|
|
const content = data.renote && data.text == null
|
|
|
|
? renderAnnounce(data.renote.uri ? data.renote.uri : await renderNote(data.renote))
|
|
|
|
: renderCreate(await renderNote(note));
|
|
|
|
return packAp(content);
|
2018-07-20 22:35:43 +02:00
|
|
|
})();
|
2018-06-12 22:40:12 +02:00
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
const nm = new NotificationManager(user, note);
|
2018-06-12 22:40:12 +02:00
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
createMentionedEvents(mentionedUsers, noteObj, nm);
|
2018-06-12 22:40:12 +02:00
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
if (isLocalUser(user)) {
|
|
|
|
deliverNoteToMentionedRemoteUsers(mentionedUsers, user, noteActivity);
|
2018-06-12 22:40:12 +02:00
|
|
|
}
|
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
if (!silent) {
|
|
|
|
if (isLocalUser(user)) {
|
|
|
|
if (note.visibility == 'private' || note.visibility == 'followers' || note.visibility == 'specified') {
|
|
|
|
// Publish event to myself's stream
|
|
|
|
stream(note.userId, 'note', await pack(note, user, {
|
|
|
|
detail: true
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
// Publish event to myself's stream
|
|
|
|
stream(note.userId, 'note', noteObj);
|
|
|
|
|
2018-07-11 02:36:30 +02:00
|
|
|
// Publish note to local and hybrid timeline stream
|
2018-05-06 21:08:39 +02:00
|
|
|
if (note.visibility != 'home') {
|
|
|
|
publishLocalTimelineStream(noteObj);
|
2018-07-13 17:34:05 +02:00
|
|
|
}
|
|
|
|
if (note.visibility == 'public') {
|
2018-07-11 07:33:03 +02:00
|
|
|
publishHybridTimelineStream(null, noteObj);
|
2018-04-29 00:01:47 +02:00
|
|
|
}
|
2018-04-05 21:04:50 +02:00
|
|
|
}
|
2018-05-06 21:08:39 +02:00
|
|
|
}
|
2018-04-05 21:04:50 +02:00
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
// Publish note to global timeline stream
|
2018-06-05 15:54:03 +02:00
|
|
|
if (note.visibility == 'public' && note.replyId == null) {
|
|
|
|
publishGlobalTimelineStream(noteObj);
|
|
|
|
}
|
2018-04-25 11:04:16 +02:00
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
if (note.visibility == 'specified') {
|
|
|
|
data.visibleUsers.forEach(async u => {
|
2018-07-13 17:34:05 +02:00
|
|
|
const n = await pack(note, u, {
|
2018-05-06 21:08:39 +02:00
|
|
|
detail: true
|
2018-07-13 17:34:05 +02:00
|
|
|
});
|
|
|
|
stream(u._id, 'note', n);
|
|
|
|
publishHybridTimelineStream(u._id, n);
|
2018-05-06 21:08:39 +02:00
|
|
|
});
|
|
|
|
}
|
2018-04-25 11:04:16 +02:00
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
if (note.visibility == 'public' || note.visibility == 'home' || note.visibility == 'followers') {
|
|
|
|
// フォロワーに配信
|
2018-07-20 22:35:43 +02:00
|
|
|
publishToFollowers(note, noteObj, user, noteActivity);
|
2018-04-25 11:04:16 +02:00
|
|
|
}
|
2018-04-19 05:43:25 +02:00
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
// リストに配信
|
2018-07-20 22:35:43 +02:00
|
|
|
publishToUserLists(note, noteObj);
|
2018-05-06 21:08:39 +02:00
|
|
|
}
|
2018-04-25 11:04:16 +02:00
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
//#region リプライとAnnounceのAP配送
|
2018-04-25 11:04:16 +02:00
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
// 投稿がリプライかつ投稿者がローカルユーザーかつリプライ先の投稿の投稿者がリモートユーザーなら配送
|
|
|
|
if (data.reply && isLocalUser(user) && isRemoteUser(data.reply._user)) {
|
2018-07-20 22:35:43 +02:00
|
|
|
deliver(user, noteActivity, data.reply._user.inbox);
|
2018-04-04 16:12:35 +02:00
|
|
|
}
|
|
|
|
|
2018-05-06 21:08:39 +02:00
|
|
|
// 投稿がRenoteかつ投稿者がローカルユーザーかつRenote元の投稿の投稿者がリモートユーザーなら配送
|
|
|
|
if (data.renote && isLocalUser(user) && isRemoteUser(data.renote._user)) {
|
2018-07-20 22:35:43 +02:00
|
|
|
deliver(user, noteActivity, data.renote._user.inbox);
|
2018-05-06 21:08:39 +02:00
|
|
|
}
|
|
|
|
//#endergion
|
2018-04-04 16:12:35 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
// If has in reply to note
|
2018-04-05 21:04:50 +02:00
|
|
|
if (data.reply) {
|
2018-04-04 17:40:34 +02:00
|
|
|
// Fetch watchers
|
2018-07-20 22:35:43 +02:00
|
|
|
notifyToWatchersOfReplyee(data.reply, user, nm);
|
2018-04-04 17:40:34 +02:00
|
|
|
|
|
|
|
// この投稿をWatchする
|
2018-04-07 20:58:11 +02:00
|
|
|
if (isLocalUser(user) && user.settings.autoWatch !== false) {
|
2018-04-05 21:04:50 +02:00
|
|
|
watch(user._id, data.reply);
|
2018-04-04 17:40:34 +02:00
|
|
|
}
|
|
|
|
|
2018-07-04 06:21:30 +02:00
|
|
|
// 通知
|
2018-05-06 21:08:39 +02:00
|
|
|
nm.push(data.reply.userId, 'reply');
|
2018-04-04 17:40:34 +02:00
|
|
|
}
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
// If it is renote
|
|
|
|
if (data.renote) {
|
2018-04-04 17:40:34 +02:00
|
|
|
// Notify
|
2018-04-07 19:30:37 +02:00
|
|
|
const type = data.text ? 'quote' : 'renote';
|
2018-06-21 04:35:28 +02:00
|
|
|
nm.push(data.renote.userId, type);
|
2018-04-04 17:40:34 +02:00
|
|
|
|
|
|
|
// Fetch watchers
|
2018-07-20 22:35:43 +02:00
|
|
|
notifyToWatchersOfRenotee(data.renote, user, nm, type);
|
2018-04-04 17:40:34 +02:00
|
|
|
|
|
|
|
// この投稿をWatchする
|
2018-04-07 20:58:11 +02:00
|
|
|
if (isLocalUser(user) && user.settings.autoWatch !== false) {
|
2018-04-07 19:30:37 +02:00
|
|
|
watch(user._id, data.renote);
|
2018-04-04 17:40:34 +02:00
|
|
|
}
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
// If it is quote renote
|
2018-04-05 21:04:50 +02:00
|
|
|
if (data.text) {
|
2018-04-04 17:40:34 +02:00
|
|
|
// Add mention
|
2018-05-06 21:08:39 +02:00
|
|
|
nm.push(data.renote.userId, 'quote');
|
2018-04-04 17:40:34 +02:00
|
|
|
} else {
|
|
|
|
// Publish event
|
2018-04-07 19:30:37 +02:00
|
|
|
if (!user._id.equals(data.renote.userId)) {
|
|
|
|
event(data.renote.userId, 'renote', noteObj);
|
2018-04-04 17:40:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-20 22:35:43 +02:00
|
|
|
// Update renoteee status
|
|
|
|
Note.update({ _id: data.renote._id }, {
|
|
|
|
$inc: {
|
|
|
|
renoteCount: 1
|
|
|
|
}
|
|
|
|
});
|
2018-04-04 17:40:34 +02:00
|
|
|
}
|
2018-07-04 06:21:30 +02:00
|
|
|
|
|
|
|
// Register to search database
|
2018-07-20 22:35:43 +02:00
|
|
|
index(note);
|
|
|
|
});
|
|
|
|
|
|
|
|
function index(note: INote) {
|
|
|
|
if (note.text == null || config.elasticsearch == null) return;
|
|
|
|
|
|
|
|
es.index({
|
|
|
|
index: 'misskey',
|
|
|
|
type: 'note',
|
|
|
|
id: note._id.toString(),
|
|
|
|
body: {
|
|
|
|
text: note.text
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function notifyToWatchersOfRenotee(renote: INote, user: IUser, nm: NotificationManager, type: Type) {
|
|
|
|
const watchers = await NoteWatching.find({
|
|
|
|
noteId: renote._id,
|
|
|
|
userId: { $ne: user._id }
|
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
userId: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
watchers.forEach(watcher => {
|
|
|
|
nm.push(watcher.userId, type);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function notifyToWatchersOfReplyee(reply: INote, user: IUser, nm: NotificationManager) {
|
|
|
|
const watchers = await NoteWatching.find({
|
|
|
|
noteId: reply._id,
|
|
|
|
userId: { $ne: user._id }
|
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
userId: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
watchers.forEach(watcher => {
|
|
|
|
nm.push(watcher.userId, 'reply');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function publishToUserLists(note: INote, noteObj: any) {
|
|
|
|
const lists = await UserList.find({
|
|
|
|
userIds: note.userId
|
|
|
|
});
|
|
|
|
|
|
|
|
lists.forEach(list => {
|
|
|
|
publishUserListStream(list._id, 'note', noteObj);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function publishToFollowers(note: INote, noteObj: any, user: IUser, noteActivity: any) {
|
|
|
|
const followers = await Following.find({
|
|
|
|
followeeId: note.userId
|
|
|
|
});
|
|
|
|
|
|
|
|
followers.map(async (following) => {
|
|
|
|
const follower = following._follower;
|
|
|
|
|
|
|
|
if (isLocalUser(follower)) {
|
|
|
|
// ストーキングしていない場合
|
|
|
|
if (!following.stalk) {
|
|
|
|
// この投稿が返信ならスキップ
|
|
|
|
if (note.replyId && !note._reply.userId.equals(following.followerId) && !note._reply.userId.equals(note.userId))
|
|
|
|
return;
|
2018-07-04 06:21:30 +02:00
|
|
|
}
|
2018-07-20 22:35:43 +02:00
|
|
|
|
|
|
|
// Publish event to followers stream
|
|
|
|
stream(following.followerId, 'note', noteObj);
|
|
|
|
|
|
|
|
if (isRemoteUser(user) || note.visibility != 'public') {
|
|
|
|
publishHybridTimelineStream(following.followerId, noteObj);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// フォロワーがリモートユーザーかつ投稿者がローカルユーザーなら投稿を配信
|
|
|
|
if (isLocalUser(user)) {
|
|
|
|
deliver(user, noteActivity, follower.inbox);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function deliverNoteToMentionedRemoteUsers(mentionedUsers: IUser[], user: ILocalUser, noteActivity: any) {
|
|
|
|
mentionedUsers.filter(u => isRemoteUser(u)).forEach(async (u) => {
|
|
|
|
deliver(user, noteActivity, (u as IRemoteUser).inbox);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function createMentionedEvents(mentionedUsers: IUser[], noteObj: any, nm: NotificationManager) {
|
|
|
|
mentionedUsers.filter(u => isLocalUser(u)).forEach(async (u) => {
|
|
|
|
event(u, 'mention', noteObj);
|
|
|
|
// TODO: 既に言及されたユーザーに対する返信や引用renoteの場合はスキップ
|
|
|
|
|
|
|
|
// Create notification
|
|
|
|
nm.push(u._id, 'mention');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveQuote(renote: INote, note: INote) {
|
|
|
|
Note.update({ _id: renote._id }, {
|
|
|
|
$push: {
|
|
|
|
_quoteIds: note._id
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveReply(reply: INote, note: INote) {
|
|
|
|
Note.update({ _id: reply._id }, {
|
|
|
|
$push: {
|
|
|
|
_replyIds: note._id
|
|
|
|
},
|
|
|
|
$inc: {
|
|
|
|
repliesCount: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function incNotesCountOfUser(user: IUser) {
|
|
|
|
User.update({ _id: user._id }, {
|
|
|
|
$inc: {
|
|
|
|
notesCount: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function incNotesCount(user: IUser) {
|
|
|
|
if (isLocalUser(user)) {
|
|
|
|
Meta.update({}, {
|
|
|
|
$inc: {
|
|
|
|
'stats.notesCount': 1,
|
|
|
|
'stats.originalNotesCount': 1
|
|
|
|
}
|
|
|
|
}, { upsert: true });
|
|
|
|
} else {
|
|
|
|
Meta.update({}, {
|
|
|
|
$inc: {
|
|
|
|
'stats.notesCount': 1
|
|
|
|
}
|
|
|
|
}, { upsert: true });
|
2018-07-04 06:21:30 +02:00
|
|
|
}
|
2018-07-20 22:35:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function extractMentionedUsers(tokens: ReturnType<typeof parse>): Promise<IUser[]> {
|
|
|
|
if (tokens == null) return [];
|
|
|
|
|
|
|
|
// TODO: Drop dupulicates
|
|
|
|
const mentionTokens = tokens
|
|
|
|
.filter(t => t.type == 'mention') as TextElementMention[];
|
|
|
|
|
|
|
|
// TODO: Drop dupulicates
|
|
|
|
const mentionedUsers = (await Promise.all(mentionTokens.map(async m => {
|
|
|
|
try {
|
|
|
|
return await resolveUser(m.username, m.host);
|
|
|
|
} catch (e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}))).filter(x => x != null);
|
|
|
|
|
|
|
|
return mentionedUsers;
|
|
|
|
}
|