2018-05-28 00:39:46 -05:00
|
|
|
import Note, { INote } from '../../models/note';
|
|
|
|
import { IUser, isLocalUser } from '../../models/user';
|
2018-07-07 05:19:00 -05:00
|
|
|
import { publishNoteStream } from '../../stream';
|
2018-05-28 00:39:46 -05:00
|
|
|
import renderDelete from '../../remote/activitypub/renderer/delete';
|
|
|
|
import pack from '../../remote/activitypub/renderer';
|
|
|
|
import { deliver } from '../../queue';
|
|
|
|
import Following from '../../models/following';
|
2018-09-01 12:57:34 -05:00
|
|
|
import renderTombstone from '../../remote/activitypub/renderer/tombstone';
|
2018-10-21 14:30:27 -05:00
|
|
|
import { notesStats, perUserNotesStats } from '../stats';
|
2018-09-01 12:57:34 -05:00
|
|
|
import config from '../../config';
|
2018-10-18 16:29:25 -05:00
|
|
|
import NoteUnread from '../../models/note-unread';
|
|
|
|
import read from './read';
|
2018-05-28 00:39:46 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 投稿を削除します。
|
|
|
|
* @param user 投稿者
|
|
|
|
* @param note 投稿
|
|
|
|
*/
|
|
|
|
export default async function(user: IUser, note: INote) {
|
2018-10-07 06:08:42 -05:00
|
|
|
const deletedAt = new Date();
|
|
|
|
|
2018-05-28 00:39:46 -05:00
|
|
|
await Note.update({
|
|
|
|
_id: note._id,
|
|
|
|
userId: user._id
|
|
|
|
}, {
|
|
|
|
$set: {
|
2018-10-07 06:08:42 -05:00
|
|
|
deletedAt: deletedAt,
|
2018-05-28 00:39:46 -05:00
|
|
|
text: null,
|
2018-06-12 15:24:44 -05:00
|
|
|
tags: [],
|
2018-09-05 05:32:46 -05:00
|
|
|
fileIds: [],
|
2018-07-26 13:46:12 -05:00
|
|
|
poll: null,
|
2018-09-10 00:48:19 -05:00
|
|
|
geo: null,
|
|
|
|
cw: null
|
2018-05-28 00:39:46 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-10-07 06:08:42 -05:00
|
|
|
publishNoteStream(note._id, 'deleted', {
|
|
|
|
deletedAt: deletedAt
|
|
|
|
});
|
2018-05-28 00:39:46 -05:00
|
|
|
|
2018-10-18 16:29:25 -05:00
|
|
|
// この投稿が関わる未読通知を削除
|
|
|
|
NoteUnread.find({
|
|
|
|
noteId: note._id
|
|
|
|
}).then(unreads => {
|
|
|
|
unreads.forEach(unread => {
|
|
|
|
read(unread.userId, unread.noteId);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-05-28 00:39:46 -05:00
|
|
|
//#region ローカルの投稿なら削除アクティビティを配送
|
|
|
|
if (isLocalUser(user)) {
|
2018-09-01 12:57:34 -05:00
|
|
|
const content = pack(renderDelete(renderTombstone(`${config.url}/notes/${note._id}`), user));
|
2018-05-28 00:39:46 -05:00
|
|
|
|
|
|
|
const followings = await Following.find({
|
|
|
|
followeeId: user._id,
|
|
|
|
'_follower.host': { $ne: null }
|
|
|
|
});
|
|
|
|
|
|
|
|
followings.forEach(following => {
|
|
|
|
deliver(user, content, following._follower.inbox);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
//#endregion
|
2018-08-18 09:56:44 -05:00
|
|
|
|
|
|
|
// 統計を更新
|
2018-10-21 01:08:07 -05:00
|
|
|
notesStats.update(note, false);
|
2018-10-21 14:30:27 -05:00
|
|
|
perUserNotesStats.update(user, note, false);
|
2018-05-28 00:39:46 -05:00
|
|
|
}
|