2023-01-13 05:40:33 +01:00
|
|
|
import type { FindOptionsWhere } from "typeorm";
|
|
|
|
import { DeepPartial } from "typeorm";
|
|
|
|
import { NoteReactions } from "@/models/index.js";
|
|
|
|
import type { NoteReaction } from "@/models/entities/note-reaction.js";
|
|
|
|
import define from "../../define.js";
|
|
|
|
import { ApiError } from "../../error.js";
|
|
|
|
import { getNote } from "../../common/getters.js";
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["notes", "reactions"],
|
2019-02-23 03:20:58 +01:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2021-07-20 20:51:59 +02:00
|
|
|
requireCredentialPrivateMode: true,
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2022-07-05 12:16:21 +02:00
|
|
|
allowGet: true,
|
|
|
|
cacheSec: 60,
|
|
|
|
|
2019-02-26 21:08:42 +01:00
|
|
|
res: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "array",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
2019-02-26 21:08:42 +01:00
|
|
|
items: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
|
|
|
ref: "NoteReaction",
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2019-02-26 21:08:42 +01:00
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
2023-01-13 05:40:33 +01:00
|
|
|
message: "No such note.",
|
|
|
|
code: "NO_SUCH_NOTE",
|
|
|
|
id: "263fff3d-d0e1-4af4-bea7-8408059b451a",
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
2022-02-19 06:05:32 +01:00
|
|
|
properties: {
|
2023-01-13 05:40:33 +01:00
|
|
|
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" },
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
required: ["noteId"],
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2022-07-25 18:15:21 +02:00
|
|
|
// check note visibility
|
2023-01-13 05:40:33 +01:00
|
|
|
const note = await getNote(ps.noteId, user).catch((err) => {
|
|
|
|
if (err.id === "9725d0ce-ba28-4dde-95a7-2cbb2c15de24")
|
|
|
|
throw new ApiError(meta.errors.noSuchNote);
|
2022-07-25 18:15:21 +02:00
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
|
2018-10-29 02:52:36 +01:00
|
|
|
const query = {
|
2022-03-25 05:11:52 +01:00
|
|
|
noteId: ps.noteId,
|
2022-04-17 06:01:30 +02:00
|
|
|
} as FindOptionsWhere<NoteReaction>;
|
2019-09-03 00:25:02 +02:00
|
|
|
|
|
|
|
if (ps.type) {
|
2020-04-18 05:06:44 +02:00
|
|
|
// ローカルリアクションはホスト名が . とされているが
|
|
|
|
// DB 上ではそうではないので、必要に応じて変換
|
2023-01-13 05:40:33 +01:00
|
|
|
const suffix = "@.:";
|
|
|
|
const type = ps.type.endsWith(suffix)
|
|
|
|
? `${ps.type.slice(0, ps.type.length - suffix.length)}:`
|
|
|
|
: ps.type;
|
2020-04-18 05:06:44 +02:00
|
|
|
query.reaction = type;
|
2019-09-03 00:25:02 +02:00
|
|
|
}
|
2018-10-29 02:52:36 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const reactions = await NoteReactions.find({
|
|
|
|
where: query,
|
2022-02-19 06:05:32 +01:00
|
|
|
take: ps.limit,
|
2019-02-22 03:46:58 +01:00
|
|
|
skip: ps.offset,
|
2019-04-07 14:50:36 +02:00
|
|
|
order: {
|
2021-12-09 15:58:30 +01:00
|
|
|
id: -1,
|
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
relations: ["user", "user.avatar", "user.banner", "note"],
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2022-07-25 18:15:21 +02:00
|
|
|
return await NoteReactions.packMany(reactions, user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|