From 53d68348f21c33e846ba1dd9ef483468d13f3228 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期六, 02 九月 2023 15:11:01 +0800
Subject: [PATCH] 添加查询数简颜色表接口

---
 src/main/java/com/moon/server/controller/data/PublishController.java |  153 +++++++++++++++-----------------------------------
 1 files changed, 46 insertions(+), 107 deletions(-)

diff --git a/src/main/java/com/moon/server/controller/data/PublishController.java b/src/main/java/com/moon/server/controller/data/PublishController.java
index 706c24c..6ef2f9f 100644
--- a/src/main/java/com/moon/server/controller/data/PublishController.java
+++ b/src/main/java/com/moon/server/controller/data/PublishController.java
@@ -11,6 +11,7 @@
 import com.moon.server.helper.WebHelper;
 import com.moon.server.service.all.PermsService;
 import com.moon.server.service.data.PublishService;
+import com.moon.server.service.data.ShuJianService;
 import com.moon.server.service.sys.TokenService;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiImplicitParam;
@@ -20,6 +21,7 @@
 
 import javax.annotation.Resource;
 import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
 import java.util.Arrays;
 import java.util.List;
 
@@ -39,6 +41,9 @@
 
     @Resource
     PermsService permsService;
+
+    @Resource
+    ShuJianService shuJianService;
 
     @SysLog()
     @ApiOperation(value = "鍒嗛〉鏌ヨ鍏冩暟鎹�")
@@ -61,7 +66,7 @@
                 return fail("鏁版嵁绫诲埆涓虹┖", null);
             }
 
-            String types = getType(dircode, type);
+            String types = getType(type);
             int count = publishService.selectMetasByCount(depcode, dircode, verid, types, name);
             if (count == 0) {
                 return success(0, null);
@@ -78,55 +83,19 @@
     /**
      * 鑾峰彇绫诲瀷
      */
-    private String getType(String dircode, String type) throws Exception {
+    private String getType(String type) throws Exception {
         switch (type) {
             case "DOM":
-                return "type in ('tif', 'tiff', 'img')" + getFilter(dircode, type);
+                return "type in ('tif', 'tiff', 'img', 'jp2', 'jpg') and mata_type in (1, 3, 4, 5)";
             case "DEM":
-                return "type in ('tif', 'tiff')" + getFilter(dircode, type);
-            case "MPT":
-                return "type = 'mpt'";
-            case "3DML":
-                return "type = '3dml'";
-            case "CPT":
-                return "type = 'cpt'";
-            case "BIM":
-                return "type in ('ifc', 'fbx', 'rvt')";
-            case "LAS":
-                return "type in ('las', 'laz')";
-            case "OSGB":
-                return "type = 'osgb'";
+                return "type in ('tif', 'tiff', 'dem') and mata_type = 2";
+            case "Vector":
+                return "type in ('shp', 'gdb') and mata_type = 6";
+            case "Model":
+                return "type in ('ifc', 'gdb') and mata_type = 7";
             default:
                 throw new Exception("鏁版嵁绫诲瀷涓嶅尮閰�");
         }
-    }
-
-    /**
-     * 鑾峰彇杩囨护鏉′欢
-     */
-    private String getFilter(String dircode, String type) {
-        dircode = StringHelper.isEmpty(dircode) ? "" : StringHelper.getRightLike(dircode);
-
-        List<String> list = null;
-        switch (type) {
-            case "DOM":
-                list = publishService.selectCodesForDir(dircode, 0);
-                break;
-            case "DEM":
-                list = publishService.selectCodesForDir(dircode, 1);
-                break;
-            default:
-                break;
-        }
-        if (null == list || list.isEmpty()) {
-            return "";
-        }
-
-        for (int i = 0, c = list.size(); i < c; i++) {
-            list.set(i, "'" + list.get(i) + "'");
-        }
-
-        return " and dircode not in (" + StringHelper.join(list, ",") + ")";
     }
 
     @SysLog()
@@ -162,7 +131,7 @@
     /**
      * 鑾峰彇鍙戝竷绫诲瀷
      */
-    private String getPubType(String type) {
+    private String getPubType(String type) throws Exception {
         if (StringHelper.isEmpty(type)) {
             return null;
         }
@@ -172,20 +141,12 @@
                 return "type = 'DOM'";
             case "DEM":
                 return "type = 'DEM'";
-            case "MPT":
-                return "type = 'mpt'";
-            case "3DML":
-                return "type = '3dml'";
-            case "CPT":
-                return "type = 'cpt'";
-            case "BIM":
-                return "type in ('ifc', 'fbx', 'rvt')";
-            case "LAS":
-                return "type in ('las', 'laz')";
-            case "OSGB":
-                return "type = 'osgb'";
+            case "Vector":
+                return "type = 'Vector'";
+            case "Model":
+                return "type = 'Model'";
             default:
-                return null;
+                throw new Exception("鏁版嵁绫诲瀷涓嶅尮閰�");
         }
     }
 
@@ -206,28 +167,17 @@
     }
 
     @SysLog()
-    @ApiOperation(value = "鏌ヨLas鏂囦欢鍧愭爣绯籌D")
+    @ApiOperation(value = "鍒嗛〉鏌ヨ鏁扮畝鐨勯鑹茶〃")
     @ApiImplicitParams({
-            @ApiImplicitParam(name = "ids", value = "鍏冩暟鎹甀D闆嗗悎", dataType = "Integer[]", paramType = "query", example = "10483,10481,10456,10285")
+            @ApiImplicitParam(name = "pageSize", value = "姣忛〉鏉℃暟", dataType = "int", paramType = "query", example = "10"),
+            @ApiImplicitParam(name = "pageIndex", value = "鍒嗛〉鏁帮紙浠�1寮�濮嬶級", dataType = "int", paramType = "query", example = "1")
     })
-    @GetMapping(value = "/selectLasCs")
-    public ResponseMsg<Object> selectLasCs(Integer[] ids, HttpServletRequest req) {
-        try {
-            if (null == ids || ids.length == 0) {
-                return fail("鍏冩暟鎹甀D闆嗗悎涓嶈兘涓虹┖");
-            }
+    @GetMapping(value = "/selectColorTables")
+    public void selectColorTables(int pageSize, int pageIndex, HttpServletRequest req, HttpServletResponse res) {
+        pageIndex = Math.max(pageIndex, 1);
+        pageSize = Math.max(pageSize, 5);
 
-            PubEntity entity = new PubEntity();
-            entity.setIds(Arrays.asList(ids));
-            entity.setDircode("00");
-            entity.setToken(WebHelper.getToken(req));
-
-            List<Integer> list = publishService.selectLasCs(entity, "/Convert/ReadLasCs", req);
-
-            return success(list);
-        } catch (Exception ex) {
-            return fail(ex.getMessage(), null);
-        }
+        shuJianService.selectColorTables(pageSize, pageIndex, req, res);
     }
 
     @SysLog()
@@ -248,12 +198,11 @@
             UserEntity ue = tokenService.getCurrentUser(req);
             if (ue != null) {
                 entity.setUserId(ue.getId());
-                entity.setToken(WebHelper.getToken(req));
             }
 
-            permsService.clearLayerCache();
-            String method = getConvertMethod(entity.getType());
-            long count = publishService.postForPub(entity, method, req);
+            permsService.clearPermsCache();
+            // String method = getConvertMethod(entity.getType())
+            long count = publishService.postForPub(entity, "", req);
 
             return success(count);
         } catch (Exception ex) {
@@ -261,27 +210,20 @@
         }
     }
 
-    /**
-     * 鑾峰彇杞崲鏂规硶
-     */
-    private String getConvertMethod(String type) throws Exception {
-        switch (type) {
-            case "DOM":
-                return "/Convert/ToTiles";
-            case "DEM":
-                return "/Convert/ToTerra";
-            case "MPT":
-            case "3DML":
-            case "CPT":
-                return "/Convert/ToSG";
-            case "BIM":
-                return "/Convert/ToTileset";
-            case "LAS":
-                return "/Convert/ToLasByPy";
-            case "OSGB":
-                return "/Convert/ToOsgb";
-            default:
-                throw new Exception("鏁版嵁绫诲瀷涓嶅尮閰�");
+    @SysLog()
+    @ApiOperation(value = "鍙戝竷鏁扮畝鏈嶅姟")
+    @ApiImplicitParams({
+            @ApiImplicitParam(name = "entity", value = "瀹炰綋绫�", dataType = "PubEntity", paramType = "body")
+    })
+    public ResponseMsg<Object> insertShuJianService(@RequestBody PubEntity entity, HttpServletRequest req) {
+        try {
+            if (null == entity || null == entity.getIds() || entity.getIds().isEmpty()) {
+                return fail("瀹炰綋绫讳负绌烘垨鎵句笉鍒板厓鏁版嵁ID", 0);
+            }
+
+            return success(null);
+        } catch (Exception ex) {
+            return fail(ex.getMessage(), -1);
         }
     }
 
@@ -303,10 +245,7 @@
                 return fail("娌℃湁鎵惧埌瑕佸垹闄ょ殑鏁版嵁", -1);
             }
 
-            // publishService.deleteFiles(list)
-            permsService.clearLayerCache();
-            publishService.deleteFiles(ids, req);
-
+            permsService.clearPermsCache();
             int count = publishService.deletes(ids, req);
 
             return success(count);
@@ -329,7 +268,7 @@
                 entity.setUpdateUser(ue.getId());
             }
 
-            permsService.clearLayerCache();
+            permsService.clearPermsCache();
             int count = publishService.update(entity);
 
             return success(count);

--
Gitblit v1.9.3