2022-02-27 02:07:39 +00:00
|
|
|
import renderDelete from '@/remote/activitypub/renderer/delete.js';
|
|
|
|
import renderUndo from '@/remote/activitypub/renderer/undo.js';
|
|
|
|
import { renderActivity } from '@/remote/activitypub/renderer/index.js';
|
|
|
|
import { deliver } from '@/queue/index.js';
|
|
|
|
import config from '@/config/index.js';
|
|
|
|
import { User } from '@/models/entities/user.js';
|
|
|
|
import { Users, Followings } from '@/models/index.js';
|
2019-07-17 17:03:28 +00:00
|
|
|
import { Not, IsNull } from 'typeorm';
|
2022-03-25 07:27:41 +00:00
|
|
|
import { publishInternalEvent } from './stream';
|
2019-07-17 17:03:28 +00:00
|
|
|
|
|
|
|
export async function doPostUnsuspend(user: User) {
|
2022-03-25 07:27:41 +00:00
|
|
|
publishInternalEvent('userChangeSuspendedState', { id: user.id, isSuspended: false });
|
|
|
|
|
2019-07-17 17:03:28 +00:00
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
// 知り得る全SharedInboxにUndo Delete配信
|
|
|
|
const content = renderActivity(renderUndo(renderDelete(`${config.url}/users/${user.id}`, user), user));
|
|
|
|
|
|
|
|
const queue: string[] = [];
|
|
|
|
|
|
|
|
const followings = await Followings.find({
|
|
|
|
where: [
|
|
|
|
{ followerSharedInbox: Not(IsNull()) },
|
2021-12-09 14:58:30 +00:00
|
|
|
{ followeeSharedInbox: Not(IsNull()) },
|
2019-07-17 17:03:28 +00:00
|
|
|
],
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['followerSharedInbox', 'followeeSharedInbox'],
|
2019-07-17 17:03:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
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) {
|
|
|
|
deliver(user as any, content, inbox);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|