From 7c2578e6a5b451a4c1c129b678b23cdb36c1620f Mon Sep 17 00:00:00 2001 From: zhangjian <zhangjianrock@163.com> Date: 星期二, 11 七月 2023 11:52:26 +0800 Subject: [PATCH] 无人机转发接口 --- ard-work/src/main/java/com/ruoyi/device/uav/controller/ArdUavController.java | 92 +++------------------------------------------- 1 files changed, 6 insertions(+), 86 deletions(-) diff --git a/ard-work/src/main/java/com/ruoyi/device/uav/controller/ArdUavController.java b/ard-work/src/main/java/com/ruoyi/device/uav/controller/ArdUavController.java index feb37e3..07d1185 100644 --- a/ard-work/src/main/java/com/ruoyi/device/uav/controller/ArdUavController.java +++ b/ard-work/src/main/java/com/ruoyi/device/uav/controller/ArdUavController.java @@ -6,6 +6,7 @@ import com.fasterxml.jackson.databind.ObjectMapper; import com.github.pagehelper.util.StringUtil; import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.device.uav.service.UavService; import com.ruoyi.utils.forest.UavClient; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; @@ -38,115 +39,34 @@ @RequestMapping("/device/uav") @Api(tags = "鏃犱汉鏈哄閮ㄦ帴鍙�") public class ArdUavController extends BaseController { - public static final String USERNAME = "ardbailu";//鐢ㄦ埛鍚� - public static final String PASSWORD = "ardkj12345";//瀵嗙爜 - public static final String SALT = "0123456789012345";//鐩� - - //token 鐧婚檰鍚庢瘡娆¤姹�,鍦╤eader涓惡甯� - private String token;//鐧诲綍鎴愬姛杩斿洖鐨則oken - private ObjectMapper om = new ObjectMapper(); @Autowired - private UavClient uavClient; + private UavService uavService; @PostConstruct public void created() { - this.uavLogin(); + this.uavService.login(); } - public void uavLogin() { - String codedPassword = this.Encrypt(PASSWORD, SALT); - String body = "{\"username\":\"" + USERNAME + "\",\"password\":\"" + codedPassword + "\"}"; - try { - String res = uavClient.POST("login", null, body); - Map resMap = om.readValue(res, Map.class); - Map data = (Map) resMap.get("data"); - if (data != null) { - this.token = (String) data.get("access_token"); - } - } catch (ForestNetworkException e) { - e.printStackTrace(); - } catch (JsonMappingException e) { - throw new RuntimeException(e); - } catch (JsonProcessingException e) { - throw new RuntimeException(e); - } - } @GetMapping("/") @ApiOperation("鏃犱汉鏈篻et鎺ュ彛") public Object get(@RequestParam String url, @RequestParam String data) { - return doUavRequest(GET, url, data); + return this.uavService.doUavRequest(GET, url, data); } @PostMapping("/") @ApiOperation("鏃犱汉鏈簆ost鎺ュ彛") public Object post(@RequestParam String url, @RequestParam String data) { - return doUavRequest(POST, url, data); + return this.uavService.doUavRequest(POST, url, data); } @DeleteMapping("/") @ApiOperation("鏃犱汉鏈篸elete鎺ュ彛") public Object delete(@RequestParam String url, @RequestParam String data) { - return doUavRequest(DELETE, url, data); + return this.uavService.doUavRequest(DELETE, url, data); } - @Nullable - private String doUavRequest(HttpMethod method, String url, String data) { - String res = null; - Method requestMethod = null; - //鑾峰彇method - try { - requestMethod = UavClient.class.getMethod(method.name(), String.class, String.class, String.class); - } catch (NoSuchMethodException e) { - e.printStackTrace(); - } - //鎵цmethod - try { - res = (String) requestMethod.invoke(this.uavClient, url, this.token, data); - } catch (InvocationTargetException e) { - ForestNetworkException fe = (ForestNetworkException) e.getCause(); - if (fe.getStatusCode() == 401) {//token澶辨晥,閲嶆柊鐧诲綍 - this.uavLogin(); - } - try {//鍐嶆璋冪敤鎺ュ彛 - res = (String) requestMethod.invoke(this.uavClient, url, this.token, data); - } catch (IllegalAccessException ex) { - throw new RuntimeException(ex); - } catch (InvocationTargetException ex) { - throw new RuntimeException(ex); - } - } catch (IllegalAccessException e) { - throw new RuntimeException(e); - } - - return res; - } - - - public String Encrypt(String sSrc, String sKey) { - if (sKey == null) { - System.out.print("Key涓虹┖null"); - return null; - } - // 鍒ゆ柇Key鏄惁涓�16浣� - if (sKey.length() != 16) { - System.out.print("Key闀垮害涓嶆槸16浣�"); - return null; - } - byte[] encrypted = null; - try { - byte[] raw = sKey.getBytes("utf-8"); - SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES"); - Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");//"绠楁硶/妯″紡/琛ョ爜鏂瑰紡" - cipher.init(Cipher.ENCRYPT_MODE, skeySpec); - encrypted = cipher.doFinal(sSrc.getBytes("utf-8")); - } catch (Exception e) { - e.printStackTrace(); - ; - } - return new Base64().encodeToString(encrypted);//姝ゅ浣跨敤BASE64鍋氳浆鐮佸姛鑳斤紝鍚屾椂鑳借捣鍒�2娆″姞瀵嗙殑浣滅敤銆� - } } -- Gitblit v1.9.3