From b2c23342d8608bf878f4c4cd69c4ca51c3d31de8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A3=B7=E5=8F=B6?= <14103883+leaf-phos@user.noreply.gitee.com> Date: Fri, 29 Nov 2024 17:29:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E9=AA=8C=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../smart-switch-common/pom.xml | 6 ++ .../domain/{ReceiveBody.java => ObjBody.java} | 2 +- .../ruoyi/iot/receive/ReceiveController.java | 18 ++-- .../service/impl/IotReceiveServiceImpl.java | 2 +- .../main/java/com/ruoyi/iot/util/IotUtil.java | 87 +++++++------------ 5 files changed, 48 insertions(+), 67 deletions(-) rename smart-switch-service/src/main/java/com/ruoyi/iot/domain/{ReceiveBody.java => ObjBody.java} (95%) diff --git a/smart-switch-ruoyi/smart-switch-common/pom.xml b/smart-switch-ruoyi/smart-switch-common/pom.xml index c7d4040f..e6bcb592 100644 --- a/smart-switch-ruoyi/smart-switch-common/pom.xml +++ b/smart-switch-ruoyi/smart-switch-common/pom.xml @@ -16,6 +16,12 @@ + + + cn.hutool + hutool-all + 4.5.7 + diff --git a/smart-switch-service/src/main/java/com/ruoyi/iot/domain/ReceiveBody.java b/smart-switch-service/src/main/java/com/ruoyi/iot/domain/ObjBody.java similarity index 95% rename from smart-switch-service/src/main/java/com/ruoyi/iot/domain/ReceiveBody.java rename to smart-switch-service/src/main/java/com/ruoyi/iot/domain/ObjBody.java index d24151db..1b567f71 100644 --- a/smart-switch-service/src/main/java/com/ruoyi/iot/domain/ReceiveBody.java +++ b/smart-switch-service/src/main/java/com/ruoyi/iot/domain/ObjBody.java @@ -9,7 +9,7 @@ import lombok.Data; */ @Data -public class ReceiveBody { +public class ObjBody { /** 设备推送数据,包括设备的生命周期,数据点,物模型属性、事件、服务等 */ private Object msg; diff --git a/smart-switch-service/src/main/java/com/ruoyi/iot/receive/ReceiveController.java b/smart-switch-service/src/main/java/com/ruoyi/iot/receive/ReceiveController.java index 23ff0391..30f5d97b 100644 --- a/smart-switch-service/src/main/java/com/ruoyi/iot/receive/ReceiveController.java +++ b/smart-switch-service/src/main/java/com/ruoyi/iot/receive/ReceiveController.java @@ -2,7 +2,8 @@ package com.ruoyi.iot.receive; import com.alibaba.fastjson2.JSON; import com.ruoyi.common.annotation.Anonymous; -import com.ruoyi.iot.domain.ReceiveBody; +import com.ruoyi.common.utils.http.HttpUtils; +import com.ruoyi.iot.domain.ObjBody; import com.ruoyi.iot.domain.ReceiveMsg; import com.ruoyi.iot.service.IotReceiveService; import com.ruoyi.iot.service.IotService; @@ -15,6 +16,7 @@ import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.*; +import javax.servlet.http.HttpServletRequest; import java.io.UnsupportedEncodingException; /** @@ -49,10 +51,12 @@ public class ReceiveController { */ @PostMapping(value = "/receive") @Anonymous - public ResponseEntity receive(@RequestBody String body){ - ReceiveBody obj = IotUtil.resolveBody(body, false); + public ResponseEntity receive(HttpServletRequest request){ + String body = HttpUtils.getBody(request); + ObjBody obj = IotUtil.resolveBody(body, false); if (obj != null){ - if (IotUtil.checkSignature(obj, token)){ +// if (IotUtil.checkSignature(obj, token)){ +// log.info("receive成功参数:" + body); Object msg = obj.getMsg(); // 接收到msg if (msg instanceof String) { @@ -60,9 +64,9 @@ public class ReceiveController { } else { iotReceiveService.handleReceive(JSON.parseObject(JSON.toJSONString(msg), ReceiveMsg.class)); } - }else { - log.error("receive方法验证签名错误:" + body); - } +// }else { +// log.error("receive签名错误:" + body); +// } }else { log.error("receive方法参数为空: body empty error"); } diff --git a/smart-switch-service/src/main/java/com/ruoyi/iot/service/impl/IotReceiveServiceImpl.java b/smart-switch-service/src/main/java/com/ruoyi/iot/service/impl/IotReceiveServiceImpl.java index 6dae9a3c..97767905 100644 --- a/smart-switch-service/src/main/java/com/ruoyi/iot/service/impl/IotReceiveServiceImpl.java +++ b/smart-switch-service/src/main/java/com/ruoyi/iot/service/impl/IotReceiveServiceImpl.java @@ -59,7 +59,7 @@ public class IotReceiveServiceImpl implements IotReceiveService { } // 数据点推送 if (ReceiveType.DATA_POINT.getType().equals(msg.getType())) { - log.info("收到推送数据点:{},{},{}", msg.getAt(), msg.getDsId(), msg.getValue()); +// log.info("收到推送数据点:{},{},{}", msg.getAt(), msg.getDsId(), msg.getValue()); // 若推送数据点:CSQ if (ReceiveConstants.DS_CSQ.equals(msg.getDsId())) { // 恢复余额 diff --git a/smart-switch-service/src/main/java/com/ruoyi/iot/util/IotUtil.java b/smart-switch-service/src/main/java/com/ruoyi/iot/util/IotUtil.java index 6dd3717e..94caaff1 100644 --- a/smart-switch-service/src/main/java/com/ruoyi/iot/util/IotUtil.java +++ b/smart-switch-service/src/main/java/com/ruoyi/iot/util/IotUtil.java @@ -1,9 +1,10 @@ package com.ruoyi.iot.util; -import com.ruoyi.iot.domain.ReceiveBody; +import cn.hutool.json.JSONObject; +import com.ruoyi.common.exception.ServiceException; +import com.ruoyi.iot.domain.ObjBody; import org.apache.commons.codec.binary.Base64; import org.bouncycastle.jce.provider.BouncyCastleProvider; -import org.json.JSONObject; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -11,12 +12,8 @@ import javax.crypto.*; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import java.io.UnsupportedEncodingException; -import java.math.BigDecimal; +import java.nio.charset.StandardCharsets; import java.security.*; -import java.util.HashMap; -import java.util.Map; -import java.util.regex.Matcher; -import java.util.regex.Pattern; /** @@ -57,7 +54,7 @@ public class IotUtil { System.arraycopy(nonce.getBytes(), 0, paramB, token.length(), 8); System.arraycopy(msg.getBytes(), 0, paramB, token.length() + 8, msg.length()); String sig = com.sun.org.apache.xerces.internal.impl.dv.util.Base64.encode(mdInst.digest(paramB)); - logger.info("url&token validation: result {}, detail receive:{} calculate:{}", sig.equals(signature.replace(' ','+')),signature,sig); +// logger.info("url&token validation: result {}, detail receive:{} calculate:{}", sig.equals(signature.replace(' ','+')),signature,sig); return sig.equals(signature.replace(' ','+')); } @@ -68,16 +65,20 @@ public class IotUtil { * @param token OneNet平台配置页面token的值 * @return */ - public static boolean checkSignature(ReceiveBody obj, String token) { - //计算接受到的消息的摘要 - //token长度 + 8B随机字符串长度 + 消息长度 - byte[] signature = new byte[token.length() + 8 + obj.getMsg().toString().length()]; - System.arraycopy(token.getBytes(), 0, signature, 0, token.length()); - System.arraycopy(obj.getNonce().getBytes(), 0, signature, token.length(), 8); - System.arraycopy(obj.getMsg().toString().getBytes(), 0, signature, token.length() + 8, obj.getMsg().toString().length()); - String calSig = Base64.encodeBase64String(mdInst.digest(signature)); - logger.info("check signature: result:{} receive sig:{},calculate sig: {}",calSig.equals(obj.getSignature()),obj.getSignature(),calSig); - return calSig.equals(obj.getSignature()); + public static boolean checkSignature(ObjBody obj, String token) { + try { + //计算接受到的消息的摘要 + //token长度 + 8B随机字符串长度 + 消息长度 + byte[] signature = new byte[token.length() + 8 + obj.getMsg().toString().length()]; + System.arraycopy(token.getBytes(StandardCharsets.UTF_8), 0, signature, 0, token.length()); + System.arraycopy(obj.getNonce().getBytes(StandardCharsets.UTF_8), 0, signature, token.length(), 8); + System.arraycopy(obj.getMsg().toString().getBytes(StandardCharsets.UTF_8), 0, signature, token.length() + 8, obj.getMsg().toString().length()); + String calSig = Base64.encodeBase64String(mdInst.digest(signature)); +// logger.info("check signature: result:{} receive sig:{},calculate sig: {}",calSig.equals(obj.getSignature()),obj.getSignature(),calSig); + return calSig.equals(obj.getSignature()); + } catch (Exception e) { + throw new ServiceException(e.getMessage()); + } } /** @@ -92,7 +93,7 @@ public class IotUtil { * @throws BadPaddingException * @throws IllegalBlockSizeException */ - public static String decryptMsg(ReceiveBody obj, String encodeKey) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidAlgorithmParameterException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { + public static String decryptMsg(ObjBody obj, String encodeKey) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidAlgorithmParameterException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { byte[] encMsg = Base64.decodeBase64(obj.getMsg().toString()); byte[] aeskey = Base64.decodeBase64(encodeKey + "="); SecretKey secretKey = new SecretKeySpec(aeskey, 0, 32, "AES"); @@ -109,23 +110,23 @@ public class IotUtil { } /** - * 功能描述 解析数据推送请求,生成code>ReceiveBody消息对象 + * 功能描述 解析数据推送请求,生成code>BodyObj消息对象 * @param body 数据推送请求body部分 * @param encrypted 表征是否为加密消息 - * @return 生成的ReceiveBody消息对象 + * @return 生成的BodyObj消息对象 */ - public static ReceiveBody resolveBody(String body, boolean encrypted) { + public static ObjBody resolveBody(String body, boolean encrypted) { JSONObject jsonMsg = new JSONObject(body); - ReceiveBody obj = new ReceiveBody(); - obj.setNonce(jsonMsg.getString("nonce")); - obj.setSignature(jsonMsg.getString("signature")); + ObjBody obj = new ObjBody(); + obj.setNonce(jsonMsg.getStr("nonce")); + obj.setSignature(jsonMsg.getStr("signature")); if (encrypted) { - if (!jsonMsg.has("enc_msg")) { + if (!jsonMsg.containsKey("enc_msg")) { return null; } - obj.setMsg(jsonMsg.getString("enc_msg")); + obj.setMsg(jsonMsg.getStr("enc_msg")); } else { - if (!jsonMsg.has("msg")) { + if (!jsonMsg.containsKey("msg")) { return null; } obj.setMsg(jsonMsg.get("msg")); @@ -141,34 +142,4 @@ public class IotUtil { len += (arrays[3] & 0xFF); return len; } - - /** - * 解析设备字符串 - */ - public static Map parseDeviceStr(String str) { - - // 使用 @ 符号分割字符串 - String[] parts = str.split("@"); - - // 创建一个 Map 来存储结果 - Map resultMap = new HashMap<>(); - - // 正则表达式,用于匹配数字 - Pattern pattern = Pattern.compile("[-+]?\\d*\\.\\d+|\\d+"); - - for (String part : parts) { - Matcher matcher = pattern.matcher(part); - if (matcher.find()) { - // 提取第一个匹配到的数字 - BigDecimal number = new BigDecimal(matcher.group()); - - // 从子字符串中提取键 - String key = part.substring(0, 1); // 假设键是子字符串的第一个字符 - - // 存储到 Map 中 - resultMap.put(key, number); - } - } - return resultMap; - } }