QrcodeServiceImpl.java 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package com.wtkj.service.impl;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.baomidou.mybatisplus.core.toolkit.IdWorker;
  4. import com.wtkj.entity.*;
  5. import com.wtkj.service.*;
  6. import com.wutong.file.entity.FileAttach;
  7. import com.wutong.file.feign.IFileClient;
  8. import io.seata.spring.annotation.GlobalTransactional;
  9. import lombok.AllArgsConstructor;
  10. import org.springblade.core.log.exception.ServiceException;
  11. import org.springblade.core.redis.cache.BladeRedis;
  12. import org.springblade.core.secure.utils.AuthUtil;
  13. import org.springblade.core.tool.api.R;
  14. import org.springblade.core.tool.utils.Func;
  15. import org.springblade.system.user.feign.IUserClient;
  16. import org.springframework.stereotype.Service;
  17. import org.springframework.transaction.annotation.Transactional;
  18. import java.time.Duration;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import static com.wtkj.config.NacosConfigValue.expireIn;
  22. import static com.wtkj.config.NacosConfigValue.scanCount;
  23. /**
  24. * @author Blizzard
  25. * @create at 2023-09-19 17:35
  26. * @describe
  27. */
  28. @AllArgsConstructor
  29. @Service
  30. public class QrcodeServiceImpl implements IQrcodeService {
  31. private final BladeRedis redis;
  32. private final IUserClient userClient;
  33. private final IProjectAuthService projectAuthService;
  34. private final IProjectGroupService projectGroupService;
  35. private final IContactOuterService contactOuterService;
  36. private final IProjectService projectService;
  37. private final IFileShareService fileShareService;
  38. private final IFileClient fileClient;
  39. @Override
  40. public JSONObject createQrcode() {
  41. JSONObject res = new JSONObject();
  42. String kv = IdWorker.getIdStr();
  43. Long userId = AuthUtil.getUserId();
  44. redis.setEx(kv, 0, Duration.ofSeconds(expireIn));
  45. res.put("qrcodeId", kv);
  46. res.put("createUser", userId);
  47. return res;
  48. }
  49. @Override
  50. @GlobalTransactional(rollbackFor = Exception.class)
  51. public boolean inviteToDept(Long createUser, Integer type, String qrcodeId, Long userId, Long deptId) {
  52. boolean flag = false;
  53. boolean exist = isExist(qrcodeId);
  54. //二维码可用前提下
  55. if (exist) {
  56. //1.绑定机构
  57. R<Boolean> rpc = userClient.bindUser(userId, deptId);
  58. //2.保存外部联系人
  59. if (rpc.isSuccess()) {
  60. flag = rpc.getData();
  61. }
  62. if (type == 2) {
  63. ContactOuter contact = new ContactOuter();
  64. contact.setRelatedDeptId(deptId);
  65. contact.setRelatedUserId(userId);
  66. contact.setUserId(createUser);
  67. contactOuterService.save(contact);
  68. }
  69. }
  70. return flag;
  71. }
  72. @Override
  73. @Transactional(rollbackFor = Exception.class)
  74. public boolean inviteToProject(String qrcodeId, Long deptId, Long projectId) {
  75. boolean flag = false;
  76. boolean exist = isExist(qrcodeId);
  77. if (exist) {
  78. //1.权限 2.联系人 3.项目组
  79. ProjectAuth auth = new ProjectAuth();
  80. auth.setProjectId(projectId);
  81. auth.setTopDept(deptId);
  82. auth.setUserDept(Func.firstLong(AuthUtil.getDeptId()));
  83. auth.setUserId(auth.getUserId());
  84. projectAuthService.save(auth);
  85. Project project = projectService.getById(projectId);
  86. if (project != null) {
  87. ProjectGroup group = new ProjectGroup();
  88. group.setProjectId(projectId);
  89. group.setInviteDept(project.getCompetentUnit());
  90. group.setBeInvitedDept(deptId);
  91. flag = projectGroupService.save(group);
  92. }
  93. }
  94. return flag;
  95. }
  96. @Override
  97. public JSONObject createGroupQrcode(Long projectId) {
  98. JSONObject res = new JSONObject();
  99. String kv = IdWorker.getIdStr();
  100. redis.setEx(kv, 0, Duration.ofSeconds(expireIn));
  101. res.put("createUser", AuthUtil.getUser());
  102. res.put("projectId", projectId);
  103. res.put("qrcodeId", kv);
  104. return res;
  105. }
  106. @Override
  107. public Long savaShare(FileShare share) {
  108. Long key = null;
  109. boolean save = fileShareService.save(share);
  110. if (save) {
  111. key = share.getId();
  112. redis.setEx(String.valueOf(key), 0, Duration.ofDays(3));
  113. }
  114. return key;
  115. }
  116. @Override
  117. public List<FileAttach> getShare(Long id) {
  118. List<FileAttach> res = new ArrayList<>();
  119. boolean available = isAvailable(String.valueOf(id));
  120. if (available) {
  121. FileShare byId = fileShareService.getById(id);
  122. if (byId != null) {
  123. String bladeFileIds = byId.getBladeFileIds();
  124. R<List<FileAttach>> rpc = fileClient.fileList(bladeFileIds);
  125. if (rpc.isSuccess()) {
  126. res = rpc.getData();
  127. }
  128. }
  129. }
  130. return res;
  131. }
  132. /**
  133. * 判断二维码是否有效和是否达到扫描上限
  134. */
  135. private boolean isExist(String key) {
  136. boolean flag = false;
  137. Boolean exists = redis.exists(key);
  138. //如果存在
  139. if (exists) {
  140. Long count = redis.incrBy(key, 1);
  141. if (count > scanCount) {
  142. throw new ServiceException("二维码只能扫描" + scanCount + "次数");
  143. } else {
  144. flag = true;
  145. }
  146. }
  147. return flag;
  148. }
  149. private boolean isAvailable(String key) {
  150. boolean flag = false;
  151. Boolean exists = redis.exists(key);
  152. //如果存在
  153. if (exists) {
  154. Long count = redis.incrBy(key, 1);
  155. if (count > 20) {
  156. throw new ServiceException("二维码只能扫描" + 20 + "次数");
  157. } else {
  158. flag = true;
  159. }
  160. }
  161. return flag;
  162. }
  163. }