misskey/src/server/api/endpoints/mute/list.ts
syuilo 0463c6bb0f
Refactor API (#4770)
* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Update description.ts

* wip
2019-04-23 22:35:26 +09:00

56 lines
1.2 KiB
TypeScript

import $ from 'cafy';
import { ID } from '../../../../misc/cafy-id';
import define from '../../define';
import { makePaginationQuery } from '../../common/make-pagination-query';
import { Mutings } from '../../../../models';
import { types, bool } from '../../../../misc/schema';
export const meta = {
desc: {
'ja-JP': 'ミュートしているユーザー一覧を取得します。',
'en-US': 'Get muted users.'
},
tags: ['mute', 'account'],
requireCredential: true,
kind: 'read:mutes',
params: {
limit: {
validator: $.optional.num.range(1, 100),
default: 30
},
sinceId: {
validator: $.optional.type(ID),
},
untilId: {
validator: $.optional.type(ID),
},
},
res: {
type: types.array,
optional: bool.false, nullable: bool.false,
items: {
type: types.object,
optional: bool.false, nullable: bool.false,
ref: 'Muting',
}
},
};
export default define(meta, async (ps, me) => {
const query = makePaginationQuery(Mutings.createQueryBuilder('muting'), ps.sinceId, ps.untilId)
.andWhere(`muting.muterId = :meId`, { meId: me.id });
const mutings = await query
.take(ps.limit!)
.getMany();
return await Mutings.packMany(mutings, me);
});