Sharkey/packages/backend/src/queue/processors/CheckExpiredMutingsProcessorService.ts

46 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-09-17 21:27:08 +03:00
import { Inject, Injectable } from '@nestjs/common';
import { In } from 'typeorm';
2022-09-17 21:27:08 +03:00
import { DI } from '@/di-symbols.js';
2022-09-20 23:33:11 +03:00
import type { MutingsRepository } from '@/models/index.js';
import type { Config } from '@/config.js';
2022-09-17 21:27:08 +03:00
import type Logger from '@/logger.js';
2023-04-05 04:21:10 +03:00
import { bindThis } from '@/decorators.js';
import { UserMutingService } from '@/core/UserMutingService.js';
2022-09-17 21:27:08 +03:00
import { QueueLoggerService } from '../QueueLoggerService.js';
import type * as Bull from 'bullmq';
2022-09-17 21:27:08 +03:00
@Injectable()
export class CheckExpiredMutingsProcessorService {
2022-09-18 21:11:50 +03:00
private logger: Logger;
2022-09-17 21:27:08 +03:00
constructor(
@Inject(DI.config)
private config: Config,
@Inject(DI.mutingsRepository)
private mutingsRepository: MutingsRepository,
2023-04-05 04:21:10 +03:00
private userMutingService: UserMutingService,
2022-09-17 21:27:08 +03:00
private queueLoggerService: QueueLoggerService,
) {
2022-09-18 21:11:50 +03:00
this.logger = this.queueLoggerService.logger.createSubLogger('check-expired-mutings');
2022-09-17 21:27:08 +03:00
}
@bindThis
public async process(): Promise<void> {
2022-09-18 21:11:50 +03:00
this.logger.info('Checking expired mutings...');
2022-09-17 21:27:08 +03:00
const expired = await this.mutingsRepository.createQueryBuilder('muting')
.where('muting.expiresAt IS NOT NULL')
.andWhere('muting.expiresAt < :now', { now: new Date() })
.innerJoinAndSelect('muting.mutee', 'mutee')
.getMany();
if (expired.length > 0) {
2023-04-05 04:21:10 +03:00
await this.userMutingService.unmute(expired);
2022-09-17 21:27:08 +03:00
}
2022-09-18 21:11:50 +03:00
this.logger.succ('All expired mutings checked.');
2022-09-17 21:27:08 +03:00
}
}