2023-01-13 05:40:33 +01:00
|
|
|
import { Clips } from "@/models/index.js";
|
|
|
|
import define from "../../define.js";
|
|
|
|
import { makePaginationQuery } from "../../common/make-pagination-query.js";
|
2020-11-29 04:34:39 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["users", "clips"],
|
2021-07-20 20:51:59 +02:00
|
|
|
requireCredentialPrivateMode: true,
|
2022-06-10 07:25:20 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
description: "Show all clips this user owns.",
|
2022-06-10 07:25:20 +02:00
|
|
|
|
|
|
|
res: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "array",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
2022-06-10 07:25:20 +02:00
|
|
|
items: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
|
|
|
ref: "Clip",
|
2022-06-10 07:25:20 +02:00
|
|
|
},
|
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2020-11-29 04:34:39 +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
|
|
|
userId: { type: "string", format: "misskey:id" },
|
|
|
|
limit: { type: "integer", minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: "string", format: "misskey:id" },
|
|
|
|
untilId: { type: "string", format: "misskey:id" },
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
required: ["userId"],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2023-01-13 05:40:33 +01:00
|
|
|
const query = makePaginationQuery(
|
|
|
|
Clips.createQueryBuilder("clip"),
|
|
|
|
ps.sinceId,
|
|
|
|
ps.untilId,
|
|
|
|
)
|
|
|
|
.andWhere("clip.userId = :userId", { userId: ps.userId })
|
|
|
|
.andWhere("clip.isPublic = true");
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
const clips = await query.take(ps.limit).getMany();
|
2020-11-29 04:34:39 +01:00
|
|
|
|
|
|
|
return await Clips.packMany(clips);
|
|
|
|
});
|