2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { PollVotesRepository, NotesRepository } from '@/models/index.js';
|
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type Logger from '@/logger.js';
|
2023-03-16 05:24:11 +00:00
|
|
|
import { NotificationService } from '@/core/NotificationService.js';
|
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { QueueLoggerService } from '../QueueLoggerService.js';
|
2023-05-29 02:54:49 +00:00
|
|
|
import type * as Bull from 'bullmq';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { EndedPollNotificationJobData } from '../types.js';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class EndedPollNotificationProcessorService {
|
2022-09-18 18:11:50 +00:00
|
|
|
private logger: Logger;
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.pollVotesRepository)
|
|
|
|
private pollVotesRepository: PollVotesRepository,
|
|
|
|
|
2023-03-16 05:24:11 +00:00
|
|
|
private notificationService: NotificationService,
|
2022-09-17 18:27:08 +00:00
|
|
|
private queueLoggerService: QueueLoggerService,
|
|
|
|
) {
|
2022-09-18 18:11:50 +00:00
|
|
|
this.logger = this.queueLoggerService.logger.createSubLogger('ended-poll-notification');
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2023-05-29 02:54:49 +00:00
|
|
|
public async process(job: Bull.Job<EndedPollNotificationJobData>): Promise<void> {
|
2022-09-17 18:27:08 +00:00
|
|
|
const note = await this.notesRepository.findOneBy({ id: job.data.noteId });
|
|
|
|
if (note == null || !note.hasPoll) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const votes = await this.pollVotesRepository.createQueryBuilder('vote')
|
|
|
|
.select('vote.userId')
|
|
|
|
.where('vote.noteId = :noteId', { noteId: note.id })
|
|
|
|
.innerJoinAndSelect('vote.user', 'user')
|
|
|
|
.andWhere('user.host IS NULL')
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
const userIds = [...new Set([note.userId, ...votes.map(v => v.userId)])];
|
|
|
|
|
|
|
|
for (const userId of userIds) {
|
2023-03-16 05:24:11 +00:00
|
|
|
this.notificationService.createNotification(userId, 'pollEnded', {
|
2022-09-17 18:27:08 +00:00
|
|
|
noteId: note.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|