Browse Source

新增二维码下载接口

LinWuTai 1 year ago
parent
commit
cf46369695

+ 20 - 8
ruoyi-admin/src/main/java/com/ruoyi/asset/controller/TbLocationController.java

@@ -1,21 +1,23 @@
 package com.ruoyi.asset.controller;
 
+import java.sql.Array;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
 import java.util.List;
+import java.util.stream.Collectors;
 import javax.servlet.http.HttpServletResponse;
 
 import com.ruoyi.common.core.domain.TreeSelect;
+import com.ruoyi.common.utils.ServletUtils;
+import com.ruoyi.common.utils.file.Folder2ZipUtils;
+import com.ruoyi.common.utils.http.HttpHelper;
+import com.ruoyi.common.utils.http.HttpUtils;
 import io.swagger.v3.oas.annotations.Parameter;
 import org.springframework.http.MediaType;
 import org.springframework.security.access.prepost.PreAuthorize;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.PutMapping;
-import org.springframework.web.bind.annotation.DeleteMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 import com.ruoyi.common.annotation.Log;
 import com.ruoyi.common.core.controller.BaseController;
 import com.ruoyi.common.core.domain.AjaxResult;
@@ -128,4 +130,14 @@ public class TbLocationController extends BaseController
     public byte[] selectQrCode(@PathVariable("number") String locationNumber) {
         return tbLocationService.selectQrCodeByLocationNumber(locationNumber);
     }
+
+    /**
+     * 下载指定二维码
+     */
+    @PostMapping(value = "/download/code/{ids}")
+    public void downloadZip(@PathVariable Long[] ids, HttpServletResponse response) {
+        List<Long> idList = Arrays.stream(ids).collect(Collectors.toList());
+        String sourceName = tbLocationService.downloadQrCode(idList);
+        Folder2ZipUtils.zip(sourceName, response);
+    }
 }

+ 8 - 0
ruoyi-admin/src/main/java/com/ruoyi/asset/service/ITbLocationService.java

@@ -78,4 +78,12 @@ public interface ITbLocationService
      * @param locationNumber 位置编码
      */
     byte[] selectQrCodeByLocationNumber(String locationNumber);
+
+    /**
+     * 下载位置二维码
+     *
+     * @param locationIds 位置Id集合
+     * @return 临时资源路径
+     */
+    String downloadQrCode(List<Long> locationIds);
 }

+ 72 - 2
ruoyi-admin/src/main/java/com/ruoyi/asset/service/impl/TbLocationServiceImpl.java

@@ -2,6 +2,7 @@ package com.ruoyi.asset.service.impl;
 
 import java.io.File;
 import java.io.FileInputStream;
+import java.io.IOException;
 import java.util.ArrayList;
 import java.util.HashSet;
 import java.util.List;
@@ -12,6 +13,7 @@ import com.ruoyi.common.code.QrDTO;
 import com.ruoyi.common.core.domain.TreeSelect;
 import com.ruoyi.common.utils.DateUtils;
 import com.ruoyi.common.utils.SecurityUtils;
+import org.apache.commons.io.FileUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
@@ -229,13 +231,15 @@ public class TbLocationServiceImpl implements ITbLocationService
 
     private final String dataName = "/location/qrCodes";
 
+    private final String cacheName = "/location/cache";
+
     @Override
     public void createQrCodeDataByLocation(TbLocation tbLocation) {
         QrDTO qrDTO = new QrDTO();
         qrDTO.setName(tbLocation.getName());
         qrDTO.setValue(tbLocation.getNumber());
 
-        File file = new File(savePath + dataName + "/" + qrDTO.getValue() + ".png");
+        File file = new File(getFileUrl(qrDTO.getValue()));
         if (file.exists()) {
             return;
         }
@@ -248,7 +252,7 @@ public class TbLocationServiceImpl implements ITbLocationService
         if (location == null) {
             return null;
         }
-        String fileURL = savePath + dataName + "/" + locationNumber + ".png";
+        String fileURL = getFileUrl(locationNumber);
         File file = new File(fileURL);
         if (!file.exists()) {
             createQrCodeDataByLocation(location);
@@ -263,4 +267,70 @@ public class TbLocationServiceImpl implements ITbLocationService
         }
         return bytes;
     }
+
+    @Override
+    public String downloadQrCode(List<Long> locationIds) {
+        ArrayList<String> fileUrlList = new ArrayList<>();
+        for (Long locationId : locationIds) {
+            TbLocation location = tbLocationMapper.selectTbLocationById(locationId);
+            if (location == null) {
+                continue;
+            }
+            String fileUrl = getFileUrl(location.getNumber());
+            fileUrlList.add(fileUrl);
+        }
+
+        // 新建一个目录
+        String path = savePath + cacheName;
+        File file = new File(path);
+        if (file.exists()) {
+            // 清空文件夹
+            delete(path);
+        } else {
+            file.mkdir();
+        }
+
+        for (String fileUrl : fileUrlList) {
+            try {
+                FileUtils.copyFileToDirectory(new File(fileUrl), new File(path));
+            } catch (IOException e) {
+                e.printStackTrace();
+            }
+        }
+
+        return path;
+    }
+
+    public void delete(String path) {
+        // 为传进来的路径参数创建一个文件对象
+        File file = new File(path);
+        // 如果目标路径是一个文件,那么直接调用delete方法删除即可
+        // file.delete();
+        // 如果是一个目录,那么必须把该目录下的所有文件和子目录全部删除,才能删除该目标目录,这里要用到递归函数
+        // 创建一个files数组,用来存放目标目录下所有的文件和目录的file对象
+        File[] files;
+        // 将目标目录下所有的file对象存入files数组中
+        files = file.listFiles();
+        if (files == null) {
+            return;
+        }
+        // 循环遍历files数组
+        for(File temp : files){
+            // 判断该temp对象是否为文件对象
+            if (temp.isFile()) {
+                temp.delete();
+            }
+            // 判断该temp对象是否为目录对象
+            if (temp.isDirectory()) {
+                // 将该temp目录的路径给delete方法(自己),达到递归的目的
+                delete(temp.getAbsolutePath());
+                // 确保该temp目录下已被清空后,删除该temp目录
+                temp.delete();
+            }
+        }
+    }
+
+    private String getFileUrl(String number) {
+        return savePath + dataName + "/" + number + ".png";
+    }
 }

+ 1 - 1
ruoyi-common/src/main/java/com/ruoyi/common/filter/Folder2ZipUtils.java → ruoyi-common/src/main/java/com/ruoyi/common/utils/file/Folder2ZipUtils.java

@@ -1,4 +1,4 @@
-package com.ruoyi.common.filter;
+package com.ruoyi.common.utils.file;
 
 import javax.servlet.http.HttpServletResponse;
 import java.io.*;

+ 4 - 2
ruoyi-ui/package.json

@@ -49,6 +49,7 @@
     "js-cookie": "3.0.1",
     "jsencrypt": "3.0.0-rc.1",
     "nprogress": "0.2.0",
+    "qs": "^6.11.2",
     "quill": "1.3.7",
     "screenfull": "5.0.2",
     "sortablejs": "1.10.2",
@@ -61,6 +62,7 @@
     "vuex": "3.6.0"
   },
   "devDependencies": {
+    "@types/qs": "^6.9.7",
     "@vue/cli-plugin-babel": "4.4.6",
     "@vue/cli-plugin-eslint": "4.4.6",
     "@vue/cli-service": "4.4.6",
@@ -71,12 +73,12 @@
     "connect": "3.6.6",
     "eslint": "7.15.0",
     "eslint-plugin-vue": "7.2.0",
+    "less": "^3.0.4",
+    "less-loader": "^5.0.0",
     "lint-staged": "10.5.3",
     "runjs": "4.4.2",
     "sass": "1.32.13",
     "sass-loader": "10.1.1",
-    "less": "^3.0.4",
-    "less-loader": "^5.0.0",
     "script-ext-html-webpack-plugin": "2.1.5",
     "svg-sprite-loader": "5.1.1",
     "vue-template-compiler": "2.6.12"

+ 1 - 0
ruoyi-ui/src/api/asset/location.js

@@ -1,4 +1,5 @@
 import request from '@/utils/request'
+import qs from 'qs'
 
 // 查询所属位置列表
 export function listLocation(query) {

+ 12 - 1
ruoyi-ui/src/views/asset/location/index.vue

@@ -33,6 +33,9 @@
       <el-col :span="1.5">
         <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['asset:location:export']">导出</el-button>
       </el-col>
+      <el-col :span="1.5">
+        <el-button type="warning" plain icon="el-icon-download" size="mini" :disabled="multiple" @click="handleDownload" v-hasPermi="['asset:location:export']">下载</el-button>
+      </el-col>
       <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
     </el-row>
 
@@ -104,7 +107,7 @@
 </template>
 
 <script>
-import { getLocation, delLocation, addLocation, updateLocation, tree, treeSelect, selectQrCode } from '@/api/asset/location'
+import { getLocation, delLocation, addLocation, updateLocation, tree, treeSelect, selectQrCode, downloadCode } from '@/api/asset/location'
 import Treeselect from "@riophae/vue-treeselect";
 import "@riophae/vue-treeselect/dist/vue-treeselect.css";
 
@@ -279,6 +282,14 @@ export default {
         })
         .catch(() => {})
     },
+    handleDownload() {
+      // downloadCode(this.ids)
+      this.download(
+        '/asset/location/download/code/' + this.ids,
+        {},
+        `location_${new Date().getTime()}.zip`
+      )
+    },
     /** 导出按钮操作 */
     handleExport() {
       this.download(