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

65 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-10-30 20:59:01 +01:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-10-31 03:16:13 +01:00
import Blocking, { packMany } from '../../../../models/blocking';
import { ILocalUser } from '../../../../models/user';
import getParams from '../../get-params';
2018-10-30 20:59:01 +01:00
export const meta = {
desc: {
'ja-JP': 'ブロックしているユーザー一覧を取得します。',
'en-US': 'Get blocking users.'
},
requireCredential: true,
2018-10-31 03:16:13 +01:00
kind: 'following-read',
params: {
limit: $.num.optional.range(1, 100).note({
default: 30
}),
sinceId: $.type(ID).optional.note({
}),
untilId: $.type(ID).optional.note({
}),
}
2018-10-30 20:59:01 +01: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);
2018-10-30 20:59:01 +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');
}
2018-10-30 20:59:01 +01:00
const query = {
blockerId: me._id
} as any;
2018-10-31 03:16:13 +01:00
const sort = {
_id: -1
};
if (ps.sinceId) {
sort._id = 1;
2018-10-30 20:59:01 +01:00
query._id = {
2018-10-31 03:16:13 +01:00
$gt: ps.sinceId
};
} else if (ps.untilId) {
query._id = {
$lt: ps.untilId
2018-10-30 20:59:01 +01:00
};
}
const blockings = await Blocking
.find(query, {
2018-10-31 03:16:13 +01:00
limit: ps.limit,
sort: sort
2018-10-30 20:59:01 +01:00
});
2018-10-31 03:16:13 +01:00
res(await packMany(blockings, me));
2018-10-30 20:59:01 +01:00
});