2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 09:33:41 +00:00
|
|
|
import { ID } from '@/misc/cafy-id.js';
|
|
|
|
import define from '../../define.js';
|
|
|
|
import { publishAdminStream } from '@/services/stream.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { getUser } from '../../common/getters.js';
|
|
|
|
import { AbuseUserReports, Users } from '@/models/index.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
2019-01-19 10:16:48 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['users'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2019-01-19 10:16:48 +00:00
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
comment: {
|
2020-10-19 10:29:04 +00:00
|
|
|
validator: $.str.range(1, 2048),
|
2019-01-19 10:16:48 +00:00
|
|
|
},
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: '1acefcb5-0959-43fd-9685-b48305736cb5'
|
|
|
|
},
|
|
|
|
|
|
|
|
cannotReportYourself: {
|
|
|
|
message: 'Cannot report yourself.',
|
|
|
|
code: 'CANNOT_REPORT_YOURSELF',
|
|
|
|
id: '1e13149e-b1e8-43cf-902e-c01dbfcb202f'
|
|
|
|
},
|
|
|
|
|
|
|
|
cannotReportAdmin: {
|
|
|
|
message: 'Cannot report the admin.',
|
|
|
|
code: 'CANNOT_REPORT_THE_ADMIN',
|
|
|
|
id: '35e166f5-05fb-4f87-a2d5-adb42676d48f'
|
|
|
|
}
|
2019-01-19 10:16:48 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-01-19 10:16:48 +00:00
|
|
|
// Lookup user
|
2019-02-22 05:02:56 +00:00
|
|
|
const user = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2019-01-19 10:16:48 +00:00
|
|
|
});
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (user.id === me.id) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new ApiError(meta.errors.cannotReportYourself);
|
2019-01-19 10:16:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (user.isAdmin) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new ApiError(meta.errors.cannotReportAdmin);
|
2019-01-19 10:16:48 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const report = await AbuseUserReports.save({
|
|
|
|
id: genId(),
|
2019-01-19 10:16:48 +00:00
|
|
|
createdAt: new Date(),
|
2020-10-19 10:29:04 +00:00
|
|
|
targetUserId: user.id,
|
|
|
|
targetUserHost: user.host,
|
2019-04-07 12:50:36 +00:00
|
|
|
reporterId: me.id,
|
2020-10-19 10:29:04 +00:00
|
|
|
reporterHost: null,
|
|
|
|
comment: ps.comment,
|
2019-01-19 10:16:48 +00:00
|
|
|
});
|
|
|
|
|
2019-01-27 05:55:02 +00:00
|
|
|
// Publish event to moderators
|
|
|
|
setTimeout(async () => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const moderators = await Users.find({
|
|
|
|
where: [{
|
2019-01-27 05:55:02 +00:00
|
|
|
isAdmin: true
|
|
|
|
}, {
|
|
|
|
isModerator: true
|
|
|
|
}]
|
|
|
|
});
|
2019-02-22 02:46:58 +00:00
|
|
|
|
2019-01-27 05:55:02 +00:00
|
|
|
for (const moderator of moderators) {
|
2019-04-07 12:50:36 +00:00
|
|
|
publishAdminStream(moderator.id, 'newAbuseUserReport', {
|
|
|
|
id: report.id,
|
2020-10-19 10:29:04 +00:00
|
|
|
targetUserId: report.targetUserId,
|
2019-01-27 05:55:02 +00:00
|
|
|
reporterId: report.reporterId,
|
|
|
|
comment: report.comment
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, 1);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|