2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { getNote } from '../../common/getters';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { NoteReactions } from '@/models/index';
|
2019-09-03 01:25:02 +03:00
|
|
|
import { DeepPartial } from 'typeorm';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { NoteReaction } from '@/models/entities/note-reaction';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes', 'reactions'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2018-07-16 22:36:44 +03:00
|
|
|
|
2018-10-29 03:52:36 +02:00
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-09-03 01:25:02 +03:00
|
|
|
type: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 10,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
offset: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 0,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceId: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-10-29 03:52:36 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilId: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
2018-10-29 03:52:36 +02:00
|
|
|
|
2019-02-26 22:08:42 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-26 22:08:42 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'NoteReaction',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-26 22:08:42 +02:00
|
|
|
},
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '263fff3d-d0e1-4af4-bea7-8408059b451a',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-22 07:02:56 +02:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
2019-02-22 04:46:58 +02:00
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
2016-12-29 00:49:51 +02:00
|
|
|
});
|
|
|
|
|
2018-10-29 03:52:36 +02:00
|
|
|
const query = {
|
2021-12-09 16:58:30 +02:00
|
|
|
noteId: note.id,
|
2019-09-03 01:25:02 +03:00
|
|
|
} as DeepPartial<NoteReaction>;
|
|
|
|
|
|
|
|
if (ps.type) {
|
2020-04-18 06:06:44 +03:00
|
|
|
// ローカルリアクションはホスト名が . とされているが
|
|
|
|
// DB 上ではそうではないので、必要に応じて変換
|
|
|
|
const suffix = '@.:';
|
|
|
|
const type = ps.type.endsWith(suffix) ? ps.type.slice(0, ps.type.length - suffix.length) + ':' : ps.type;
|
|
|
|
query.reaction = type;
|
2019-09-03 01:25:02 +03:00
|
|
|
}
|
2018-10-29 03:52:36 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const reactions = await NoteReactions.find({
|
|
|
|
where: query,
|
2019-04-12 19:43:22 +03:00
|
|
|
take: ps.limit!,
|
2019-02-22 04:46:58 +02:00
|
|
|
skip: ps.offset,
|
2019-04-07 15:50:36 +03:00
|
|
|
order: {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: -1,
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Promise.all(reactions.map(reaction => NoteReactions.pack(reaction, user)));
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|