2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { getUser } from '../../common/getters';
|
|
|
|
import { Mutings } from '@/models/index';
|
|
|
|
import { publishUserEvent } from '@/services/stream';
|
2017-12-21 22:03:54 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2020-04-03 15:42:29 +02:00
|
|
|
tags: ['account'],
|
2019-02-23 03:20:58 +01:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'write:mutes',
|
2018-11-01 19:32:24 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'b851d00b-8ab1-4a56-8b1b-e24187cb48ef',
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
muteeIsYourself: {
|
|
|
|
message: 'Mutee is yourself.',
|
|
|
|
code: 'MUTEE_IS_YOURSELF',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'f428b029-6b39-4d48-a1d2-cc1ae6dd5cf9',
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
notMuting: {
|
|
|
|
message: 'You are not muting that user.',
|
|
|
|
code: 'NOT_MUTING',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '5467d020-daa9-4553-81e1-135c0c35a96d',
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2018-11-01 19:32:24 +01:00
|
|
|
const muter = user;
|
2017-12-21 22:03:54 +01:00
|
|
|
|
|
|
|
// Check if the mutee is yourself
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user.id === ps.userId) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.muteeIsYourself);
|
2017-12-21 22:03:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get mutee
|
2019-02-22 06:02:56 +01:00
|
|
|
const mutee = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2017-12-21 22:03:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Check not muting
|
2019-04-07 14:50:36 +02:00
|
|
|
const exist = await Mutings.findOne({
|
|
|
|
muterId: muter.id,
|
2021-12-09 15:58:30 +01:00
|
|
|
muteeId: mutee.id,
|
2017-12-21 22:03:54 +01:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (exist == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.notMuting);
|
2017-12-21 22:03:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete mute
|
2019-04-07 14:50:36 +02:00
|
|
|
await Mutings.delete({
|
2021-12-09 15:58:30 +01:00
|
|
|
id: exist.id,
|
2017-12-21 22:03:54 +01:00
|
|
|
});
|
2021-03-21 07:14:03 +01:00
|
|
|
|
|
|
|
publishUserEvent(user.id, 'unmute', mutee);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|