2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03: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 12:16:48 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2019-01-19 12:16:48 +02:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 10,
|
2019-01-19 12:16:48 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2019-01-19 12:16:48 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2019-01-19 12:16:48 +02:00
|
|
|
},
|
2020-10-19 13:29:04 +03:00
|
|
|
|
|
|
|
state: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
|
|
|
|
reporterOrigin: {
|
|
|
|
validator: $.optional.str.or([
|
|
|
|
'combined',
|
|
|
|
'local',
|
|
|
|
'remote',
|
|
|
|
]),
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 'combined',
|
2020-10-19 13:29:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
targetUserOrigin: {
|
|
|
|
validator: $.optional.str.or([
|
|
|
|
'combined',
|
|
|
|
'local',
|
|
|
|
'remote',
|
|
|
|
]),
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 'combined',
|
2020-10-19 13:29:04 +03:00
|
|
|
},
|
2021-03-06 15:34:11 +02: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 16:58:30 +02:00
|
|
|
example: false,
|
2021-03-06 15:34:11 +02: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 16:58:30 +02:00
|
|
|
ref: 'User',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
targetUser: {
|
|
|
|
type: 'object' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'User',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
assignee: {
|
|
|
|
type: 'object' as const,
|
|
|
|
nullable: true as const, optional: true as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'User',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-01-19 12:16:48 +02:00
|
|
|
};
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const query = makePaginationQuery(AbuseUserReports.createQueryBuilder('report'), ps.sinceId, ps.untilId);
|
2019-01-19 12:16:48 +02:00
|
|
|
|
2020-10-19 13:29:04 +03: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 19:43:22 +03:00
|
|
|
const reports = await query.take(ps.limit!).getMany();
|
2019-01-19 12:16:48 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await AbuseUserReports.packMany(reports);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|