2019-02-04 20:48:08 -06:00
|
|
|
import $ from 'cafy';
|
2021-03-23 03:43:07 -05:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2019-01-19 12:07:12 -06:00
|
|
|
import createReaction from '../../../../../services/note/reaction/create';
|
2018-11-01 23:47:44 -05:00
|
|
|
import define from '../../../define';
|
2019-02-21 23:02:56 -06:00
|
|
|
import { getNote } from '../../../common/getters';
|
2019-02-21 20:46:58 -06:00
|
|
|
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,
|
2018-11-01 13:32:24 -05:00
|
|
|
}
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
|
|
|
id: '033d0620-5bfe-4027-965d-980b0c85a3ea'
|
|
|
|
},
|
|
|
|
|
|
|
|
alreadyReacted: {
|
|
|
|
message: 'You are already reacting to that note.',
|
|
|
|
code: 'ALREADY_REACTED',
|
|
|
|
id: '71efcf98-86d6-4e2b-b2ad-9d032369366b'
|
|
|
|
}
|
2018-07-06 09:19:47 -05:00
|
|
|
}
|
|
|
|
};
|
2016-12-28 16:49:51 -06:00
|
|
|
|
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);
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
});
|