Merge branch 'wvp-28181-2.0' into wvp-28181-2.0
This commit is contained in:
commit
4fcc14fba4
14
pom.xml
14
pom.xml
@ -153,13 +153,17 @@
|
|||||||
<version>2.1.3</version>
|
<version>2.1.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- json解析库fastjson -->
|
<!-- json解析库fastjson2 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba</groupId>
|
<groupId>com.alibaba.fastjson2</groupId>
|
||||||
<artifactId>fastjson</artifactId>
|
<artifactId>fastjson2</artifactId>
|
||||||
<version>1.2.83</version>
|
<version>2.0.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba.fastjson2</groupId>
|
||||||
|
<artifactId>fastjson2-extension</artifactId>
|
||||||
|
<version>2.0.17</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<!-- okhttp -->
|
<!-- okhttp -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.common;
|
package com.genersoft.iot.vmp.common;
|
||||||
|
|
||||||
import com.alibaba.fastjson.annotation.JSONField;
|
import com.alibaba.fastjson2.annotation.JSONField;
|
||||||
|
|
||||||
public class VersionPo {
|
public class VersionPo {
|
||||||
/**
|
/**
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.conf;
|
package com.genersoft.iot.vmp.conf;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
|
import com.alibaba.fastjson2.support.spring.http.converter.FastJsonHttpMessageConverter;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package com.genersoft.iot.vmp.conf;
|
package com.genersoft.iot.vmp.conf;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
|
||||||
import org.springframework.scheduling.annotation.Scheduled;
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.conf;
|
package com.genersoft.iot.vmp.conf;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.conf.redis;
|
package com.genersoft.iot.vmp.conf.redis;
|
||||||
|
|
||||||
|
|
||||||
import com.alibaba.fastjson.parser.ParserConfig;
|
|
||||||
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
||||||
import com.genersoft.iot.vmp.service.redisMsg.*;
|
import com.genersoft.iot.vmp.service.redisMsg.*;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@ -55,8 +54,7 @@ public class RedisConfig extends CachingConfigurerSupport {
|
|||||||
// value值的序列化采用fastJsonRedisSerializer
|
// value值的序列化采用fastJsonRedisSerializer
|
||||||
redisTemplate.setValueSerializer(fastJsonRedisSerializer);
|
redisTemplate.setValueSerializer(fastJsonRedisSerializer);
|
||||||
redisTemplate.setHashValueSerializer(fastJsonRedisSerializer);
|
redisTemplate.setHashValueSerializer(fastJsonRedisSerializer);
|
||||||
// 全局开启AutoType,不建议使用
|
|
||||||
ParserConfig.getGlobalInstance().setAutoTypeSupport(true);
|
|
||||||
// key的序列化采用StringRedisSerializer
|
// key的序列化采用StringRedisSerializer
|
||||||
redisTemplate.setKeySerializer(new StringRedisSerializer());
|
redisTemplate.setKeySerializer(new StringRedisSerializer());
|
||||||
redisTemplate.setHashKeySerializer(new StringRedisSerializer());
|
redisTemplate.setHashKeySerializer(new StringRedisSerializer());
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.conf.security;
|
package com.genersoft.iot.vmp.conf.security;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
||||||
import org.apache.poi.hssf.eventmodel.ERFListener;
|
import org.apache.poi.hssf.eventmodel.ERFListener;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.bean;
|
package com.genersoft.iot.vmp.gb28181.bean;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
|
|
||||||
public class InviteStreamInfo {
|
public class InviteStreamInfo {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.task;
|
package com.genersoft.iot.vmp.gb28181.task;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.cmd.impl;
|
package com.genersoft.iot.vmp.gb28181.transmit.cmd.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.SipConfig;
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.cmd.impl;
|
package com.genersoft.iot.vmp.gb28181.transmit.cmd.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSON;
|
||||||
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
|
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.SIPSender;
|
import com.genersoft.iot.vmp.gb28181.transmit.SIPSender;
|
||||||
@ -346,7 +347,7 @@ public class SIPCommanderFroPlatform implements ISIPCommanderForPlatform {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
logger.info("[发送报警通知] {}/{}->{},{}: {}", parentPlatform.getServerGBId(), deviceAlarm.getChannelId(),
|
logger.info("[发送报警通知] {}/{}->{},{}: {}", parentPlatform.getServerGBId(), deviceAlarm.getChannelId(),
|
||||||
deviceAlarm.getLongitude(), deviceAlarm.getLatitude(), JSONObject.toJSON(deviceAlarm));
|
deviceAlarm.getLongitude(), deviceAlarm.getLatitude(), JSON.toJSONString(deviceAlarm));
|
||||||
String characterSet = parentPlatform.getCharacterSet();
|
String characterSet = parentPlatform.getCharacterSet();
|
||||||
StringBuffer deviceStatusXml = new StringBuffer(600);
|
StringBuffer deviceStatusXml = new StringBuffer(600);
|
||||||
deviceStatusXml.append("<?xml version=\"1.0\" encoding=\"" + characterSet + "\"?>\r\n");
|
deviceStatusXml.append("<?xml version=\"1.0\" encoding=\"" + characterSet + "\"?>\r\n");
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSON;
|
||||||
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
||||||
@ -141,7 +142,7 @@ public class AckRequestProcessor extends SIPRequestProcessorParent implements In
|
|||||||
logger.info("调用ZLM推流接口, 结果: {}", jsonObject);
|
logger.info("调用ZLM推流接口, 结果: {}", jsonObject);
|
||||||
logger.info("RTP推流成功[ {}/{} ],{}->{}:{}, " ,param.get("app"), param.get("stream"), jsonObject.getString("local_port"), param.get("dst_url"), param.get("dst_port"));
|
logger.info("RTP推流成功[ {}/{} ],{}->{}:{}, " ,param.get("app"), param.get("stream"), jsonObject.getString("local_port"), param.get("dst_url"), param.get("dst_port"));
|
||||||
} else {
|
} else {
|
||||||
logger.error("RTP推流失败: {}, 参数:{}",jsonObject.getString("msg"),JSONObject.toJSON(param));
|
logger.error("RTP推流失败: {}, 参数:{}",jsonObject.getString("msg"), JSON.toJSONString(param));
|
||||||
if (sendRtpItem.isOnlyAudio()) {
|
if (sendRtpItem.isOnlyAudio()) {
|
||||||
// TODO 可能是语音对讲
|
// TODO 可能是语音对讲
|
||||||
}else {
|
}else {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.SipConfig;
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.notify.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.notify.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSON;
|
||||||
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.SipConfig;
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
@ -184,7 +185,7 @@ public class AlarmNotifyMessageHandler extends SIPRequestProcessorParent impleme
|
|||||||
deviceAlarm.setAlarmType(getText(sipMsgInfo.getRootElement().element("Info"), "AlarmType"));
|
deviceAlarm.setAlarmType(getText(sipMsgInfo.getRootElement().element("Info"), "AlarmType"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
logger.info("[收到报警通知]内容:{}", JSONObject.toJSON(deviceAlarm));
|
logger.info("[收到报警通知]内容:{}", JSON.toJSONString(deviceAlarm));
|
||||||
if ("7".equals(deviceAlarm.getAlarmMethod()) ) {
|
if ("7".equals(deviceAlarm.getAlarmMethod()) ) {
|
||||||
// 发送给平台的报警信息。 发送redis通知
|
// 发送给平台的报警信息。 发送redis通知
|
||||||
AlarmChannelMessage alarmChannelMessage = new AlarmChannelMessage();
|
AlarmChannelMessage alarmChannelMessage = new AlarmChannelMessage();
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.notify.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.notify.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent;
|
import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent;
|
import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.utils;
|
package com.genersoft.iot.vmp.gb28181.utils;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.TreeType;
|
import com.genersoft.iot.vmp.gb28181.bean.TreeType;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm;
|
package com.genersoft.iot.vmp.media.zlm;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import okhttp3.*;
|
import okhttp3.*;
|
||||||
import okhttp3.logging.HttpLoggingInterceptor;
|
import okhttp3.logging.HttpLoggingInterceptor;
|
||||||
|
@ -5,7 +5,7 @@ import java.util.HashMap;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.conf.exception.SsrcTransactionNotFoundException;
|
import com.genersoft.iot.vmp.conf.exception.SsrcTransactionNotFoundException;
|
||||||
@ -14,6 +14,7 @@ import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
|||||||
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommanderFroPlatform;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommanderFroPlatform;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.*;
|
||||||
import com.genersoft.iot.vmp.service.*;
|
import com.genersoft.iot.vmp.service.*;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
||||||
@ -29,7 +30,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|||||||
import org.springframework.web.bind.annotation.ResponseBody;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
@ -108,17 +109,20 @@ public class ZLMHttpHookListener {
|
|||||||
*/
|
*/
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
@PostMapping(value = "/on_server_keepalive", produces = "application/json;charset=UTF-8")
|
@PostMapping(value = "/on_server_keepalive", produces = "application/json;charset=UTF-8")
|
||||||
public JSONObject onServerKeepalive(@RequestBody JSONObject json){
|
public JSONObject onServerKeepalive(@RequestBody OnServerKeepaliveHookParam param){
|
||||||
|
|
||||||
logger.info("[ ZLM HOOK ]on_server_keepalive API调用,参数:" + json.toString());
|
logger.info("[ZLM HOOK] 收到zlm心跳:" + param.getMediaServerId());
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
List<ZlmHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(HookType.on_server_keepalive);
|
taskExecutor.execute(()->{
|
||||||
if (subscribes != null && subscribes.size() > 0) {
|
List<ZlmHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(HookType.on_server_keepalive);
|
||||||
for (ZlmHttpHookSubscribe.Event subscribe : subscribes) {
|
JSONObject json = (JSONObject) JSON.toJSON(param);
|
||||||
subscribe.response(null, json);
|
if (subscribes != null && subscribes.size() > 0) {
|
||||||
|
for (ZlmHttpHookSubscribe.Event subscribe : subscribes) {
|
||||||
|
subscribe.response(null, json);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
mediaServerService.updateMediaServerKeepalive(mediaServerId, json.getJSONObject("data"));
|
mediaServerService.updateMediaServerKeepalive(param.getMediaServerId(), param.getData());
|
||||||
|
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
@ -126,43 +130,6 @@ public class ZLMHttpHookListener {
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 流量统计事件,播放器或推流器断开时并且耗用流量超过特定阈值时会触发此事件,阈值通过配置文件general.flowThreshold配置;此事件对回复不敏感。
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@ResponseBody
|
|
||||||
@PostMapping(value = "/on_flow_report", produces = "application/json;charset=UTF-8")
|
|
||||||
public JSONObject onFlowReport(@RequestBody JSONObject json){
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
|
||||||
logger.debug("[ ZLM HOOK ]on_flow_report API调用,参数:" + json.toString());
|
|
||||||
}
|
|
||||||
JSONObject ret = new JSONObject();
|
|
||||||
ret.put("code", 0);
|
|
||||||
ret.put("msg", "success");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 访问http文件服务器上hls之外的文件时触发。
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@ResponseBody
|
|
||||||
@PostMapping(value = "/on_http_access", produces = "application/json;charset=UTF-8")
|
|
||||||
public JSONObject onHttpAccess(@RequestBody JSONObject json){
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
|
||||||
logger.debug("[ ZLM HOOK ]on_http_access API 调用,参数:" + json.toString());
|
|
||||||
}
|
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
JSONObject ret = new JSONObject();
|
|
||||||
ret.put("code", 0);
|
|
||||||
ret.put("err", "");
|
|
||||||
ret.put("path", "");
|
|
||||||
ret.put("second", 600);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 播放器鉴权事件,rtsp/rtmp/http-flv/ws-flv/hls的播放都将触发此鉴权事件。
|
* 播放器鉴权事件,rtsp/rtmp/http-flv/ws-flv/hls的播放都将触发此鉴权事件。
|
||||||
@ -171,20 +138,21 @@ public class ZLMHttpHookListener {
|
|||||||
@ResponseBody
|
@ResponseBody
|
||||||
@PostMapping(value = "/on_play", produces = "application/json;charset=UTF-8")
|
@PostMapping(value = "/on_play", produces = "application/json;charset=UTF-8")
|
||||||
public JSONObject onPlay(@RequestBody OnPlayHookParam param){
|
public JSONObject onPlay(@RequestBody OnPlayHookParam param){
|
||||||
|
|
||||||
JSONObject json = (JSONObject)JSON.toJSON(param);
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug("[ ZLM HOOK ]on_play API调用,参数:" + JSON.toJSONString(param));
|
logger.debug("[ZLM HOOK] 播放鉴权:{}->{}" + param.getMediaServerId(), param);
|
||||||
}
|
}
|
||||||
String mediaServerId = param.getMediaServerId();
|
String mediaServerId = param.getMediaServerId();
|
||||||
ZlmHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_play, json);
|
|
||||||
if (subscribe != null ) {
|
taskExecutor.execute(()->{
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
JSONObject json = (JSONObject) JSON.toJSON(param);
|
||||||
if (mediaInfo != null) {
|
ZlmHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_play, json);
|
||||||
subscribe.response(mediaInfo, json);
|
if (subscribe != null ) {
|
||||||
|
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
||||||
|
if (mediaInfo != null) {
|
||||||
|
subscribe.response(mediaInfo, json);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
if (!"rtp".equals(param.getApp())) {
|
if (!"rtp".equals(param.getApp())) {
|
||||||
Map<String, String> paramMap = urlParamToMap(param.getParams());
|
Map<String, String> paramMap = urlParamToMap(param.getParams());
|
||||||
@ -211,7 +179,7 @@ public class ZLMHttpHookListener {
|
|||||||
|
|
||||||
JSONObject json = (JSONObject) JSON.toJSON(param);
|
JSONObject json = (JSONObject) JSON.toJSON(param);
|
||||||
|
|
||||||
logger.info("[ ZLM HOOK ]on_publish API调用,参数:" + json.toString());
|
logger.info("[ZLM HOOK]推流鉴权:{}->{}", param.getMediaServerId(), param);
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
String mediaServerId = json.getString("mediaServerId");
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
||||||
@ -258,21 +226,23 @@ public class ZLMHttpHookListener {
|
|||||||
|
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
ret.put("msg", "success");
|
ret.put("msg", "success");
|
||||||
ret.put("enable_hls", true);
|
ret.put("enable_hls", false);
|
||||||
|
|
||||||
if (!"rtp".equals(param.getApp())) {
|
if (!"rtp".equals(param.getApp())) {
|
||||||
ret.put("enable_audio", true);
|
ret.put("enable_audio", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
taskExecutor.execute(()->{
|
||||||
ZlmHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_publish, json);
|
ZlmHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_publish, json);
|
||||||
if (subscribe != null) {
|
if (subscribe != null) {
|
||||||
if (mediaInfo != null) {
|
if (mediaInfo != null) {
|
||||||
subscribe.response(mediaInfo, json);
|
subscribe.response(mediaInfo, json);
|
||||||
}else {
|
}else {
|
||||||
ret.put("code", 1);
|
ret.put("code", 1);
|
||||||
ret.put("msg", "zlm not register");
|
ret.put("msg", "zlm not register");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
|
|
||||||
if ("rtp".equals(param.getApp())) {
|
if ("rtp".equals(param.getApp())) {
|
||||||
ret.put("enable_mp4", userSetting.getRecordSip());
|
ret.put("enable_mp4", userSetting.getRecordSip());
|
||||||
@ -292,113 +262,10 @@ public class ZLMHttpHookListener {
|
|||||||
ret.put("mp4_max_second", 10);
|
ret.put("mp4_max_second", 10);
|
||||||
ret.put("enable_mp4", true);
|
ret.put("enable_mp4", true);
|
||||||
ret.put("enable_audio", true);
|
ret.put("enable_audio", true);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 录制mp4完成后通知事件;此事件对回复不敏感。
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@ResponseBody
|
|
||||||
@PostMapping(value = "/on_record_mp4", produces = "application/json;charset=UTF-8")
|
|
||||||
public JSONObject onRecordMp4(@RequestBody JSONObject json){
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
|
||||||
logger.debug("[ ZLM HOOK ]on_record_mp4 API调用,参数:" + json.toString());
|
|
||||||
}
|
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
JSONObject ret = new JSONObject();
|
|
||||||
ret.put("code", 0);
|
|
||||||
ret.put("msg", "success");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 录制hls完成后通知事件;此事件对回复不敏感。
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@ResponseBody
|
|
||||||
@PostMapping(value = "/on_record_ts", produces = "application/json;charset=UTF-8")
|
|
||||||
public JSONObject onRecordTs(@RequestBody JSONObject json){
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
|
||||||
logger.debug("[ ZLM HOOK ]on_record_ts API调用,参数:" + json.toString());
|
|
||||||
}
|
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
JSONObject ret = new JSONObject();
|
|
||||||
ret.put("code", 0);
|
|
||||||
ret.put("msg", "success");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* rtsp专用的鉴权事件,先触发on_rtsp_realm事件然后才会触发on_rtsp_auth事件。
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@ResponseBody
|
|
||||||
@PostMapping(value = "/on_rtsp_realm", produces = "application/json;charset=UTF-8")
|
|
||||||
public JSONObject onRtspRealm(@RequestBody JSONObject json){
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
|
||||||
logger.debug("[ ZLM HOOK ]on_rtsp_realm API调用,参数:" + json.toString());
|
|
||||||
}
|
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
JSONObject ret = new JSONObject();
|
|
||||||
ret.put("code", 0);
|
|
||||||
ret.put("realm", "");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 该rtsp流是否开启rtsp专用方式的鉴权事件,开启后才会触发on_rtsp_auth事件。需要指出的是rtsp也支持url参数鉴权,它支持两种方式鉴权。
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@ResponseBody
|
|
||||||
@PostMapping(value = "/on_rtsp_auth", produces = "application/json;charset=UTF-8")
|
|
||||||
public JSONObject onRtspAuth(@RequestBody JSONObject json){
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
|
||||||
logger.debug("[ ZLM HOOK ]on_rtsp_auth API调用,参数:" + json.toString());
|
|
||||||
}
|
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
JSONObject ret = new JSONObject();
|
|
||||||
ret.put("code", 0);
|
|
||||||
ret.put("encrypted", false);
|
|
||||||
ret.put("passwd", "test");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* shell登录鉴权,ZLMediaKit提供简单的telnet调试方式,使用telnet 127.0.0.1 9000能进入MediaServer进程的shell界面。
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@ResponseBody
|
|
||||||
@PostMapping(value = "/on_shell_login", produces = "application/json;charset=UTF-8")
|
|
||||||
public JSONObject onShellLogin(@RequestBody JSONObject json){
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
|
||||||
logger.debug("[ ZLM HOOK ]on_shell_login API调用,参数:" + json.toString());
|
|
||||||
}
|
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
ZlmHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_shell_login, json);
|
|
||||||
if (subscribe != null ) {
|
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
|
||||||
if (mediaInfo != null) {
|
|
||||||
subscribe.response(mediaInfo, json);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONObject ret = new JSONObject();
|
|
||||||
ret.put("code", 0);
|
|
||||||
ret.put("msg", "success");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* rtsp/rtmp流注册或注销时触发此事件;此事件对回复不敏感。
|
* rtsp/rtmp流注册或注销时触发此事件;此事件对回复不敏感。
|
||||||
@ -406,137 +273,139 @@ public class ZLMHttpHookListener {
|
|||||||
*/
|
*/
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
@PostMapping(value = "/on_stream_changed", produces = "application/json;charset=UTF-8")
|
@PostMapping(value = "/on_stream_changed", produces = "application/json;charset=UTF-8")
|
||||||
public JSONObject onStreamChanged(@RequestBody MediaItem item){
|
public JSONObject onStreamChanged(@RequestBody OnStreamChangedHookParam param){
|
||||||
|
|
||||||
logger.info("[ ZLM HOOK ]on_stream_changed API调用,参数:" + JSONObject.toJSONString(item));
|
if (param.isRegist()) {
|
||||||
String mediaServerId = item.getMediaServerId();
|
logger.info("[ZLM HOOK] 流注册, {}->{}->{}/{}", param.getMediaServerId(), param.getSchema(), param.getApp(), param.getStream());
|
||||||
JSONObject json = (JSONObject) JSON.toJSON(item);
|
|
||||||
ZlmHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_stream_changed, json);
|
|
||||||
if (subscribe != null ) {
|
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
|
||||||
if (mediaInfo != null) {
|
|
||||||
subscribe.response(mediaInfo, json);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 流消失移除redis play
|
|
||||||
String app = item.getApp();
|
|
||||||
String stream = item.getStream();
|
|
||||||
String schema = item.getSchema();
|
|
||||||
List<MediaItem.MediaTrack> tracks = item.getTracks();
|
|
||||||
boolean regist = item.isRegist();
|
|
||||||
if (regist) {
|
|
||||||
if (item.getOriginType() == OriginType.RTMP_PUSH.ordinal()
|
|
||||||
|| item.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
|
||||||
|| item.getOriginType() == OriginType.RTC_PUSH.ordinal()) {
|
|
||||||
|
|
||||||
StreamAuthorityInfo streamAuthorityInfo = redisCatchStorage.getStreamAuthorityInfo(app, stream);
|
|
||||||
if (streamAuthorityInfo == null) {
|
|
||||||
streamAuthorityInfo = StreamAuthorityInfo.getInstanceByHook(item);
|
|
||||||
}else {
|
|
||||||
streamAuthorityInfo.setOriginType(item.getOriginType());
|
|
||||||
streamAuthorityInfo.setOriginTypeStr(item.getOriginTypeStr());
|
|
||||||
}
|
|
||||||
redisCatchStorage.updateStreamAuthorityInfo(app, stream, streamAuthorityInfo);
|
|
||||||
}
|
|
||||||
}else {
|
}else {
|
||||||
redisCatchStorage.removeStreamAuthorityInfo(app, stream);
|
logger.info("[ZLM HOOK] 流注销, {}->{}->{}/{}", param.getMediaServerId(), param.getSchema(), param.getApp(), param.getStream());
|
||||||
}
|
}
|
||||||
|
|
||||||
if ("rtsp".equals(schema)){
|
|
||||||
logger.info("on_stream_changed:注册->{}, app->{}, stream->{}", regist, app, stream);
|
|
||||||
if (regist) {
|
|
||||||
mediaServerService.addCount(mediaServerId);
|
|
||||||
}else {
|
|
||||||
mediaServerService.removeCount(mediaServerId);
|
|
||||||
}
|
|
||||||
if (item.getOriginType() == OriginType.PULL.ordinal()
|
|
||||||
|| item.getOriginType() == OriginType.FFMPEG_PULL.ordinal()) {
|
|
||||||
// 设置拉流代理上线/离线
|
|
||||||
streamProxyService.updateStatus(regist, app, stream);
|
|
||||||
}
|
|
||||||
if ("rtp".equals(app) && !regist ) {
|
|
||||||
StreamInfo streamInfo = redisCatchStorage.queryPlayByStreamId(stream);
|
|
||||||
if (streamInfo!=null){
|
|
||||||
redisCatchStorage.stopPlay(streamInfo);
|
|
||||||
storager.stopPlay(streamInfo.getDeviceID(), streamInfo.getChannelId());
|
|
||||||
}else{
|
|
||||||
streamInfo = redisCatchStorage.queryPlayback(null, null, stream, null);
|
|
||||||
if (streamInfo != null) {
|
|
||||||
redisCatchStorage.stopPlayback(streamInfo.getDeviceID(), streamInfo.getChannelId(),
|
|
||||||
streamInfo.getStream(), null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}else {
|
|
||||||
if (!"rtp".equals(app)){
|
|
||||||
String type = OriginType.values()[item.getOriginType()].getType();
|
|
||||||
MediaServerItem mediaServerItem = mediaServerService.getOne(mediaServerId);
|
|
||||||
|
|
||||||
if (mediaServerItem != null){
|
JSONObject json = (JSONObject) JSON.toJSON(param);
|
||||||
if (regist) {
|
taskExecutor.execute(()->{
|
||||||
StreamAuthorityInfo streamAuthorityInfo = redisCatchStorage.getStreamAuthorityInfo(app, stream);
|
ZlmHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_stream_changed, json);
|
||||||
String callId = null;
|
if (subscribe != null ) {
|
||||||
if (streamAuthorityInfo != null) {
|
MediaServerItem mediaInfo = mediaServerService.getOne(param.getMediaServerId());
|
||||||
callId = streamAuthorityInfo.getCallId();
|
if (mediaInfo != null) {
|
||||||
}
|
subscribe.response(mediaInfo, json);
|
||||||
StreamInfo streamInfoByAppAndStream = mediaService.getStreamInfoByAppAndStream(mediaServerItem,
|
|
||||||
app, stream, tracks, callId);
|
|
||||||
item.setStreamInfo(streamInfoByAppAndStream);
|
|
||||||
redisCatchStorage.addStream(mediaServerItem, type, app, stream, item);
|
|
||||||
if (item.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
|
||||||
|| item.getOriginType() == OriginType.RTMP_PUSH.ordinal()
|
|
||||||
|| item.getOriginType() == OriginType.RTC_PUSH.ordinal() ) {
|
|
||||||
item.setSeverId(userSetting.getServerId());
|
|
||||||
zlmMediaListManager.addPush(item);
|
|
||||||
}
|
|
||||||
}else {
|
|
||||||
// 兼容流注销时类型从redis记录获取
|
|
||||||
MediaItem mediaItem = redisCatchStorage.getStreamInfo(app, stream, mediaServerId);
|
|
||||||
if (mediaItem != null) {
|
|
||||||
type = OriginType.values()[mediaItem.getOriginType()].getType();
|
|
||||||
redisCatchStorage.removeStream(mediaServerItem.getId(), type, app, stream);
|
|
||||||
}
|
|
||||||
GbStream gbStream = storager.getGbStream(app, stream);
|
|
||||||
if (gbStream != null) {
|
|
||||||
// eventPublisher.catalogEventPublishForStream(null, gbStream, CatalogEvent.OFF);
|
|
||||||
}
|
|
||||||
zlmMediaListManager.removeMedia(app, stream);
|
|
||||||
}
|
|
||||||
if (type != null) {
|
|
||||||
// 发送流变化redis消息
|
|
||||||
JSONObject jsonObject = new JSONObject();
|
|
||||||
jsonObject.put("serverId", userSetting.getServerId());
|
|
||||||
jsonObject.put("app", app);
|
|
||||||
jsonObject.put("stream", stream);
|
|
||||||
jsonObject.put("register", regist);
|
|
||||||
jsonObject.put("mediaServerId", mediaServerId);
|
|
||||||
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!regist) {
|
// 流消失移除redis play
|
||||||
List<SendRtpItem> sendRtpItems = redisCatchStorage.querySendRTPServerByStream(stream);
|
List<OnStreamChangedHookParam.MediaTrack> tracks = param.getTracks();
|
||||||
if (sendRtpItems.size() > 0) {
|
if (param.isRegist()) {
|
||||||
for (SendRtpItem sendRtpItem : sendRtpItems) {
|
if (param.getOriginType() == OriginType.RTMP_PUSH.ordinal()
|
||||||
if (sendRtpItem.getApp().equals(app)) {
|
|| param.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
||||||
String platformId = sendRtpItem.getPlatformId();
|
|| param.getOriginType() == OriginType.RTC_PUSH.ordinal()) {
|
||||||
ParentPlatform platform = storager.queryParentPlatByServerGBId(platformId);
|
|
||||||
Device device = deviceService.getDevice(platformId);
|
|
||||||
|
|
||||||
try {
|
StreamAuthorityInfo streamAuthorityInfo = redisCatchStorage.getStreamAuthorityInfo(param.getApp(), param.getStream());
|
||||||
if (platform != null) {
|
if (streamAuthorityInfo == null) {
|
||||||
commanderFroPlatform.streamByeCmd(platform, sendRtpItem);
|
streamAuthorityInfo = StreamAuthorityInfo.getInstanceByHook(param);
|
||||||
}else {
|
}else {
|
||||||
cmder.streamByeCmd(device, sendRtpItem.getChannelId(), stream, sendRtpItem.getCallId());
|
streamAuthorityInfo.setOriginType(param.getOriginType());
|
||||||
|
streamAuthorityInfo.setOriginTypeStr(param.getOriginTypeStr());
|
||||||
|
}
|
||||||
|
redisCatchStorage.updateStreamAuthorityInfo(param.getApp(), param.getStream(), streamAuthorityInfo);
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
redisCatchStorage.removeStreamAuthorityInfo(param.getApp(), param.getStream());
|
||||||
|
}
|
||||||
|
|
||||||
|
if ("rtsp".equals(param.getSchema())){
|
||||||
|
if (param.isRegist()) {
|
||||||
|
mediaServerService.addCount(param.getMediaServerId());
|
||||||
|
}else {
|
||||||
|
mediaServerService.removeCount(param.getMediaServerId());
|
||||||
|
}
|
||||||
|
if (param.getOriginType() == OriginType.PULL.ordinal()
|
||||||
|
|| param.getOriginType() == OriginType.FFMPEG_PULL.ordinal()) {
|
||||||
|
// 设置拉流代理上线/离线
|
||||||
|
streamProxyService.updateStatus(param.isRegist(), param.getApp(), param.getStream());
|
||||||
|
}
|
||||||
|
if ("rtp".equals(param.getApp()) && !param.isRegist() ) {
|
||||||
|
StreamInfo streamInfo = redisCatchStorage.queryPlayByStreamId(param.getStream());
|
||||||
|
if (streamInfo!=null){
|
||||||
|
redisCatchStorage.stopPlay(streamInfo);
|
||||||
|
storager.stopPlay(streamInfo.getDeviceID(), streamInfo.getChannelId());
|
||||||
|
}else{
|
||||||
|
streamInfo = redisCatchStorage.queryPlayback(null, null, param.getStream(), null);
|
||||||
|
if (streamInfo != null) {
|
||||||
|
redisCatchStorage.stopPlayback(streamInfo.getDeviceID(), streamInfo.getChannelId(),
|
||||||
|
streamInfo.getStream(), null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
if (!"rtp".equals(param.getApp())){
|
||||||
|
String type = OriginType.values()[param.getOriginType()].getType();
|
||||||
|
MediaServerItem mediaServerItem = mediaServerService.getOne(param.getMediaServerId());
|
||||||
|
|
||||||
|
if (mediaServerItem != null){
|
||||||
|
if (param.isRegist()) {
|
||||||
|
StreamAuthorityInfo streamAuthorityInfo = redisCatchStorage.getStreamAuthorityInfo(param.getApp(), param.getStream());
|
||||||
|
String callId = null;
|
||||||
|
if (streamAuthorityInfo != null) {
|
||||||
|
callId = streamAuthorityInfo.getCallId();
|
||||||
|
}
|
||||||
|
StreamInfo streamInfoByAppAndStream = mediaService.getStreamInfoByAppAndStream(mediaServerItem,
|
||||||
|
param.getApp(), param.getStream(), tracks, callId);
|
||||||
|
param.setStreamInfo(streamInfoByAppAndStream);
|
||||||
|
redisCatchStorage.addStream(mediaServerItem, type, param.getApp(), param.getStream(), param);
|
||||||
|
if (param.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
||||||
|
|| param.getOriginType() == OriginType.RTMP_PUSH.ordinal()
|
||||||
|
|| param.getOriginType() == OriginType.RTC_PUSH.ordinal() ) {
|
||||||
|
param.setSeverId(userSetting.getServerId());
|
||||||
|
zlmMediaListManager.addPush(param);
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
// 兼容流注销时类型从redis记录获取
|
||||||
|
OnStreamChangedHookParam onStreamChangedHookParam = redisCatchStorage.getStreamInfo(param.getApp(), param.getStream(), param.getMediaServerId());
|
||||||
|
if (onStreamChangedHookParam != null) {
|
||||||
|
type = OriginType.values()[onStreamChangedHookParam.getOriginType()].getType();
|
||||||
|
redisCatchStorage.removeStream(mediaServerItem.getId(), type, param.getApp(), param.getStream());
|
||||||
|
}
|
||||||
|
GbStream gbStream = storager.getGbStream(param.getApp(), param.getStream());
|
||||||
|
if (gbStream != null) {
|
||||||
|
// eventPublisher.catalogEventPublishForStream(null, gbStream, CatalogEvent.OFF);
|
||||||
|
}
|
||||||
|
zlmMediaListManager.removeMedia(param.getApp(), param.getStream());
|
||||||
|
}
|
||||||
|
if (type != null) {
|
||||||
|
// 发送流变化redis消息
|
||||||
|
JSONObject jsonObject = new JSONObject();
|
||||||
|
jsonObject.put("serverId", userSetting.getServerId());
|
||||||
|
jsonObject.put("app", param.getApp());
|
||||||
|
jsonObject.put("stream", param.getStream());
|
||||||
|
jsonObject.put("register", param.isRegist());
|
||||||
|
jsonObject.put("mediaServerId", param.getMediaServerId());
|
||||||
|
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!param.isRegist()) {
|
||||||
|
List<SendRtpItem> sendRtpItems = redisCatchStorage.querySendRTPServerByStream(param.getStream());
|
||||||
|
if (sendRtpItems.size() > 0) {
|
||||||
|
for (SendRtpItem sendRtpItem : sendRtpItems) {
|
||||||
|
if (sendRtpItem.getApp().equals(param.getApp())) {
|
||||||
|
String platformId = sendRtpItem.getPlatformId();
|
||||||
|
ParentPlatform platform = storager.queryParentPlatByServerGBId(platformId);
|
||||||
|
Device device = deviceService.getDevice(platformId);
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (platform != null) {
|
||||||
|
commanderFroPlatform.streamByeCmd(platform, sendRtpItem);
|
||||||
|
}else {
|
||||||
|
cmder.streamByeCmd(device, sendRtpItem.getChannelId(), param.getStream(), sendRtpItem.getCallId());
|
||||||
|
}
|
||||||
|
} catch (SipException | InvalidArgumentException | ParseException | SsrcTransactionNotFoundException e) {
|
||||||
|
logger.error("[命令发送失败] 国标级联 发送BYE: {}", e.getMessage());
|
||||||
}
|
}
|
||||||
} catch (SipException | InvalidArgumentException | ParseException | SsrcTransactionNotFoundException e) {
|
|
||||||
logger.error("[命令发送失败] 国标级联 发送BYE: {}", e.getMessage());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
|
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
@ -550,19 +419,16 @@ public class ZLMHttpHookListener {
|
|||||||
*/
|
*/
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
@PostMapping(value = "/on_stream_none_reader", produces = "application/json;charset=UTF-8")
|
@PostMapping(value = "/on_stream_none_reader", produces = "application/json;charset=UTF-8")
|
||||||
public JSONObject onStreamNoneReader(@RequestBody JSONObject json){
|
public JSONObject onStreamNoneReader(@RequestBody OnStreamNoneReaderHookParam param){
|
||||||
|
|
||||||
logger.info("[ ZLM HOOK ]on_stream_none_reader API调用,参数:" + json.toString());
|
logger.info("[ZLM HOOK]流无人观看:{]->{}->{}/{}" + param.getMediaServerId(), param.getSchema(), param.getApp(), param.getStream());
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
|
||||||
String streamId = json.getString("stream");
|
|
||||||
String app = json.getString("app");
|
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
// 录像下载
|
// 录像下载
|
||||||
ret.put("close", userSetting.getStreamOnDemand());
|
if ("rtp".equals(param.getApp())){
|
||||||
if ("rtp".equals(app)){
|
ret.put("close", userSetting.getStreamOnDemand());
|
||||||
// 国标流, 点播/录像回放/录像下载
|
// 国标流, 点播/录像回放/录像下载
|
||||||
StreamInfo streamInfoForPlayCatch = redisCatchStorage.queryPlayByStreamId(streamId);
|
StreamInfo streamInfoForPlayCatch = redisCatchStorage.queryPlayByStreamId(param.getStream());
|
||||||
// 点播
|
// 点播
|
||||||
if (streamInfoForPlayCatch != null) {
|
if (streamInfoForPlayCatch != null) {
|
||||||
// 收到无人观看说明流也没有在往上级推送
|
// 收到无人观看说明流也没有在往上级推送
|
||||||
@ -596,7 +462,7 @@ public class ZLMHttpHookListener {
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
// 录像回放
|
// 录像回放
|
||||||
StreamInfo streamInfoForPlayBackCatch = redisCatchStorage.queryPlayback(null, null, streamId, null);
|
StreamInfo streamInfoForPlayBackCatch = redisCatchStorage.queryPlayback(null, null, param.getStream(), null);
|
||||||
if (streamInfoForPlayBackCatch != null ) {
|
if (streamInfoForPlayBackCatch != null ) {
|
||||||
if (streamInfoForPlayBackCatch.isPause()) {
|
if (streamInfoForPlayBackCatch.isPause()) {
|
||||||
ret.put("close", false);
|
ret.put("close", false);
|
||||||
@ -617,7 +483,7 @@ public class ZLMHttpHookListener {
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
// 录像下载
|
// 录像下载
|
||||||
StreamInfo streamInfoForDownload = redisCatchStorage.queryDownload(null, null, streamId, null);
|
StreamInfo streamInfoForDownload = redisCatchStorage.queryDownload(null, null, param.getStream(), null);
|
||||||
// 进行录像下载时无人观看不断流
|
// 进行录像下载时无人观看不断流
|
||||||
if (streamInfoForDownload != null) {
|
if (streamInfoForDownload != null) {
|
||||||
ret.put("close", false);
|
ret.put("close", false);
|
||||||
@ -626,19 +492,19 @@ public class ZLMHttpHookListener {
|
|||||||
}else {
|
}else {
|
||||||
// 非国标流 推流/拉流代理
|
// 非国标流 推流/拉流代理
|
||||||
// 拉流代理
|
// 拉流代理
|
||||||
StreamProxyItem streamProxyItem = streamProxyService.getStreamProxyByAppAndStream(app, streamId);
|
StreamProxyItem streamProxyItem = streamProxyService.getStreamProxyByAppAndStream(param.getApp(), param.getStream());
|
||||||
if (streamProxyItem != null ) {
|
if (streamProxyItem != null ) {
|
||||||
if (streamProxyItem.isEnable_remove_none_reader()) {
|
if (streamProxyItem.isEnable_remove_none_reader()) {
|
||||||
// 无人观看自动移除
|
// 无人观看自动移除
|
||||||
ret.put("close", true);
|
ret.put("close", true);
|
||||||
streamProxyService.del(app, streamId);
|
streamProxyService.del(param.getApp(), param.getStream());
|
||||||
String url = streamProxyItem.getUrl() != null?streamProxyItem.getUrl():streamProxyItem.getSrc_url();
|
String url = streamProxyItem.getUrl() != null?streamProxyItem.getUrl():streamProxyItem.getSrc_url();
|
||||||
logger.info("[{}/{}]<-[{}] 拉流代理无人观看已经移除", app, streamId, url);
|
logger.info("[{}/{}]<-[{}] 拉流代理无人观看已经移除", param.getApp(), param.getStream(), url);
|
||||||
}else if (streamProxyItem.isEnable_disable_none_reader()) {
|
}else if (streamProxyItem.isEnable_disable_none_reader()) {
|
||||||
// 无人观看停用
|
// 无人观看停用
|
||||||
ret.put("close", true);
|
ret.put("close", true);
|
||||||
// 修改数据
|
// 修改数据
|
||||||
streamProxyService.stop(app, streamId);
|
streamProxyService.stop(param.getApp(), param.getStream());
|
||||||
}else {
|
}else {
|
||||||
ret.put("close", false);
|
ret.put("close", false);
|
||||||
}
|
}
|
||||||
@ -660,35 +526,33 @@ public class ZLMHttpHookListener {
|
|||||||
*/
|
*/
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
@PostMapping(value = "/on_stream_not_found", produces = "application/json;charset=UTF-8")
|
@PostMapping(value = "/on_stream_not_found", produces = "application/json;charset=UTF-8")
|
||||||
public JSONObject onStreamNotFound(@RequestBody JSONObject json){
|
public JSONObject onStreamNotFound(@RequestBody OnStreamNotFoundHookParam param){
|
||||||
if (logger.isDebugEnabled()) {
|
logger.info("[ZLM HOOK] 流未找到:{}->{}->{}/{}" + param.getMediaServerId(), param.getSchema(), param.getApp(), param.getStream());
|
||||||
logger.debug("[ ZLM HOOK ]on_stream_not_found API调用,参数:" + json.toString());
|
taskExecutor.execute(()->{
|
||||||
}
|
MediaServerItem mediaInfo = mediaServerService.getOne(param.getMediaServerId());
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
if (userSetting.isAutoApplyPlay() && mediaInfo != null) {
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
if ("rtp".equals(param.getApp())) {
|
||||||
if (userSetting.isAutoApplyPlay() && mediaInfo != null) {
|
if (mediaInfo.isRtpEnable()) {
|
||||||
String app = json.getString("app");
|
String[] s = param.getStream().split("_");
|
||||||
String streamId = json.getString("stream");
|
if (s.length == 2) {
|
||||||
if ("rtp".equals(app)) {
|
String deviceId = s[0];
|
||||||
if (mediaInfo.isRtpEnable()) {
|
String channelId = s[1];
|
||||||
String[] s = streamId.split("_");
|
Device device = redisCatchStorage.getDevice(deviceId);
|
||||||
if (s.length == 2) {
|
if (device != null) {
|
||||||
String deviceId = s[0];
|
playService.play(mediaInfo,deviceId, channelId, null, null, null);
|
||||||
String channelId = s[1];
|
}
|
||||||
Device device = redisCatchStorage.getDevice(deviceId);
|
|
||||||
if (device != null) {
|
|
||||||
playService.play(mediaInfo,deviceId, channelId, null, null, null);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}else {
|
||||||
}else {
|
// 拉流代理
|
||||||
// 拉流代理
|
StreamProxyItem streamProxyByAppAndStream = streamProxyService.getStreamProxyByAppAndStream(param.getApp(), param.getStream());
|
||||||
StreamProxyItem streamProxyByAppAndStream = streamProxyService.getStreamProxyByAppAndStream(app, streamId);
|
if (streamProxyByAppAndStream != null && streamProxyByAppAndStream.isEnable_disable_none_reader()) {
|
||||||
if (streamProxyByAppAndStream != null && streamProxyByAppAndStream.isEnable_disable_none_reader()) {
|
streamProxyService.start(param.getApp(), param.getStream());
|
||||||
streamProxyService.start(app, streamId);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
|
|
||||||
|
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
@ -704,22 +568,20 @@ public class ZLMHttpHookListener {
|
|||||||
@PostMapping(value = "/on_server_started", produces = "application/json;charset=UTF-8")
|
@PostMapping(value = "/on_server_started", produces = "application/json;charset=UTF-8")
|
||||||
public JSONObject onServerStarted(HttpServletRequest request, @RequestBody JSONObject jsonObject){
|
public JSONObject onServerStarted(HttpServletRequest request, @RequestBody JSONObject jsonObject){
|
||||||
|
|
||||||
if (logger.isDebugEnabled()) {
|
jsonObject.put("ip", request.getRemoteAddr());
|
||||||
logger.debug("[ ZLM HOOK ]on_server_started API调用,参数:" + jsonObject.toString());
|
ZLMServerConfig zlmServerConfig = JSON.to(ZLMServerConfig.class, jsonObject);
|
||||||
}
|
zlmServerConfig.setIp(request.getRemoteAddr());
|
||||||
String remoteAddr = request.getRemoteAddr();
|
logger.info("[ZLM HOOK] zlm 启动 " + zlmServerConfig.getGeneralMediaServerId());
|
||||||
jsonObject.put("ip", remoteAddr);
|
taskExecutor.execute(()->{
|
||||||
List<ZlmHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(HookType.on_server_started);
|
List<ZlmHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(HookType.on_server_started);
|
||||||
if (subscribes != null && subscribes.size() > 0) {
|
if (subscribes != null && subscribes.size() > 0) {
|
||||||
for (ZlmHttpHookSubscribe.Event subscribe : subscribes) {
|
for (ZlmHttpHookSubscribe.Event subscribe : subscribes) {
|
||||||
subscribe.response(null, jsonObject);
|
subscribe.response(null, jsonObject);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
ZLMServerConfig zlmServerConfig = JSONObject.toJavaObject(jsonObject, ZLMServerConfig.class);
|
|
||||||
if (zlmServerConfig !=null ) {
|
|
||||||
mediaServerService.zlmServerOnline(zlmServerConfig);
|
mediaServerService.zlmServerOnline(zlmServerConfig);
|
||||||
}
|
});
|
||||||
|
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
ret.put("msg", "success");
|
ret.put("msg", "success");
|
||||||
@ -731,33 +593,33 @@ public class ZLMHttpHookListener {
|
|||||||
*/
|
*/
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
@PostMapping(value = "/on_send_rtp_stopped", produces = "application/json;charset=UTF-8")
|
@PostMapping(value = "/on_send_rtp_stopped", produces = "application/json;charset=UTF-8")
|
||||||
public JSONObject onSendRtpStopped(HttpServletRequest request, @RequestBody JSONObject jsonObject){
|
public JSONObject onSendRtpStopped(HttpServletRequest request, @RequestBody OnSendRtpStoppedHookParam param){
|
||||||
|
|
||||||
logger.info("[ ZLM HOOK ]on_send_rtp_stopped API调用,参数:" + jsonObject);
|
logger.info("[ZLM HOOK] 发送rtp被动关闭:{}->{}/{}", param.getMediaServerId(), param.getApp(), param.getStream());
|
||||||
|
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
ret.put("msg", "success");
|
ret.put("msg", "success");
|
||||||
|
|
||||||
// 查找对应的上级推流,发送停止
|
// 查找对应的上级推流,发送停止
|
||||||
String app = jsonObject.getString("app");
|
if (!"rtp".equals(param.getApp())) {
|
||||||
if (!"rtp".equals(app)) {
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
String stream = jsonObject.getString("stream");
|
taskExecutor.execute(()->{
|
||||||
List<SendRtpItem> sendRtpItems = redisCatchStorage.querySendRTPServerByStream(stream);
|
List<SendRtpItem> sendRtpItems = redisCatchStorage.querySendRTPServerByStream(param.getStream());
|
||||||
if (sendRtpItems.size() > 0) {
|
if (sendRtpItems.size() > 0) {
|
||||||
for (SendRtpItem sendRtpItem : sendRtpItems) {
|
for (SendRtpItem sendRtpItem : sendRtpItems) {
|
||||||
ParentPlatform parentPlatform = storager.queryParentPlatByServerGBId(sendRtpItem.getPlatformId());
|
ParentPlatform parentPlatform = storager.queryParentPlatByServerGBId(sendRtpItem.getPlatformId());
|
||||||
try {
|
try {
|
||||||
commanderFroPlatform.streamByeCmd(parentPlatform, sendRtpItem.getCallId());
|
commanderFroPlatform.streamByeCmd(parentPlatform, sendRtpItem.getCallId());
|
||||||
} catch (SipException | InvalidArgumentException | ParseException e) {
|
} catch (SipException | InvalidArgumentException | ParseException e) {
|
||||||
logger.error("[命令发送失败] 国标级联 发送BYE: {}", e.getMessage());
|
logger.error("[命令发送失败] 国标级联 发送BYE: {}", e.getMessage());
|
||||||
|
}
|
||||||
|
redisCatchStorage.deleteSendRTPServer(parentPlatform.getServerGBId(), sendRtpItem.getChannelId(),
|
||||||
|
sendRtpItem.getCallId(), sendRtpItem.getStreamId());
|
||||||
}
|
}
|
||||||
redisCatchStorage.deleteSendRTPServer(parentPlatform.getServerGBId(), sendRtpItem.getChannelId(),
|
|
||||||
sendRtpItem.getCallId(), sendRtpItem.getStreamId());
|
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -3,6 +3,7 @@ package com.genersoft.iot.vmp.media.zlm;
|
|||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.service.IStreamProxyService;
|
import com.genersoft.iot.vmp.service.IStreamProxyService;
|
||||||
import com.genersoft.iot.vmp.service.IStreamPushService;
|
import com.genersoft.iot.vmp.service.IStreamPushService;
|
||||||
@ -67,19 +68,19 @@ public class ZLMMediaListManager {
|
|||||||
|
|
||||||
private Map<String, ChannelOnlineEvent> channelOnPublishEvents = new ConcurrentHashMap<>();
|
private Map<String, ChannelOnlineEvent> channelOnPublishEvents = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
public StreamPushItem addPush(MediaItem mediaItem) {
|
public StreamPushItem addPush(OnStreamChangedHookParam onStreamChangedHookParam) {
|
||||||
StreamPushItem transform = streamPushService.transform(mediaItem);
|
StreamPushItem transform = streamPushService.transform(onStreamChangedHookParam);
|
||||||
StreamPushItem pushInDb = streamPushService.getPush(mediaItem.getApp(), mediaItem.getStream());
|
StreamPushItem pushInDb = streamPushService.getPush(onStreamChangedHookParam.getApp(), onStreamChangedHookParam.getStream());
|
||||||
transform.setPushIng(mediaItem.isRegist());
|
transform.setPushIng(onStreamChangedHookParam.isRegist());
|
||||||
transform.setUpdateTime(DateUtil.getNow());
|
transform.setUpdateTime(DateUtil.getNow());
|
||||||
transform.setPushTime(DateUtil.getNow());
|
transform.setPushTime(DateUtil.getNow());
|
||||||
transform.setSelf(userSetting.getServerId().equals(mediaItem.getSeverId()));
|
transform.setSelf(userSetting.getServerId().equals(onStreamChangedHookParam.getSeverId()));
|
||||||
if (pushInDb == null) {
|
if (pushInDb == null) {
|
||||||
transform.setCreateTime(DateUtil.getNow());
|
transform.setCreateTime(DateUtil.getNow());
|
||||||
streamPushMapper.add(transform);
|
streamPushMapper.add(transform);
|
||||||
}else {
|
}else {
|
||||||
streamPushMapper.update(transform);
|
streamPushMapper.update(transform);
|
||||||
gbStreamMapper.updateMediaServer(mediaItem.getApp(), mediaItem.getStream(), mediaItem.getMediaServerId());
|
gbStreamMapper.updateMediaServer(onStreamChangedHookParam.getApp(), onStreamChangedHookParam.getStream(), onStreamChangedHookParam.getMediaServerId());
|
||||||
}
|
}
|
||||||
ChannelOnlineEvent channelOnlineEventLister = getChannelOnlineEventLister(transform.getApp(), transform.getStream());
|
ChannelOnlineEvent channelOnlineEventLister = getChannelOnlineEventLister(transform.getApp(), transform.getStream());
|
||||||
if ( channelOnlineEventLister != null) {
|
if ( channelOnlineEventLister != null) {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm;
|
package com.genersoft.iot.vmp.media.zlm;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import okhttp3.*;
|
import okhttp3.*;
|
||||||
import okhttp3.logging.HttpLoggingInterceptor;
|
import okhttp3.logging.HttpLoggingInterceptor;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm;
|
package com.genersoft.iot.vmp.media.zlm;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
@ -333,7 +333,7 @@ public class ZLMRTPServerFactory {
|
|||||||
result= true;
|
result= true;
|
||||||
logger.info("[停止RTP推流] 成功");
|
logger.info("[停止RTP推流] 成功");
|
||||||
} else {
|
} else {
|
||||||
logger.error("[停止RTP推流] 失败: {}, 参数:{}->\r\n{}",jsonObject.getString("msg"),JSONObject.toJSON(param), jsonObject);
|
logger.error("[停止RTP推流] 失败: {}, 参数:{}->\r\n{}",jsonObject.getString("msg"),jsonObject.toJSONString(param));
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm;
|
package com.genersoft.iot.vmp.media.zlm;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.MediaConfig;
|
import com.genersoft.iot.vmp.conf.MediaConfig;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
||||||
@ -62,7 +62,7 @@ public class ZLMRunner implements CommandLineRunner {
|
|||||||
// 订阅 zlm启动事件, 新的zlm也会从这里进入系统
|
// 订阅 zlm启动事件, 新的zlm也会从这里进入系统
|
||||||
hookSubscribe.addSubscribe(hookSubscribeForServerStarted,
|
hookSubscribe.addSubscribe(hookSubscribeForServerStarted,
|
||||||
(MediaServerItem mediaServerItem, JSONObject response)->{
|
(MediaServerItem mediaServerItem, JSONObject response)->{
|
||||||
ZLMServerConfig zlmServerConfig = JSONObject.toJavaObject(response, ZLMServerConfig.class);
|
ZLMServerConfig zlmServerConfig = response.to(ZLMServerConfig.class);
|
||||||
if (zlmServerConfig !=null ) {
|
if (zlmServerConfig !=null ) {
|
||||||
if (startGetMedia != null) {
|
if (startGetMedia != null) {
|
||||||
startGetMedia.remove(zlmServerConfig.getGeneralMediaServerId());
|
startGetMedia.remove(zlmServerConfig.getGeneralMediaServerId());
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm;
|
package com.genersoft.iot.vmp.media.zlm;
|
||||||
|
|
||||||
import com.alibaba.fastjson.annotation.JSONField;
|
import com.alibaba.fastjson2.annotation.JSONField;
|
||||||
|
|
||||||
public class ZLMServerConfig {
|
public class ZLMServerConfig {
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm;
|
package com.genersoft.iot.vmp.media.zlm;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.HookType;
|
import com.genersoft.iot.vmp.media.zlm.dto.HookType;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.IHookSubscribe;
|
import com.genersoft.iot.vmp.media.zlm.dto.IHookSubscribe;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hook 订阅工厂
|
* hook 订阅工厂
|
||||||
@ -11,7 +11,7 @@ public class HookSubscribeFactory {
|
|||||||
|
|
||||||
public static HookSubscribeForStreamChange on_stream_changed(String app, String stream, boolean regist, String scheam, String mediaServerId) {
|
public static HookSubscribeForStreamChange on_stream_changed(String app, String stream, boolean regist, String scheam, String mediaServerId) {
|
||||||
HookSubscribeForStreamChange hookSubscribe = new HookSubscribeForStreamChange();
|
HookSubscribeForStreamChange hookSubscribe = new HookSubscribeForStreamChange();
|
||||||
JSONObject subscribeKey = new com.alibaba.fastjson.JSONObject();
|
JSONObject subscribeKey = new com.alibaba.fastjson2.JSONObject();
|
||||||
subscribeKey.put("app", app);
|
subscribeKey.put("app", app);
|
||||||
subscribeKey.put("stream", stream);
|
subscribeKey.put("stream", stream);
|
||||||
subscribeKey.put("regist", regist);
|
subscribeKey.put("regist", regist);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.alibaba.fastjson.annotation.JSONField;
|
import com.alibaba.fastjson2.annotation.JSONField;
|
||||||
|
|
||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.alibaba.fastjson.annotation.JSONField;
|
import com.alibaba.fastjson2.annotation.JSONField;
|
||||||
|
|
||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
|
|
||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
|
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
public class ServerKeepaliveData {
|
||||||
|
}
|
@ -1,5 +1,8 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnPublishHookParam;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流的鉴权信息
|
* 流的鉴权信息
|
||||||
* @author lin
|
* @author lin
|
||||||
@ -102,13 +105,13 @@ public class StreamAuthorityInfo {
|
|||||||
return streamAuthorityInfo;
|
return streamAuthorityInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static StreamAuthorityInfo getInstanceByHook(MediaItem mediaItem) {
|
public static StreamAuthorityInfo getInstanceByHook(OnStreamChangedHookParam onStreamChangedHookParam) {
|
||||||
StreamAuthorityInfo streamAuthorityInfo = new StreamAuthorityInfo();
|
StreamAuthorityInfo streamAuthorityInfo = new StreamAuthorityInfo();
|
||||||
streamAuthorityInfo.setApp(mediaItem.getApp());
|
streamAuthorityInfo.setApp(onStreamChangedHookParam.getApp());
|
||||||
streamAuthorityInfo.setStream(mediaItem.getStream());
|
streamAuthorityInfo.setStream(onStreamChangedHookParam.getStream());
|
||||||
streamAuthorityInfo.setId(mediaItem.getMediaServerId());
|
streamAuthorityInfo.setId(onStreamChangedHookParam.getMediaServerId());
|
||||||
streamAuthorityInfo.setOriginType(mediaItem.getOriginType());
|
streamAuthorityInfo.setOriginType(onStreamChangedHookParam.getOriginType());
|
||||||
streamAuthorityInfo.setOriginTypeStr(mediaItem.getOriginTypeStr());
|
streamAuthorityInfo.setOriginTypeStr(onStreamChangedHookParam.getOriginTypeStr());
|
||||||
return streamAuthorityInfo;
|
return streamAuthorityInfo;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
import com.genersoft.iot.vmp.utils.DateUtil;
|
import com.genersoft.iot.vmp.utils.DateUtil;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.springframework.util.unit.DataUnit;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ public class StreamPushItem extends GbStream implements Comparable<StreamPushIte
|
|||||||
* 客户端和服务器网络信息,可能为null类型
|
* 客户端和服务器网络信息,可能为null类型
|
||||||
*/
|
*/
|
||||||
@Schema(description = "客户端和服务器网络信息,可能为null类型")
|
@Schema(description = "客户端和服务器网络信息,可能为null类型")
|
||||||
private MediaItem.OriginSock originSock;
|
private OnStreamChangedHookParam.OriginSock originSock;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 产生源类型的字符串描述
|
* 产生源类型的字符串描述
|
||||||
@ -83,7 +83,7 @@ public class StreamPushItem extends GbStream implements Comparable<StreamPushIte
|
|||||||
* 音视频轨道
|
* 音视频轨道
|
||||||
*/
|
*/
|
||||||
@Schema(description = "音视频轨道")
|
@Schema(description = "音视频轨道")
|
||||||
private List<MediaItem.MediaTrack> tracks;
|
private List<OnStreamChangedHookParam.MediaTrack> tracks;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 音视频轨道
|
* 音视频轨道
|
||||||
@ -223,11 +223,11 @@ public class StreamPushItem extends GbStream implements Comparable<StreamPushIte
|
|||||||
this.originType = originType;
|
this.originType = originType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public MediaItem.OriginSock getOriginSock() {
|
public OnStreamChangedHookParam.OriginSock getOriginSock() {
|
||||||
return originSock;
|
return originSock;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setOriginSock(MediaItem.OriginSock originSock) {
|
public void setOriginSock(OnStreamChangedHookParam.OriginSock originSock) {
|
||||||
this.originSock = originSock;
|
this.originSock = originSock;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -256,11 +256,11 @@ public class StreamPushItem extends GbStream implements Comparable<StreamPushIte
|
|||||||
this.aliveSecond = aliveSecond;
|
this.aliveSecond = aliveSecond;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MediaItem.MediaTrack> getTracks() {
|
public List<OnStreamChangedHookParam.MediaTrack> getTracks() {
|
||||||
return tracks;
|
return tracks;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTracks(List<MediaItem.MediaTrack> tracks) {
|
public void setTracks(List<OnStreamChangedHookParam.MediaTrack> tracks) {
|
||||||
this.tracks = tracks;
|
this.tracks = tracks;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* zlm hook事件的参数
|
* zlm hook事件的参数
|
@ -1,4 +1,4 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* zlm hook事件中的on_play事件的参数
|
* zlm hook事件中的on_play事件的参数
|
||||||
@ -79,4 +79,8 @@ public class OnPlayHookParam extends HookParam{
|
|||||||
this.vhost = vhost;
|
this.vhost = vhost;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.format("%s://%s:%s/%s/%s?%s", schema, ip, port, app, stream, params);
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* zlm hook事件中的on_publish事件的参数
|
* zlm hook事件中的on_publish事件的参数
|
||||||
@ -79,4 +79,8 @@ public class OnPublishHookParam extends HookParam{
|
|||||||
this.vhost = vhost;
|
this.vhost = vhost;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.format("%s://%s:%s/%s/%s?%s", schema, ip, port, app, stream, params);
|
||||||
|
}
|
||||||
}
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* zlm hook事件中的on_send_rtp_stopped事件的参数
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
public class OnSendRtpStoppedHookParam extends HookParam{
|
||||||
|
private String app;
|
||||||
|
private String stream;
|
||||||
|
|
||||||
|
|
||||||
|
public String getApp() {
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApp(String app) {
|
||||||
|
this.app = app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStream() {
|
||||||
|
return stream;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStream(String stream) {
|
||||||
|
this.stream = stream;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.ServerKeepaliveData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* zlm hook事件中的on_play事件的参数
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
public class OnServerKeepaliveHookParam extends HookParam{
|
||||||
|
|
||||||
|
private ServerKeepaliveData data;
|
||||||
|
|
||||||
|
public ServerKeepaliveData getData() {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setData(ServerKeepaliveData data) {
|
||||||
|
this.data = data;
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
|
|
||||||
@ -7,7 +7,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author lin
|
* @author lin
|
||||||
*/
|
*/
|
||||||
public class MediaItem {
|
public class OnStreamChangedHookParam extends HookParam{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 注册/注销
|
* 注册/注销
|
||||||
@ -68,11 +68,6 @@ public class MediaItem {
|
|||||||
*/
|
*/
|
||||||
private String originUrl;
|
private String originUrl;
|
||||||
|
|
||||||
/**
|
|
||||||
* 流媒体服务器id
|
|
||||||
*/
|
|
||||||
private String mediaServerId;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 服务器id
|
* 服务器id
|
||||||
*/
|
*/
|
||||||
@ -412,14 +407,6 @@ public class MediaItem {
|
|||||||
this.docker = docker;
|
this.docker = docker;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getMediaServerId() {
|
|
||||||
return mediaServerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMediaServerId(String mediaServerId) {
|
|
||||||
this.mediaServerId = mediaServerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public StreamInfo getStreamInfo() {
|
public StreamInfo getStreamInfo() {
|
||||||
return streamInfo;
|
return streamInfo;
|
||||||
}
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
|
public class OnStreamNoneReaderHookParam extends HookParam{
|
||||||
|
|
||||||
|
private String schema;
|
||||||
|
private String app;
|
||||||
|
private String stream;
|
||||||
|
private String vhost;
|
||||||
|
|
||||||
|
public String getSchema() {
|
||||||
|
return schema;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSchema(String schema) {
|
||||||
|
this.schema = schema;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getApp() {
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApp(String app) {
|
||||||
|
this.app = app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStream() {
|
||||||
|
return stream;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStream(String stream) {
|
||||||
|
this.stream = stream;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getVhost() {
|
||||||
|
return vhost;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVhost(String vhost) {
|
||||||
|
this.vhost = vhost;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,86 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* zlm hook事件中的on_stream_not_found事件的参数
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
public class OnStreamNotFoundHookParam extends HookParam{
|
||||||
|
private String id;
|
||||||
|
private String app;
|
||||||
|
private String stream;
|
||||||
|
private String ip;
|
||||||
|
private String params;
|
||||||
|
private int port;
|
||||||
|
private String schema;
|
||||||
|
private String vhost;
|
||||||
|
|
||||||
|
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(String id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getApp() {
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApp(String app) {
|
||||||
|
this.app = app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStream() {
|
||||||
|
return stream;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStream(String stream) {
|
||||||
|
this.stream = stream;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getIp() {
|
||||||
|
return ip;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIp(String ip) {
|
||||||
|
this.ip = ip;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getParams() {
|
||||||
|
return params;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setParams(String params) {
|
||||||
|
this.params = params;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPort() {
|
||||||
|
return port;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPort(int port) {
|
||||||
|
this.port = port;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSchema() {
|
||||||
|
return schema;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSchema(String schema) {
|
||||||
|
this.schema = schema;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getVhost() {
|
||||||
|
return vhost;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVhost(String vhost) {
|
||||||
|
this.vhost = vhost;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.format("%s://%s:%s/%s/%s?%s", schema, ip, port, app, stream, params);
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm.dto;
|
package com.genersoft.iot.vmp.media.zlm.dto.hook;
|
||||||
|
|
||||||
public enum OriginType {
|
public enum OriginType {
|
||||||
// 不可调整顺序
|
// 不可调整顺序
|
@ -1,9 +1,10 @@
|
|||||||
package com.genersoft.iot.vmp.service;
|
package com.genersoft.iot.vmp.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMServerConfig;
|
import com.genersoft.iot.vmp.media.zlm.ZLMServerConfig;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.ServerKeepaliveData;
|
||||||
import com.genersoft.iot.vmp.service.bean.MediaServerLoad;
|
import com.genersoft.iot.vmp.service.bean.MediaServerLoad;
|
||||||
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
||||||
@ -86,7 +87,7 @@ public interface IMediaServerService {
|
|||||||
|
|
||||||
MediaServerItem getDefaultMediaServer();
|
MediaServerItem getDefaultMediaServer();
|
||||||
|
|
||||||
void updateMediaServerKeepalive(String mediaServerId, JSONObject data);
|
void updateMediaServerKeepalive(String mediaServerId, ServerKeepaliveData data);
|
||||||
|
|
||||||
boolean checkRtpServer(MediaServerItem mediaServerItem, String rtp, String stream);
|
boolean checkRtpServer(MediaServerItem mediaServerItem, String rtp, String stream);
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service;
|
package com.genersoft.iot.vmp.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service;
|
package com.genersoft.iot.vmp.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ServiceException;
|
import com.genersoft.iot.vmp.conf.exception.ServiceException;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service;
|
package com.genersoft.iot.vmp.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
package com.genersoft.iot.vmp.service;
|
package com.genersoft.iot.vmp.service;
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMServerConfig;
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaItem;
|
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
||||||
import com.genersoft.iot.vmp.service.bean.StreamPushItemFromRedis;
|
import com.genersoft.iot.vmp.service.bean.StreamPushItemFromRedis;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.ResourceBaceInfo;
|
import com.genersoft.iot.vmp.vmanager.bean.ResourceBaceInfo;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.StreamPushExcelDto;
|
|
||||||
import com.github.pagehelper.PageInfo;
|
import com.github.pagehelper.PageInfo;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -38,7 +36,7 @@ public interface IStreamPushService {
|
|||||||
|
|
||||||
List<StreamPushItem> getPushList(String mediaSererId);
|
List<StreamPushItem> getPushList(String mediaSererId);
|
||||||
|
|
||||||
StreamPushItem transform(MediaItem item);
|
StreamPushItem transform(OnStreamChangedHookParam item);
|
||||||
|
|
||||||
StreamPushItem getPush(String app, String streamId);
|
StreamPushItem getPush(String app, String streamId);
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service.bean;
|
package com.genersoft.iot.vmp.service.bean;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
|
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
|
|
||||||
|
@ -10,6 +10,7 @@ import java.util.Set;
|
|||||||
|
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.ServerKeepaliveData;
|
||||||
import com.genersoft.iot.vmp.service.bean.MediaServerLoad;
|
import com.genersoft.iot.vmp.service.bean.MediaServerLoad;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
||||||
@ -23,9 +24,9 @@ import org.springframework.transaction.TransactionDefinition;
|
|||||||
import org.springframework.transaction.TransactionStatus;
|
import org.springframework.transaction.TransactionStatus;
|
||||||
import org.springframework.util.ObjectUtils;
|
import org.springframework.util.ObjectUtils;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
||||||
import com.genersoft.iot.vmp.conf.SipConfig;
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
@ -434,7 +435,7 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
if (mediaServerConfig != null && mediaServerConfig.getInteger("code") == 0) {
|
if (mediaServerConfig != null && mediaServerConfig.getInteger("code") == 0) {
|
||||||
logger.info("[zlm心跳到期]:{}验证后zlm仍在线,恢复心跳信息,请检查zlm是否可以正常向wvp发送心跳", serverItem.getId());
|
logger.info("[zlm心跳到期]:{}验证后zlm仍在线,恢复心跳信息,请检查zlm是否可以正常向wvp发送心跳", serverItem.getId());
|
||||||
// 添加zlm信息
|
// 添加zlm信息
|
||||||
updateMediaServerKeepalive(serverItem.getId(), mediaServerConfig);
|
updateMediaServerKeepalive(serverItem.getId(), null);
|
||||||
}else {
|
}else {
|
||||||
publisher.zlmOfflineEventPublish(serverItem.getId());
|
publisher.zlmOfflineEventPublish(serverItem.getId());
|
||||||
}
|
}
|
||||||
@ -526,15 +527,15 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
Map<String, Object> param = new HashMap<>();
|
Map<String, Object> param = new HashMap<>();
|
||||||
param.put("api.secret",mediaServerItem.getSecret()); // -profile:v Baseline
|
param.put("api.secret",mediaServerItem.getSecret()); // -profile:v Baseline
|
||||||
param.put("hook.enable","1");
|
param.put("hook.enable","1");
|
||||||
param.put("hook.on_flow_report",String.format("%s/on_flow_report", hookPrex));
|
param.put("hook.on_flow_report","");
|
||||||
param.put("hook.on_play",String.format("%s/on_play", hookPrex));
|
param.put("hook.on_play",String.format("%s/on_play", hookPrex));
|
||||||
param.put("hook.on_http_access",String.format("%s/on_http_access", hookPrex));
|
param.put("hook.on_http_access","");
|
||||||
param.put("hook.on_publish", String.format("%s/on_publish", hookPrex));
|
param.put("hook.on_publish", String.format("%s/on_publish", hookPrex));
|
||||||
param.put("hook.on_record_ts",String.format("%s/on_record_ts", hookPrex));
|
param.put("hook.on_record_ts","");
|
||||||
param.put("hook.on_rtsp_auth",String.format("%s/on_rtsp_auth", hookPrex));
|
param.put("hook.on_rtsp_auth","");
|
||||||
param.put("hook.on_rtsp_realm",String.format("%s/on_rtsp_realm", hookPrex));
|
param.put("hook.on_rtsp_realm","");
|
||||||
param.put("hook.on_server_started",String.format("%s/on_server_started", hookPrex));
|
param.put("hook.on_server_started",String.format("%s/on_server_started", hookPrex));
|
||||||
param.put("hook.on_shell_login",String.format("%s/on_shell_login", hookPrex));
|
param.put("hook.on_shell_login","");
|
||||||
param.put("hook.on_stream_changed",String.format("%s/on_stream_changed", hookPrex));
|
param.put("hook.on_stream_changed",String.format("%s/on_stream_changed", hookPrex));
|
||||||
param.put("hook.on_stream_none_reader",String.format("%s/on_stream_none_reader", hookPrex));
|
param.put("hook.on_stream_none_reader",String.format("%s/on_stream_none_reader", hookPrex));
|
||||||
param.put("hook.on_stream_not_found",String.format("%s/on_stream_not_found", hookPrex));
|
param.put("hook.on_stream_not_found",String.format("%s/on_stream_not_found", hookPrex));
|
||||||
@ -551,6 +552,7 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
// 此参数不应大于播放器超时时间
|
// 此参数不应大于播放器超时时间
|
||||||
// 优化此消息以更快的收到流注销事件
|
// 优化此消息以更快的收到流注销事件
|
||||||
param.put("general.continue_push_ms", "3000" );
|
param.put("general.continue_push_ms", "3000" );
|
||||||
|
param.put("general.publishToHls", "0" );
|
||||||
// 最多等待未初始化的Track时间,单位毫秒,超时之后会忽略未初始化的Track, 设置此选项优化那些音频错误的不规范流,
|
// 最多等待未初始化的Track时间,单位毫秒,超时之后会忽略未初始化的Track, 设置此选项优化那些音频错误的不规范流,
|
||||||
// 等zlm支持给每个rtpServer设置关闭音频的时候可以不设置此选项
|
// 等zlm支持给每个rtpServer设置关闭音频的时候可以不设置此选项
|
||||||
// param.put("general.wait_track_ready_ms", "3000" );
|
// param.put("general.wait_track_ready_ms", "3000" );
|
||||||
@ -645,7 +647,7 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateMediaServerKeepalive(String mediaServerId, JSONObject data) {
|
public void updateMediaServerKeepalive(String mediaServerId, ServerKeepaliveData data) {
|
||||||
MediaServerItem mediaServerItem = getOne(mediaServerId);
|
MediaServerItem mediaServerItem = getOne(mediaServerId);
|
||||||
if (mediaServerItem == null) {
|
if (mediaServerItem == null) {
|
||||||
// 缓存不存在,从数据库查询,如果数据库不存在则是错误的
|
// 缓存不存在,从数据库查询,如果数据库不存在则是错误的
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
package com.genersoft.iot.vmp.service.impl;
|
package com.genersoft.iot.vmp.service.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.MediaConfig;
|
import com.genersoft.iot.vmp.conf.MediaConfig;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.OnPublishHookParam;
|
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamAuthorityInfo;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamAuthorityInfo;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
@ -16,7 +15,6 @@ import com.genersoft.iot.vmp.service.IMediaService;
|
|||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.util.ObjectUtils;
|
import org.springframework.util.ObjectUtils;
|
||||||
import org.springframework.util.StringUtils;
|
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class MediaServiceImpl implements IMediaService {
|
public class MediaServiceImpl implements IMediaService {
|
||||||
|
@ -25,9 +25,9 @@ import org.springframework.stereotype.Service;
|
|||||||
import org.springframework.util.ObjectUtils;
|
import org.springframework.util.ObjectUtils;
|
||||||
import org.springframework.web.context.request.async.DeferredResult;
|
import org.springframework.web.context.request.async.DeferredResult;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
@ -188,7 +188,7 @@ public class PlayServiceImpl implements IPlayService {
|
|||||||
|
|
||||||
resultHolder.invokeAllResult(msg);
|
resultHolder.invokeAllResult(msg);
|
||||||
if (hookEvent != null) {
|
if (hookEvent != null) {
|
||||||
hookEvent.response(mediaServerItem, JSONObject.parseObject(JSON.toJSONString(streamInfo)));
|
hookEvent.response(mediaServerItem, JSON.parseObject(JSON.toJSONString(streamInfo)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,17 +1,15 @@
|
|||||||
package com.genersoft.iot.vmp.service.impl;
|
package com.genersoft.iot.vmp.service.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.TreeType;
|
|
||||||
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.subscribe.catalog.CatalogEvent;
|
import com.genersoft.iot.vmp.gb28181.event.subscribe.catalog.CatalogEvent;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
|
||||||
import com.genersoft.iot.vmp.service.IGbStreamService;
|
import com.genersoft.iot.vmp.service.IGbStreamService;
|
||||||
@ -27,7 +25,6 @@ import com.genersoft.iot.vmp.service.IStreamProxyService;
|
|||||||
import com.genersoft.iot.vmp.utils.DateUtil;
|
import com.genersoft.iot.vmp.utils.DateUtil;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
import com.genersoft.iot.vmp.vmanager.bean.ErrorCode;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.ResourceBaceInfo;
|
import com.genersoft.iot.vmp.vmanager.bean.ResourceBaceInfo;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
|
||||||
import com.github.pagehelper.PageInfo;
|
import com.github.pagehelper.PageInfo;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
@ -37,9 +34,7 @@ import org.springframework.stereotype.Service;
|
|||||||
import org.springframework.transaction.TransactionDefinition;
|
import org.springframework.transaction.TransactionDefinition;
|
||||||
import org.springframework.transaction.TransactionStatus;
|
import org.springframework.transaction.TransactionStatus;
|
||||||
import org.springframework.util.ObjectUtils;
|
import org.springframework.util.ObjectUtils;
|
||||||
import org.springframework.util.StringUtils;
|
|
||||||
|
|
||||||
import java.net.InetAddress;
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -389,18 +384,18 @@ public class StreamProxyServiceImpl implements IStreamProxyService {
|
|||||||
String type = "PULL";
|
String type = "PULL";
|
||||||
|
|
||||||
// 发送redis消息
|
// 发送redis消息
|
||||||
List<MediaItem> mediaItems = redisCatchStorage.getStreams(mediaServerId, type);
|
List<OnStreamChangedHookParam> onStreamChangedHookParams = redisCatchStorage.getStreams(mediaServerId, type);
|
||||||
if (mediaItems.size() > 0) {
|
if (onStreamChangedHookParams.size() > 0) {
|
||||||
for (MediaItem mediaItem : mediaItems) {
|
for (OnStreamChangedHookParam onStreamChangedHookParam : onStreamChangedHookParams) {
|
||||||
JSONObject jsonObject = new JSONObject();
|
JSONObject jsonObject = new JSONObject();
|
||||||
jsonObject.put("serverId", userSetting.getServerId());
|
jsonObject.put("serverId", userSetting.getServerId());
|
||||||
jsonObject.put("app", mediaItem.getApp());
|
jsonObject.put("app", onStreamChangedHookParam.getApp());
|
||||||
jsonObject.put("stream", mediaItem.getStream());
|
jsonObject.put("stream", onStreamChangedHookParam.getStream());
|
||||||
jsonObject.put("register", false);
|
jsonObject.put("register", false);
|
||||||
jsonObject.put("mediaServerId", mediaServerId);
|
jsonObject.put("mediaServerId", mediaServerId);
|
||||||
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
||||||
// 移除redis内流的信息
|
// 移除redis内流的信息
|
||||||
redisCatchStorage.removeStream(mediaServerId, type, mediaItem.getApp(), mediaItem.getStream());
|
redisCatchStorage.removeStream(mediaServerId, type, onStreamChangedHookParam.getApp(), onStreamChangedHookParam.getStream());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -418,7 +413,7 @@ public class StreamProxyServiceImpl implements IStreamProxyService {
|
|||||||
private void syncPullStream(String mediaServerId){
|
private void syncPullStream(String mediaServerId){
|
||||||
MediaServerItem mediaServer = mediaServerService.getOne(mediaServerId);
|
MediaServerItem mediaServer = mediaServerService.getOne(mediaServerId);
|
||||||
if (mediaServer != null) {
|
if (mediaServer != null) {
|
||||||
List<MediaItem> allPullStream = redisCatchStorage.getStreams(mediaServerId, "PULL");
|
List<OnStreamChangedHookParam> allPullStream = redisCatchStorage.getStreams(mediaServerId, "PULL");
|
||||||
if (allPullStream.size() > 0) {
|
if (allPullStream.size() > 0) {
|
||||||
zlmresTfulUtils.getMediaList(mediaServer, jsonObject->{
|
zlmresTfulUtils.getMediaList(mediaServer, jsonObject->{
|
||||||
Map<String, StreamInfo> stringStreamInfoMap = new HashMap<>();
|
Map<String, StreamInfo> stringStreamInfoMap = new HashMap<>();
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package com.genersoft.iot.vmp.service.impl;
|
package com.genersoft.iot.vmp.service.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.alibaba.fastjson.TypeReference;
|
import com.alibaba.fastjson2.TypeReference;
|
||||||
import com.genersoft.iot.vmp.conf.MediaConfig;
|
import com.genersoft.iot.vmp.conf.MediaConfig;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
@ -11,6 +11,8 @@ import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
|||||||
import com.genersoft.iot.vmp.gb28181.event.subscribe.catalog.CatalogEvent;
|
import com.genersoft.iot.vmp.gb28181.event.subscribe.catalog.CatalogEvent;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OriginType;
|
||||||
import com.genersoft.iot.vmp.service.IGbStreamService;
|
import com.genersoft.iot.vmp.service.IGbStreamService;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.service.IStreamPushService;
|
import com.genersoft.iot.vmp.service.IStreamPushService;
|
||||||
@ -29,7 +31,6 @@ import org.springframework.stereotype.Service;
|
|||||||
import org.springframework.transaction.TransactionDefinition;
|
import org.springframework.transaction.TransactionDefinition;
|
||||||
import org.springframework.transaction.TransactionStatus;
|
import org.springframework.transaction.TransactionStatus;
|
||||||
import org.springframework.util.ObjectUtils;
|
import org.springframework.util.ObjectUtils;
|
||||||
import org.springframework.util.StringUtils;
|
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
@ -93,8 +94,8 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
|
|
||||||
Map<String, StreamPushItem> result = new HashMap<>();
|
Map<String, StreamPushItem> result = new HashMap<>();
|
||||||
|
|
||||||
List<MediaItem> mediaItems = JSON.parseObject(jsonData, new TypeReference<List<MediaItem>>() {});
|
List<OnStreamChangedHookParam> onStreamChangedHookParams = JSON.parseObject(jsonData, new TypeReference<List<OnStreamChangedHookParam>>() {});
|
||||||
for (MediaItem item : mediaItems) {
|
for (OnStreamChangedHookParam item : onStreamChangedHookParams) {
|
||||||
|
|
||||||
// 不保存国标推理以及拉流代理的流
|
// 不保存国标推理以及拉流代理的流
|
||||||
if (item.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
if (item.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
||||||
@ -112,7 +113,7 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
return new ArrayList<>(result.values());
|
return new ArrayList<>(result.values());
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public StreamPushItem transform(MediaItem item) {
|
public StreamPushItem transform(OnStreamChangedHookParam item) {
|
||||||
StreamPushItem streamPushItem = new StreamPushItem();
|
StreamPushItem streamPushItem = new StreamPushItem();
|
||||||
streamPushItem.setApp(item.getApp());
|
streamPushItem.setApp(item.getApp());
|
||||||
streamPushItem.setMediaServerId(item.getMediaServerId());
|
streamPushItem.setMediaServerId(item.getMediaServerId());
|
||||||
@ -206,8 +207,8 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
List<StreamPushItem> pushList = getPushList(mediaServerId);
|
List<StreamPushItem> pushList = getPushList(mediaServerId);
|
||||||
Map<String, StreamPushItem> pushItemMap = new HashMap<>();
|
Map<String, StreamPushItem> pushItemMap = new HashMap<>();
|
||||||
// redis记录
|
// redis记录
|
||||||
List<MediaItem> mediaItems = redisCatchStorage.getStreams(mediaServerId, "PUSH");
|
List<OnStreamChangedHookParam> onStreamChangedHookParams = redisCatchStorage.getStreams(mediaServerId, "PUSH");
|
||||||
Map<String, MediaItem> streamInfoPushItemMap = new HashMap<>();
|
Map<String, OnStreamChangedHookParam> streamInfoPushItemMap = new HashMap<>();
|
||||||
if (pushList.size() > 0) {
|
if (pushList.size() > 0) {
|
||||||
for (StreamPushItem streamPushItem : pushList) {
|
for (StreamPushItem streamPushItem : pushList) {
|
||||||
if (ObjectUtils.isEmpty(streamPushItem.getGbId())) {
|
if (ObjectUtils.isEmpty(streamPushItem.getGbId())) {
|
||||||
@ -215,9 +216,9 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (mediaItems.size() > 0) {
|
if (onStreamChangedHookParams.size() > 0) {
|
||||||
for (MediaItem mediaItem : mediaItems) {
|
for (OnStreamChangedHookParam onStreamChangedHookParam : onStreamChangedHookParams) {
|
||||||
streamInfoPushItemMap.put(mediaItem.getApp() + mediaItem.getStream(), mediaItem);
|
streamInfoPushItemMap.put(onStreamChangedHookParam.getApp() + onStreamChangedHookParam.getStream(), onStreamChangedHookParam);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
zlmresTfulUtils.getMediaList(mediaServerItem, (mediaList ->{
|
zlmresTfulUtils.getMediaList(mediaServerItem, (mediaList ->{
|
||||||
@ -258,19 +259,19 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Collection<MediaItem> offlineMediaItemList = streamInfoPushItemMap.values();
|
Collection<OnStreamChangedHookParam> offlineOnStreamChangedHookParamList = streamInfoPushItemMap.values();
|
||||||
if (offlineMediaItemList.size() > 0) {
|
if (offlineOnStreamChangedHookParamList.size() > 0) {
|
||||||
String type = "PUSH";
|
String type = "PUSH";
|
||||||
for (MediaItem offlineMediaItem : offlineMediaItemList) {
|
for (OnStreamChangedHookParam offlineOnStreamChangedHookParam : offlineOnStreamChangedHookParamList) {
|
||||||
JSONObject jsonObject = new JSONObject();
|
JSONObject jsonObject = new JSONObject();
|
||||||
jsonObject.put("serverId", userSetting.getServerId());
|
jsonObject.put("serverId", userSetting.getServerId());
|
||||||
jsonObject.put("app", offlineMediaItem.getApp());
|
jsonObject.put("app", offlineOnStreamChangedHookParam.getApp());
|
||||||
jsonObject.put("stream", offlineMediaItem.getStream());
|
jsonObject.put("stream", offlineOnStreamChangedHookParam.getStream());
|
||||||
jsonObject.put("register", false);
|
jsonObject.put("register", false);
|
||||||
jsonObject.put("mediaServerId", mediaServerId);
|
jsonObject.put("mediaServerId", mediaServerId);
|
||||||
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
||||||
// 移除redis内流的信息
|
// 移除redis内流的信息
|
||||||
redisCatchStorage.removeStream(mediaServerItem.getId(), "PUSH", offlineMediaItem.getApp(), offlineMediaItem.getStream());
|
redisCatchStorage.removeStream(mediaServerItem.getId(), "PUSH", offlineOnStreamChangedHookParam.getApp(), offlineOnStreamChangedHookParam.getStream());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
@ -288,15 +289,15 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
// 发送流停止消息
|
// 发送流停止消息
|
||||||
String type = "PUSH";
|
String type = "PUSH";
|
||||||
// 发送redis消息
|
// 发送redis消息
|
||||||
List<MediaItem> streamInfoList = redisCatchStorage.getStreams(mediaServerId, type);
|
List<OnStreamChangedHookParam> streamInfoList = redisCatchStorage.getStreams(mediaServerId, type);
|
||||||
if (streamInfoList.size() > 0) {
|
if (streamInfoList.size() > 0) {
|
||||||
for (MediaItem mediaItem : streamInfoList) {
|
for (OnStreamChangedHookParam onStreamChangedHookParam : streamInfoList) {
|
||||||
// 移除redis内流的信息
|
// 移除redis内流的信息
|
||||||
redisCatchStorage.removeStream(mediaServerId, type, mediaItem.getApp(), mediaItem.getStream());
|
redisCatchStorage.removeStream(mediaServerId, type, onStreamChangedHookParam.getApp(), onStreamChangedHookParam.getStream());
|
||||||
JSONObject jsonObject = new JSONObject();
|
JSONObject jsonObject = new JSONObject();
|
||||||
jsonObject.put("serverId", userSetting.getServerId());
|
jsonObject.put("serverId", userSetting.getServerId());
|
||||||
jsonObject.put("app", mediaItem.getApp());
|
jsonObject.put("app", onStreamChangedHookParam.getApp());
|
||||||
jsonObject.put("stream", mediaItem.getStream());
|
jsonObject.put("stream", onStreamChangedHookParam.getStream());
|
||||||
jsonObject.put("register", false);
|
jsonObject.put("register", false);
|
||||||
jsonObject.put("mediaServerId", mediaServerId);
|
jsonObject.put("mediaServerId", mediaServerId);
|
||||||
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
redisCatchStorage.sendStreamChangeMsg(type, jsonObject);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service.redisMsg;
|
package com.genersoft.iot.vmp.service.redisMsg;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommander;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommander;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommanderForPlatform;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommanderForPlatform;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.service.redisMsg;
|
package com.genersoft.iot.vmp.service.redisMsg;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service.redisMsg;
|
package com.genersoft.iot.vmp.service.redisMsg;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service.redisMsg;
|
package com.genersoft.iot.vmp.service.redisMsg;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
import com.genersoft.iot.vmp.service.bean.MessageForPushChannelResponse;
|
import com.genersoft.iot.vmp.service.bean.MessageForPushChannelResponse;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.service.redisMsg;
|
package com.genersoft.iot.vmp.service.redisMsg;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
||||||
import com.genersoft.iot.vmp.service.IGbStreamService;
|
import com.genersoft.iot.vmp.service.IGbStreamService;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.service.redisMsg;
|
package com.genersoft.iot.vmp.service.redisMsg;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.service.IStreamPushService;
|
import com.genersoft.iot.vmp.service.IStreamPushService;
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package com.genersoft.iot.vmp.service.redisMsg;
|
package com.genersoft.iot.vmp.service.redisMsg;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMMediaListManager;
|
import com.genersoft.iot.vmp.media.zlm.ZLMMediaListManager;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@ -66,20 +66,20 @@ public class RedisStreamMsgListener implements MessageListener {
|
|||||||
String stream = steamMsgJson.getString("stream");
|
String stream = steamMsgJson.getString("stream");
|
||||||
boolean register = steamMsgJson.getBoolean("register");
|
boolean register = steamMsgJson.getBoolean("register");
|
||||||
String mediaServerId = steamMsgJson.getString("mediaServerId");
|
String mediaServerId = steamMsgJson.getString("mediaServerId");
|
||||||
MediaItem mediaItem = new MediaItem();
|
OnStreamChangedHookParam onStreamChangedHookParam = new OnStreamChangedHookParam();
|
||||||
mediaItem.setSeverId(serverId);
|
onStreamChangedHookParam.setSeverId(serverId);
|
||||||
mediaItem.setApp(app);
|
onStreamChangedHookParam.setApp(app);
|
||||||
mediaItem.setStream(stream);
|
onStreamChangedHookParam.setStream(stream);
|
||||||
mediaItem.setRegist(register);
|
onStreamChangedHookParam.setRegist(register);
|
||||||
mediaItem.setMediaServerId(mediaServerId);
|
onStreamChangedHookParam.setMediaServerId(mediaServerId);
|
||||||
mediaItem.setCreateStamp(System.currentTimeMillis()/1000);
|
onStreamChangedHookParam.setCreateStamp(System.currentTimeMillis()/1000);
|
||||||
mediaItem.setAliveSecond(0L);
|
onStreamChangedHookParam.setAliveSecond(0L);
|
||||||
mediaItem.setTotalReaderCount("0");
|
onStreamChangedHookParam.setTotalReaderCount("0");
|
||||||
mediaItem.setOriginType(0);
|
onStreamChangedHookParam.setOriginType(0);
|
||||||
mediaItem.setOriginTypeStr("0");
|
onStreamChangedHookParam.setOriginTypeStr("0");
|
||||||
mediaItem.setOriginTypeStr("unknown");
|
onStreamChangedHookParam.setOriginTypeStr("unknown");
|
||||||
if (register) {
|
if (register) {
|
||||||
zlmMediaListManager.addPush(mediaItem);
|
zlmMediaListManager.addPush(onStreamChangedHookParam);
|
||||||
}else {
|
}else {
|
||||||
zlmMediaListManager.removeMedia(app, stream);
|
zlmMediaListManager.removeMedia(app, stream);
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package com.genersoft.iot.vmp.storager;
|
package com.genersoft.iot.vmp.storager;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.common.SystemAllInfo;
|
import com.genersoft.iot.vmp.common.SystemAllInfo;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
import com.genersoft.iot.vmp.service.bean.MessageForPushChannel;
|
import com.genersoft.iot.vmp.service.bean.MessageForPushChannel;
|
||||||
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
|
||||||
import com.genersoft.iot.vmp.service.bean.ThirdPartyGB;
|
import com.genersoft.iot.vmp.service.bean.ThirdPartyGB;
|
||||||
import com.genersoft.iot.vmp.storager.dao.dto.PlatformRegisterInfo;
|
import com.genersoft.iot.vmp.storager.dao.dto.PlatformRegisterInfo;
|
||||||
|
|
||||||
@ -131,7 +131,7 @@ public interface IRedisCatchStorage {
|
|||||||
* @param app
|
* @param app
|
||||||
* @param streamId
|
* @param streamId
|
||||||
*/
|
*/
|
||||||
void addStream(MediaServerItem mediaServerItem, String type, String app, String streamId, MediaItem item);
|
void addStream(MediaServerItem mediaServerItem, String type, String app, String streamId, OnStreamChangedHookParam item);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 移除流信息从redis
|
* 移除流信息从redis
|
||||||
@ -165,7 +165,7 @@ public interface IRedisCatchStorage {
|
|||||||
*/
|
*/
|
||||||
ThirdPartyGB queryMemberNoGBId(String queryKey);
|
ThirdPartyGB queryMemberNoGBId(String queryKey);
|
||||||
|
|
||||||
List<MediaItem> getStreams(String mediaServerId, String pull);
|
List<OnStreamChangedHookParam> getStreams(String mediaServerId, String pull);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将device信息写入redis
|
* 将device信息写入redis
|
||||||
@ -191,7 +191,7 @@ public interface IRedisCatchStorage {
|
|||||||
|
|
||||||
void resetAllSN();
|
void resetAllSN();
|
||||||
|
|
||||||
MediaItem getStreamInfo(String app, String streamId, String mediaServerId);
|
OnStreamChangedHookParam getStreamInfo(String app, String streamId, String mediaServerId);
|
||||||
|
|
||||||
void addCpuInfo(double cpuInfo);
|
void addCpuInfo(double cpuInfo);
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package com.genersoft.iot.vmp.storager.impl;
|
package com.genersoft.iot.vmp.storager.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.common.SystemAllInfo;
|
import com.genersoft.iot.vmp.common.SystemAllInfo;
|
||||||
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamAuthorityInfo;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamAuthorityInfo;
|
||||||
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
@ -573,14 +573,14 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void addStream(MediaServerItem mediaServerItem, String type, String app, String streamId, MediaItem mediaItem) {
|
public void addStream(MediaServerItem mediaServerItem, String type, String app, String streamId, OnStreamChangedHookParam onStreamChangedHookParam) {
|
||||||
// 查找是否使用了callID
|
// 查找是否使用了callID
|
||||||
StreamAuthorityInfo streamAuthorityInfo = getStreamAuthorityInfo(app, streamId);
|
StreamAuthorityInfo streamAuthorityInfo = getStreamAuthorityInfo(app, streamId);
|
||||||
String key = VideoManagerConstants.WVP_SERVER_STREAM_PREFIX + userSetting.getServerId() + "_" + type + "_" + app + "_" + streamId + "_" + mediaServerItem.getId();
|
String key = VideoManagerConstants.WVP_SERVER_STREAM_PREFIX + userSetting.getServerId() + "_" + type + "_" + app + "_" + streamId + "_" + mediaServerItem.getId();
|
||||||
if (streamAuthorityInfo != null) {
|
if (streamAuthorityInfo != null) {
|
||||||
mediaItem.setCallId(streamAuthorityInfo.getCallId());
|
onStreamChangedHookParam.setCallId(streamAuthorityInfo.getCallId());
|
||||||
}
|
}
|
||||||
RedisUtil.set(key, mediaItem);
|
RedisUtil.set(key, onStreamChangedHookParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -625,7 +625,7 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
|||||||
public ThirdPartyGB queryMemberNoGBId(String queryKey) {
|
public ThirdPartyGB queryMemberNoGBId(String queryKey) {
|
||||||
String key = VideoManagerConstants.WVP_STREAM_GB_ID_PREFIX + queryKey;
|
String key = VideoManagerConstants.WVP_STREAM_GB_ID_PREFIX + queryKey;
|
||||||
JSONObject jsonObject = (JSONObject)RedisUtil.get(key);
|
JSONObject jsonObject = (JSONObject)RedisUtil.get(key);
|
||||||
return JSONObject.toJavaObject(jsonObject, ThirdPartyGB.class);
|
return jsonObject.to(ThirdPartyGB.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -638,13 +638,13 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<MediaItem> getStreams(String mediaServerId, String type) {
|
public List<OnStreamChangedHookParam> getStreams(String mediaServerId, String type) {
|
||||||
List<MediaItem> result = new ArrayList<>();
|
List<OnStreamChangedHookParam> result = new ArrayList<>();
|
||||||
String key = VideoManagerConstants.WVP_SERVER_STREAM_PREFIX + userSetting.getServerId() + "_" + type + "_*_*_" + mediaServerId;
|
String key = VideoManagerConstants.WVP_SERVER_STREAM_PREFIX + userSetting.getServerId() + "_" + type + "_*_*_" + mediaServerId;
|
||||||
List<Object> streams = RedisUtil.scan(key);
|
List<Object> streams = RedisUtil.scan(key);
|
||||||
for (Object stream : streams) {
|
for (Object stream : streams) {
|
||||||
MediaItem mediaItem = (MediaItem)RedisUtil.get((String) stream);
|
OnStreamChangedHookParam onStreamChangedHookParam = (OnStreamChangedHookParam)RedisUtil.get((String) stream);
|
||||||
result.add(mediaItem);
|
result.add(onStreamChangedHookParam);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -716,14 +716,14 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
|||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public MediaItem getStreamInfo(String app, String streamId, String mediaServerId) {
|
public OnStreamChangedHookParam getStreamInfo(String app, String streamId, String mediaServerId) {
|
||||||
String scanKey = VideoManagerConstants.WVP_SERVER_STREAM_PREFIX + userSetting.getServerId() + "_*_" + app + "_" + streamId + "_" + mediaServerId;
|
String scanKey = VideoManagerConstants.WVP_SERVER_STREAM_PREFIX + userSetting.getServerId() + "_*_" + app + "_" + streamId + "_" + mediaServerId;
|
||||||
|
|
||||||
MediaItem result = null;
|
OnStreamChangedHookParam result = null;
|
||||||
List<Object> keys = RedisUtil.scan(scanKey);
|
List<Object> keys = RedisUtil.scan(scanKey);
|
||||||
if (keys.size() > 0) {
|
if (keys.size() > 0) {
|
||||||
String key = (String) keys.get(0);
|
String key = (String) keys.get(0);
|
||||||
result = (MediaItem)RedisUtil.get(key);
|
result = (OnStreamChangedHookParam)RedisUtil.get(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
@ -2,11 +2,13 @@ package com.genersoft.iot.vmp.utils.redis;
|
|||||||
|
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.Charset;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson2.JSONReader;
|
||||||
|
import com.alibaba.fastjson2.JSONWriter;
|
||||||
import org.springframework.data.redis.serializer.RedisSerializer;
|
import org.springframework.data.redis.serializer.RedisSerializer;
|
||||||
import org.springframework.data.redis.serializer.SerializationException;
|
import org.springframework.data.redis.serializer.SerializationException;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.serializer.SerializerFeature;
|
import com.alibaba.fastjson2.JSONWriter.Feature;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description:使用fastjson实现redis的序列化
|
* @description:使用fastjson实现redis的序列化
|
||||||
@ -29,7 +31,7 @@ public class FastJsonRedisSerializer<T> implements RedisSerializer<T> {
|
|||||||
if (t == null) {
|
if (t == null) {
|
||||||
return new byte[0];
|
return new byte[0];
|
||||||
}
|
}
|
||||||
return JSON.toJSONString(t, SerializerFeature.WriteClassName).getBytes(DEFAULT_CHARSET);
|
return JSON.toJSONString(t, JSONWriter.Feature.WriteClassName).getBytes(DEFAULT_CHARSET);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -38,6 +40,6 @@ public class FastJsonRedisSerializer<T> implements RedisSerializer<T> {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
String str = new String(bytes, DEFAULT_CHARSET);
|
String str = new String(bytes, DEFAULT_CHARSET);
|
||||||
return (T) JSON.parseObject(str, clazz);
|
return JSON.parseObject(str, clazz, JSONReader.Feature.SupportAutoType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@ package com.genersoft.iot.vmp.utils.redis;
|
|||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.utils.SpringBeanFactory;
|
import com.genersoft.iot.vmp.utils.SpringBeanFactory;
|
||||||
import gov.nist.javax.sip.stack.UDPMessageChannel;
|
import gov.nist.javax.sip.stack.UDPMessageChannel;
|
||||||
import org.springframework.data.redis.core.*;
|
import org.springframework.data.redis.core.*;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
package com.genersoft.iot.vmp.vmanager.gb28181.device;
|
package com.genersoft.iot.vmp.vmanager.gb28181.device;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
package com.genersoft.iot.vmp.vmanager.gb28181.device;
|
package com.genersoft.iot.vmp.vmanager.gb28181.device;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.vmanager.gb28181.device;
|
package com.genersoft.iot.vmp.vmanager.gb28181.device;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.vmanager.gb28181.platform;
|
package com.genersoft.iot.vmp.vmanager.gb28181.platform;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.vmanager.gb28181.play;
|
package com.genersoft.iot.vmp.vmanager.gb28181.play;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
import com.genersoft.iot.vmp.conf.exception.SsrcTransactionNotFoundException;
|
import com.genersoft.iot.vmp.conf.exception.SsrcTransactionNotFoundException;
|
||||||
@ -32,7 +32,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
||||||
import org.springframework.web.context.request.async.DeferredResult;
|
import org.springframework.web.context.request.async.DeferredResult;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//package com.genersoft.iot.vmp.vmanager.record;
|
//package com.genersoft.iot.vmp.vmanager.record;
|
||||||
//
|
//
|
||||||
//import com.alibaba.fastjson.JSONObject;
|
//import com.alibaba.fastjson2.JSONObject;
|
||||||
//import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
//import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
||||||
//import com.genersoft.iot.vmp.service.IRecordInfoServer;
|
//import com.genersoft.iot.vmp.service.IRecordInfoServer;
|
||||||
//import com.genersoft.iot.vmp.storager.dao.dto.RecordInfo;
|
//import com.genersoft.iot.vmp.storager.dao.dto.RecordInfo;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.vmanager.server;
|
package com.genersoft.iot.vmp.vmanager.server;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.VManageBootstrap;
|
import com.genersoft.iot.vmp.VManageBootstrap;
|
||||||
import com.genersoft.iot.vmp.common.SystemAllInfo;
|
import com.genersoft.iot.vmp.common.SystemAllInfo;
|
||||||
import com.genersoft.iot.vmp.common.VersionPo;
|
import com.genersoft.iot.vmp.common.VersionPo;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.vmanager.streamProxy;
|
package com.genersoft.iot.vmp.vmanager.streamProxy;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.web.gb28181;
|
package com.genersoft.iot.vmp.web.gb28181;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
import com.genersoft.iot.vmp.conf.exception.ControllerException;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.web.gb28181;
|
package com.genersoft.iot.vmp.web.gb28181;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.conf.SipConfig;
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.web.gb28181;
|
package com.genersoft.iot.vmp.web.gb28181;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson2.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
||||||
import com.genersoft.iot.vmp.service.IDeviceService;
|
import com.genersoft.iot.vmp.service.IDeviceService;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.web.gb28181;
|
package com.genersoft.iot.vmp.web.gb28181;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.conf.exception.SsrcTransactionNotFoundException;
|
import com.genersoft.iot.vmp.conf.exception.SsrcTransactionNotFoundException;
|
||||||
|
@ -121,6 +121,10 @@
|
|||||||
<el-tag >RTC:</el-tag>
|
<el-tag >RTC:</el-tag>
|
||||||
<span>{{ streamInfo.rtc }}</span>
|
<span>{{ streamInfo.rtc }}</span>
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
|
<el-dropdown-item :command="streamInfo.rtcs">
|
||||||
|
<el-tag >RTCS:</el-tag>
|
||||||
|
<span>{{ streamInfo.rtcs }}</span>
|
||||||
|
</el-dropdown-item>
|
||||||
<el-dropdown-item :command="streamInfo.rtmp">
|
<el-dropdown-item :command="streamInfo.rtmp">
|
||||||
<el-tag >RTMP:</el-tag>
|
<el-tag >RTMP:</el-tag>
|
||||||
<span>{{ streamInfo.rtmp }}</span>
|
<span>{{ streamInfo.rtmp }}</span>
|
||||||
@ -322,7 +326,7 @@ export default {
|
|||||||
player: {
|
player: {
|
||||||
jessibuca : ["ws_flv", "wss_flv"],
|
jessibuca : ["ws_flv", "wss_flv"],
|
||||||
livePlayer : ["ws_flv", "wss_flv"],
|
livePlayer : ["ws_flv", "wss_flv"],
|
||||||
webRTC: ["rtc", "rtc"],
|
webRTC: ["rtc", "rtcs"],
|
||||||
},
|
},
|
||||||
videoHistory: {
|
videoHistory: {
|
||||||
date: '',
|
date: '',
|
||||||
@ -393,7 +397,7 @@ export default {
|
|||||||
changePlayer: function (tab) {
|
changePlayer: function (tab) {
|
||||||
console.log(this.player[tab.name][0])
|
console.log(this.player[tab.name][0])
|
||||||
this.activePlayer = tab.name;
|
this.activePlayer = tab.name;
|
||||||
this.videoUrl = this.streamInfo[this.player[tab.name][0]]
|
this.videoUrl = this.getUrlByStreamInfo()
|
||||||
console.log(this.videoUrl)
|
console.log(this.videoUrl)
|
||||||
},
|
},
|
||||||
openDialog: function (tab, deviceId, channelId, param) {
|
openDialog: function (tab, deviceId, channelId, param) {
|
||||||
|
@ -51,7 +51,7 @@ export default {
|
|||||||
});
|
});
|
||||||
|
|
||||||
webrtcPlayer.on(ZLMRTCClient.Events.WEBRTC_ON_REMOTE_STREAMS,(e)=>{//获取到了远端流,可以播放
|
webrtcPlayer.on(ZLMRTCClient.Events.WEBRTC_ON_REMOTE_STREAMS,(e)=>{//获取到了远端流,可以播放
|
||||||
console.error('播放成功',e.streams)
|
console.log('播放成功',e.streams)
|
||||||
this.eventcallbacK("playing", "播放成功")
|
this.eventcallbacK("playing", "播放成功")
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ export default {
|
|||||||
console.error('offer anwser 交换失败',e)
|
console.error('offer anwser 交换失败',e)
|
||||||
this.eventcallbacK("OFFER ANSWER ERROR ", "offer anwser 交换失败")
|
this.eventcallbacK("OFFER ANSWER ERROR ", "offer anwser 交换失败")
|
||||||
if (e.code ==-400 && e.msg=="流不存在"){
|
if (e.code ==-400 && e.msg=="流不存在"){
|
||||||
console.log("111111")
|
console.log("流不存在")
|
||||||
this.timer = setTimeout(()=>{
|
this.timer = setTimeout(()=>{
|
||||||
this.webrtcPlayer.close();
|
this.webrtcPlayer.close();
|
||||||
this.play(url)
|
this.play(url)
|
||||||
|
@ -138,8 +138,14 @@ export default {
|
|||||||
url: '/api/play/start/' + deviceId + '/' + channelId
|
url: '/api/play/start/' + deviceId + '/' + channelId
|
||||||
}).then(function (res) {
|
}).then(function (res) {
|
||||||
if (res.data.code === 0 && res.data.data) {
|
if (res.data.code === 0 && res.data.data) {
|
||||||
itemData.playUrl = res.data.data.httpsFlv
|
let videoUrl;
|
||||||
that.setPlayUrl(res.data.data.ws_flv, idxTmp)
|
if (location.protocol === "https:") {
|
||||||
|
videoUrl = res.data.data.wss_flv;
|
||||||
|
} else {
|
||||||
|
videoUrl = res.data.data.ws_flv;
|
||||||
|
}
|
||||||
|
itemData.playUrl = videoUrl;
|
||||||
|
that.setPlayUrl(videoUrl, idxTmp);
|
||||||
} else {
|
} else {
|
||||||
that.$message.error(res.data.msg);
|
that.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user