2023-01-13 05:40:33 +01:00
|
|
|
import { Users } from "@/models/index.js";
|
|
|
|
import { createDeleteAccountJob } from "@/queue/index.js";
|
|
|
|
import { publishUserEvent } from "./stream.js";
|
|
|
|
import { doPostSuspend } from "./suspend-user.js";
|
2022-06-27 16:49:16 +02:00
|
|
|
|
|
|
|
export async function deleteAccount(user: {
|
|
|
|
id: string;
|
|
|
|
host: string | null;
|
|
|
|
}): Promise<void> {
|
|
|
|
// 物理削除する前にDelete activityを送信する
|
2023-01-13 05:40:33 +01:00
|
|
|
await doPostSuspend(user).catch((e) => {});
|
2022-06-27 16:49:16 +02:00
|
|
|
|
|
|
|
createDeleteAccountJob(user, {
|
|
|
|
soft: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
await Users.update(user.id, {
|
|
|
|
isDeleted: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Terminate streaming
|
2023-01-13 05:40:33 +01:00
|
|
|
publishUserEvent(user.id, "terminate", {});
|
2022-06-27 16:49:16 +02:00
|
|
|
}
|