2019-02-04 20:48:08 -06:00
|
|
|
import $ from 'cafy';
|
2021-08-19 07:55:45 -05:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
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'],
|
|
|
|
|
2020-02-15 06:33:32 -06:00
|
|
|
requireCredential: true as const,
|
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
|
|
|
|
2018-07-06 09:19:47 -05:00
|
|
|
params: {
|
2018-11-01 13:32:24 -05:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2018-07-06 09:19:47 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
reaction: {
|
2019-03-17 10:03:57 -05:00
|
|
|
validator: $.str,
|
2021-12-09 08:58:30 -06: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
|
|
|
},
|
2018-07-06 09:19:47 -05:00
|
|
|
};
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, 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;
|
|
|
|
});
|