mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 15:23:09 +02:00
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
|
import define from '../../define.js';
|
||
|
import { ClipNotes, Clips } from '@/models/index.js';
|
||
|
import { ApiError } from '../../error.js';
|
||
|
import { getNote } from '../../common/getters.js';
|
||
|
|
||
|
export const meta = {
|
||
|
tags: ['account', 'notes', 'clips'],
|
||
|
|
||
|
requireCredential: true,
|
||
|
|
||
|
kind: 'write:account',
|
||
|
|
||
|
errors: {
|
||
|
noSuchClip: {
|
||
|
message: 'No such clip.',
|
||
|
code: 'NO_SUCH_CLIP',
|
||
|
id: 'b80525c6-97f7-49d7-a42d-ebccd49cfd52',
|
||
|
},
|
||
|
|
||
|
noSuchNote: {
|
||
|
message: 'No such note.',
|
||
|
code: 'NO_SUCH_NOTE',
|
||
|
id: 'aff017de-190e-434b-893e-33a9ff5049d8',
|
||
|
},
|
||
|
},
|
||
|
} as const;
|
||
|
|
||
|
export const paramDef = {
|
||
|
type: 'object',
|
||
|
properties: {
|
||
|
clipId: { type: 'string', format: 'misskey:id' },
|
||
|
noteId: { type: 'string', format: 'misskey:id' },
|
||
|
},
|
||
|
required: ['clipId', 'noteId'],
|
||
|
} as const;
|
||
|
|
||
|
// eslint-disable-next-line import/no-default-export
|
||
|
export default define(meta, paramDef, async (ps, user) => {
|
||
|
const clip = await Clips.findOneBy({
|
||
|
id: ps.clipId,
|
||
|
userId: user.id,
|
||
|
});
|
||
|
|
||
|
if (clip == null) {
|
||
|
throw new ApiError(meta.errors.noSuchClip);
|
||
|
}
|
||
|
|
||
|
const note = await getNote(ps.noteId).catch(e => {
|
||
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
||
|
throw e;
|
||
|
});
|
||
|
|
||
|
await ClipNotes.delete({
|
||
|
noteId: note.id,
|
||
|
clipId: clip.id,
|
||
|
});
|
||
|
});
|