2018-05-28 07:39:46 +02:00
|
|
|
import Note, { INote } from '../../models/note';
|
|
|
|
import { IUser, isLocalUser } from '../../models/user';
|
2019-02-05 06:14:23 +01:00
|
|
|
import { publishNoteStream } from '../stream';
|
2018-05-28 07:39:46 +02:00
|
|
|
import renderDelete from '../../remote/activitypub/renderer/delete';
|
2019-01-30 18:29:36 +01:00
|
|
|
import { renderActivity } from '../../remote/activitypub/renderer';
|
2018-05-28 07:39:46 +02:00
|
|
|
import { deliver } from '../../queue';
|
|
|
|
import Following from '../../models/following';
|
2018-09-01 19:57:34 +02:00
|
|
|
import renderTombstone from '../../remote/activitypub/renderer/tombstone';
|
2018-10-22 22:36:35 +02:00
|
|
|
import notesChart from '../../chart/notes';
|
|
|
|
import perUserNotesChart from '../../chart/per-user-notes';
|
2018-09-01 19:57:34 +02:00
|
|
|
import config from '../../config';
|
2018-10-18 23:29:25 +02:00
|
|
|
import NoteUnread from '../../models/note-unread';
|
|
|
|
import read from './read';
|
2018-10-23 00:04:00 +02:00
|
|
|
import DriveFile from '../../models/drive-file';
|
2018-05-28 07:39:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 投稿を削除します。
|
|
|
|
* @param user 投稿者
|
|
|
|
* @param note 投稿
|
|
|
|
*/
|
|
|
|
export default async function(user: IUser, note: INote) {
|
2018-10-07 13:08:42 +02:00
|
|
|
const deletedAt = new Date();
|
|
|
|
|
2018-05-28 07:39:46 +02:00
|
|
|
await Note.update({
|
|
|
|
_id: note._id,
|
|
|
|
userId: user._id
|
|
|
|
}, {
|
|
|
|
$set: {
|
2018-10-07 13:08:42 +02:00
|
|
|
deletedAt: deletedAt,
|
2018-05-28 07:39:46 +02:00
|
|
|
text: null,
|
2018-06-12 22:24:44 +02:00
|
|
|
tags: [],
|
2018-09-05 12:32:46 +02:00
|
|
|
fileIds: [],
|
2019-01-26 09:47:56 +01:00
|
|
|
renoteId: null,
|
2018-07-26 20:46:12 +02:00
|
|
|
poll: null,
|
2018-09-10 07:48:19 +02:00
|
|
|
geo: null,
|
|
|
|
cw: null
|
2018-05-28 07:39:46 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-01-26 09:47:56 +01:00
|
|
|
if (note.renoteId) {
|
|
|
|
Note.update({ _id: note.renoteId }, {
|
|
|
|
$inc: {
|
|
|
|
renoteCount: -1,
|
|
|
|
score: -1
|
|
|
|
},
|
|
|
|
$pull: {
|
|
|
|
_quoteIds: note._id
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-10-07 13:08:42 +02:00
|
|
|
publishNoteStream(note._id, 'deleted', {
|
|
|
|
deletedAt: deletedAt
|
|
|
|
});
|
2018-05-28 07:39:46 +02:00
|
|
|
|
2018-10-18 23:29:25 +02:00
|
|
|
// この投稿が関わる未読通知を削除
|
|
|
|
NoteUnread.find({
|
|
|
|
noteId: note._id
|
|
|
|
}).then(unreads => {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const unread of unreads) {
|
2018-10-18 23:29:25 +02:00
|
|
|
read(unread.userId, unread.noteId);
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-10-18 23:29:25 +02:00
|
|
|
});
|
|
|
|
|
2018-10-23 00:04:00 +02:00
|
|
|
// ファイルが添付されていた場合ドライブのファイルの「このファイルが添付された投稿一覧」プロパティからこの投稿を削除
|
|
|
|
if (note.fileIds) {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const fileId of note.fileIds) {
|
2018-10-23 00:04:00 +02:00
|
|
|
DriveFile.update({ _id: fileId }, {
|
|
|
|
$pull: {
|
|
|
|
'metadata.attachedNoteIds': note._id
|
|
|
|
}
|
|
|
|
});
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-10-23 00:04:00 +02:00
|
|
|
}
|
|
|
|
|
2018-05-28 07:39:46 +02:00
|
|
|
//#region ローカルの投稿なら削除アクティビティを配送
|
|
|
|
if (isLocalUser(user)) {
|
2019-01-30 18:29:36 +01:00
|
|
|
const content = renderActivity(renderDelete(renderTombstone(`${config.url}/notes/${note._id}`), user));
|
2018-05-28 07:39:46 +02:00
|
|
|
|
|
|
|
const followings = await Following.find({
|
|
|
|
followeeId: user._id,
|
|
|
|
'_follower.host': { $ne: null }
|
|
|
|
});
|
|
|
|
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const following of followings) {
|
2018-05-28 07:39:46 +02:00
|
|
|
deliver(user, content, following._follower.inbox);
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-05-28 07:39:46 +02:00
|
|
|
}
|
|
|
|
//#endregion
|
2018-08-18 16:56:44 +02:00
|
|
|
|
|
|
|
// 統計を更新
|
2018-10-22 22:36:35 +02:00
|
|
|
notesChart.update(note, false);
|
|
|
|
perUserNotesChart.update(user, note, false);
|
2018-05-28 07:39:46 +02:00
|
|
|
}
|