rudeshark.net/src/server/api/endpoints/users/report-abuse.ts

100 lines
2.1 KiB
TypeScript
Raw Normal View History

2019-02-05 03:48:08 +01:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
2019-01-19 11:16:48 +01:00
import define from '../../define';
import User from '../../../../models/user';
import AbuseUserReport from '../../../../models/abuse-user-report';
2019-02-05 06:14:23 +01:00
import { publishAdminStream } from '../../../../services/stream';
import { ApiError } from '../../error';
2019-01-19 11:16:48 +01:00
export const meta = {
desc: {
'ja-JP': '指定したユーザーを迷惑なユーザーであると報告します。'
},
requireCredential: true,
params: {
userId: {
validator: $.type(ID),
transform: transform,
desc: {
'ja-JP': '対象のユーザーのID',
'en-US': 'Target user ID'
}
},
comment: {
validator: $.str.range(1, 3000),
desc: {
'ja-JP': '迷惑行為の詳細'
}
},
},
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 11:16:48 +01:00
}
};
export default define(meta, async (ps, me) => {
2019-01-19 11:16:48 +01:00
// Lookup user
const user = await User.findOne({
_id: ps.userId
});
if (user === null) {
throw new ApiError(meta.errors.noSuchUser);
2019-01-19 11:16:48 +01:00
}
if (user._id.equals(me._id)) {
throw new ApiError(meta.errors.cannotReportYourself);
2019-01-19 11:16:48 +01:00
}
if (user.isAdmin) {
throw new ApiError(meta.errors.cannotReportAdmin);
2019-01-19 11:16:48 +01:00
}
const report = await AbuseUserReport.insert({
2019-01-19 11:16:48 +01:00
createdAt: new Date(),
userId: user._id,
reporterId: me._id,
comment: ps.comment
});
// Publish event to moderators
setTimeout(async () => {
const moderators = await User.find({
$or: [{
isAdmin: true
}, {
isModerator: true
}]
});
for (const moderator of moderators) {
publishAdminStream(moderator._id, 'newAbuseUserReport', {
id: report._id,
userId: report.userId,
reporterId: report.reporterId,
comment: report.comment
});
}
}, 1);
});