|
@@ -2,6 +2,10 @@ package com.usky.gateway.service.mqtt.control;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
+import com.usky.gateway.domain.GatewayDeviceConfig;
|
|
|
+import com.usky.gateway.mapper.GatewayDeviceConfigMapper;
|
|
|
import com.usky.gateway.service.config.mqtt.MqttOutConfig;
|
|
|
import com.usky.gateway.service.config.udp.UdpBaseConfig;
|
|
|
import com.usky.gateway.service.mqtt.MqttStrategy;
|
|
@@ -13,6 +17,7 @@ import lombok.Data;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
+import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -24,11 +29,11 @@ import java.util.Map;
|
|
|
@Configuration
|
|
|
@Data
|
|
|
public class control implements MqttStrategy {
|
|
|
- @Value("${udp.deviceIp}")
|
|
|
- private String deviceIp;
|
|
|
-
|
|
|
- @Value("${udp.sendingPort}")
|
|
|
- private Integer sendingPort;
|
|
|
+// @Value("${udp.deviceIp}")
|
|
|
+// private String deviceIp;
|
|
|
+//
|
|
|
+// @Value("${udp.sendingPort}")
|
|
|
+// private Integer sendingPort;
|
|
|
|
|
|
@Autowired
|
|
|
private UdpUtil udpUtil;
|
|
@@ -37,42 +42,62 @@ public class control implements MqttStrategy {
|
|
|
@Resource
|
|
|
private MqttOutConfig.MqttGateway mqttGateway;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private GatewayDeviceConfigMapper gatewayDeviceConfigMapper;
|
|
|
+
|
|
|
//处理下发命令消息,下发命令控制设备
|
|
|
public String disposeMessage(MqttBaseVO mqttBaseVO) {
|
|
|
-// Map map_data = JsonUtils.fromJson(mqttBaseVO.getData().toString(), Map.class);
|
|
|
+ String[] topics = mqttBaseVO.getTopic().split("/");
|
|
|
+ String productCode = topics[1];
|
|
|
JSONObject obj_data = JSONObject.parseObject(mqttBaseVO.getData().toString());
|
|
|
Integer commandId = Integer.parseInt(obj_data.get("id").toString());
|
|
|
Object params = JSONObject.toJSONString(obj_data.get("params"));
|
|
|
JSONObject params_data = JSON.parseObject(params.toString());
|
|
|
- Integer deviceId = Integer.parseInt(params_data.getString("device_id"));
|
|
|
+ String deviceId = params_data.getString("deviceId");
|
|
|
+ String commandCode = params_data.getString("commandCode");
|
|
|
+ String commandValue = params_data.getString("commandValue");
|
|
|
|
|
|
//开门 17 40 00 00 E0 F4 4D 0D 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
|
|
- byte[] deviceByte = byteUtil.toLH(deviceId);
|
|
|
- byte[] requestBytes = new byte[] { 0x17, 0x40, 0x00, 0x00, deviceByte[0], deviceByte[1], deviceByte[2], deviceByte[3], 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
|
|
- byteUtil.printBytes(requestBytes);
|
|
|
- String responseData = udpUtil.sendUDPRequest(this.getDeviceIp(), this.getSendingPort(), requestBytes);
|
|
|
-
|
|
|
- //推送下发命令响应mqtt
|
|
|
- JSONObject jsonObject = new JSONObject();
|
|
|
- byte[] responseByte = responseData.getBytes(Charset.forName("ISO-8859-1")); //"US-ASCII"
|
|
|
- byteUtil.printBytes(responseByte);
|
|
|
-
|
|
|
- if(responseByte[8] == 0x01){
|
|
|
- jsonObject.put("result","success");
|
|
|
-
|
|
|
- }else{
|
|
|
- JSONObject obj1 = new JSONObject();
|
|
|
- obj1.put("code",-1);
|
|
|
- obj1.put("message","open failed");
|
|
|
- jsonObject.put("error",obj1);
|
|
|
-
|
|
|
+ if(commandCode.equals("door_onoff")){
|
|
|
+ //通过查询db文件获取对应udpIp udpPort 目标设备id 门号
|
|
|
+ LambdaQueryWrapper<GatewayDeviceConfig> queryWrapper = Wrappers.lambdaQuery();
|
|
|
+ queryWrapper.select(GatewayDeviceConfig::getIp,GatewayDeviceConfig::getPort,GatewayDeviceConfig::getParam1,GatewayDeviceConfig::getParam2)
|
|
|
+ .eq(GatewayDeviceConfig::getProductCode,productCode)
|
|
|
+ .eq(GatewayDeviceConfig::getDeviceId,deviceId);
|
|
|
+ GatewayDeviceConfig one = gatewayDeviceConfigMapper.selectOne(queryWrapper);
|
|
|
+ if(one != null){
|
|
|
+ String devId = one.getParam1();
|
|
|
+ byte[] deviceByte = byteUtil.toLH(Integer.parseInt(devId));
|
|
|
+ int doorNum = Integer.parseInt(one.getParam2());
|
|
|
+ byte bDoorNum = (byte)doorNum;
|
|
|
+ byte[] requestBytes = new byte[] { 0x17, 0x40, 0x00, 0x00, deviceByte[0], deviceByte[1], deviceByte[2], deviceByte[3], bDoorNum, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
|
|
+ byteUtil.printBytes(requestBytes);
|
|
|
+ String responseData = udpUtil.sendUDPRequest(one.getIp(), Integer.parseInt(one.getPort()), requestBytes);
|
|
|
+
|
|
|
+ //推送下发命令响应mqtt
|
|
|
+ JSONObject jsonObject = new JSONObject();
|
|
|
+ byte[] responseByte = responseData.getBytes(Charset.forName("ISO-8859-1")); //"US-ASCII"
|
|
|
+ byteUtil.printBytes(responseByte);
|
|
|
+
|
|
|
+ if(responseByte[8] == 0x01){
|
|
|
+ jsonObject.put("result","success");
|
|
|
+
|
|
|
+ }else{
|
|
|
+ JSONObject obj1 = new JSONObject();
|
|
|
+ obj1.put("code",-1);
|
|
|
+ obj1.put("message","open failed");
|
|
|
+ jsonObject.put("error",obj1);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ jsonObject.put("timeStamp",System.currentTimeMillis());
|
|
|
+ jsonObject.put("id",commandId);
|
|
|
+
|
|
|
+ String res_topic = mqttBaseVO.getTopic().replace("control","controlResponse");
|
|
|
+ mqttGateway.sendToMqtt(res_topic,jsonObject.toJSONString());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- jsonObject.put("timeStamp",System.currentTimeMillis());
|
|
|
- jsonObject.put("id",commandId);
|
|
|
-
|
|
|
- String res_topic = mqttBaseVO.getTopic().replace("control","controlResponse");
|
|
|
- mqttGateway.sendToMqtt(res_topic,jsonObject.toJSONString());
|
|
|
|
|
|
return null;
|
|
|
}
|