2023-01-13 05:40:33 +01:00
|
|
|
import define from "../../define.js";
|
|
|
|
import { Channels, ChannelFollowings } from "@/models/index.js";
|
|
|
|
import { makePaginationQuery } from "../../common/make-pagination-query.js";
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["channels", "account"],
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
kind: "read:channels",
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
res: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "array",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
2020-08-18 15:44:21 +02:00
|
|
|
items: {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
|
|
|
optional: false,
|
|
|
|
nullable: false,
|
|
|
|
ref: "Channel",
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2020-08-18 15:44:21 +02:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-08-18 15:44:21 +02: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
|
|
|
sinceId: { type: "string", format: "misskey:id" },
|
|
|
|
untilId: { type: "string", format: "misskey:id" },
|
|
|
|
limit: { type: "integer", minimum: 1, maximum: 100, default: 5 },
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2023-01-13 05:40:33 +01:00
|
|
|
const query = makePaginationQuery(
|
|
|
|
ChannelFollowings.createQueryBuilder(),
|
|
|
|
ps.sinceId,
|
|
|
|
ps.untilId,
|
|
|
|
).andWhere({ followerId: me.id });
|
2020-08-30 11:18:34 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
const followings = await query.take(ps.limit).getMany();
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
return await Promise.all(
|
|
|
|
followings.map((x) => Channels.pack(x.followeeId, me)),
|
|
|
|
);
|
2020-08-18 15:44:21 +02:00
|
|
|
});
|