2021-08-19 07:55:45 -05:00
|
|
|
import createReaction from '@/services/note/reaction/create';
|
|
|
|
import define from '../../../define';
|
|
|
|
import { getNote } from '../../../common/getters';
|
|
|
|
import { ApiError } from '../../../error';
|
2018-07-06 09:19:47 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['reactions', 'notes'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
kind: 'write:reactions',
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '033d0620-5bfe-4027-965d-980b0c85a3ea',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyReacted: {
|
|
|
|
message: 'You are already reacting to that note.',
|
|
|
|
code: 'ALREADY_REACTED',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '71efcf98-86d6-4e2b-b2ad-9d032369366b',
|
2021-08-17 07:48:59 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
youHaveBeenBlocked: {
|
|
|
|
message: 'You cannot react this note because you have been blocked by this user.',
|
|
|
|
code: 'YOU_HAVE_BEEN_BLOCKED',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '20ef5475-9f38-4e4c-bd33-de6d979498ec',
|
2021-08-17 07:48:59 -05:00
|
|
|
},
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2022-02-18 23:05:32 -06:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
reaction: { type: 'string' },
|
|
|
|
},
|
|
|
|
required: ['noteId', 'reaction'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2019-02-21 23:02:56 -06:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
2019-02-21 20:46:58 -06:00
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
await createReaction(user, note, ps.reaction).catch(e => {
|
|
|
|
if (e.id === '51c42bb4-931a-456b-bff7-e5a8a70dd298') throw new ApiError(meta.errors.alreadyReacted);
|
2021-08-17 07:48:59 -05:00
|
|
|
if (e.id === 'e70412a4-7197-4726-8e74-f3e0deb92aa7') throw new ApiError(meta.errors.youHaveBeenBlocked);
|
2019-02-21 20:46:58 -06:00
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
});
|