|
@@ -2,6 +2,7 @@ package com.usky.transfer.service.impl;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.alibaba.nacos.shaded.com.google.protobuf.Internal;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
@@ -137,7 +138,7 @@ public class QueryInfluxdbDataServiceImpl extends AbstractCrudService<QueryInflu
|
|
|
String deviceId = tags.get("deviceId");
|
|
|
|
|
|
//判断上报数据对应产品是否注册,如未注册则为非法
|
|
|
- Map<String,ProductMapVO> productMapList = getProductMap();
|
|
|
+ Map<String,ProductMapVO> productMapList = dmpProductService.getProductMap();
|
|
|
if(!productMapList.containsKey(productCode)){
|
|
|
//通过查询数据库再确认下产品是否注册
|
|
|
LambdaQueryWrapper<DmpProduct> queryWrapper = Wrappers.lambdaQuery();
|
|
@@ -145,15 +146,17 @@ public class QueryInfluxdbDataServiceImpl extends AbstractCrudService<QueryInflu
|
|
|
.eq(DmpProduct::getProductCode,productCode);
|
|
|
DmpProduct one = dmpProductService.getOne(queryWrapper);
|
|
|
if(one == null){
|
|
|
- rec_map.put("code",201);
|
|
|
+ rec_map.put("code",201) ;
|
|
|
rec_map.put("message","产品未注册!");
|
|
|
log.info("产品未注册");
|
|
|
return rec_map;
|
|
|
+ }else{
|
|
|
+ dmpProductService.deleteProductCache();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- //判断上报数据设备是否已注册,未注册自动注册
|
|
|
- Map<String,DeviceMapVO> deviceMapList = getDeviceMap();
|
|
|
+ //判断上报数据设备是否已注册(要判断注册过的设备是不是属于本产品的),未注册自动注册
|
|
|
+ Map<String,DeviceMapVO> deviceMapList = dmpProductService.getDeviceMap();
|
|
|
if(!deviceMapList.containsKey(deviceId)){
|
|
|
DmpDevice dmpDeviceInfo = new DmpDevice();
|
|
|
ProductMapVO productMapVO = productMapList.get(productCode);
|
|
@@ -178,6 +181,41 @@ public class QueryInfluxdbDataServiceImpl extends AbstractCrudService<QueryInflu
|
|
|
dmpDeviceStatus.setLastOfflineTime(LocalDateTime.now());
|
|
|
dmpDeviceStatus.setProductCode(dmpDeviceInfo.getProductCode());
|
|
|
dmpDeviceStatusService.save(dmpDeviceStatus);
|
|
|
+
|
|
|
+ dmpProductService.deleteDeviceCache();
|
|
|
+ }else if(deviceMapList.containsKey(deviceId)){
|
|
|
+ LambdaQueryWrapper<DmpDevice> queryWrapper = Wrappers.lambdaQuery();
|
|
|
+ queryWrapper.eq(DmpDevice::getDeleteFlag,0)
|
|
|
+ .eq(DmpDevice::getProductCode,productCode)
|
|
|
+ .eq(DmpDevice::getDeviceId,deviceId);
|
|
|
+ DmpDevice one = dmpDeviceService.getOne(queryWrapper);
|
|
|
+ if(one == null){
|
|
|
+ DmpDevice dmpDeviceInfo = new DmpDevice();
|
|
|
+ ProductMapVO productMapVO = productMapList.get(productCode);
|
|
|
+ dmpDeviceInfo.setDeviceId(deviceId);
|
|
|
+ dmpDeviceInfo.setDeviceName("");
|
|
|
+ dmpDeviceInfo.setDeviceType(productMapVO.getDeviceType());
|
|
|
+ dmpDeviceInfo.setProductId(productMapVO.getProductId());
|
|
|
+ dmpDeviceInfo.setProductCode(productCode);
|
|
|
+ dmpDeviceInfo.setCreatedBy(productMapVO.getCreatedBy());
|
|
|
+ dmpDeviceInfo.setCreatedTime(LocalDateTime.now());
|
|
|
+ dmpDeviceInfo.setTenantId(productMapVO.getTenantId());
|
|
|
+ dmpDeviceInfo.setServiceStatus(1);
|
|
|
+ dmpDeviceInfo.setDeviceUuid(UUIDUtils.uuid());
|
|
|
+ dmpDeviceService.save(dmpDeviceInfo);
|
|
|
+
|
|
|
+ deviceUUId = dmpDeviceInfo.getDeviceUuid();
|
|
|
+
|
|
|
+ DmpDeviceStatus dmpDeviceStatus = new DmpDeviceStatus();
|
|
|
+ dmpDeviceStatus.setDeviceId(dmpDeviceInfo.getDeviceId());
|
|
|
+ dmpDeviceStatus.setProductId(dmpDeviceInfo.getProductId());
|
|
|
+ dmpDeviceStatus.setDeviceStatus(2);
|
|
|
+ dmpDeviceStatus.setLastOfflineTime(LocalDateTime.now());
|
|
|
+ dmpDeviceStatus.setProductCode(dmpDeviceInfo.getProductCode());
|
|
|
+ dmpDeviceStatusService.save(dmpDeviceStatus);
|
|
|
+
|
|
|
+ dmpProductService.deleteDeviceCache();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if(StringUtils.isBlank(deviceUUId)){
|
|
@@ -202,52 +240,4 @@ public class QueryInfluxdbDataServiceImpl extends AbstractCrudService<QueryInflu
|
|
|
return rec_map;
|
|
|
}
|
|
|
|
|
|
- @Cacheable(cacheNames = "productList",sync = true)
|
|
|
- public Map<String, ProductMapVO> getProductMap(){
|
|
|
- Map<String,ProductMapVO> productMap = new HashMap<>();
|
|
|
- LambdaQueryWrapper<DmpProduct> queryWrapper = Wrappers.lambdaQuery();
|
|
|
- queryWrapper.eq(DmpProduct::getDeleteFlag,0)
|
|
|
- .orderByDesc(DmpProduct::getId);
|
|
|
- List<DmpProduct> list = dmpProductService.list(queryWrapper);
|
|
|
- if(CollectionUtils.isNotEmpty(list)){
|
|
|
- for (int i = 0; i < list.size(); i++) {
|
|
|
- String productCode = list.get(i).getProductCode();
|
|
|
- ProductMapVO mapVO = new ProductMapVO();
|
|
|
- mapVO.setProductId(list.get(i).getId());
|
|
|
- mapVO.setProductCode(list.get(i).getProductCode());
|
|
|
- mapVO.setCreatedBy(list.get(i).getCreatedBy());
|
|
|
- mapVO.setTenantId(list.get(i).getTenantId());
|
|
|
- mapVO.setDeviceType(list.get(i).getDeviceType());
|
|
|
-
|
|
|
- productMap.put(productCode,mapVO);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- return productMap;
|
|
|
- }
|
|
|
-
|
|
|
- @Cacheable(cacheNames = "deviceList",sync = true)
|
|
|
- public Map<String, DeviceMapVO> getDeviceMap(){
|
|
|
- Map<String,DeviceMapVO> deviceMap = new HashMap<>();
|
|
|
- LambdaQueryWrapper<DmpDevice> queryWrapper = Wrappers.lambdaQuery();
|
|
|
- queryWrapper.eq(DmpDevice::getDeleteFlag,0)
|
|
|
- .orderByDesc(DmpDevice::getId);
|
|
|
- List<DmpDevice> list = dmpDeviceService.list(queryWrapper);
|
|
|
- if(CollectionUtils.isNotEmpty(list)){
|
|
|
- for (int i = 0; i < list.size(); i++) {
|
|
|
- String deviceId = list.get(i).getDeviceId();
|
|
|
- DeviceMapVO mapVO = new DeviceMapVO();
|
|
|
- mapVO.setProductCode(list.get(i).getProductCode());
|
|
|
- mapVO.setDeviceId(list.get(i).getDeviceId());
|
|
|
- mapVO.setDeviceUuid(list.get(i).getDeviceUuid());
|
|
|
- mapVO.setDeviceStatus(list.get(i).getServiceStatus());
|
|
|
-
|
|
|
- deviceMap.put(deviceId,mapVO);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return deviceMap;
|
|
|
- }
|
|
|
-
|
|
|
}
|