iceshrimp-legacy/src/services/post/create.ts

359 lines
8.5 KiB
TypeScript
Raw Normal View History

2018-04-04 17:40:34 +02:00
import Post, { pack, IPost } from '../../models/post';
2018-04-05 21:04:50 +02:00
import User, { isLocalUser, IUser, isRemoteUser } from '../../models/user';
2018-04-04 17:40:34 +02:00
import stream from '../../publishers/stream';
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';
import context from '../../remote/activitypub/renderer/context';
import { IDriveFile } from '../../models/drive-file';
import notify from '../../publishers/notify';
import PostWatching from '../../models/post-watching';
import watch from './watch';
import Mute from '../../models/mute';
import pushSw from '../../publishers/push-sw';
import event from '../../publishers/stream';
import parse from '../../text/parse';
2018-04-04 17:50:57 +02:00
import html from '../../text/html';
import { IApp } from '../../models/app';
2018-04-02 10:11:14 +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;
reply?: IPost;
repost?: IPost;
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
tags?: string[];
cw?: string;
visibility?: string;
2018-04-04 17:50:57 +02:00
uri?: string;
app?: IApp;
}, silent = false) => new Promise<IPost>(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-04 20:21:11 +02:00
2018-04-05 21:04:50 +02:00
const tags = data.tags || [];
2018-04-02 10:11:14 +02:00
2018-04-04 17:40:34 +02:00
let tokens = 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-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,
repostId: data.repost ? data.repost._id : null,
text: data.text,
2018-04-04 17:50:57 +02:00
textHtml: tokens === null ? null : html(tokens),
2018-04-05 21:04:50 +02:00
poll: data.poll,
cw: data.cw,
2018-04-04 17:40:34 +02:00
tags,
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-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,
_repost: data.repost ? { userId: data.repost.userId } : null,
_user: {
host: user.host,
hostLower: user.hostLower,
account: isLocalUser(user) ? {} : {
inbox: user.account.inbox
}
}
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-04-05 21:04:50 +02:00
const post = await Post.insert(insert);
2018-04-02 10:11:14 +02:00
2018-04-04 17:40:34 +02:00
res(post);
2018-04-04 16:12:35 +02:00
User.update({ _id: user._id }, {
2018-04-04 17:40:34 +02:00
// Increment posts count
2018-04-04 16:12:35 +02:00
$inc: {
postsCount: 1
},
2018-04-04 17:40:34 +02:00
// Update latest post
2018-04-04 16:12:35 +02:00
$set: {
2018-04-04 17:40:34 +02:00
latestPost: post
2018-04-04 16:12:35 +02:00
}
});
2018-04-04 17:40:34 +02:00
// Serialize
const postObj = await pack(post);
2018-04-04 16:12:35 +02:00
// タイムラインへの投稿
2018-04-05 20:42:55 +02:00
if (post.channelId == null) {
2018-04-04 16:12:35 +02:00
// Publish event to myself's stream
2018-04-04 17:40:34 +02:00
if (isLocalUser(user)) {
stream(post.userId, 'post', postObj);
}
2018-04-04 16:12:35 +02:00
// Fetch all followers
const followers = await Following.aggregate([{
$lookup: {
from: 'users',
localField: 'followerId',
foreignField: '_id',
2018-04-05 20:42:55 +02:00
as: 'user'
2018-04-04 16:12:35 +02:00
}
}, {
$match: {
followeeId: post.userId
}
}], {
_id: false
});
if (!silent) {
2018-04-05 16:19:47 +02:00
const note = await renderNote(user, post);
const content = renderCreate(note);
content['@context'] = context;
2018-04-05 21:04:50 +02:00
// 投稿がリプライかつ投稿者がローカルユーザーかつリプライ先の投稿の投稿者がリモートユーザーなら配送
if (data.reply && isLocalUser(user) && isRemoteUser(data.reply._user)) {
deliver(user, content, data.reply._user.account.inbox).save();
}
2018-04-05 20:42:55 +02:00
Promise.all(followers.map(follower => {
follower = follower.user[0];
2018-04-05 16:19:47 +02:00
if (isLocalUser(follower)) {
// Publish event to followers stream
stream(follower._id, 'post', postObj);
} else {
// フォロワーがリモートユーザーかつ投稿者がローカルユーザーなら投稿を配信
if (isLocalUser(user)) {
2018-04-05 16:24:51 +02:00
deliver(user, content, follower.account.inbox).save();
2018-04-05 16:19:47 +02:00
}
2018-04-04 16:12:35 +02:00
}
2018-04-05 16:19:47 +02:00
}));
}
2018-04-04 16:12:35 +02:00
}
// チャンネルへの投稿
/* TODO
if (post.channelId) {
promises.push(
// Increment channel index(posts count)
Channel.update({ _id: post.channelId }, {
$inc: {
index: 1
}
}),
// Publish event to channel
promisedPostObj.then(postObj => {
publishChannelStream(post.channelId, 'post', postObj);
}),
Promise.all([
promisedPostObj,
// Get channel watchers
ChannelWatching.find({
channelId: post.channelId,
// 削除されたドキュメントは除く
deletedAt: { $exists: false }
})
]).then(([postObj, watches]) => {
// チャンネルの視聴者(のタイムライン)に配信
watches.forEach(w => {
stream(w.userId, 'post', postObj);
});
})
);
}*/
2018-04-04 17:40:34 +02:00
const mentions = [];
async function addMention(mentionee, reason) {
// Reject if already added
if (mentions.some(x => x.equals(mentionee))) return;
// Add mention
mentions.push(mentionee);
// Publish event
if (!user._id.equals(mentionee)) {
const mentioneeMutes = await Mute.find({
muter_id: mentionee,
deleted_at: { $exists: false }
});
const mentioneesMutedUserIds = mentioneeMutes.map(m => m.muteeId.toString());
if (mentioneesMutedUserIds.indexOf(user._id.toString()) == -1) {
event(mentionee, reason, postObj);
pushSw(mentionee, reason, postObj);
}
}
}
// If has in reply to post
2018-04-05 21:04:50 +02:00
if (data.reply) {
2018-04-04 17:40:34 +02:00
// Increment replies count
2018-04-05 21:04:50 +02:00
Post.update({ _id: data.reply._id }, {
2018-04-04 17:40:34 +02:00
$inc: {
repliesCount: 1
}
});
// (自分自身へのリプライでない限りは)通知を作成
2018-04-05 21:04:50 +02:00
notify(data.reply.userId, user._id, 'reply', {
2018-04-04 17:40:34 +02:00
postId: post._id
});
// Fetch watchers
PostWatching.find({
2018-04-05 21:04:50 +02:00
postId: data.reply._id,
2018-04-04 17:40:34 +02:00
userId: { $ne: user._id },
// 削除されたドキュメントは除く
deletedAt: { $exists: false }
}, {
fields: {
userId: true
}
}).then(watchers => {
watchers.forEach(watcher => {
notify(watcher.userId, user._id, 'reply', {
postId: post._id
});
});
});
// この投稿をWatchする
if (isLocalUser(user) && user.account.settings.autoWatch !== false) {
2018-04-05 21:04:50 +02:00
watch(user._id, data.reply);
2018-04-04 17:40:34 +02:00
}
// Add mention
2018-04-05 21:04:50 +02:00
addMention(data.reply.userId, 'reply');
2018-04-04 17:40:34 +02:00
}
// If it is repost
2018-04-05 21:04:50 +02:00
if (data.repost) {
2018-04-04 17:40:34 +02:00
// Notify
2018-04-05 21:04:50 +02:00
const type = data.text ? 'quote' : 'repost';
notify(data.repost.userId, user._id, type, {
2018-04-04 17:40:34 +02:00
post_id: post._id
});
// Fetch watchers
PostWatching.find({
2018-04-05 21:04:50 +02:00
postId: data.repost._id,
2018-04-04 17:40:34 +02:00
userId: { $ne: user._id },
// 削除されたドキュメントは除く
deletedAt: { $exists: false }
}, {
fields: {
userId: true
}
}).then(watchers => {
watchers.forEach(watcher => {
notify(watcher.userId, user._id, type, {
postId: post._id
});
});
});
// この投稿をWatchする
if (isLocalUser(user) && user.account.settings.autoWatch !== false) {
2018-04-05 21:04:50 +02:00
watch(user._id, data.repost);
2018-04-04 17:40:34 +02:00
}
// If it is quote repost
2018-04-05 21:04:50 +02:00
if (data.text) {
2018-04-04 17:40:34 +02:00
// Add mention
2018-04-05 21:04:50 +02:00
addMention(data.repost.userId, 'quote');
2018-04-04 17:40:34 +02:00
} else {
// Publish event
2018-04-05 21:04:50 +02:00
if (!user._id.equals(data.repost.userId)) {
event(data.repost.userId, 'repost', postObj);
2018-04-04 17:40:34 +02:00
}
}
// 今までで同じ投稿をRepostしているか
const existRepost = await Post.findOne({
userId: user._id,
2018-04-05 21:04:50 +02:00
repostId: data.repost._id,
2018-04-04 17:40:34 +02:00
_id: {
$ne: post._id
}
});
2018-04-04 16:12:35 +02:00
2018-04-04 17:40:34 +02:00
if (!existRepost) {
// Update repostee status
2018-04-05 21:04:50 +02:00
Post.update({ _id: data.repost._id }, {
2018-04-04 17:40:34 +02:00
$inc: {
repostCount: 1
}
});
}
}
// If has text content
2018-04-05 21:04:50 +02:00
if (data.text) {
2018-04-04 17:40:34 +02:00
// Extract an '@' mentions
const atMentions = tokens
.filter(t => t.type == 'mention')
.map(m => m.username)
// Drop dupulicates
.filter((v, i, s) => s.indexOf(v) == i);
// Resolve all mentions
await Promise.all(atMentions.map(async mention => {
// Fetch mentioned user
// SELECT _id
const mentionee = await User
.findOne({
usernameLower: mention.toLowerCase()
}, { _id: true });
// When mentioned user not found
if (mentionee == null) return;
// 既に言及されたユーザーに対する返信や引用repostの場合も無視
2018-04-05 21:04:50 +02:00
if (data.reply && data.reply.userId.equals(mentionee._id)) return;
if (data.repost && data.repost.userId.equals(mentionee._id)) return;
2018-04-04 17:40:34 +02:00
// Add mention
addMention(mentionee._id, 'mention');
// Create notification
notify(mentionee._id, user._id, 'mention', {
post_id: post._id
});
}));
}
// Append mentions data
if (mentions.length > 0) {
Post.update({ _id: post._id }, {
$set: {
mentions
}
});
}
});