2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { Users } from '@/models/index.js';
|
|
|
|
import { insertModerationLog } from '@/services/insert-moderation-log.js';
|
2022-03-25 09:27:41 +02:00
|
|
|
import { publishInternalEvent } from '@/services/stream.js';
|
2019-01-30 10:25:56 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2019-01-30 10:25:56 +02:00
|
|
|
requireModerator: true,
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
2019-01-30 10:25:56 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
required: ['userId'],
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2019-01-30 10:25:56 +02:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const user = await Users.findOne(ps.userId as string);
|
2019-01-30 10:25:56 +02:00
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new Error('user not found');
|
2019-01-30 10:25:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (user.isAdmin) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new Error('cannot silence admin');
|
2019-01-30 10:25:56 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
await Users.update(user.id, {
|
2021-12-09 16:58:30 +02:00
|
|
|
isSilenced: true,
|
2019-01-30 10:25:56 +02:00
|
|
|
});
|
2019-07-13 21:18:45 +03:00
|
|
|
|
2022-03-25 09:27:41 +02:00
|
|
|
publishInternalEvent('userChangeSilencedState', { id: user.id, isSilenced: true });
|
|
|
|
|
2019-07-13 21:18:45 +03:00
|
|
|
insertModerationLog(me, 'silence', {
|
|
|
|
targetId: user.id,
|
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|