Spaces:
Runtime error
Runtime error
| import { | |
| Controller, | |
| Get, | |
| Delete, | |
| Query, | |
| HttpCode, | |
| HttpStatus, | |
| Res, | |
| StreamableFile, | |
| } from '@nestjs/common'; | |
| import type { Response } from 'express'; | |
| import { ApiTags, ApiOperation, ApiQuery } from '@nestjs/swagger'; | |
| import { BackblazeStorageService } from './backblaze-storage.service'; | |
| import { FileType } from './enums/file-type.enum'; | |
| import { LogToDiscord } from 'src/shared/decorators/log-to-discord.decorator'; | |
| ('Upload: Backblaze B2 Storage') | |
| ('backblaze') | |
| () | |
| export class BackblazeStorageController { | |
| constructor( | |
| private readonly backblazeStorageService: BackblazeStorageService, | |
| ) {} | |
| ('presigned-upload') | |
| ({ summary: 'Get presigned upload URL' }) | |
| ({ name: 'fileName', required: true }) | |
| ({ name: 'fileType', enum: FileType, required: false }) | |
| async getPresignedUploadUrl( | |
| ('fileName') fileName: string, | |
| ('fileType') fileType?: FileType, | |
| ) { | |
| return this.backblazeStorageService.getPresignedUploadUrl( | |
| fileName, | |
| fileType, | |
| ); | |
| } | |
| ('resize') | |
| ({ summary: 'Resize and serve image from B2' }) | |
| ({ name: 'path', required: true, description: 'File path in B2' }) | |
| ({ name: 'w', required: false, description: 'Width in pixels' }) | |
| ({ name: 'h', required: false, description: 'Height in pixels' }) | |
| ({ | |
| name: 'q', | |
| required: false, | |
| description: 'Quality (1-100)', | |
| type: Number, | |
| }) | |
| async resizeImage( | |
| ({ passthrough: true }) res: Response, | |
| ('path') path: string, | |
| ('w') width?: string, | |
| ('h') height?: string, | |
| ('q') quality?: string, | |
| ): Promise<StreamableFile> { | |
| const result = await this.backblazeStorageService.resizeImage( | |
| path, | |
| width ? parseInt(width) : undefined, | |
| height ? parseInt(height) : undefined, | |
| quality ? parseInt(quality) : undefined, | |
| ); | |
| res.set({ | |
| 'Content-Type': result.contentType, | |
| 'Cache-Control': 'public, max-age=31536000', // Cache for 1 year | |
| }); | |
| return new StreamableFile(result.buffer); | |
| } | |
| ('by-url') | |
| (HttpStatus.OK) | |
| ({ summary: 'Delete file by CDN URL' }) | |
| async deleteFileByUrl(('url') url: string) { | |
| const result = await this.backblazeStorageService.deleteFileByUrl(url); | |
| return { | |
| message: 'File deleted successfully', | |
| ...result, | |
| }; | |
| } | |
| } | |