2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 04:47:44 +00:00
|
|
|
import define from '../../define';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { Blockings } from '../../../../models';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2018-10-30 19:59:01 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ブロックしているユーザー一覧を取得します。',
|
|
|
|
'en-US': 'Get blocking users.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['blocking', 'account'],
|
|
|
|
|
2018-10-30 19:59:01 +00:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
kind: 'read:blocks',
|
2018-10-31 02:16:13 +00:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 18:32:24 +00:00
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-10-31 02:16:13 +00:00
|
|
|
default: 30
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-10-31 02:16:13 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
sinceId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-10-31 02:16:13 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2019-02-24 10:42:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 10:42:26 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'Blocking',
|
2019-02-24 10:42:26 +00:00
|
|
|
}
|
|
|
|
},
|
2018-10-30 19:59:01 +00:00
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const query = makePaginationQuery(Blockings.createQueryBuilder('blocking'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`blocking.blockerId = :meId`, { meId: me.id });
|
2018-10-30 19:59:01 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const blockings = await query
|
2019-04-12 16:43:22 +00:00
|
|
|
.take(ps.limit!)
|
2019-04-07 12:50:36 +00:00
|
|
|
.getMany();
|
2018-10-31 02:16:13 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
return await Blockings.packMany(blockings, me);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|