2019-07-17 20:03:28 +03:00
|
|
|
import renderDelete from '../remote/activitypub/renderer/delete';
|
|
|
|
import { renderActivity } from '../remote/activitypub/renderer';
|
|
|
|
import { deliver } from '../queue';
|
2021-03-23 10:43:07 +02:00
|
|
|
import config from '@/config';
|
2019-07-17 20:03:28 +03:00
|
|
|
import { User } from '../models/entities/user';
|
|
|
|
import { Users, Followings } from '../models';
|
|
|
|
import { Not, IsNull } from 'typeorm';
|
|
|
|
|
2021-03-24 04:05:37 +02:00
|
|
|
export async function doPostSuspend(user: { id: User['id']; host: User['host'] }) {
|
2019-07-17 20:03:28 +03:00
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
// 知り得る全SharedInboxにDelete配信
|
|
|
|
const content = renderActivity(renderDelete(`${config.url}/users/${user.id}`, user));
|
|
|
|
|
|
|
|
const queue: string[] = [];
|
|
|
|
|
|
|
|
const followings = await Followings.find({
|
|
|
|
where: [
|
|
|
|
{ followerSharedInbox: Not(IsNull()) },
|
|
|
|
{ followeeSharedInbox: Not(IsNull()) }
|
|
|
|
],
|
|
|
|
select: ['followerSharedInbox', 'followeeSharedInbox']
|
|
|
|
});
|
|
|
|
|
|
|
|
const inboxes = followings.map(x => x.followerSharedInbox || x.followeeSharedInbox);
|
|
|
|
|
|
|
|
for (const inbox of inboxes) {
|
|
|
|
if (inbox != null && !queue.includes(inbox)) queue.push(inbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const inbox of queue) {
|
2021-03-24 04:05:37 +02:00
|
|
|
deliver(user, content, inbox);
|
2019-07-17 20:03:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|