2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { IdService } from '@/core/IdService.js';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { MutingsRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import type { Muting } from '@/models/entities/Muting.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { ApiError } from '../../error.js';
|
2022-09-24 00:15:16 +02:00
|
|
|
import { GetterService } from '@/server/api/GetterService.js';
|
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: '6fef56f3-e765-4957-88e5-c6f65329b8a5',
|
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: 'a4619cb2-5f23-484b-9301-94c903074e10',
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyMuting: {
|
|
|
|
message: 'You are already muting that user.',
|
|
|
|
code: 'ALREADY_MUTING',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '7e7359cb-160c-4956-b08f-4d1c653cd007',
|
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' },
|
2022-04-03 06:57:26 +02:00
|
|
|
expiresAt: {
|
|
|
|
type: 'integer',
|
|
|
|
nullable: true,
|
|
|
|
description: 'A Unix Epoch timestamp that must lie in the future. `null` means an indefinite mute.',
|
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.mutingsRepository)
|
|
|
|
private mutingsRepository: MutingsRepository,
|
|
|
|
|
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
private getterService: GetterService,
|
|
|
|
private idService: IdService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const muter = me;
|
|
|
|
|
|
|
|
// 自分自身
|
|
|
|
if (me.id === ps.userId) {
|
|
|
|
throw new ApiError(meta.errors.muteeIsYourself);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check if already muting
|
|
|
|
const exist = await this.mutingsRepository.findOneBy({
|
|
|
|
muterId: muter.id,
|
|
|
|
muteeId: mutee.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exist != null) {
|
|
|
|
throw new ApiError(meta.errors.alreadyMuting);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.expiresAt && ps.expiresAt <= Date.now()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create mute
|
|
|
|
await this.mutingsRepository.insert({
|
|
|
|
id: this.idService.genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
expiresAt: ps.expiresAt ? new Date(ps.expiresAt) : null,
|
|
|
|
muterId: muter.id,
|
|
|
|
muteeId: mutee.id,
|
|
|
|
} as Muting);
|
|
|
|
|
|
|
|
this.globalEventService.publishUserEvent(me.id, 'mute', mutee);
|
|
|
|
});
|
2022-03-04 12:23:53 +01:00
|
|
|
}
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|