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 { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { Mutings } from '../../../../models';
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-29 06:59:43 +09:00
|
|
|
'ja-JP': 'ミュートしているユーザー一覧を取得します。',
|
|
|
|
'en-US': 'Get muted users.'
|
2018-07-17 04:36:44 +09:00
|
|
|
},
|
|
|
|
|
2020-04-03 22:42:29 +09:00
|
|
|
tags: ['account'],
|
2019-02-23 11:20:58 +09:00
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'read:mutes',
|
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: 'Muting',
|
2019-02-24 19:42:26 +09:00
|
|
|
}
|
|
|
|
},
|
2018-07-17 04:36:44 +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(Mutings.createQueryBuilder('muting'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`muting.muterId = :meId`, { meId: me.id });
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
const mutings = await query
|
2019-04-13 01:43:22 +09:00
|
|
|
.take(ps.limit!)
|
2019-04-07 21:50:36 +09:00
|
|
|
.getMany();
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await Mutings.packMany(mutings, me);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|