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