MinioService.java 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. package com.keystar.plane.inspection.service.impl;
  2. import cn.hutool.core.collection.CollUtil;
  3. import cn.hutool.core.map.MapUtil;
  4. import cn.hutool.core.text.CharSequenceUtil;
  5. import cn.hutool.core.util.StrUtil;
  6. import com.alibaba.fastjson.JSONObject;
  7. import com.keystar.plane.inspection.config.MinIoConfig;
  8. import com.keystar.plane.inspection.utils.FileUtil;
  9. import com.keystar.plane.inspection.vo.UploadVo;
  10. import io.minio.MinioClient;
  11. import io.minio.Result;
  12. import io.minio.errors.*;
  13. import io.minio.messages.Item;
  14. import lombok.extern.slf4j.Slf4j;
  15. import org.springframework.beans.factory.annotation.Autowired;
  16. import org.springframework.beans.factory.annotation.Value;
  17. import org.springframework.cloud.context.config.annotation.RefreshScope;
  18. import org.springframework.stereotype.Service;
  19. import org.springframework.web.bind.annotation.GetMapping;
  20. import org.xmlpull.v1.XmlPullParserException;
  21. import javax.annotation.Resource;
  22. import javax.servlet.http.HttpServletResponse;
  23. import javax.validation.Valid;
  24. import javax.validation.constraints.NotNull;
  25. import java.io.IOException;
  26. import java.io.InputStream;
  27. import java.io.OutputStream;
  28. import java.net.URLEncoder;
  29. import java.security.InvalidKeyException;
  30. import java.security.NoSuchAlgorithmException;
  31. import java.util.ArrayList;
  32. import java.util.HashMap;
  33. import java.util.List;
  34. import java.util.stream.Collectors;
  35. @Service
  36. @Slf4j
  37. @RefreshScope
  38. public class MinioService {
  39. @Resource
  40. private MinioClient minioClient;
  41. @Autowired
  42. private MinIoConfig minIoConfig;
  43. @Value("${report.bucket}")
  44. private String bucket;
  45. /**
  46. * 判断 bucket是否存在
  47. * @param bucketName
  48. * @return
  49. */
  50. public boolean bucketExists(String bucketName){
  51. try {
  52. return minioClient.bucketExists(bucketName);
  53. } catch (Exception e) {
  54. log.error("判断 bucket是否存在,出现错误:{}",e);
  55. return false;
  56. }
  57. }
  58. /**
  59. * 根据 bucket 获取该桶下边的所有目录
  60. * @param bucketName
  61. */
  62. public List<Item> listObject(String bucketName){
  63. try {
  64. Iterable<Result<Item>> myObjects = minioClient.listObjects(bucketName);
  65. return getItems(myObjects);
  66. } catch (Exception e) {
  67. log.error("获取桶{}的文件内容,出现错误:{}",bucketName,e);
  68. return null;
  69. }
  70. }
  71. private List<Item> getItems(Iterable<Result<Item>> myObjects) throws InvalidBucketNameException, NoSuchAlgorithmException, InsufficientDataException, IOException, InvalidKeyException, NoResponseException, XmlPullParserException, ErrorResponseException, InternalException {
  72. List<Item> items = CollUtil.newArrayList();
  73. for (Result<Item> result : myObjects) {
  74. items.add(result.get());
  75. }
  76. return items;
  77. }
  78. /**
  79. * 获取文件流
  80. * @param bucketName
  81. * @param objectName
  82. * @return
  83. */
  84. public InputStream getObject(String bucketName, String objectName) {
  85. try {
  86. return minioClient.getObject(bucketName,objectName);
  87. } catch (Exception e) {
  88. log.error("获取桶{}的{}文件内容,出现错误:{}",bucketName,objectName,e);
  89. }
  90. return null;
  91. }
  92. /***
  93. * 根据 bucket 和 prefix 获取该所有目录和文件
  94. * @param bucketName
  95. * @param prefix
  96. * @param recursive
  97. * @param useVersion1
  98. * @return
  99. */
  100. public List<Item> listObject(String bucketName,String prefix, boolean recursive, boolean useVersion1){
  101. try {
  102. Iterable<Result<Item>> myObjects = minioClient.listObjects(bucketName,prefix,recursive,useVersion1);
  103. return getItems(myObjects);
  104. } catch (Exception e) {
  105. log.error("获取桶{}的文件内容,出现错误:{}",bucketName,e);
  106. return null;
  107. }
  108. }
  109. /**
  110. * 获取最新架次的红外图片地址
  111. **/
  112. public List<String> getInfraredPhoto(){
  113. List<String> infraredList = new ArrayList<>();
  114. // 获取最新航线
  115. List<Item> missions = this.listObject(minIoConfig.getBucketName(), minIoConfig.getResourcePath(), false, false);
  116. String missionId = missions.get(missions.size()-1).objectName();
  117. // 获取最新架次
  118. List<Item> records = this.listObject(minIoConfig.getBucketName(), missionId, false, false);
  119. String recordsId = records.get(records.size()-1).objectName();
  120. // 获取红外图片
  121. List<Item> photos = this.listObject(minIoConfig.getBucketName(), recordsId, false, false);
  122. List<String> photoList = photos.stream().map(Item::objectName).collect(Collectors.toList());
  123. for ( String name : photoList){
  124. if (name.contains("THRM.jpg") || name.contains("T.jpg")){
  125. infraredList.add(name);
  126. }
  127. }
  128. return infraredList;
  129. }
  130. /**
  131. * 文件上传
  132. */
  133. public void putObject(String bucketName, String objectName, InputStream stream,String contentType) {
  134. if (!bucketExists(bucketName)){
  135. log.error("bucket不存在");
  136. }
  137. try {
  138. minioClient.putObject(bucketName,objectName,stream,contentType);
  139. } catch (Exception e) {
  140. log.error("上传文件{}到桶{},出现错误:{}",objectName,bucketName,e);
  141. }
  142. }
  143. public void upload(@Valid UploadVo uploadVo) {
  144. log.info("上传图片信息,fileSize:{},fileName:{}", uploadVo.getFile().getSize(), uploadVo.getFile().getOriginalFilename());
  145. if (StrUtil.isEmpty(uploadVo.getResourceName())){
  146. uploadVo.setResourceName(uploadVo.getFile().getOriginalFilename());
  147. }
  148. try {
  149. this.putObject(uploadVo.getBucketName(),uploadVo.getPath(),uploadVo.getFile().getInputStream(),uploadVo.getFile().getContentType());
  150. }catch (IOException ioe){
  151. log.error("获取图片流失败:{}",ioe);
  152. }
  153. }
  154. /**
  155. * 下载文件
  156. */
  157. public String download(String resourceFullName, HttpServletResponse response) throws IOException {
  158. OutputStream outputStream = response.getOutputStream();
  159. // 拿到文件路径
  160. String[] strings = StrUtil.splitToArray(resourceFullName, "/");
  161. String url = strings[1];
  162. // 获取文件对象
  163. InputStream inputStream = this.getObject(url, StrUtil.sub(resourceFullName,
  164. CharSequenceUtil.length(strings[1])+2, CharSequenceUtil.length(resourceFullName)));
  165. try {
  166. response.reset();
  167. response.setHeader("Content-Disposition", "attachment;filename=" +
  168. URLEncoder.encode(resourceFullName.substring(resourceFullName.lastIndexOf("/") + 1), "UTF-8"));
  169. response.setContentType("application/octet-stream");
  170. response.setCharacterEncoding("UTF-8");
  171. // 输出文件
  172. outputStream.write(FileUtil.readInputStream(inputStream));
  173. outputStream.flush();
  174. } catch (Exception ex) {
  175. log.error("下载文件:{}",ex);
  176. return "下载文件失败";
  177. }finally {
  178. // 关闭输出流
  179. outputStream.close();
  180. }
  181. return "下载文件成功";
  182. }
  183. /**
  184. * 获取最新的巡检报告的地址
  185. **/
  186. public String getReportPath(){
  187. // 获取bucket中的报告地址
  188. List<Item> dateList = this.listObject(bucket);
  189. String date = dateList.get(dateList.size()-1).objectName();
  190. // 拼接地址
  191. return "/" + bucket + "/" + date;
  192. }
  193. }