1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
| export class Controller { constructor(private readonly service: Service) {}
@Post('studentImg') @UseInterceptors( FileInterceptor('file', { storage: multer.diskStorage({ destination: (req, _, cb) => { const dir = join('/tmp', 'import', Utils.randomString(6)); fs.ensureDirSync(dir); cb(null, dir); }, filename: (_, file, cb) => { cb(null, file.originalname); }, }), fileFilter: (req, file, cb) => { if ( !['application/x-zip-compressed', 'application/zip'].includes( file.mimetype, ) || file.originalname.split('.').pop() !== 'zip' ) { cb( new HttpErrorResponse(ApiErrorCode.DATA_ERR, '仅支持zip压缩文件'), false, ); } else if (file.size === 0) { cb( new HttpErrorResponse(ApiErrorCode.DATA_ERR, '上传文件为空'), false, ); } else { cb(null, true); } }, limits: { fileSize: Conf.fileSizeLimit, }, }), ) async importStudentImg( @Body() body: ImportDto, @UploadedFile() file: Express.Multer.File, ) { if (!file) { throw new HttpErrorResponse( ApiErrorCode.DATA_ERR, '上传文件为空,请重新选择', ); } const preCheckRet = await this.service.preImportStudentImg( body.id, file, );
return { state: preCheckRet.isSuccess ? 1 : 0, message: preCheckRet.message, }; } }
export class Service { constructor(private readonly service: Service) { @Inject('REDIS_CLIENT') private readonly redisClient: Redis, } private randomStr = Utils.randomString(6);
async preImportStudentImg(id: string, file: Express.Multer.File) { const key = `import_img:${id}:${this.randomStr}`; const isProcessing = await this.redisClient.get(key);
if (isProcessing) { return { isSuccess: false, message: '上传失败', }; }
await this.redisClient.set(key, 1, 86400);
try { const zip = new AdmZip(file.path); zip.getEntries().forEach((entry) => { entry.entryName = iconv.decode(entry.rawEntryName, 'gbk'); }); zip.extractAllTo(file.destination);
const fileNames = await fs.readdir(file.destination);
this.handleData(xxx,yyy) .finally(async () => { await this.redisClient.del(key); await fs.remove(file.destination); });
return { isSuccess: true, message: '上传成功', }; } catch (error) { await this.redisClient.del(key); await fs.remove(file.destination); return { isSuccess: false, message: error.message, }; } } }
|