2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { AbuseUserReports } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2019-01-19 10:16:48 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2019-01-19 10:16:48 +00:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 10,
|
2019-01-19 10:16:48 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2019-01-19 10:16:48 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2019-01-19 10:16:48 +00:00
|
|
|
},
|
2020-10-19 10:29:04 +00:00
|
|
|
|
|
|
|
state: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
|
|
|
|
reporterOrigin: {
|
|
|
|
validator: $.optional.str.or([
|
|
|
|
'combined',
|
|
|
|
'local',
|
|
|
|
'remote',
|
|
|
|
]),
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 'combined',
|
2020-10-19 10:29:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
targetUserOrigin: {
|
|
|
|
validator: $.optional.str.or([
|
|
|
|
'combined',
|
|
|
|
'local',
|
|
|
|
'remote',
|
|
|
|
]),
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 'combined',
|
2020-10-19 10:29:04 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
comment: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
},
|
|
|
|
resolved: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
2021-12-09 14:58:30 +00:00
|
|
|
example: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
reporterId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
targetUserId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
assigneeId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: true as const, optional: false as const,
|
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
reporter: {
|
|
|
|
type: 'object' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
2021-12-09 14:58:30 +00:00
|
|
|
ref: 'User',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
targetUser: {
|
|
|
|
type: 'object' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
2021-12-09 14:58:30 +00:00
|
|
|
ref: 'User',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
assignee: {
|
|
|
|
type: 'object' as const,
|
|
|
|
nullable: true as const, optional: true as const,
|
2021-12-09 14:58:30 +00:00
|
|
|
ref: 'User',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-01-19 10:16:48 +00:00
|
|
|
};
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps) => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const query = makePaginationQuery(AbuseUserReports.createQueryBuilder('report'), ps.sinceId, ps.untilId);
|
2019-01-19 10:16:48 +00:00
|
|
|
|
2020-10-19 10:29:04 +00:00
|
|
|
switch (ps.state) {
|
|
|
|
case 'resolved': query.andWhere('report.resolved = TRUE'); break;
|
|
|
|
case 'unresolved': query.andWhere('report.resolved = FALSE'); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ps.reporterOrigin) {
|
|
|
|
case 'local': query.andWhere('report.reporterHost IS NULL'); break;
|
|
|
|
case 'remote': query.andWhere('report.reporterHost IS NOT NULL'); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ps.targetUserOrigin) {
|
|
|
|
case 'local': query.andWhere('report.targetUserHost IS NULL'); break;
|
|
|
|
case 'remote': query.andWhere('report.targetUserHost IS NOT NULL'); break;
|
|
|
|
}
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
const reports = await query.take(ps.limit!).getMany();
|
2019-01-19 10:16:48 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
return await AbuseUserReports.packMany(reports);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|