|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.hnac.hzims.alarm.show.service.impl; |
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.alibaba.fastjson.TypeReference; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.hnac.hzims.alarm.config.constants.AlarmConstants; |
|
|
|
@ -12,29 +13,37 @@ import com.hnac.hzims.alarm.show.mapper.AlarmMapper;
|
|
|
|
|
import com.hnac.hzims.alarm.show.service.AlarmHandleService; |
|
|
|
|
import com.hnac.hzims.alarm.show.service.AlarmService; |
|
|
|
|
import com.hnac.hzims.alarm.show.vo.AlarmVideoVo; |
|
|
|
|
import com.hnac.hzims.alarm.show.vo.ShowQueryVo; |
|
|
|
|
import com.hnac.hzims.alarm.source.service.MessageService; |
|
|
|
|
import com.hnac.hzims.business.ws.alart.vo.AlartParamVo; |
|
|
|
|
import com.hnac.hzims.equipment.entity.EmInfoEntity; |
|
|
|
|
import com.hnac.hzims.equipment.entity.EmVideoBandingEntity; |
|
|
|
|
import com.hnac.hzims.equipment.feign.IEmInfoClient; |
|
|
|
|
import com.hnac.hzims.equipment.feign.IEmVideoClient; |
|
|
|
|
import com.hnac.hzims.fdp.util.HttpRequestUtil; |
|
|
|
|
import com.hnac.hzims.message.dto.MailMessageDTO; |
|
|
|
|
import com.hnac.hzims.message.fegin.IMessageClient; |
|
|
|
|
import com.hnac.hzims.operational.station.entity.StationEntity; |
|
|
|
|
import com.hnac.hzims.operational.station.entity.StationVideoTypeEntity; |
|
|
|
|
import com.hnac.hzims.operational.station.feign.IStationClient; |
|
|
|
|
import com.hnac.hzims.operational.station.feign.IStationVideoTypeClient; |
|
|
|
|
import com.hnac.hzinfo.sdk.v5.device.client.DeviceClient; |
|
|
|
|
import com.hnac.hzinfo.sdk.v5.device.vo.DeviceInstanceAttrVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import com.hnac.hzinfo.sdk.v5.device.vo.DeviceInstanceEventVO; |
|
|
|
|
import com.hnac.hzinfo.sdk.v5.device.vo.DeviceInstanceFuncVO; |
|
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.apache.commons.collections4.MapUtils; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.CollectionUtil; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.core.tool.utils.ObjectUtil; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springblade.system.user.entity.User; |
|
|
|
|
import org.springblade.system.user.feign.IUserClient; |
|
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.util.Assert; |
|
|
|
|
import org.springframework.web.socket.TextMessage; |
|
|
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
@ -43,7 +52,7 @@ import java.util.stream.Collectors;
|
|
|
|
|
/** |
|
|
|
|
* @author ysj |
|
|
|
|
*/ |
|
|
|
|
@AllArgsConstructor |
|
|
|
|
@RequiredArgsConstructor |
|
|
|
|
@Service |
|
|
|
|
@Slf4j |
|
|
|
|
public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity> implements AlarmService { |
|
|
|
@ -59,19 +68,27 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
private final IStationClient stationClient; |
|
|
|
|
|
|
|
|
|
private final IMessageClient messageClient; |
|
|
|
|
|
|
|
|
|
private final IEmInfoClient emInfoClient; |
|
|
|
|
|
|
|
|
|
private final DeviceClient deviceClient; |
|
|
|
|
|
|
|
|
|
private final IEmVideoClient emVideoClient; |
|
|
|
|
|
|
|
|
|
private final IStationVideoTypeClient stationVideoTypeClient; |
|
|
|
|
|
|
|
|
|
@Value("${hzims.url.getFaultGraphInfo}") |
|
|
|
|
private String FAULTGRAPH_INFO_PATH; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询告警列表 |
|
|
|
|
* @param alarm |
|
|
|
|
* @param showQuery |
|
|
|
|
* @param page |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public IPage<AlarmEntity> alarms(AlarmEntity alarm, IPage<AlarmEntity> page) { |
|
|
|
|
List<StationEntity> stations = this.stations(); |
|
|
|
|
public IPage<AlarmEntity> alarms(ShowQueryVo showQuery, IPage<AlarmEntity> page) { |
|
|
|
|
List<StationEntity> stations = this.stations(showQuery.getServeType()); |
|
|
|
|
if(CollectionUtil.isEmpty(stations)){ |
|
|
|
|
return page; |
|
|
|
|
} |
|
|
|
@ -82,14 +99,14 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
wrapper.eq("IS_RIGHT_TABULATION",0); |
|
|
|
|
wrapper.eq("STATUS",0); |
|
|
|
|
wrapper.in("STATION_ID",stations.stream().map(StationEntity::getCode).collect(Collectors.toList())); |
|
|
|
|
if(!StringUtil.isEmpty(alarm.getStationId())){ |
|
|
|
|
wrapper.eq("STATION_ID",alarm.getStationId()); |
|
|
|
|
if(!StringUtil.isEmpty(showQuery.getStationId())){ |
|
|
|
|
wrapper.eq("STATION_ID",showQuery.getStationId()); |
|
|
|
|
} |
|
|
|
|
if(!StringUtil.isEmpty(alarm.getAlarmSource())){ |
|
|
|
|
wrapper.eq("ALARM_SOURCE",alarm.getAlarmSource()); |
|
|
|
|
if(!StringUtil.isEmpty(showQuery.getAlarmSource())){ |
|
|
|
|
wrapper.eq("ALARM_SOURCE",showQuery.getAlarmSource()); |
|
|
|
|
} |
|
|
|
|
if(!StringUtil.isEmpty(alarm.getAlarmType())){ |
|
|
|
|
wrapper.eq("ALARM_TYPE",alarm.getAlarmType()); |
|
|
|
|
if(!StringUtil.isEmpty(showQuery.getAlarmType())){ |
|
|
|
|
wrapper.eq("ALARM_TYPE",showQuery.getAlarmType()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 处理告警过滤 :当天处理告警
|
|
|
|
@ -106,9 +123,11 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
* 获取权限站点 |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<StationEntity> stations() { |
|
|
|
|
private List<StationEntity> stations(Integer serveType) { |
|
|
|
|
StationEntity station = new StationEntity(); |
|
|
|
|
station.setServeType("2"); |
|
|
|
|
if(ObjectUtil.isNotEmpty(serveType)){ |
|
|
|
|
station.setServeType(String.valueOf(serveType)); |
|
|
|
|
} |
|
|
|
|
station.setType(0); |
|
|
|
|
R<List<StationEntity>> result = stationClient.list(station); |
|
|
|
|
if(!result.isSuccess() || CollectionUtil.isEmpty(result.getData())){ |
|
|
|
@ -122,9 +141,9 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public List<AlarmCountVo> counts(AlarmEntity alarm) { |
|
|
|
|
public List<AlarmCountVo> counts(ShowQueryVo showCount) { |
|
|
|
|
// 站点查询
|
|
|
|
|
List<StationEntity> stations = this.stations(); |
|
|
|
|
List<StationEntity> stations = this.stations(showCount.getServeType()); |
|
|
|
|
if(CollectionUtil.isEmpty(stations)){ |
|
|
|
|
return AlarmConstants.ALARAM_SOURCE.stream().map(source->{ |
|
|
|
|
AlarmCountVo count = new AlarmCountVo(); |
|
|
|
@ -139,14 +158,14 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
wrapper.eq("IS_RIGHT_TABULATION",0); |
|
|
|
|
wrapper.eq("STATUS",0); |
|
|
|
|
wrapper.in("STATION_ID",stations.stream().map(StationEntity::getCode).collect(Collectors.toList())); |
|
|
|
|
if(!StringUtil.isEmpty(alarm.getStationId())){ |
|
|
|
|
wrapper.eq("STATION_ID",alarm.getStationId()); |
|
|
|
|
if(!StringUtil.isEmpty(showCount.getStationId())){ |
|
|
|
|
wrapper.eq("STATION_ID",showCount.getStationId()); |
|
|
|
|
} |
|
|
|
|
if(!StringUtil.isEmpty(alarm.getAlarmSource())){ |
|
|
|
|
wrapper.eq("ALARM_SOURCE",alarm.getAlarmSource()); |
|
|
|
|
if(!StringUtil.isEmpty(showCount.getAlarmSource())){ |
|
|
|
|
wrapper.eq("ALARM_SOURCE",showCount.getAlarmSource()); |
|
|
|
|
} |
|
|
|
|
if(!StringUtil.isEmpty(alarm.getAlarmType())){ |
|
|
|
|
wrapper.eq("ALARM_TYPE",alarm.getAlarmType()); |
|
|
|
|
if(!StringUtil.isEmpty(showCount.getAlarmType())){ |
|
|
|
|
wrapper.eq("ALARM_TYPE",showCount.getAlarmType()); |
|
|
|
|
} |
|
|
|
|
// 处理告警过滤 :当天处理告警
|
|
|
|
|
List<String> handles = alarmHandleService.handles(); |
|
|
|
@ -176,9 +195,9 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public List<AlarmEntity> broadcast(String startTime, String endTime) { |
|
|
|
|
public List<AlarmEntity> broadcast(String startTime, String endTime,Integer serveType) { |
|
|
|
|
// 站点查询
|
|
|
|
|
List<StationEntity> stations = this.stations(); |
|
|
|
|
List<StationEntity> stations = this.stations(serveType); |
|
|
|
|
if(CollectionUtil.isEmpty(stations)){ |
|
|
|
|
return new ArrayList<>(); |
|
|
|
|
} |
|
|
|
@ -196,17 +215,17 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 弹框告警 |
|
|
|
|
* @param depts |
|
|
|
|
* @param param |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public TextMessage majorAlarm(List<Long> depts) { |
|
|
|
|
public TextMessage majorAlarm(AlartParamVo param) { |
|
|
|
|
// 站点查询
|
|
|
|
|
List<StationEntity> stations = this.stations(); |
|
|
|
|
if(CollectionUtil.isEmpty(stations)){ |
|
|
|
|
List<StationEntity> stations = this.stations(param.getServeType()); |
|
|
|
|
if(CollectionUtil.isEmpty(stations) || CollectionUtil.isEmpty(param.getDepts())){ |
|
|
|
|
return new TextMessage(new ArrayList().toString()); |
|
|
|
|
} |
|
|
|
|
List<String> effectives = stations.stream().filter(station->depts.contains(station.getRefDept())).map(StationEntity::getCode).collect(Collectors.toList()); |
|
|
|
|
List<String> effectives = stations.stream().filter(station->param.getDepts().contains(station.getRefDept())).map(StationEntity::getCode).collect(Collectors.toList()); |
|
|
|
|
if(CollectionUtil.isEmpty(effectives)){ |
|
|
|
|
return new TextMessage(new ArrayList().toString()); |
|
|
|
|
} |
|
|
|
@ -274,9 +293,20 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
* @return 绑定结果 |
|
|
|
|
*/ |
|
|
|
|
private Boolean isRealIdBanding(String realId,String emCode) { |
|
|
|
|
R<List<DeviceInstanceAttrVO>> deviceAttrR = deviceClient.getOnlineAttr(emCode); |
|
|
|
|
if(deviceAttrR.isSuccess() && CollectionUtil.isNotEmpty(deviceAttrR.getData())) { |
|
|
|
|
return deviceAttrR.getData().stream().anyMatch(attr -> realId.equals(attr.getFacDeviceAttrId())); |
|
|
|
|
// 属性
|
|
|
|
|
R<List<DeviceInstanceAttrVO>> attrs = deviceClient.getOnlineAttr(emCode); |
|
|
|
|
if(attrs.isSuccess() && CollectionUtil.isNotEmpty(attrs.getData())) { |
|
|
|
|
return attrs.getData().stream().anyMatch(attr -> realId.equals(attr.getFacDeviceAttrId())); |
|
|
|
|
} |
|
|
|
|
// 事件
|
|
|
|
|
R<List<DeviceInstanceEventVO>> events = deviceClient.getOnlineEvent(emCode); |
|
|
|
|
if(events.isSuccess() && CollectionUtil.isNotEmpty(events.getData())) { |
|
|
|
|
return events.getData().stream().anyMatch(event -> realId.equals(event.getFacDeviceEventId())); |
|
|
|
|
} |
|
|
|
|
// 功能
|
|
|
|
|
R<List<DeviceInstanceFuncVO>> funcs = deviceClient.getOnlineFunc(emCode); |
|
|
|
|
if(funcs.isSuccess() && CollectionUtil.isNotEmpty(funcs.getData())) { |
|
|
|
|
return funcs.getData().stream().anyMatch(func -> realId.equals(func.getSourceAttrSignage())); |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
@ -406,19 +436,155 @@ public class AlarmServiceImpl extends BaseServiceImpl<AlarmMapper, AlarmEntity>
|
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public List<AlarmVideoVo> alarmVideos(String stationCode, String deviceCode, String realId) { |
|
|
|
|
// 根据realId查找
|
|
|
|
|
public List<AlarmVideoVo> alarmVideos(String stationCode, String deviceCode, String realId,Integer alarmType) { |
|
|
|
|
// 步骤1、根据设备编号查询视频信息
|
|
|
|
|
if(StringUtil.isNotBlank(deviceCode)){ |
|
|
|
|
return this.deviceVideos(stationCode,deviceCode); |
|
|
|
|
} |
|
|
|
|
// 步骤2、根据采集点查询视频信息
|
|
|
|
|
if(StringUtil.isNotBlank(realId)){ |
|
|
|
|
// 智能预警
|
|
|
|
|
if(AlarmConstants.EARLY.equals(alarmType)){ |
|
|
|
|
return this.earlyVideos(stationCode,realId); |
|
|
|
|
// 通讯中断、通讯异常查询站点视频
|
|
|
|
|
}else if(AlarmConstants.INTERRUPT.equals(alarmType) || AlarmConstants.ABNORMAL.equals(alarmType)){ |
|
|
|
|
return this.stationVideos(stationCode); |
|
|
|
|
// 其他告警
|
|
|
|
|
}else{ |
|
|
|
|
return this.realIdVideos(stationCode,realId); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 步骤3.根据站点编号查询视频信息
|
|
|
|
|
if(StringUtil.isNotBlank(stationCode)){ |
|
|
|
|
return this.stationVideos(stationCode); |
|
|
|
|
} |
|
|
|
|
throw new ServiceException("未查询到告警视频信息!"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
*查询站点绑定视频信息 |
|
|
|
|
* @param stationCode |
|
|
|
|
*/ |
|
|
|
|
private List<AlarmVideoVo> stationVideos(String stationCode) { |
|
|
|
|
List<StationVideoTypeEntity> videos = stationVideoTypeClient.listByStationId(stationCode); |
|
|
|
|
if(CollectionUtil.isEmpty(videos)){ |
|
|
|
|
throw new ServiceException("站点暂无视频信息!"); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// 根据设备编号查找
|
|
|
|
|
if(StringUtil.isNotBlank(deviceCode)){ |
|
|
|
|
return videos.stream().distinct().map(video->{ |
|
|
|
|
AlarmVideoVo alarmVideo = new AlarmVideoVo(); |
|
|
|
|
alarmVideo.setVideoHost(video.getVideoHost()); |
|
|
|
|
alarmVideo.setVideoName(video.getName()); |
|
|
|
|
alarmVideo.setVideoAppKey(video.getAppKey()); |
|
|
|
|
alarmVideo.setVideoAppSecret(video.getAppSecret()); |
|
|
|
|
alarmVideo.setPointCode(video.getPointCode()); |
|
|
|
|
return alarmVideo; |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询设备绑定视频信息 |
|
|
|
|
* @param deviceCode |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<AlarmVideoVo> deviceVideos(String stationCode,String deviceCode) { |
|
|
|
|
// 查询设备绑定视频点位
|
|
|
|
|
R<List<EmVideoBandingEntity>> videos = emVideoClient.getEmBandingVideos(deviceCode); |
|
|
|
|
if(!videos.isSuccess() || CollectionUtil.isEmpty(videos.getData())){ |
|
|
|
|
// 查询站点
|
|
|
|
|
R<StationEntity> station = stationClient.getStationByCode(stationCode); |
|
|
|
|
if(!station.isSuccess() || ObjectUtil.isEmpty(station.getData())){ |
|
|
|
|
throw new ServiceException("未查询到设备绑定视频信息!"); |
|
|
|
|
} |
|
|
|
|
// 查询设备
|
|
|
|
|
R<EmInfoEntity> device = emInfoClient.getEmInfoByEmCode(deviceCode); |
|
|
|
|
if(!device.isSuccess() || ObjectUtil.isEmpty(device.getData())){ |
|
|
|
|
throw new ServiceException("未查询到设备绑定视频信息!"); |
|
|
|
|
} |
|
|
|
|
throw new ServiceException("请在设备信息菜单绑定" + station.getData().getName() + "-" + device.getData().getName() + "视频信息!"); |
|
|
|
|
} |
|
|
|
|
return videos.getData().stream().distinct().map(video->{ |
|
|
|
|
AlarmVideoVo alarmVideo = new AlarmVideoVo(); |
|
|
|
|
alarmVideo.setVideoHost(video.getVideoHost()); |
|
|
|
|
alarmVideo.setVideoName(video.getVideoName()); |
|
|
|
|
alarmVideo.setVideoAppKey(video.getVideoAppKey()); |
|
|
|
|
alarmVideo.setVideoAppSecret(video.getVideoAppSecret()); |
|
|
|
|
alarmVideo.setPointCode(video.getPointCode()); |
|
|
|
|
return alarmVideo; |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询智能预警视频信息 |
|
|
|
|
* @param stationCode |
|
|
|
|
* @param faultId |
|
|
|
|
*/ |
|
|
|
|
private List<AlarmVideoVo> earlyVideos(String stationCode, String faultId) { |
|
|
|
|
// 调用FDP接口查询设备编号
|
|
|
|
|
Map<String, Object> param = new HashMap<>(); |
|
|
|
|
param.put("faultId", faultId); |
|
|
|
|
String result = HttpRequestUtil.postCall(param, FAULTGRAPH_INFO_PATH, "POST"); |
|
|
|
|
if (StringUtil.isBlank(result)) { |
|
|
|
|
throw new ServiceException("未查询到智能预警设备信息!"); |
|
|
|
|
} |
|
|
|
|
// 根据站点编号查找
|
|
|
|
|
if(StringUtil.isNotBlank(stationCode)){ |
|
|
|
|
HashMap<String, Object> map = JSONObject.parseObject(result, new TypeReference<HashMap<String, Object>>() { |
|
|
|
|
}); |
|
|
|
|
if (ObjectUtil.isEmpty(map)) { |
|
|
|
|
throw new ServiceException("未查询到智能预警设备信息!"); |
|
|
|
|
} |
|
|
|
|
List<HashMap<String, Object>> data = JSONObject.parseObject(MapUtils.getString(map, "data"), new TypeReference<List<HashMap<String, Object>>>() { |
|
|
|
|
}); |
|
|
|
|
if (CollectionUtil.isEmpty(data)) { |
|
|
|
|
throw new ServiceException("未查询到智能预警设备信息!"); |
|
|
|
|
} |
|
|
|
|
String deviceCode = (String) data.get(0).get("TAOS_INSTANCE"); |
|
|
|
|
if(StringUtil.isBlank(deviceCode)){ |
|
|
|
|
throw new ServiceException("未查询到智能预警设备信息!"); |
|
|
|
|
} |
|
|
|
|
return this.deviceVideos(stationCode,deviceCode); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询采集点绑定视频信息 |
|
|
|
|
* @param stationCode |
|
|
|
|
* @param realId |
|
|
|
|
*/ |
|
|
|
|
private List<AlarmVideoVo> realIdVideos(String stationCode, String realId) { |
|
|
|
|
// 查询站点
|
|
|
|
|
R<StationEntity> station = stationClient.getStationByCode(stationCode); |
|
|
|
|
if(!station.isSuccess() || ObjectUtil.isEmpty(station)){ |
|
|
|
|
throw new ServiceException("未查询到告警采集点绑定视频信息!"); |
|
|
|
|
} |
|
|
|
|
return new ArrayList<>(); |
|
|
|
|
EmInfoEntity param = new EmInfoEntity(); |
|
|
|
|
param.setDepartment(station.getData().getRefDept()); |
|
|
|
|
// 查询设备
|
|
|
|
|
R<List<EmInfoEntity>> devices = emInfoClient.emInfoList(param); |
|
|
|
|
if(!devices.isSuccess() || CollectionUtil.isEmpty(devices.getData())){ |
|
|
|
|
throw new ServiceException("未查询到告警采集点绑定视频信息!"); |
|
|
|
|
} |
|
|
|
|
String deviceCodes = devices.getData().stream().parallel() |
|
|
|
|
.filter(this::isBandingVideoByEmCode) |
|
|
|
|
.filter(this::isDeviceCodeExist) |
|
|
|
|
.map(EmInfoEntity::getNumber) |
|
|
|
|
.filter(number -> this.isRealIdBanding(realId, number)) |
|
|
|
|
.collect(Collectors.joining(",")); |
|
|
|
|
if(StringUtil.isEmpty(deviceCodes)){ |
|
|
|
|
throw new ServiceException("未查询到告警采集点绑定视频信息!"); |
|
|
|
|
} |
|
|
|
|
// 查询设备绑定视频点位
|
|
|
|
|
R<List<EmVideoBandingEntity>> videos = emVideoClient.getEmBandingVideos(deviceCodes); |
|
|
|
|
if(!videos.isSuccess() || CollectionUtil.isEmpty(videos.getData())){ |
|
|
|
|
throw new ServiceException("请在设备信息菜单绑定" + station.getData().getName() + "的设备视频绑定信息!"); |
|
|
|
|
} |
|
|
|
|
return videos.getData().stream().distinct().map(video->{ |
|
|
|
|
AlarmVideoVo alarmVideo = new AlarmVideoVo(); |
|
|
|
|
alarmVideo.setVideoHost(video.getVideoHost()); |
|
|
|
|
alarmVideo.setVideoName(video.getVideoName()); |
|
|
|
|
alarmVideo.setVideoAppKey(video.getVideoAppKey()); |
|
|
|
|
alarmVideo.setVideoAppSecret(video.getVideoAppSecret()); |
|
|
|
|
alarmVideo.setPointCode(video.getPointCode()); |
|
|
|
|
return alarmVideo; |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
} |