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

70 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } 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: {
2018-11-01 20:32:24 +02:00
limit: {
validator: $.num.optional.range(1, 100),
2018-10-31 04:16:13 +02:00
default: 30
2018-11-01 20:32:24 +02:00
},
2018-10-31 04:16:13 +02:00
2018-11-01 20:32:24 +02:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
2018-10-31 04:16:13 +02:00
2018-11-01 20:32:24 +02:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
},
2018-10-31 04:16:13 +02:00
}
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
});