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