2022-02-27 02:07:39 +00:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { ClipNotes, Clips } from '@/models/index.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
|
|
|
import { getNote } from '../../common/getters.js';
|
2020-11-15 03:04:54 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account', 'notes', 'clips'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2020-11-15 03:04:54 +00:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchClip: {
|
|
|
|
message: 'No such clip.',
|
|
|
|
code: 'NO_SUCH_CLIP',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'd6e76cc0-a1b5-4c7c-a287-73fa9c716dcf',
|
2020-11-15 03:04:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'fc8c0b49-c7a3-4664-a0a6-b418d386bb8b',
|
2020-11-15 03:04:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyClipped: {
|
|
|
|
message: 'The note has already been clipped.',
|
|
|
|
code: 'ALREADY_CLIPPED',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '734806c4-542c-463a-9311-15c512803965',
|
2020-11-15 03:04:54 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2020-11-15 03:04:54 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
clipId: { type: 'string', format: 'misskey:id' },
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['clipId', 'noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2022-03-26 06:34:00 +00:00
|
|
|
const clip = await Clips.findOneBy({
|
2020-11-15 03:04:54 +00:00
|
|
|
id: ps.clipId,
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: user.id,
|
2020-11-15 03:04:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
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;
|
|
|
|
});
|
|
|
|
|
2022-03-26 06:34:00 +00:00
|
|
|
const exist = await ClipNotes.findOneBy({
|
2020-11-15 03:04:54 +00:00
|
|
|
noteId: note.id,
|
2021-12-09 14:58:30 +00:00
|
|
|
clipId: clip.id,
|
2020-11-15 03:04:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist != null) {
|
|
|
|
throw new ApiError(meta.errors.alreadyClipped);
|
|
|
|
}
|
|
|
|
|
2021-03-21 12:27:09 +00:00
|
|
|
await ClipNotes.insert({
|
2020-11-15 03:04:54 +00:00
|
|
|
id: genId(),
|
|
|
|
noteId: note.id,
|
2021-12-09 14:58:30 +00:00
|
|
|
clipId: clip.id,
|
2020-11-15 03:04:54 +00:00
|
|
|
});
|
|
|
|
});
|