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