LicenceServiceImpl.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package com.shcd.service.impl;
  2. import cn.hutool.core.lang.UUID;
  3. import cn.hutool.crypto.asymmetric.RSA;
  4. import com.shcd.constant.CommonKeys;
  5. import com.shcd.entity.LicenceDTO;
  6. import com.shcd.service.LicenceService;
  7. import com.shcd.util.LicenceJsonUtil;
  8. import com.shcd.util.NativeSecurityUtil;
  9. import org.slf4j.Logger;
  10. import org.slf4j.LoggerFactory;
  11. import org.springframework.beans.BeanUtils;
  12. import org.springframework.beans.factory.annotation.Value;
  13. import org.springframework.stereotype.Service;
  14. import org.springframework.util.StringUtils;
  15. import javax.servlet.http.HttpServletResponse;
  16. import java.io.BufferedOutputStream;
  17. import java.io.IOException;
  18. import java.nio.file.Files;
  19. import java.nio.file.Path;
  20. import java.nio.file.Paths;
  21. import java.nio.file.StandardOpenOption;
  22. /**
  23. * @author 上海城地
  24. * @description 证书生成核心实现类
  25. * @create 2024-04-13 15:55
  26. * @since 1.0.0
  27. */
  28. @Service
  29. public class LicenceServiceImpl implements LicenceService {
  30. private static Logger log = LoggerFactory.getLogger(LicenceServiceImpl.class);
  31. /**
  32. * 创建证书 licence 内容
  33. *
  34. * @param dtoEntity
  35. * @return
  36. */
  37. @Override
  38. public LicenceDTO createLicence(LicenceDTO dtoEntity) {
  39. RSA rsa = new RSA();
  40. LicenceDTO entity = new LicenceDTO();
  41. //赋值相同属性
  42. BeanUtils.copyProperties(dtoEntity, entity);
  43. entity.setLicenceId(UUID.randomUUID().toString());
  44. //content 和 key 需要额外处理
  45. entity.setKey(new String(rsa.getPublicKey().getEncoded()));//把公钥放进去,否则客户端无法获取公钥,就无法解密
  46. //把实体转成字符串
  47. String json = LicenceJsonUtil.objectToStr(entity);
  48. //把整个字符串加密
  49. String content = NativeSecurityUtil.encryptByPrivateKey(json, new String(rsa.getPrivateKey().getEncoded()));
  50. //把加密后的字符串赋值给 content
  51. entity.setContent(content);
  52. return entity;
  53. }
  54. // /**
  55. // * 下载证书文件
  56. // *
  57. // * @param dtoEntity
  58. // * @param response
  59. // */
  60. // @Override
  61. // public void downLoadLicence(LicenceDTO dtoEntity, HttpServletResponse response) {
  62. // LicenceDTO licenceEntity = createLicence(dtoEntity);
  63. // if (null == licenceEntity) {
  64. // log.error("证书的秘钥未配置!");
  65. // return;
  66. // }
  67. // //把实体转为字符串
  68. // String result = LicenceJsonUtil.objectToStr(licenceEntity);
  69. // BufferedOutputStream out = null;
  70. // try {
  71. // //证书文件名
  72. // String fileName = CommonKeys.CERTIFICATE_FILE;
  73. // response.setContentType("application/octet-stream");
  74. // response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
  75. // response.setCharacterEncoding("UTF-8");
  76. // out = new BufferedOutputStream(response.getOutputStream());
  77. // out.write(result.getBytes("UTF-8"));
  78. // out.flush();
  79. // } catch (IOException e) {
  80. // log.error(e.getMessage(), e);
  81. // } finally {
  82. // try {
  83. // if (out != null) {
  84. // out.close();
  85. // }
  86. // } catch (Exception e) {
  87. // log.error(e.getMessage(), e);
  88. // }
  89. // }
  90. // }
  91. /**
  92. * 本地生成证书
  93. *
  94. * @param dtoEntity
  95. * @return boolean
  96. * @author Hu
  97. * @date 2024/11/20 17:13
  98. */
  99. @Override
  100. public void locallyGenerated(LicenceDTO dtoEntity) {
  101. // 生成证书实体类
  102. LicenceDTO licenceEntity = createLicence(dtoEntity);
  103. //把实体转为字符串
  104. String result = LicenceJsonUtil.objectToStr(licenceEntity);
  105. saveLicenceToCertificate(dtoEntity, result);
  106. }
  107. /**
  108. * 保存证书文件到指定目录
  109. *
  110. * @param result
  111. */
  112. public void saveLicenceToCertificate(LicenceDTO dtoEntity, String result) {
  113. try {
  114. // 创建证书目录(如果尚未创建)
  115. Path directory = Paths.get(null == dtoEntity.getCertificateDirectory() ? CommonKeys.CERTIFICATE_DIRECTORY : dtoEntity.getCertificateDirectory());
  116. Files.createDirectories(directory);
  117. // 构建证书文件的完整路径
  118. Path filePath = directory.resolve(null == dtoEntity.getCertificateFile() ? CommonKeys.CERTIFICATE_FILE : dtoEntity.getCertificateFile());
  119. // 检查文件是否存在,存在则删掉
  120. Files.deleteIfExists(filePath);
  121. //创建文件(如果文件已经存在,此步骤可能会抛出 FileAlreadyExistsException)
  122. Files.createFile(filePath);
  123. //写入内容到文件,使用 StandardOpenOption.APPEND 可以追加内容而不是覆盖
  124. Files.write(filePath, result.getBytes("UTF-8"), StandardOpenOption.CREATE, StandardOpenOption.WRITE, StandardOpenOption.TRUNCATE_EXISTING);
  125. } catch (Exception e) {
  126. log.error(e.getMessage(), e);
  127. }
  128. }
  129. }