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

64 lines
1 KiB
TypeScript
Raw Normal View History

2019-02-05 04:48:08 +02:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
2018-10-31 04:16:13 +02:00
import Blocking, { packMany } from '../../../../models/blocking';
2018-11-02 06:47:44 +02:00
import define from '../../define';
2018-10-30 21:59:01 +02:00
export const meta = {
desc: {
'ja-JP': 'ブロックしているユーザー一覧を取得します。',
'en-US': 'Get blocking users.'
},
tags: ['blocking', 'account'],
2018-10-30 21:59:01 +02:00
requireCredential: true,
2018-10-31 04:16:13 +02:00
kind: 'following-read',
params: {
2018-11-01 20:32:24 +02:00
limit: {
2019-02-13 09:33:07 +02:00
validator: $.optional.num.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: {
2019-02-13 09:33:07 +02:00
validator: $.optional.type(ID),
2018-11-01 20:32:24 +02:00
transform: transform,
},
2018-10-31 04:16:13 +02:00
2018-11-01 20:32:24 +02:00
untilId: {
2019-02-13 09:33:07 +02:00
validator: $.optional.type(ID),
2018-11-01 20:32:24 +02:00
transform: transform,
},
2018-10-31 04:16:13 +02:00
}
2018-10-30 21:59:01 +02:00
};
export default define(meta, async (ps, me) => {
2018-10-30 21:59:01 +02:00
const query = {
blockerId: me._id
} as any;
2018-10-31 04:16:13 +02:00
const sort = {
_id: -1
};
if (ps.sinceId) {
sort._id = 1;
2018-10-30 21:59:01 +02:00
query._id = {
2018-10-31 04:16:13 +02:00
$gt: ps.sinceId
};
} else if (ps.untilId) {
query._id = {
$lt: ps.untilId
2018-10-30 21:59:01 +02:00
};
}
const blockings = await Blocking
.find(query, {
2018-10-31 04:16:13 +02:00
limit: ps.limit,
sort: sort
2018-10-30 21:59:01 +02:00
});
return await packMany(blockings, me);
});