rudeshark.net/src/server/api/endpoints/mute/list.ts

70 lines
1.3 KiB
TypeScript
Raw Normal View History

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