import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id'; import Mute, { packMany } from '../../../../models/mute'; import define from '../../define'; export const meta = { desc: { 'ja-JP': 'ミュートしているユーザー一覧を取得します。', 'en-US': 'Get muted users.' }, requireCredential: true, kind: 'account/read', params: { limit: { validator: $.num.optional.range(1, 100), default: 30 }, sinceId: { validator: $.type(ID).optional, transform: transform, }, untilId: { validator: $.type(ID).optional, transform: transform, }, } }; export default define(meta, (ps, me) => new Promise(async (res, rej) => { // Check if both of sinceId and untilId is specified if (ps.sinceId && ps.untilId) { return rej('cannot set sinceId and untilId'); } const query = { muterId: me._id } as any; const sort = { _id: -1 }; if (ps.sinceId) { sort._id = 1; query._id = { $gt: ps.sinceId }; } else if (ps.untilId) { query._id = { $lt: ps.untilId }; } const mutes = await Mute .find(query, { limit: ps.limit, sort: sort }); res(await packMany(mutes, me)); }));