jormungandr-bite/src/server/api/endpoints/mute/list.ts

67 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-02-04 19:48:08 -07:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
2018-10-30 20:16:13 -06:00
import Mute, { packMany } from '../../../../models/mute';
2018-11-01 22:47:44 -06:00
import define from '../../define';
2017-12-21 14:03:54 -07:00
2018-07-16 13:36:44 -06:00
export const meta = {
desc: {
2018-08-28 15:59:43 -06:00
'ja-JP': 'ミュートしているユーザー一覧を取得します。',
'en-US': 'Get muted users.'
2018-07-16 13:36:44 -06:00
},
requireCredential: true,
2018-10-30 20:16:13 -06:00
kind: 'account/read',
params: {
2018-11-01 12:32:24 -06:00
limit: {
2019-02-13 00:33:07 -07:00
validator: $.optional.num.range(1, 100),
2018-10-30 20:16:13 -06:00
default: 30
2018-11-01 12:32:24 -06:00
},
2018-10-30 20:16:13 -06:00
2018-11-01 12:32:24 -06:00
sinceId: {
2019-02-13 00:33:07 -07:00
validator: $.optional.type(ID),
2018-11-01 12:32:24 -06:00
transform: transform,
},
2018-10-30 20:16:13 -06:00
2018-11-01 12:32:24 -06:00
untilId: {
2019-02-13 00:33:07 -07:00
validator: $.optional.type(ID),
2018-11-01 12:32:24 -06:00
transform: transform,
},
2018-10-30 20:16:13 -06:00
}
2018-07-16 13:36:44 -06:00
};
2018-11-01 22:47:44 -06:00
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
2018-10-30 20:16:13 -06:00
// Check if both of sinceId and untilId is specified
if (ps.sinceId && ps.untilId) {
return rej('cannot set sinceId and untilId');
}
2017-12-21 14:03:54 -07:00
const query = {
2018-10-30 20:16:13 -06:00
muterId: me._id
2017-12-21 14:03:54 -07:00
} as any;
2018-10-30 20:16:13 -06:00
const sort = {
_id: -1
};
2017-12-21 14:03:54 -07:00
2018-10-30 20:16:13 -06:00
if (ps.sinceId) {
sort._id = 1;
query._id = {
$gt: ps.sinceId
2017-12-21 14:03:54 -07:00
};
2018-10-30 20:16:13 -06:00
} else if (ps.untilId) {
2017-12-21 14:03:54 -07:00
query._id = {
2018-10-30 20:16:13 -06:00
$lt: ps.untilId
2017-12-21 14:03:54 -07:00
};
}
const mutes = await Mute
.find(query, {
2018-10-30 20:16:13 -06:00
limit: ps.limit,
sort: sort
2017-12-21 14:03:54 -07:00
});
2018-10-30 20:16:13 -06:00
res(await packMany(mutes, me));
2018-11-01 22:47:44 -06:00
}));