From c96b05ab329834d16ec2aad7a35e66dfa02511c1 Mon Sep 17 00:00:00 2001
From: jiaosong <jiaosong6760@dingtalk.com>
Date: 星期三, 18 十月 2023 11:40:34 +0800
Subject: [PATCH] #获取正常还车

---
 server/services/src/main/java/com/doumee/service/business/impl/DeviceSubscribeServiceImpl.java |  115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 110 insertions(+), 5 deletions(-)

diff --git a/server/services/src/main/java/com/doumee/service/business/impl/DeviceSubscribeServiceImpl.java b/server/services/src/main/java/com/doumee/service/business/impl/DeviceSubscribeServiceImpl.java
index 6da2187..1538fa1 100644
--- a/server/services/src/main/java/com/doumee/service/business/impl/DeviceSubscribeServiceImpl.java
+++ b/server/services/src/main/java/com/doumee/service/business/impl/DeviceSubscribeServiceImpl.java
@@ -1,14 +1,25 @@
 package com.doumee.service.business.impl;
 
+import com.alibaba.fastjson.JSONObject;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.doumee.core.constants.Constants;
+import com.doumee.core.exception.BusinessException;
+import com.doumee.core.mqtt.config.MqttConfig;
 import com.doumee.core.mqtt.service.MqttToolService;
+import com.doumee.dao.business.MqttLogMapper;
+import com.doumee.dao.business.model.Bikes;
 import com.doumee.dao.business.model.Locks;
-import com.doumee.service.business.DeviceService;
-import com.doumee.service.business.DeviceSubcribeService;
+import com.doumee.dao.business.model.MemberRides;
+import com.doumee.dao.business.model.MqttLog;
+import com.doumee.service.business.*;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.Lazy;
 import org.springframework.stereotype.Service;
 
 import javax.annotation.PostConstruct;
+import java.util.Date;
 
 /**
  *  涓庣‖浠跺鎺ユ湇鍔�
@@ -16,10 +27,104 @@
  * @date 2023/10/09 18:06
  */
 @Service
+@Slf4j
 public class DeviceSubscribeServiceImpl implements DeviceSubcribeService {
-
+    @Autowired
+    @Lazy
+    MemberRidesService memberRidesService;
+    @Autowired
+    private MqttLogMapper mqttLogMapper;
+    @Autowired
+    private MqttConfig mqttConfig;
     @Override
-    public void listener(String param,String topic) {
-        System.out.println("mqtt娑堟伅璁㈤槄==================="+param);
+    public void listener(String msgId,String param,String topic) {
+       log.info("mqtt娑堟伅璁㈤槄==================="+param);
+        String info = Constants.MqttTopic.sub_lockInfo.substring(Constants.MqttTopic.sub_lockInfo.lastIndexOf("/")+1) ;
+        String closeLock = Constants.MqttTopic.sub_closeLock.substring(Constants.MqttTopic.sub_closeLock.lastIndexOf("/")+1) ;
+        if(topic.indexOf(Constants.MqttTopic.topic_index)!=0
+                ||topic.split("/").length < 5
+                || (!StringUtils.contains(topic, info)
+                   &&!StringUtils.contains(topic,closeLock))){
+            log.error("mqtt娑堟伅璁㈤槄===========鏃犳晥鏁版嵁========"+param);
+            return;
+        }
+
+        String[] ss = topic.split("/");
+        String siteid =  ss[2];//绔欑偣缂栫爜
+        String lockid =  ss[3];//閿佸ご缂栫爜
+        if(StringUtils.isBlank(siteid)||StringUtils.isBlank(lockid)){
+            //濡傛灉閿佸ご缂栫爜涓虹┖
+            log.error("mqtt娑堟伅璁㈤槄==============鏃犳晥鏁版嵁====="+param);
+            return;
+        }
+        MqttLog mqttLog = new MqttLog();
+        mqttLog.setMsgId(msgId);
+        int msgCount  =mqttLogMapper.selectCount(new QueryWrapper<MqttLog>().lambda().eq(MqttLog::getMsgId, msgId));
+        if(msgCount>0){
+            log.error("mqtt娑堟伅璁㈤槄==============宸叉秷璐规暟鎹�====="+param);
+            return;
+        }
+        String logId =Constants.getUUID();
+        String logInfo = "";
+        int result =0;
+        try {
+            if(StringUtils.contains(topic, info)){
+                //濡傛灉閿佸ご淇℃伅涓婃姤
+                Locks locks  = JSONObject.parseObject(param, Locks.class);
+                locks.setSiteId(siteid);
+                locks.setCode(lockid);
+                locks.setInfo(logId);
+                result = memberRidesService.mqttLockInfoEvent(locks);
+                logInfo = "mqtt娑堟伅璁㈤槄閿佸ご淇℃伅";
+                log.info("mqtt娑堟伅璁㈤槄=========閿佷俊鎭�==========鎴愬姛");
+            }
+            if(StringUtils.contains(topic, closeLock)){
+                //濡傛灉杩樿溅涓婃姤
+                JSONObject pjson  = JSONObject.parseObject(param);
+                MemberRides bikes = new MemberRides();
+                bikes.setBikeCode(pjson.getString("bikeCode"));
+                bikes.setBackLockId( lockid);
+                bikes.setBackSiteId( siteid);
+                bikes.setBackCommondId(logId);
+                result = memberRidesService.mqttCloseBikeEvent(bikes);
+                logInfo = "mqtt娑堟伅璁㈤槄杩樿溅娑堟伅";
+                log.info("mqtt娑堟伅璁㈤槄=========杩樿溅==========鎴愬姛");
+            }
+        }catch (BusinessException e){
+            e.printStackTrace();
+            logInfo = "mqtt娑堟伅璁㈤槄閿欒==="+e.getMessage();
+            result =1;
+        }catch (Exception e){
+            e.printStackTrace();
+            logInfo = "mqtt娑堟伅璁㈤槄寮傚父==="+e.getMessage();
+            result =1;
+        }
+        createSubLog(topic,msgId,logId,result,param,logInfo);
+    }
+    private void createSubLog(String topic, String msgId,String logId, int result,String param,String info) {
+        MqttLog log = new MqttLog();
+        log.setId(logId);
+        log.setCreateDate(new Date());
+        log.setResult(result);
+        log.setTopic(topic);
+        log.setClientid(mqttConfig.getClientid());
+        log.setHostInfo(mqttConfig.getHost());
+        log.setInfo(JSONObject.toJSONString(mqttConfig));
+        log.setType(Constants.ZERO);
+        log.setMsg(param);
+        log.setInfo(info);
+        log.setIsdeleted(Constants.ZERO);
+        log.setMsgId(msgId);
+        mqttLogMapper.insert(log);
+    }
+    private String getLockIdFromTopic(String topic) {
+        String[] ss = topic.split("/");
+        if(ss.length>2){
+            return  ss[ss.length-2];
+        }
+        return null;
+//        topic = topic.substring(0,topic.lastIndexOf("/"));
+//        String id =  topic.substring( topic.lastIndexOf("/")+1);
+//        return  id;
     }
 }

--
Gitblit v1.9.3