2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { Channels } from '@/models/index.js';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query.js';
|
2020-08-18 16:44:21 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['channels', 'account'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2020-08-18 16:44:21 +03:00
|
|
|
|
|
|
|
kind: 'read:channels',
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2020-08-18 16:44:21 +03:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2020-08-18 16:44:21 +03:00
|
|
|
ref: 'Channel',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2020-08-18 16:44:21 +03:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2020-08-18 16:44:21 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 5 },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2020-08-30 12:18:34 +03:00
|
|
|
const query = makePaginationQuery(Channels.createQueryBuilder(), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere({ userId: me.id });
|
|
|
|
|
|
|
|
const channels = await query
|
2022-02-19 07:05:32 +02:00
|
|
|
.take(ps.limit)
|
2020-08-30 12:18:34 +03:00
|
|
|
.getMany();
|
2020-08-18 16:44:21 +03:00
|
|
|
|
|
|
|
return await Promise.all(channels.map(x => Channels.pack(x, me)));
|
|
|
|
});
|