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';
|
2018-09-01 19:57:34 +02:00
|
|
|
import renderTombstone from '../../remote/activitypub/renderer/tombstone';
|
|
|
|
import config from '../../config';
|
2019-02-08 08:58:57 +01:00
|
|
|
import { registerOrFetchInstanceDoc } from '../register-or-fetch-instance-doc';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { User } from '../../models/entities/user';
|
|
|
|
import { Note } from '../../models/entities/note';
|
|
|
|
import { Notes, Users, Followings, Instances } from '../../models';
|
|
|
|
import { notesChart, perUserNotesChart, instanceChart } from '../chart';
|
2018-05-28 07:39:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 投稿を削除します。
|
|
|
|
* @param user 投稿者
|
|
|
|
* @param note 投稿
|
|
|
|
*/
|
2019-04-07 14:50:36 +02:00
|
|
|
export default async function(user: User, note: Note, quiet = false) {
|
2018-10-07 13:08:42 +02:00
|
|
|
const deletedAt = new Date();
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
await Notes.delete({
|
|
|
|
id: note.id,
|
|
|
|
userId: user.id
|
2018-05-28 07:39:46 +02:00
|
|
|
});
|
|
|
|
|
2019-01-26 09:47:56 +01:00
|
|
|
if (note.renoteId) {
|
2019-04-07 14:50:36 +02:00
|
|
|
Notes.decrement({ id: note.renoteId }, 'renoteCount', 1);
|
|
|
|
Notes.decrement({ id: note.renoteId }, 'score', 1);
|
2018-10-23 00:04:00 +02:00
|
|
|
}
|
|
|
|
|
2019-02-20 17:30:21 +01:00
|
|
|
if (!quiet) {
|
2019-04-07 14:50:36 +02:00
|
|
|
publishNoteStream(note.id, 'deleted', {
|
2019-02-20 17:30:21 +01:00
|
|
|
deletedAt: deletedAt
|
2018-05-28 07:39:46 +02:00
|
|
|
});
|
|
|
|
|
2019-02-20 17:30:21 +01:00
|
|
|
//#region ローカルの投稿なら削除アクティビティを配送
|
2019-04-07 14:50:36 +02:00
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
const content = renderActivity(renderDelete(renderTombstone(`${config.url}/notes/${note.id}`), user));
|
2019-02-20 17:30:21 +01:00
|
|
|
|
2019-05-20 06:34:51 +02:00
|
|
|
const queue: string[] = [];
|
|
|
|
|
|
|
|
const followers = await Followings.find({
|
|
|
|
followeeId: note.userId
|
2019-02-20 17:30:21 +01:00
|
|
|
});
|
|
|
|
|
2019-05-20 06:34:51 +02:00
|
|
|
for (const following of followers) {
|
|
|
|
if (Followings.isRemoteFollower(following)) {
|
|
|
|
const inbox = following.followerSharedInbox || following.followerInbox;
|
|
|
|
if (!queue.includes(inbox)) queue.push(inbox);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const inbox of queue) {
|
|
|
|
deliver(user as any, content, inbox);
|
2019-02-20 17:30:21 +01:00
|
|
|
}
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2019-02-20 17:30:21 +01:00
|
|
|
//#endregion
|
2018-08-18 16:56:44 +02:00
|
|
|
|
2019-02-20 17:30:21 +01:00
|
|
|
// 統計を更新
|
|
|
|
notesChart.update(note, false);
|
|
|
|
perUserNotesChart.update(user, note, false);
|
2019-02-08 08:58:57 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (Users.isRemoteUser(user)) {
|
2019-02-20 17:30:21 +01:00
|
|
|
registerOrFetchInstanceDoc(user.host).then(i => {
|
2019-04-07 14:50:36 +02:00
|
|
|
Instances.decrement({ id: i.id }, 'notesCount', 1);
|
2019-04-08 07:29:17 +02:00
|
|
|
instanceChart.updateNote(i.host, note, false);
|
2019-02-20 17:30:21 +01:00
|
|
|
});
|
|
|
|
}
|
2019-02-08 08:58:57 +01:00
|
|
|
}
|
2018-05-28 07:39:46 +02:00
|
|
|
}
|