510de87607
* wip * wip * Update abuse-user-reports.ts * Update files.ts * Update list-remote.ts * Update list.ts * Update show-users.ts * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update update.ts * Update search.ts * Update reactions.ts * Update search.ts * wip * wip * wip * wip * Update update.ts * Update relation.ts * Update available.ts * wip * wip * wip * Update packages/backend/src/server/api/define.ts Co-authored-by: Johann150 <johann.galle@protonmail.com> * Update define.ts * Update define.ts * typo * wip * wip * wip * wip * wip * wip * wip * wip * Update update.ts * wip * Update signup.ts * Update call.ts * minimum for limit * type * remove needless annotation * wip * Update signup.ts * wip * wip * fix * Update create.ts Co-authored-by: Johann150 <johann.galle@protonmail.com>
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import define from '../../define';
|
|
import { getNote } from '../../common/getters';
|
|
import { ApiError } from '../../error';
|
|
import { NoteReactions } from '@/models/index';
|
|
import { DeepPartial } from 'typeorm';
|
|
import { NoteReaction } from '@/models/entities/note-reaction';
|
|
|
|
export const meta = {
|
|
tags: ['notes', 'reactions'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'NoteReaction',
|
|
},
|
|
},
|
|
|
|
errors: {
|
|
noSuchNote: {
|
|
message: 'No such note.',
|
|
code: 'NO_SUCH_NOTE',
|
|
id: '263fff3d-d0e1-4af4-bea7-8408059b451a',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
type: { type: 'string', nullable: true },
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
offset: { type: 'integer', default: 0 },
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['noteId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const note = await getNote(ps.noteId).catch(e => {
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
throw e;
|
|
});
|
|
|
|
const query = {
|
|
noteId: note.id,
|
|
} as DeepPartial<NoteReaction>;
|
|
|
|
if (ps.type) {
|
|
// ローカルリアクションはホスト名が . とされているが
|
|
// DB 上ではそうではないので、必要に応じて変換
|
|
const suffix = '@.:';
|
|
const type = ps.type.endsWith(suffix) ? ps.type.slice(0, ps.type.length - suffix.length) + ':' : ps.type;
|
|
query.reaction = type;
|
|
}
|
|
|
|
const reactions = await NoteReactions.find({
|
|
where: query,
|
|
take: ps.limit,
|
|
skip: ps.offset,
|
|
order: {
|
|
id: -1,
|
|
},
|
|
});
|
|
|
|
return await Promise.all(reactions.map(reaction => NoteReactions.pack(reaction, user)));
|
|
});
|