Sharkey/src/server/api/endpoints/mute/list.ts

65 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-07-07 13:19:00 +03:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-10-31 04:16:13 +02:00
import Mute, { packMany } from '../../../../models/mute';
import { ILocalUser } from '../../../../models/user';
import getParams from '../../get-params';
2017-12-21 23:03:54 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'ミュートしているユーザー一覧を取得します。',
'en-US': 'Get muted users.'
2018-07-16 22:36:44 +03:00
},
requireCredential: true,
2018-10-31 04:16:13 +02:00
kind: 'account/read',
params: {
limit: $.num.optional.range(1, 100).note({
default: 30
}),
sinceId: $.type(ID).optional.note({
}),
untilId: $.type(ID).optional.note({
}),
}
2018-07-16 22:36:44 +03:00
};
2018-07-05 20:58:29 +03:00
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
2018-10-31 04:16:13 +02:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2017-12-21 23:03:54 +02:00
2018-10-31 04:16:13 +02: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 23:03:54 +02:00
const query = {
2018-10-31 04:16:13 +02:00
muterId: me._id
2017-12-21 23:03:54 +02:00
} as any;
2018-10-31 04:16:13 +02:00
const sort = {
_id: -1
};
2017-12-21 23:03:54 +02:00
2018-10-31 04:16:13 +02:00
if (ps.sinceId) {
sort._id = 1;
query._id = {
$gt: ps.sinceId
2017-12-21 23:03:54 +02:00
};
2018-10-31 04:16:13 +02:00
} else if (ps.untilId) {
2017-12-21 23:03:54 +02:00
query._id = {
2018-10-31 04:16:13 +02:00
$lt: ps.untilId
2017-12-21 23:03:54 +02:00
};
}
const mutes = await Mute
.find(query, {
2018-10-31 04:16:13 +02:00
limit: ps.limit,
sort: sort
2017-12-21 23:03:54 +02:00
});
2018-10-31 04:16:13 +02:00
res(await packMany(mutes, me));
2017-12-21 23:03:54 +02:00
});