85 lines
2.7 KiB
JavaScript
85 lines
2.7 KiB
JavaScript
import { queueLogger } from "../../logger.js";
|
|
import { DriveFiles, Notes, UserProfiles, Users } from "../../../models/index.js";
|
|
import { MoreThan } from "typeorm";
|
|
import { deleteFileSync } from "../../../services/drive/delete-file.js";
|
|
import { sendEmail } from "../../../services/send-email.js";
|
|
import { publishInternalEvent } from "../../../services/stream.js";
|
|
const logger = queueLogger.createSubLogger("delete-account");
|
|
export async function deleteAccount(job) {
|
|
logger.info(`Deleting account of ${job.data.user.id} ...`);
|
|
const user = await Users.findOneBy({
|
|
id: job.data.user.id
|
|
});
|
|
if (!user) return "skip: User not found";
|
|
const isLocal = Users.isLocalUser(user);
|
|
{
|
|
// Delete notes
|
|
let cursor = null;
|
|
while(true){
|
|
const notes = await Notes.find({
|
|
where: {
|
|
userId: user.id,
|
|
...cursor ? {
|
|
id: MoreThan(cursor)
|
|
} : {}
|
|
},
|
|
take: 10,
|
|
order: {
|
|
id: 1
|
|
}
|
|
});
|
|
if (notes.length === 0) {
|
|
break;
|
|
}
|
|
cursor = notes[notes.length - 1].id;
|
|
await Notes.delete(notes.map((note)=>note.id));
|
|
}
|
|
logger.succ("All of notes deleted");
|
|
}
|
|
{
|
|
// Delete files
|
|
let cursor = null;
|
|
while(true){
|
|
const files = await DriveFiles.find({
|
|
where: {
|
|
userId: user.id,
|
|
...cursor ? {
|
|
id: MoreThan(cursor)
|
|
} : {}
|
|
},
|
|
take: 10,
|
|
order: {
|
|
id: 1
|
|
}
|
|
});
|
|
if (files.length === 0) {
|
|
break;
|
|
}
|
|
cursor = files[files.length - 1].id;
|
|
for (const file of files){
|
|
await deleteFileSync(file);
|
|
}
|
|
}
|
|
logger.succ("All of files deleted");
|
|
}
|
|
{
|
|
// Send email notification
|
|
const profile = await UserProfiles.findOneByOrFail({
|
|
userId: user.id
|
|
});
|
|
if (profile.email && profile.emailVerified) {
|
|
sendEmail(profile.email, "Account deleted", "Your account has been deleted.", "Your account has been deleted.");
|
|
}
|
|
}
|
|
// soft指定されている場合は物理削除しない
|
|
if (job.data.soft) {
|
|
// nop
|
|
} else {
|
|
await Users.delete(job.data.user.id);
|
|
publishInternalEvent(isLocal ? "localUserDeleted" : "remoteUserDeleted", {
|
|
id: user.id
|
|
});
|
|
}
|
|
return "Account deleted";
|
|
}
|