TbLocationServiceImpl.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. package com.ruoyi.asset.service.impl;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.IOException;
  5. import java.util.ArrayList;
  6. import java.util.HashSet;
  7. import java.util.List;
  8. import cn.hutool.core.util.StrUtil;
  9. import com.ruoyi.common.code.QRCodeUtils;
  10. import com.ruoyi.common.code.QrDTO;
  11. import com.ruoyi.common.core.domain.TreeSelect;
  12. import com.ruoyi.common.utils.DateUtils;
  13. import com.ruoyi.common.utils.SecurityUtils;
  14. import org.apache.commons.io.FileUtils;
  15. import org.springframework.beans.factory.annotation.Autowired;
  16. import org.springframework.beans.factory.annotation.Value;
  17. import org.springframework.stereotype.Service;
  18. import com.ruoyi.asset.mapper.TbLocationMapper;
  19. import com.ruoyi.asset.domain.TbLocation;
  20. import com.ruoyi.asset.service.ITbLocationService;
  21. import javax.annotation.Resource;
  22. /**
  23. * 所属位置Service业务层处理
  24. *
  25. * @author 原动力
  26. * @date 2023-05-15
  27. */
  28. @Service
  29. public class TbLocationServiceImpl implements ITbLocationService
  30. {
  31. @Resource
  32. private TbLocationMapper tbLocationMapper;
  33. /**
  34. * 查询所属位置
  35. *
  36. * @param id 所属位置主键
  37. * @return 所属位置
  38. */
  39. @Override
  40. public TbLocation selectTbLocationById(Long id)
  41. {
  42. return tbLocationMapper.selectTbLocationById(id);
  43. }
  44. @Override
  45. public TbLocation selectTbLocationByNumber(String number) {
  46. return tbLocationMapper.selectTbLocationByNumber(number);
  47. }
  48. @Override
  49. public List<TbLocation> selectTbLocationListByNumbers(List<String> numbers) {
  50. return tbLocationMapper.selectTbLocationListByNumbers(numbers);
  51. }
  52. /**
  53. * 查询所属位置列表
  54. *
  55. * @param tbLocation 所属位置
  56. * @return 所属位置
  57. */
  58. @Override
  59. public List<TbLocation> selectTbLocationList(TbLocation tbLocation)
  60. {
  61. return tbLocationMapper.selectTbLocationList(tbLocation);
  62. }
  63. @Override
  64. public List<TbLocation> selectTree(TbLocation tbLocation) {
  65. List<TbLocation> locations;
  66. if (tbLocation.getParentId() == null) {
  67. tbLocation.setParentId(0L);
  68. }
  69. locations = selectTbLocationList(tbLocation);
  70. for (TbLocation location : locations) {
  71. List<TbLocation> tbLocations = buildChildren(location);
  72. location.setChildren(tbLocations);
  73. }
  74. return locations;
  75. }
  76. private List<TbLocation> buildChildren(TbLocation location) {
  77. TbLocation sunLocation = new TbLocation();
  78. sunLocation.setParentId(location.getId());
  79. List<TbLocation> locations = selectTbLocationList(sunLocation);
  80. if (locations != null && !locations.isEmpty()) {
  81. for (TbLocation tbLocation : locations) {
  82. List<TbLocation> tbLocations = buildChildren(tbLocation);
  83. tbLocation.setChildren(tbLocations);
  84. }
  85. }
  86. return locations;
  87. }
  88. @Override
  89. public List<TreeSelect> selectTreeSelect(Long id) {
  90. ArrayList<TreeSelect> treeSelects = new ArrayList<>();
  91. if (id != null) {
  92. TbLocation location = selectTbLocationById(id);
  93. TreeSelect treeSelect = new TreeSelect();
  94. treeSelect.setId(location.getId());
  95. treeSelect.setNumber(location.getNumber());
  96. treeSelect.setLabel(location.getName());
  97. treeSelects.add(treeSelect);
  98. } else {
  99. TbLocation location = new TbLocation();
  100. location.setParentId(0L);
  101. List<TbLocation> locations = selectTbLocationList(location);
  102. for (TbLocation tbLocation : locations) {
  103. TreeSelect treeSelect = new TreeSelect();
  104. treeSelect.setId(tbLocation.getId());
  105. treeSelect.setNumber(tbLocation.getNumber());
  106. treeSelect.setLabel(tbLocation.getName());
  107. treeSelects.add(treeSelect);
  108. }
  109. }
  110. for (TreeSelect treeSelect : treeSelects) {
  111. List<TreeSelect> treeSelectList = buildChildrenSelect(treeSelect);
  112. treeSelect.setChildren(treeSelectList);
  113. }
  114. return treeSelects;
  115. }
  116. private List<TreeSelect> buildChildrenSelect(TreeSelect treeSelect) {
  117. TbLocation sunLocation = new TbLocation();
  118. sunLocation.setParentId(treeSelect.getId());
  119. List<TbLocation> locations = selectTbLocationList(sunLocation);
  120. ArrayList<TreeSelect> treeSelects = new ArrayList<>();
  121. if (locations != null && !locations.isEmpty()) {
  122. for (TbLocation tbLocation : locations) {
  123. TreeSelect childrenTreeSelect = new TreeSelect();
  124. childrenTreeSelect.setId(tbLocation.getId());
  125. childrenTreeSelect.setNumber(tbLocation.getNumber());
  126. childrenTreeSelect.setLabel(tbLocation.getName());
  127. List<TreeSelect> treeSelectList = buildChildrenSelect(childrenTreeSelect);
  128. childrenTreeSelect.setChildren(treeSelectList);
  129. treeSelects.add(childrenTreeSelect);
  130. }
  131. }
  132. return treeSelects;
  133. }
  134. /**
  135. * 新增所属位置
  136. *
  137. * @param tbLocation 所属位置
  138. * @return 结果
  139. */
  140. @Override
  141. public int insertTbLocation(TbLocation tbLocation)
  142. {
  143. Long parentId = tbLocation.getParentId();
  144. if (parentId == null || parentId == 0) {
  145. tbLocation.setParentId(0L);
  146. } else {
  147. if (selectTbLocationById(parentId) == null) {
  148. return 0;
  149. }
  150. }
  151. String dateTimeId = DateUtils.dateTimeNow("yyyyMMddHHmmssSSS");
  152. String orderNumber = "WZ" + dateTimeId;
  153. tbLocation.setNumber(orderNumber);
  154. tbLocation.setCreateTime(DateUtils.getNowDate());
  155. tbLocation.setCreateBy(SecurityUtils.getUsername());
  156. int flag = tbLocationMapper.insertTbLocation(tbLocation);
  157. if (flag < 1) {
  158. return flag;
  159. }
  160. createQrCodeDataByLocation(tbLocation);
  161. String sequence = getSequence(parentId, tbLocation.getId());
  162. tbLocation.setSequence(sequence);
  163. return tbLocationMapper.updateTbLocation(tbLocation);
  164. }
  165. /**
  166. * 修改所属位置
  167. *
  168. * @param tbLocation 所属位置
  169. * @return 结果
  170. */
  171. @Override
  172. public int updateTbLocation(TbLocation tbLocation)
  173. {
  174. tbLocation.setUpdateTime(DateUtils.getNowDate());
  175. Long parentId = tbLocation.getParentId();
  176. String sequence = getSequence(parentId, tbLocation.getId());
  177. tbLocation.setSequence(sequence);
  178. int result = tbLocationMapper.updateTbLocation(tbLocation);
  179. if (result > 0) {
  180. String fileUrl = getFileUrl(tbLocation.getNumber());
  181. File file = new File(fileUrl);
  182. if (file.isFile() && file.exists()) {
  183. file.delete();
  184. }
  185. }
  186. return result;
  187. }
  188. private String getSequence(Long parentId, Long locationId) {
  189. HashSet<Long> set = new HashSet<>();
  190. while (parentId != null && parentId > 0) {
  191. TbLocation location = selectTbLocationById(parentId);
  192. set.add(location.getId());
  193. parentId = location.getParentId();
  194. }
  195. StringBuilder stringBuilder = new StringBuilder("");
  196. if (!set.isEmpty()) {
  197. for (Long id : set) {
  198. stringBuilder.append(id);
  199. stringBuilder.append(",");
  200. }
  201. }
  202. stringBuilder.append(locationId);
  203. return stringBuilder.toString();
  204. }
  205. /**
  206. * 批量删除所属位置
  207. *
  208. * @param ids 需要删除的所属位置主键
  209. * @return 结果
  210. */
  211. @Override
  212. public int deleteTbLocationByIds(Long[] ids)
  213. {
  214. return tbLocationMapper.deleteTbLocationByIds(ids);
  215. }
  216. /**
  217. * 删除所属位置信息
  218. *
  219. * @param id 所属位置主键
  220. * @return 结果
  221. */
  222. @Override
  223. public int deleteTbLocationById(Long id)
  224. {
  225. return tbLocationMapper.deleteTbLocationById(id);
  226. }
  227. @Value("${ruoyi.profile}")
  228. private String savePath;
  229. private final String dataName = "/location/qrCodes";
  230. private final String cacheName = "/location/qrCode";
  231. @Override
  232. public void createQrCodeDataByLocation(TbLocation tbLocation) {
  233. QrDTO qrDTO = new QrDTO();
  234. String sequence = tbLocation.getSequence();
  235. String[] ids = sequence.split(",");
  236. StringBuilder stringBuilder = new StringBuilder();
  237. for (int i = 0; i < ids.length; i++) {
  238. Long locationId = Long.valueOf(ids[i]);
  239. TbLocation location = tbLocationMapper.selectTbLocationById(locationId);
  240. if (location != null) {
  241. stringBuilder.append(location.getName());
  242. if (i < ids.length - 1) {
  243. stringBuilder.append("-");
  244. }
  245. }
  246. }
  247. qrDTO.setName(stringBuilder.toString());
  248. qrDTO.setValue(tbLocation.getNumber());
  249. File file = new File(getFileUrl(qrDTO.getValue()));
  250. if (file.exists()) {
  251. return;
  252. }
  253. QRCodeUtils.createCodeToFile(qrDTO, new File(savePath + dataName), qrDTO.getValue() + ".png");
  254. }
  255. @Override
  256. public byte[] selectQrCodeByLocationNumber(String locationNumber) {
  257. TbLocation location = tbLocationMapper.selectTbLocationByNumber(locationNumber);
  258. if (location == null) {
  259. return null;
  260. }
  261. String fileURL = getFileUrl(locationNumber);
  262. File file = new File(fileURL);
  263. if (!file.exists()) {
  264. createQrCodeDataByLocation(location);
  265. }
  266. byte[] bytes = new byte[0];
  267. try {
  268. FileInputStream fileInputStream = new FileInputStream(file);
  269. bytes = new byte[fileInputStream.available()];
  270. fileInputStream.read(bytes, 0, fileInputStream.available());
  271. } catch (Exception e) {
  272. e.printStackTrace();
  273. }
  274. return bytes;
  275. }
  276. @Override
  277. public String downloadQrCode(List<Long> locationIds) {
  278. ArrayList<String> fileUrlList = new ArrayList<>();
  279. for (Long locationId : locationIds) {
  280. TbLocation location = tbLocationMapper.selectTbLocationById(locationId);
  281. if (location == null) {
  282. continue;
  283. }
  284. String fileUrl = getFileUrl(location.getNumber());
  285. fileUrlList.add(fileUrl);
  286. }
  287. // 新建一个目录
  288. String path = savePath + cacheName;
  289. File file = new File(path);
  290. if (file.exists()) {
  291. // 清空文件夹
  292. delete(path);
  293. } else {
  294. file.mkdir();
  295. }
  296. for (String fileUrl : fileUrlList) {
  297. try {
  298. FileUtils.copyFileToDirectory(new File(fileUrl), new File(path));
  299. } catch (IOException e) {
  300. e.printStackTrace();
  301. }
  302. }
  303. return path;
  304. }
  305. public void delete(String path) {
  306. // 为传进来的路径参数创建一个文件对象
  307. File file = new File(path);
  308. // 如果目标路径是一个文件,那么直接调用delete方法删除即可
  309. // file.delete();
  310. // 如果是一个目录,那么必须把该目录下的所有文件和子目录全部删除,才能删除该目标目录,这里要用到递归函数
  311. // 创建一个files数组,用来存放目标目录下所有的文件和目录的file对象
  312. File[] files;
  313. // 将目标目录下所有的file对象存入files数组中
  314. files = file.listFiles();
  315. if (files == null) {
  316. return;
  317. }
  318. // 循环遍历files数组
  319. for(File temp : files){
  320. // 判断该temp对象是否为文件对象
  321. if (temp.isFile()) {
  322. temp.delete();
  323. }
  324. // 判断该temp对象是否为目录对象
  325. if (temp.isDirectory()) {
  326. // 将该temp目录的路径给delete方法(自己),达到递归的目的
  327. delete(temp.getAbsolutePath());
  328. // 确保该temp目录下已被清空后,删除该temp目录
  329. temp.delete();
  330. }
  331. }
  332. }
  333. private String getFileUrl(String number) {
  334. return savePath + dataName + "/" + number + ".png";
  335. }
  336. }