iceshrimp/packages/backend/src/server/api/endpoints/i/gallery/likes.ts
ThatOneCalculator 1da7464ee7 clean up w/ rome
2023-01-16 11:19:20 -08:00

60 lines
1.3 KiB
TypeScript

import define from "../../../define.js";
import { GalleryLikes } from "@/models/index.js";
import { makePaginationQuery } from "../../../common/make-pagination-query.js";
export const meta = {
tags: ["account", "gallery"],
requireCredential: true,
kind: "read:gallery-likes",
res: {
type: "array",
optional: false,
nullable: false,
items: {
type: "object",
optional: false,
nullable: false,
properties: {
id: {
type: "string",
optional: false,
nullable: false,
format: "id",
},
post: {
type: "object",
optional: false,
nullable: false,
ref: "GalleryPost",
},
},
},
},
} as const;
export const paramDef = {
type: "object",
properties: {
limit: { type: "integer", minimum: 1, maximum: 100, default: 10 },
sinceId: { type: "string", format: "misskey:id" },
untilId: { type: "string", format: "misskey:id" },
},
required: [],
} as const;
export default define(meta, paramDef, async (ps, user) => {
const query = makePaginationQuery(
GalleryLikes.createQueryBuilder("like"),
ps.sinceId,
ps.untilId,
)
.andWhere("like.userId = :meId", { meId: user.id })
.leftJoinAndSelect("like.post", "post");
const likes = await query.take(ps.limit).getMany();
return await GalleryLikes.packMany(likes, user);
});