FoundKey/packages/backend/src/remote/activitypub/kernel/delete/note.ts
Johann150 1516ddfc9b
refactor: remove CacheableUser & co
The CacheableUser, CacheableLocalUser and CacheableRemoteUser are
identical types to User, ILocalUser and IRemoteUser so it seems
nonsensical to have different types for them.
2023-05-18 13:25:57 +02:00

39 lines
1.1 KiB
TypeScript

import { IRemoteUser } from '@/models/entities/user.js';
import { deleteNotes } from '@/services/note/delete.js';
import { getApLock } from '@/misc/app-lock.js';
import { deleteMessage } from '@/services/messages/delete.js';
import { DbResolver } from '@/remote/activitypub/db-resolver.js';
import { apLogger } from '@/remote/activitypub/logger.js';
export default async function(actor: IRemoteUser, uri: string): Promise<string> {
apLogger.info(`Deleting the Note: ${uri}`);
const unlock = await getApLock(uri);
try {
const dbResolver = new DbResolver();
const note = await dbResolver.getNoteFromApId(uri);
if (note == null) {
const message = await dbResolver.getMessageFromApId(uri);
if (message == null) return 'skip: message not found';
if (message.userId !== actor.id) {
return 'skip: cant delete other actors message';
}
await deleteMessage(message);
return 'ok: message deleted';
} else {
if (note.userId !== actor.id) {
return 'skip: cant delete other actors note';
}
await deleteNotes([note], actor);
return 'ok: note deleted';
}
} finally {
unlock();
}
}