InnerFileAndFolderWrapper.java 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.wtkj.wrapper;
  2. import com.wtkj.entity.InnerFileAndFolder;
  3. import com.wtkj.service.IInnerFileAndFolderService;
  4. import com.wtkj.vo.InnerFileAndFolderVO;
  5. import com.wutong.file.feign.IFileClient;
  6. import com.wutong.file.vo.FileVO;
  7. import org.springblade.core.mp.support.BaseEntityWrapper;
  8. import org.springblade.core.tool.api.R;
  9. import org.springblade.core.tool.utils.BeanUtil;
  10. import org.springblade.core.tool.utils.SpringUtil;
  11. import org.springblade.system.user.entity.User;
  12. import org.springblade.system.user.feign.IUserClient;
  13. import java.util.Objects;
  14. import static com.wtkj.config.MagicValue.ONE;
  15. import static com.wtkj.config.MagicValue.TWO;
  16. /**
  17. * @author Blizzard
  18. * @create at 2023-09-26 22:51
  19. * @describe
  20. */
  21. public class InnerFileAndFolderWrapper extends BaseEntityWrapper<InnerFileAndFolder, InnerFileAndFolderVO> {
  22. private static IUserClient userClient;
  23. private static IInnerFileAndFolderService innerFileAndFolderService;
  24. private static IFileClient fileClient;
  25. public static InnerFileAndFolderWrapper build() {
  26. userClient = SpringUtil.getBean(IUserClient.class);
  27. innerFileAndFolderService = SpringUtil.getBean(IInnerFileAndFolderService.class);
  28. fileClient = SpringUtil.getBean(IFileClient.class);
  29. return new InnerFileAndFolderWrapper();
  30. }
  31. @Override
  32. public InnerFileAndFolderVO entityVO(InnerFileAndFolder entity) {
  33. InnerFileAndFolderVO vo = Objects.requireNonNull(BeanUtil.copy(entity, InnerFileAndFolderVO.class));
  34. Long createUser = entity.getCreateUser();
  35. R<User> userR = userClient.userInfoById(createUser);
  36. if (userR.isSuccess()) {
  37. vo.setCreateUserName(userR.getData().getName());
  38. }
  39. //如果是文件夹 展示文件夹下文件数量 如果是文件 展示大小和url
  40. if (vo.getType() != null && vo.getType().equals(TWO)) {
  41. Integer fileAmount = innerFileAndFolderService.getFileAmountByFolderId(null, vo.getId());
  42. vo.setFileAmount(fileAmount);
  43. } else if (vo.getType() != null && vo.getType().equals(ONE)) {
  44. R<FileVO> rpc = fileClient.findById(vo.getBladeFileId());
  45. if (rpc.isSuccess()) {
  46. vo.setVolume(rpc.getData().getVolume());
  47. vo.setUrl(rpc.getData().getFilePath());
  48. vo.setSuffix(rpc.getData().getSuffix());
  49. }
  50. }
  51. return vo;
  52. }
  53. }