## Context We are now removing Messaging V2 feature flag to use it everywhere. ## Implementation - renaming FetchWorkspaceMessagesCommandsModule to MessagingCommandModule to make it more generic since it it hosts all commands related to the messaging module - creating a crons folder inside commands and jobs crons should be named with xxx.cron.command.ts instead of xxx.command.ts. Same for jobs, jobs should be named with xxx.cron.job.ts. In a future PR we should make sure those CronJobs implement a CronJob interface since it's a bit different (a CronJob does not contain a payload compared to a Job) - Cron commands have been renamed to "cron:$module:command" so `fetch-all-workspaces-messages-from-cache:cron:start` has been renamed to `cron:messaging:gmail-fetch-messages-from-cache`. Also having to create a command to stop the cron is a bit painful to maintain so I removed them for now, this can be easily done manually with pg-boss or bull-mq - Removing full-sync and partial-sync commands as they were there for testing only, we might put them back at some point but we will have to adapt the code anyway. - Feature flag has been removed from the MessageChannel standard object to make sure those new columns are created during the next sync-metadata
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { Injectable, Logger } from '@nestjs/common';
|
|
|
|
import { MessageQueueJob } from 'src/engine/integrations/message-queue/interfaces/message-queue-job.interface';
|
|
|
|
import { CalendarEventCleanerService } from 'src/modules/calendar/services/calendar-event-cleaner/calendar-event-cleaner.service';
|
|
|
|
export type DeleteConnectedAccountAssociatedCalendarDataJobData = {
|
|
workspaceId: string;
|
|
connectedAccountId: string;
|
|
};
|
|
|
|
@Injectable()
|
|
export class DeleteConnectedAccountAssociatedCalendarDataJob
|
|
implements
|
|
MessageQueueJob<DeleteConnectedAccountAssociatedCalendarDataJobData>
|
|
{
|
|
private readonly logger = new Logger(
|
|
DeleteConnectedAccountAssociatedCalendarDataJob.name,
|
|
);
|
|
|
|
constructor(
|
|
private readonly calendarEventCleanerService: CalendarEventCleanerService,
|
|
) {}
|
|
|
|
async handle(
|
|
data: DeleteConnectedAccountAssociatedCalendarDataJobData,
|
|
): Promise<void> {
|
|
this.logger.log(
|
|
`Deleting connected account ${data.connectedAccountId} associated calendar data in workspace ${data.workspaceId}`,
|
|
);
|
|
|
|
await this.calendarEventCleanerService.cleanWorkspaceCalendarEvents(
|
|
data.workspaceId,
|
|
);
|
|
|
|
this.logger.log(
|
|
`Deleted connected account ${data.connectedAccountId} associated calendar data in workspace ${data.workspaceId}`,
|
|
);
|
|
}
|
|
}
|