localhost_oa_based/src/modules/netdisk/manager/manage.controller.ts

136 lines
4.4 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { Body, Controller, Get, Post, Query } from '@nestjs/common';
import { ApiOkResponse, ApiOperation, ApiTags } from '@nestjs/swagger';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { BusinessException } from '~/common/exceptions/biz.exception';
import { ErrorEnum } from '~/constants/error-code.constant';
import { AuthUser } from '~/modules/auth/decorators/auth-user.decorator';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { Perm, definePermission } from '~/modules/auth/decorators/permission.decorator';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { checkIsDemoMode } from '~/utils';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { SFileInfoDetail, SFileList, UploadToken } from './manage.class';
2024-02-28 08:32:35 +08:00
import {
DeleteDto,
FileInfoDto,
FileOpDto,
GetFileListDto,
MKDirDto,
MarkFileDto,
RenameDto,
2024-02-28 17:02:46 +08:00
} from './manage.dto';
import { NetDiskManageService } from './manage.service';
2024-02-28 08:32:35 +08:00
export const permissions = definePermission('netdisk:manage', {
LIST: 'list',
CREATE: 'create',
INFO: 'info',
UPDATE: 'update',
DELETE: 'delete',
MKDIR: 'mkdir',
TOKEN: 'token',
MARK: 'mark',
DOWNLOAD: 'download',
RENAME: 'rename',
CUT: 'cut',
COPY: 'copy',
2024-02-28 17:02:46 +08:00
} as const);
2024-02-28 08:32:35 +08:00
@ApiTags('NetDiskManage - 网盘管理模块')
@Controller('manage')
export class NetDiskManageController {
constructor(private manageService: NetDiskManageService) {}
@Get('list')
@ApiOperation({ summary: '获取文件列表' })
@ApiOkResponse({ type: SFileList })
@Perm(permissions.LIST)
async list(@Query() dto: GetFileListDto): Promise<SFileList> {
2024-02-28 17:02:46 +08:00
return await this.manageService.getFileList(dto.path, dto.marker, dto.key);
2024-02-28 08:32:35 +08:00
}
@Post('mkdir')
@ApiOperation({ summary: '创建文件夹,支持多级' })
@Perm(permissions.MKDIR)
async mkdir(@Body() dto: MKDirDto): Promise<void> {
2024-02-28 17:02:46 +08:00
const result = await this.manageService.checkFileExist(`${dto.path}${dto.dirName}/`);
if (result) throw new BusinessException(ErrorEnum.OSS_FILE_OR_DIR_EXIST);
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
await this.manageService.createDir(`${dto.path}${dto.dirName}`);
2024-02-28 08:32:35 +08:00
}
@Get('token')
@ApiOperation({ summary: '获取上传Token无Token前端无法上传' })
@ApiOkResponse({ type: UploadToken })
@Perm(permissions.TOKEN)
async token(@AuthUser() user: IAuthUser): Promise<UploadToken> {
2024-02-28 17:02:46 +08:00
checkIsDemoMode();
2024-02-28 08:32:35 +08:00
return {
token: this.manageService.createUploadToken(`${user.uid}`),
2024-02-28 17:02:46 +08:00
};
2024-02-28 08:32:35 +08:00
}
@Get('info')
@ApiOperation({ summary: '获取文件详细信息' })
@ApiOkResponse({ type: SFileInfoDetail })
@Perm(permissions.INFO)
async info(@Query() dto: FileInfoDto): Promise<SFileInfoDetail> {
2024-02-28 17:02:46 +08:00
return await this.manageService.getFileInfo(dto.name, dto.path);
2024-02-28 08:32:35 +08:00
}
@Post('mark')
@ApiOperation({ summary: '添加文件备注' })
@Perm(permissions.MARK)
async mark(@Body() dto: MarkFileDto): Promise<void> {
await this.manageService.changeFileHeaders(dto.name, dto.path, {
mark: dto.mark,
2024-02-28 17:02:46 +08:00
});
2024-02-28 08:32:35 +08:00
}
@Get('download')
@ApiOperation({ summary: '获取下载链接,不支持下载文件夹' })
@ApiOkResponse({ type: String })
@Perm(permissions.DOWNLOAD)
async download(@Query() dto: FileInfoDto): Promise<string> {
2024-02-28 17:02:46 +08:00
return this.manageService.getDownloadLink(`${dto.path}${dto.name}`);
2024-02-28 08:32:35 +08:00
}
@Post('rename')
@ApiOperation({ summary: '重命名文件或文件夹' })
@Perm(permissions.RENAME)
async rename(@Body() dto: RenameDto): Promise<void> {
const result = await this.manageService.checkFileExist(
2024-02-28 17:02:46 +08:00
`${dto.path}${dto.toName}${dto.type === 'dir' ? '/' : ''}`
);
if (result) throw new BusinessException(ErrorEnum.OSS_FILE_OR_DIR_EXIST);
if (dto.type === 'file') await this.manageService.renameFile(dto.path, dto.name, dto.toName);
else await this.manageService.renameDir(dto.path, dto.name, dto.toName);
2024-02-28 08:32:35 +08:00
}
@Post('delete')
@ApiOperation({ summary: '删除文件或文件夹' })
@Perm(permissions.DELETE)
async delete(@Body() dto: DeleteDto): Promise<void> {
2024-02-28 17:02:46 +08:00
await this.manageService.deleteMultiFileOrDir(dto.files, dto.path);
2024-02-28 08:32:35 +08:00
}
@Post('cut')
@ApiOperation({ summary: '剪切文件或文件夹,支持批量' })
@Perm(permissions.CUT)
async cut(@Body() dto: FileOpDto): Promise<void> {
if (dto.originPath === dto.toPath)
2024-02-28 17:02:46 +08:00
throw new BusinessException(ErrorEnum.OSS_NO_OPERATION_REQUIRED);
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
await this.manageService.moveMultiFileOrDir(dto.files, dto.originPath, dto.toPath);
2024-02-28 08:32:35 +08:00
}
@Post('copy')
@ApiOperation({ summary: '复制文件或文件夹,支持批量' })
@Perm(permissions.COPY)
async copy(@Body() dto: FileOpDto): Promise<void> {
2024-02-28 17:02:46 +08:00
await this.manageService.copyMultiFileOrDir(dto.files, dto.originPath, dto.toPath);
2024-02-28 08:32:35 +08:00
}
}