| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.moral.api.entity.*; |
| | | import com.moral.api.mapper.*; |
| | | import com.moral.api.pojo.vo.device.DeviceVO; |
| | | import com.moral.api.service.SpecialDeviceService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.moral.api.util.CacheUtils; |
| | | import com.moral.api.util.LogUtils; |
| | | import com.moral.constant.Constants; |
| | | import com.moral.constant.RedisConstants; |
| | | import com.moral.constant.ResponseCodeEnum; |
| | | import com.moral.util.DateUtils; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.data.redis.core.RedisTemplate; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.context.request.RequestContextHolder; |
| | | import org.springframework.web.context.request.ServletRequestAttributes; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.ArrayList; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.*; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Autowired(required = false) |
| | | private OrganizationMapper organizationMapper; |
| | | |
| | | @Autowired(required = false) |
| | | private RedisTemplate redisTemplate; |
| | | |
| | | @Autowired(required = false) |
| | | private OrganizationUnitAlarmMapper organizationUnitAlarmMapper; |
| | | |
| | | @Autowired(required = false) |
| | | private VersionSensorUnitMapper versionSensorUnitMapper; |
| | | |
| | | @Autowired |
| | | private LogUtils logUtils; |
| | | |
| | | /* |
| | | * 从redis获取设备信息 |
| | | * */ |
| | | private Map<String, Object> getDeviceInfoFromRedis(String mac) { |
| | | return (Map<String, Object>) redisTemplate.opsForHash().get(RedisConstants.DEVICE, mac); |
| | | } |
| | | |
| | | /* |
| | | * 设备信息存入redis |
| | | */ |
| | | private void setDeviceInfoToRedis(String mac, Map<String, Object> deviceInfo) { |
| | | redisTemplate.opsForHash().put(RedisConstants.DEVICE, mac, deviceInfo); |
| | | } |
| | | |
| | | /* |
| | | * 从redis删除设备信息 |
| | | */ |
| | | private void delDeviceInfoFromRedis(String mac) { |
| | | redisTemplate.opsForHash().delete(RedisConstants.DEVICE, mac); |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> getDataByCondition(Map map) { |
| | | Map<String,Object> resultMap = new HashMap<>(); |
| | |
| | | QueryWrapper<SpecialDevice> wrapper_Condition = new QueryWrapper<>(); |
| | | wrapper_Condition.eq("is_delete",Constants.NOT_DELETE); |
| | | if (!ObjectUtils.isEmpty(map.get("organization_id"))){ |
| | | wrapper_Condition.like("organization_id",map.get("organization_id").toString()); |
| | | wrapper_Condition.eq("organization_id",map.get("organization_id").toString()); |
| | | } |
| | | if (!ObjectUtils.isEmpty(map.get("keyword"))){ |
| | | wrapper_Condition.like("name",map.get("keyword").toString()).or().like("mac",map.get("keyword").toString()); |
| | | wrapper_Condition.and(wc -> wc.like("name",map.get("keyword").toString()).or().like("mac",map.get("keyword").toString())); |
| | | //wrapper_Condition.like("name",map.get("keyword").toString()).or().like("mac",map.get("keyword").toString()); |
| | | } |
| | | wrapper_Condition.orderByDesc("create_time"); |
| | | Page resultPage = specialDeviceMapper.selectPage(page,wrapper_Condition); |
| | | int totalNumber = specialDeviceMapper.selectCount(wrapper_Condition); |
| | | List<SpecialDevice> specialDevices = resultPage.getRecords(); |
| | | SimpleDateFormat SDF = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
| | | List<Map<String,Object>> specialDeviceList = new ArrayList<>(); |
| | |
| | | deviceVersionMap.put("name",version.getName()); |
| | | } |
| | | } |
| | | specialDeviceMap.put("deviceVersion",deviceVersionMap); |
| | | specialDeviceMap.put("version",deviceVersionMap); |
| | | Map<String,Object> specialTypeMap = new HashMap<>(); |
| | | if (!ObjectUtils.isEmpty(specialDevice.getSpecialType()) && specialDevice.getSpecialType()!=null && !"".equals(specialDevice.getSpecialType())){ |
| | | int specialTypeId = Integer.parseInt(specialDevice.getSpecialType().toString()); |
| | |
| | | SysDictData sysDictData = sysDictDataMapper.selectOne(wapper_sysDictData); |
| | | if (!ObjectUtils.isEmpty(sysDictData)){ |
| | | specialTypeMap.put("id",sysDictData.getId()); |
| | | specialTypeMap.put("dataKey",sysDictData.getDataKey()); |
| | | specialTypeMap.put("name",sysDictData.getDataValue()); |
| | | } |
| | | } |
| | |
| | | organizationMap.put("name",organization.getName()); |
| | | } |
| | | } |
| | | specialDeviceMap.put("organazation",organizationMap); |
| | | specialDeviceMap.put("organization",organizationMap); |
| | | List<Map<String,Object>> organizationList = new ArrayList<>(); |
| | | QueryWrapper<SpecialDeviceHistory> wapper_specialDeviceHistory = new QueryWrapper<>(); |
| | | wapper_specialDeviceHistory.eq("is_delete",Constants.NOT_DELETE); |
| | |
| | | specialDeviceList.add(specialDeviceMap); |
| | | } |
| | | resultMap.put("specialDevices",specialDeviceList); |
| | | int totalNumber = specialDevices.size(); |
| | | resultMap.put("totalNumber",totalNumber); |
| | | resultMap.put("current",current); |
| | | int totalPageNumber = totalNumber/size; |
| | |
| | | resultMap.put("totalPageNumber",totalPageNumber); |
| | | return resultMap; |
| | | } |
| | | |
| | | @Transactional |
| | | @Override |
| | | public Map<String, Object> insert(SpecialDevice specialDevice) { |
| | | Map<String,Object> resultMap = new HashMap<>(); |
| | | String name = specialDevice.getName(); |
| | | String mac = specialDevice.getMac(); |
| | | int organizationId = specialDevice.getOrganizationId(); |
| | | int deviceVersionId = specialDevice.getDeviceVersionId(); |
| | | String operateIds = specialDevice.getOperateIds(); |
| | | String specialType = specialDevice.getSpecialType(); |
| | | if (ObjectUtils.isEmpty(name) || ObjectUtils.isEmpty(mac) || ObjectUtils.isEmpty(specialType) || ObjectUtils.isEmpty(organizationId) || ObjectUtils.isEmpty(deviceVersionId)){ |
| | | resultMap.put("code",ResponseCodeEnum.PARAMETERS_IS_MISSING.getCode()); |
| | | resultMap.put("msg",ResponseCodeEnum.PARAMETERS_IS_MISSING.getMsg()); |
| | | return resultMap; |
| | | } |
| | | if (name.equals("") || mac.equals("") || specialType.equals("")){ |
| | | resultMap.put("code",ResponseCodeEnum.PARAMETERS_NOT_REQUIREMENT.getCode()); |
| | | resultMap.put("msg",ResponseCodeEnum.PARAMETERS_NOT_REQUIREMENT.getMsg()); |
| | | return resultMap; |
| | | } |
| | | QueryWrapper<SpecialDevice> wrapper_mac = new QueryWrapper<>(); |
| | | wrapper_mac.eq("is_delete",Constants.NOT_DELETE); |
| | | wrapper_mac.eq("mac",mac); |
| | | int macNum = specialDeviceMapper.selectCount(wrapper_mac); |
| | | if (macNum>0){ |
| | | resultMap.put("code",ResponseCodeEnum.MAC_IS_EXIST.getCode()); |
| | | resultMap.put("msg",ResponseCodeEnum.MAC_IS_EXIST.getMsg()); |
| | | return resultMap; |
| | | } |
| | | specialDeviceMapper.insert(specialDevice); |
| | | QueryWrapper<SpecialDeviceHistory> wrapper_specialDeviceHistory = new QueryWrapper<>(); |
| | | wrapper_specialDeviceHistory.eq("is_delete",Constants.NOT_DELETE); |
| | | wrapper_specialDeviceHistory.eq("mac",mac); |
| | | wrapper_specialDeviceHistory.eq("organization_id",organizationId); |
| | | SpecialDeviceHistory specialDeviceHistory = specialDeviceHistoryMapper.selectOne(wrapper_specialDeviceHistory); |
| | | SpecialDeviceHistory insertSpecialDeviceHistory = new SpecialDeviceHistory(); |
| | | BeanUtils.copyProperties(specialDevice,insertSpecialDeviceHistory); |
| | | if (ObjectUtils.isEmpty(specialDeviceHistory)){ |
| | | specialDeviceHistoryMapper.insert(insertSpecialDeviceHistory); |
| | | }else { |
| | | /*UpdateWrapper<SpecialDeviceHistory> wrapper_insertSpecialDeviceHistory = new UpdateWrapper<>(); |
| | | wrapper_specialDeviceHistory.eq("is_delete",Constants.NOT_DELETE); |
| | | wrapper_specialDeviceHistory.eq("mac",mac); |
| | | wrapper_specialDeviceHistory.eq("organization_id",organizationId);*/ |
| | | specialDeviceHistoryMapper.update(insertSpecialDeviceHistory,wrapper_specialDeviceHistory); |
| | | } |
| | | Map<String, Object> deviceInfo = selectDeviceInfoById(specialDevice.getId()); |
| | | //维护组织型号关系表 |
| | | insertOrganizationUnitAlarm(specialDevice.getOrganizationId(), specialDevice.getDeviceVersionId()); |
| | | //新增设备信息存入redis |
| | | String mac1 = specialDevice.getMac(); |
| | | //从redis中删除设备信息 |
| | | delDeviceInfoFromRedis(mac1); |
| | | //设备信息存入redis |
| | | setDeviceInfoToRedis(mac1, deviceInfo); |
| | | //刷新deviceInfo缓存 |
| | | CacheUtils.refreshSpecialDeviceAlarmInfo(); |
| | | //操作日志记录 |
| | | HttpServletRequest request = ((ServletRequestAttributes) Objects.requireNonNull(RequestContextHolder.getRequestAttributes())).getRequest(); |
| | | StringBuilder content = new StringBuilder(); |
| | | content.append("添加了特殊设备:").append(specialDevice.getName()).append(":").append("mac:").append(mac); |
| | | logUtils.saveOperationForManage(request, content.toString(), Constants.INSERT_OPERATE_TYPE); |
| | | resultMap.put("code", ResponseCodeEnum.SUCCESS.getCode()); |
| | | resultMap.put("msg", ResponseCodeEnum.SUCCESS.getMsg()); |
| | | return resultMap; |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> selectDeviceInfoById(Integer deviceId) { |
| | | String mac = specialDeviceMapper.selectById(deviceId).getMac(); |
| | | Map<String, Object> specialDeviceInfo = getDeviceInfoFromRedis(mac); |
| | | //先从redis中取 |
| | | if (specialDeviceInfo != null) { |
| | | return specialDeviceInfo; |
| | | } |
| | | specialDeviceInfo = new LinkedHashMap<>(); |
| | | //DeviceVO device = deviceMapper.selectDeviceInfoById(deviceId); |
| | | SpecialDevice specialDevice = specialDeviceMapper.selectById(deviceId); |
| | | //设备 |
| | | specialDeviceInfo.put("id", specialDevice.getId()); |
| | | specialDeviceInfo.put("name", specialDevice.getName()); |
| | | specialDeviceInfo.put("mac", specialDevice.getMac()); |
| | | specialDeviceInfo.put("createTime", DateUtils.dateToDateString(specialDevice.getCreateTime())); |
| | | |
| | | //扩展字段 |
| | | //specialDeviceInfo.put("extend", device.getExtend()); |
| | | |
| | | //型号 |
| | | Map<String, Object> versionInfo = new LinkedHashMap<>(); |
| | | Version version = versionMapper.selectById(specialDevice.getDeviceVersionId()); |
| | | versionInfo.put("id", version.getId()); |
| | | versionInfo.put("name", version.getName()); |
| | | specialDeviceInfo.put("version", versionInfo); |
| | | |
| | | //维护人 |
| | | List<Map<String, Object>> operatorsInfo = new ArrayList<>(); |
| | | String operateIds = specialDevice.getOperateIds(); |
| | | if (!ObjectUtils.isEmpty(operateIds)){ |
| | | String[] operateIdArr = operateIds.split(","); |
| | | if (operateIdArr.length>0){ |
| | | List<Integer> operateIdList = new ArrayList<>(); |
| | | for (int i = 0; i < operateIdArr.length; i++){ |
| | | operateIdList.add(Integer.parseInt(operateIdArr[i])); |
| | | } |
| | | QueryWrapper<ManageAccount> wapper_manageAccount = new QueryWrapper<>(); |
| | | wapper_manageAccount.eq("is_delete",Constants.NOT_DELETE); |
| | | wapper_manageAccount.in("id",operateIdList); |
| | | List<ManageAccount> manageAccounts = manageAccountMapper.selectList(wapper_manageAccount); |
| | | for (ManageAccount manageAccount:manageAccounts) { |
| | | Map<String,Object> operateMap = new HashMap<>(); |
| | | operateMap.put("id",manageAccount.getId()); |
| | | operateMap.put("name",manageAccount.getUserName()); |
| | | operatorsInfo.add(operateMap); |
| | | } |
| | | } |
| | | } |
| | | specialDeviceInfo.put("operators", operatorsInfo); |
| | | |
| | | //组织 |
| | | Map<String, Object> orgInfo = new LinkedHashMap<>(); |
| | | Organization organization = organizationMapper.selectById(specialDevice.getOrganizationId()); |
| | | orgInfo.put("id", organization.getId()); |
| | | orgInfo.put("name", organization.getName()); |
| | | specialDeviceInfo.put("organization", orgInfo); |
| | | |
| | | setDeviceInfoToRedis(mac, specialDeviceInfo); |
| | | return specialDeviceInfo; |
| | | } |
| | | |
| | | private void insertOrganizationUnitAlarm(Integer orgId, Integer versionId) { |
| | | QueryWrapper<OrganizationUnitAlarm> queryOrganizationVersionWrapper = new QueryWrapper<>(); |
| | | queryOrganizationVersionWrapper.eq("organization_id", orgId); |
| | | queryOrganizationVersionWrapper.eq("version_id", versionId); |
| | | queryOrganizationVersionWrapper.eq("is_delete", Constants.NOT_DELETE); |
| | | List<OrganizationUnitAlarm> organizationUnitAlarms = organizationUnitAlarmMapper.selectList(queryOrganizationVersionWrapper); |
| | | if (org.springframework.util.ObjectUtils.isEmpty(organizationUnitAlarms)) { |
| | | QueryWrapper<VersionSensorUnit> queryVersionSensorUnitWrapper = new QueryWrapper<>(); |
| | | queryVersionSensorUnitWrapper.eq("version_id", versionId); |
| | | queryVersionSensorUnitWrapper.eq("is_delete", Constants.NOT_DELETE); |
| | | List<VersionSensorUnit> versionSensorUnits = versionSensorUnitMapper.selectList(queryVersionSensorUnitWrapper); |
| | | if (!org.springframework.util.ObjectUtils.isEmpty(versionSensorUnits)) { |
| | | for (VersionSensorUnit versionSensorUnit : versionSensorUnits) { |
| | | OrganizationUnitAlarm organizationUnitAlarm = new OrganizationUnitAlarm(); |
| | | organizationUnitAlarm.setOrganizationId(orgId); |
| | | organizationUnitAlarm.setVersionId(versionId); |
| | | organizationUnitAlarm.setSensorCode(versionSensorUnit.getSensorCode()); |
| | | organizationUnitAlarm.setUnitKey(versionSensorUnit.getUnitKey()); |
| | | organizationUnitAlarm.setShowUnitKey(versionSensorUnit.getUnitKey()); |
| | | organizationUnitAlarmMapper.insert(organizationUnitAlarm); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |