/* * SPDX-FileCopyrightText: syuilo and other misskey contributors * SPDX-License-Identifier: AGPL-3.0-only */ import { Injectable } from '@nestjs/common'; import type Logger from '@/logger.js'; import { DriveService } from '@/core/DriveService.js'; import { bindThis } from '@/decorators.js'; import { QueueLoggerService } from '../QueueLoggerService.js'; import type * as Bull from 'bullmq'; import type { ObjectStorageFileJobData } from '../types.js'; @Injectable() export class DeleteFileProcessorService { private logger: Logger; constructor( private driveService: DriveService, private queueLoggerService: QueueLoggerService, ) { this.logger = this.queueLoggerService.logger.createSubLogger('delete-file'); } @bindThis public async process(job: Bull.Job): Promise { const key: string = job.data.key; await this.driveService.deleteObjectStorageFile(key); return 'Success'; } }