mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-18 17:25:16 -04:00
105 lines
2.8 KiB
TypeScript
105 lines
2.8 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import {
|
|
BadRequestException,
|
|
Controller,
|
|
Delete,
|
|
Headers,
|
|
InternalServerErrorException,
|
|
NotFoundException,
|
|
Param,
|
|
Post,
|
|
Req,
|
|
UnauthorizedException,
|
|
UploadedFile,
|
|
UseGuards,
|
|
UseInterceptors,
|
|
} from '@nestjs/common';
|
|
import { FileInterceptor } from '@nestjs/platform-express';
|
|
import { Request } from 'express';
|
|
import {
|
|
ClientError,
|
|
MediaBackendError,
|
|
NotInDBError,
|
|
PermissionError,
|
|
} from '../../../errors/errors';
|
|
import { ConsoleLoggerService } from '../../../logger/console-logger.service';
|
|
import { MediaService } from '../../../media/media.service';
|
|
import { MulterFile } from '../../../media/multer-file.interface';
|
|
import { TokenAuthGuard } from '../../../auth/token-auth.guard';
|
|
import { ApiSecurity, ApiTags } from '@nestjs/swagger';
|
|
import { MediaUploadUrlDto } from '../../../media/media-upload-url.dto';
|
|
|
|
@ApiTags('media')
|
|
@ApiSecurity('token')
|
|
@Controller('media')
|
|
export class MediaController {
|
|
constructor(
|
|
private readonly logger: ConsoleLoggerService,
|
|
private mediaService: MediaService,
|
|
) {
|
|
this.logger.setContext(MediaController.name);
|
|
}
|
|
|
|
@UseGuards(TokenAuthGuard)
|
|
@Post()
|
|
@UseInterceptors(FileInterceptor('file'))
|
|
async uploadMedia(
|
|
@Req() req: Request,
|
|
@UploadedFile() file: MulterFile,
|
|
@Headers('HedgeDoc-Note') noteId: string,
|
|
): Promise<MediaUploadUrlDto> {
|
|
const username = req.user.userName;
|
|
this.logger.debug(
|
|
`Recieved filename '${file.originalname}' for note '${noteId}' from user '${username}'`,
|
|
'uploadImage',
|
|
);
|
|
try {
|
|
const url = await this.mediaService.saveFile(
|
|
file.buffer,
|
|
username,
|
|
noteId,
|
|
);
|
|
return this.mediaService.toMediaUploadUrlDto(url);
|
|
} catch (e) {
|
|
if (e instanceof ClientError || e instanceof NotInDBError) {
|
|
throw new BadRequestException(e.message);
|
|
}
|
|
if (e instanceof MediaBackendError) {
|
|
throw new InternalServerErrorException(
|
|
'There was an error in the media backend',
|
|
);
|
|
}
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
@UseGuards(TokenAuthGuard)
|
|
@Delete(':filename')
|
|
async deleteMedia(
|
|
@Req() req: Request,
|
|
@Param('filename') filename: string,
|
|
): Promise<void> {
|
|
const username = req.user.userName;
|
|
try {
|
|
await this.mediaService.deleteFile(filename, username);
|
|
} catch (e) {
|
|
if (e instanceof PermissionError) {
|
|
throw new UnauthorizedException(e.message);
|
|
}
|
|
if (e instanceof NotInDBError) {
|
|
throw new NotFoundException(e.message);
|
|
}
|
|
if (e instanceof MediaBackendError) {
|
|
throw new InternalServerErrorException(
|
|
'There was an error in the media backend',
|
|
);
|
|
}
|
|
throw e;
|
|
}
|
|
}
|
|
}
|