8a6791da3f
* Remove unused injections * Remove unused imports
33 lines
944 B
TypeScript
33 lines
944 B
TypeScript
/*
|
|
* 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<ObjectStorageFileJobData>): Promise<string> {
|
|
const key: string = job.data.key;
|
|
|
|
await this.driveService.deleteObjectStorageFile(key);
|
|
|
|
return 'Success';
|
|
}
|
|
}
|