Compare commits
2 Commits
f217fbb6fb
...
a2ffc084d8
| Author | SHA1 | Date |
|---|---|---|
|
|
a2ffc084d8 | |
|
|
aeb39d1479 |
|
|
@ -40,7 +40,7 @@ public class EdFileInfoController {
|
|||
return edFileInfoService.delete(id);
|
||||
}
|
||||
|
||||
// @RequiredPermission(value = FilePermission.VIEW)
|
||||
@RequiredPermission(value = FilePermission.VIEW)
|
||||
@RequestMapping("info")
|
||||
public ElectromagneticResult<?> info(@RequestBody FileInfoQueryDTO fileInfoQueryDTO) {
|
||||
return edFileInfoService.queryEdFileInfo(fileInfoQueryDTO);
|
||||
|
|
|
|||
|
|
@ -412,7 +412,7 @@ public class EdFileInfoServiceImpl extends ServiceImpl<EdFileInfoMapper, EdFileI
|
|||
AES aes = SecureUtil.aes(FILE_SEC_PASSWD.getBytes());
|
||||
try (
|
||||
InputStream inputStream = Files.newInputStream(Paths.get(destColibPath));
|
||||
OutputStream outputStream = Files.newOutputStream(Paths.get(zipDirPath));
|
||||
OutputStream outputStream = Files.newOutputStream(Paths.get(zipDirPath))
|
||||
) {
|
||||
aes.decrypt(inputStream, outputStream, true);
|
||||
} catch (Exception e) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue