2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-04-05 01:21:10 +00:00
|
|
|
import { In } from 'typeorm';
|
2023-09-15 05:28:29 +00:00
|
|
|
import type { MutingsRepository, MiMuting } from '@/models/_.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
2023-09-20 02:33:36 +00:00
|
|
|
import type { MiUser } from '@/models/User.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-04-05 04:50:05 +00:00
|
|
|
import { CacheService } from '@/core/CacheService.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class UserMutingService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.mutingsRepository)
|
|
|
|
private mutingsRepository: MutingsRepository,
|
|
|
|
|
|
|
|
private idService: IdService,
|
2023-04-05 01:21:10 +00:00
|
|
|
private cacheService: CacheService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
public async mute(user: MiUser, target: MiUser, expiresAt: Date | null = null): Promise<void> {
|
2022-09-17 18:27:08 +00:00
|
|
|
await this.mutingsRepository.insert({
|
2023-10-16 01:45:22 +00:00
|
|
|
id: this.idService.gen(),
|
2023-04-05 01:21:10 +00:00
|
|
|
expiresAt: expiresAt ?? null,
|
2022-09-17 18:27:08 +00:00
|
|
|
muterId: user.id,
|
|
|
|
muteeId: target.id,
|
|
|
|
});
|
2023-04-05 01:21:10 +00:00
|
|
|
|
|
|
|
this.cacheService.userMutingsCache.refresh(user.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
public async unmute(mutings: MiMuting[]): Promise<void> {
|
2023-04-05 01:21:10 +00:00
|
|
|
if (mutings.length === 0) return;
|
|
|
|
|
|
|
|
await this.mutingsRepository.delete({
|
|
|
|
id: In(mutings.map(m => m.id)),
|
|
|
|
});
|
|
|
|
|
|
|
|
const muterIds = [...new Set(mutings.map(m => m.muterId))];
|
|
|
|
for (const muterId of muterIds) {
|
|
|
|
this.cacheService.userMutingsCache.refresh(muterId);
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
}
|