2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { MutingsRepository } from '@/models/index.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 11:07:39 +09:00
|
|
|
import { ApiError } from '../../error.js';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { GetterService } from '../../common/GetterService.js';
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2020-04-03 22:42:29 +09:00
|
|
|
tags: ['account'],
|
2019-02-23 11:20:58 +09:00
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'write:mutes',
|
2018-11-02 03:32:24 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: 'b851d00b-8ab1-4a56-8b1b-e24187cb48ef',
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
muteeIsYourself: {
|
|
|
|
message: 'Mutee is yourself.',
|
|
|
|
code: 'MUTEE_IS_YOURSELF',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: 'f428b029-6b39-4d48-a1d2-cc1ae6dd5cf9',
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
notMuting: {
|
|
|
|
message: 'You are not muting that user.',
|
|
|
|
code: 'NOT_MUTING',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: '5467d020-daa9-4553-81e1-135c0c35a96d',
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.mutingsRepository)
|
|
|
|
private mutingsRepository: MutingsRepository,
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
private getterService: GetterService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const muter = me;
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
// Check if the mutee is yourself
|
|
|
|
if (me.id === ps.userId) {
|
|
|
|
throw new ApiError(meta.errors.muteeIsYourself);
|
|
|
|
}
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
// Get mutee
|
|
|
|
const mutee = await this.getterService.getUser(ps.userId).catch(err => {
|
|
|
|
if (err.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw err;
|
|
|
|
});
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
// Check not muting
|
|
|
|
const exist = await this.mutingsRepository.findOneBy({
|
|
|
|
muterId: muter.id,
|
|
|
|
muteeId: mutee.id,
|
|
|
|
});
|
2017-12-22 06:03:54 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
if (exist == null) {
|
|
|
|
throw new ApiError(meta.errors.notMuting);
|
|
|
|
}
|
2021-03-21 15:14:03 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
// Delete mute
|
|
|
|
await this.mutingsRepository.delete({
|
|
|
|
id: exist.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.globalEventService.publishUserEvent(me.id, 'unmute', mutee);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|