Commit 9d66a9a5 by YG8999

mqtt服务修改

parent 02ef6b7c
...@@ -140,6 +140,7 @@ spring: ...@@ -140,6 +140,7 @@ spring:
password: "Mqtt@2023cj" password: "Mqtt@2023cj"
defaultTopic: "ydlink/#" defaultTopic: "ydlink/#"
completion-timeout: 15000 completion-timeout: 15000
is-subscribe-topic: true
# token配置 # token配置
token: token:
......
...@@ -137,6 +137,8 @@ spring: ...@@ -137,6 +137,8 @@ spring:
password: "Mqtt@2023cj" password: "Mqtt@2023cj"
defaultTopic: "ydlink/#" defaultTopic: "ydlink/#"
completion-timeout: 15000 completion-timeout: 15000
is-subscribe-topic: true
# token配置 # token配置
token: token:
# 令牌自定义标识 # 令牌自定义标识
......
...@@ -137,6 +137,7 @@ spring: ...@@ -137,6 +137,7 @@ spring:
password: "Mqtt@2023cj" password: "Mqtt@2023cj"
defaultTopic: "ydlink/#" defaultTopic: "ydlink/#"
completion-timeout: 15000 completion-timeout: 15000
is-subscribe-topic: true
# token配置 # token配置
token: token:
......
package share.common.enums;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
/**
* @className: share.common.enums.MqttOpenType
* @description: 设备类型
* @author: lwj
* @create: 2023-11-04 15:35
*/
public enum DeviceType {
DEVICE_CCEE("CCEE", "门锁"),
DEVICE_0001("0001", "取电开关"),
DEVICE_GATEWAY("7", "网关")
;
private String code;
private String name;
DeviceType(String code, String name) {
this.code = code;
this.name = name;
}
//code转字符串1,2,3,4
public static String getCodeList() {
List<String> list = Arrays.stream(DeviceType.values()).map(DeviceType::getCode).collect(Collectors.toList());
return String.join(",", list);
}
public String getCode() {
return code;
}
public String getName() {
return name;
}
}
...@@ -56,6 +56,9 @@ public class MqttConfig { ...@@ -56,6 +56,9 @@ public class MqttConfig {
@Value("${spring.mqtt.defaultTopic}") @Value("${spring.mqtt.defaultTopic}")
private String defaultTopic; private String defaultTopic;
@Value("${spring.mqtt.is-subscribe-topic}")
private boolean isSubscribeTopic;
private SnowFlakeUtil snowFlakeUtil = new SnowFlakeUtil(0, 0); private SnowFlakeUtil snowFlakeUtil = new SnowFlakeUtil(0, 0);
@Resource @Resource
...@@ -163,8 +166,11 @@ public class MqttConfig { ...@@ -163,8 +166,11 @@ public class MqttConfig {
@ServiceActivator(inputChannel = "mqttInputChannel") @ServiceActivator(inputChannel = "mqttInputChannel")
public MessageHandler handler() { public MessageHandler handler() {
return message -> { return message -> {
// mqtt订阅消息由share_admin服务端处理
if (isSubscribeTopic) {
//接收到的消息由这个处理器进行处理 //接收到的消息由这个处理器进行处理
mqttMessageHandler.handleMessage(message); mqttMessageHandler.handleMessage(message);
}
}; };
} }
......
...@@ -62,6 +62,7 @@ ...@@ -62,6 +62,7 @@
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<version>2.5.15</version> <version>2.5.15</version>
<configuration> <configuration>
<includeSystemScope>true</includeSystemScope>
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
</configuration> </configuration>
<executions> <executions>
......
package share.web.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import share.common.enums.DeviceType;
import share.framework.mqtt.MqttGatewayComponent;
import share.system.domain.Device;
import share.system.domain.SRoom;
import share.system.domain.vo.DeviceParamVo;
import share.system.domain.vo.MqttxVo;
import share.system.mapper.DeviceMapper;
import share.system.mapper.SRoomMapper;
import share.system.service.DeviceLogService;
import share.system.service.MqttxService;
import java.util.List;
/**
* @className: share.web.service.DeviceOpService
* @description: 设备操作接口
* @author: lwj
* @create: 2023-11-09 10:38
*/
@Service
public class DeviceOpService {
@Autowired
private MqttGatewayComponent mqttGatewayComponent;
@Autowired
private SRoomMapper roomMapper;
@Autowired
private MqttxService mqttxService;
@Autowired
private DeviceLogService deviceLogService;
@Autowired
private DeviceMapper deviceMapper;
/**
* 小程序订单开门
* @param deviceParam
*/
public void openDoor(DeviceParamVo deviceParam) {
SRoom room = roomMapper.selectSRoomById(deviceParam.getRoomId());
if (room != null) {
Device param = new Device();
param.setRoomId(room.getId());
List<Device> list = deviceMapper.selectDeviceList(param);
for (Device device : list) {
if (DeviceType.DEVICE_CCEE.getCode().equals(device.getDevType())) {
// 门锁
this.deviceOpInit(device.getDevId(), deviceParam.getPhone(), "10");
}
if (DeviceType.DEVICE_0001.getCode().equals(device.getDevType())) {
// 取电开关
this.deviceOpInit(device.getDevId(), deviceParam.getPhone(), "20");
}
}
}
}
/**
* 小程序订单开门
* @param roomId 房间id
* @param phone 操作用户
*/
public void openDoor(Long roomId, String phone) {
SRoom room = roomMapper.selectSRoomById(roomId);
if (room != null) {
Device param = new Device();
param.setRoomId(room.getId());
List<Device> list = deviceMapper.selectDeviceList(param);
for (Device device : list) {
if (DeviceType.DEVICE_CCEE.getCode().equals(device.getDevType())) {
// 门锁
this.deviceOpInit(device.getDevId(), phone, "10");
}
if (DeviceType.DEVICE_0001.getCode().equals(device.getDevType())) {
// 取电开关
this.deviceOpInit(device.getDevId(), phone, "20");
}
}
}
}
private void deviceOpInit(String devId, String phone, String opType) {
// 获取mqtt的topic、payload
MqttxVo mqttxVo = mqttxService.openOrCloseDevice(devId, phone, opType);
// 发送mqtt消息
mqttGatewayComponent.sendToMqtt(mqttxVo.getTopic(), 0, mqttxVo.getPayload());
// 写日志记录
deviceLogService.addDeviceLog(mqttxVo);
}
}
...@@ -9,7 +9,7 @@ ruoyi: ...@@ -9,7 +9,7 @@ ruoyi:
# 实例演示开关 # 实例演示开关
demoEnabled: true demoEnabled: true
# 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath) # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
profile: /home/gxpt/uploadPath profile: /Users/workspace/uploadPath
# 获取ip地址开关 # 获取ip地址开关
addressEnabled: false addressEnabled: false
# 验证码类型 math 数字计算 char 字符验证 # 验证码类型 math 数字计算 char 字符验证
...@@ -60,9 +60,9 @@ spring: ...@@ -60,9 +60,9 @@ spring:
druid: druid:
# 主库数据源 # 主库数据源
master: master:
url: jdbc:mysql://127.0.0.1:3306/xzdb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8 url: jdbc:mysql://129.211.46.84:3306/sharedb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8
username: root username: root
password: 1234 password: whxz2019
# 从库数据源 # 从库数据源
slave: slave:
# 从数据源开关/默认关闭 # 从数据源开关/默认关闭
...@@ -122,7 +122,7 @@ spring: ...@@ -122,7 +122,7 @@ spring:
# 数据库索引 # 数据库索引
database: 0 database: 0
# 密码 # 密码
password: password: 123456
# 连接超时时间 # 连接超时时间
timeout: 10s timeout: 10s
lettuce: lettuce:
...@@ -142,6 +142,7 @@ spring: ...@@ -142,6 +142,7 @@ spring:
password: "Mqtt@2023cj" password: "Mqtt@2023cj"
defaultTopic: "ydlink/#" defaultTopic: "ydlink/#"
completion-timeout: 15000 completion-timeout: 15000
is-subscribe-topic: false
# token配置 # token配置
token: token:
......
...@@ -142,6 +142,7 @@ spring: ...@@ -142,6 +142,7 @@ spring:
password: "Mqtt@2023cj" password: "Mqtt@2023cj"
defaultTopic: "ydlink/#" defaultTopic: "ydlink/#"
completion-timeout: 15000 completion-timeout: 15000
is-subscribe-topic: false
# token配置 # token配置
token: token:
......
...@@ -142,6 +142,7 @@ spring: ...@@ -142,6 +142,7 @@ spring:
password: "Mqtt@2023cj" password: "Mqtt@2023cj"
defaultTopic: "ydlink/#" defaultTopic: "ydlink/#"
completion-timeout: 15000 completion-timeout: 15000
is-subscribe-topic: false
# token配置 # token配置
token: token:
......
...@@ -25,4 +25,7 @@ public class DeviceParamVo extends BaseEntity { ...@@ -25,4 +25,7 @@ public class DeviceParamVo extends BaseEntity {
/** 操作用户 */ /** 操作用户 */
private String phone; private String phone;
/** 开门房间ID */
private Long roomId;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment