oa_based/src/modules/tools/upload/upload.service.ts

54 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-02-28 08:32:35 +08:00
import { MultipartFile } from '@fastify/multipart'
import { Injectable, NotFoundException } from '@nestjs/common'
import { InjectRepository } from '@nestjs/typeorm'
import { isNil } from 'lodash'
import { Repository } from 'typeorm'
import { Storage } from '~/modules/tools/storage/storage.entity'
import {
fileRename,
getExtname,
getFilePath,
getFileType,
getSize,
saveLocalFile,
} from '~/utils/file.util'
@Injectable()
export class UploadService {
constructor(
@InjectRepository(Storage)
private storageRepository: Repository<Storage>,
) {}
/**
*
*/
async saveFile(file: MultipartFile, userId: number): Promise<string> {
if (isNil(file))
throw new NotFoundException('Have not any file to upload!')
const fileName = file.filename
const size = getSize(file.file.bytesRead)
const extName = getExtname(fileName)
const type = getFileType(extName)
const name = fileRename(fileName)
const path = getFilePath(name)
saveLocalFile(await file.toBuffer(), name)
await this.storageRepository.save({
name,
fileName,
extName,
path,
type,
size,
userId,
})
return path
}
}