优化zlm接入逻辑
parent
d720275ada
commit
34e8ed70c7
|
@ -14,7 +14,6 @@ import com.genersoft.iot.vmp.media.bean.MediaInfo;
|
||||||
import com.genersoft.iot.vmp.media.bean.MediaServer;
|
import com.genersoft.iot.vmp.media.bean.MediaServer;
|
||||||
import com.genersoft.iot.vmp.media.event.media.MediaArrivalEvent;
|
import com.genersoft.iot.vmp.media.event.media.MediaArrivalEvent;
|
||||||
import com.genersoft.iot.vmp.media.event.media.MediaDepartureEvent;
|
import com.genersoft.iot.vmp.media.event.media.MediaDepartureEvent;
|
||||||
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerChangeEvent;
|
|
||||||
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerDeleteEvent;
|
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerDeleteEvent;
|
||||||
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerOfflineEvent;
|
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerOfflineEvent;
|
||||||
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerOnlineEvent;
|
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerOnlineEvent;
|
||||||
|
@ -318,11 +317,6 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
||||||
redisTemplate.opsForHash().put(key, mediaServerInDataBase.getId(), mediaServerInDataBase);
|
redisTemplate.opsForHash().put(key, mediaServerInDataBase.getId(), mediaServerInDataBase);
|
||||||
if (mediaServerInDataBase.isStatus()) {
|
if (mediaServerInDataBase.isStatus()) {
|
||||||
resetOnlineServerItem(mediaServerInDataBase);
|
resetOnlineServerItem(mediaServerInDataBase);
|
||||||
}else {
|
|
||||||
// 发送事件
|
|
||||||
MediaServerChangeEvent event = new MediaServerChangeEvent(this);
|
|
||||||
event.setMediaServerItemList(mediaServerInDataBase);
|
|
||||||
applicationEventPublisher.publishEvent(event);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -444,11 +438,6 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
||||||
mediaServerMapper.add(mediaServer);
|
mediaServerMapper.add(mediaServer);
|
||||||
if (mediaServer.isStatus()) {
|
if (mediaServer.isStatus()) {
|
||||||
mediaNodeServerService.online(mediaServer);
|
mediaNodeServerService.online(mediaServer);
|
||||||
}else {
|
|
||||||
// 发送事件
|
|
||||||
MediaServerChangeEvent event = new MediaServerChangeEvent(this);
|
|
||||||
event.setMediaServerItemList(mediaServer);
|
|
||||||
applicationEventPublisher.publishEvent(event);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ import com.genersoft.iot.vmp.conf.security.JwtUtils;
|
||||||
import com.genersoft.iot.vmp.gb28181.service.IDeviceChannelService;
|
import com.genersoft.iot.vmp.gb28181.service.IDeviceChannelService;
|
||||||
import com.genersoft.iot.vmp.gb28181.service.IDeviceService;
|
import com.genersoft.iot.vmp.gb28181.service.IDeviceService;
|
||||||
import com.genersoft.iot.vmp.media.bean.MediaServer;
|
import com.genersoft.iot.vmp.media.bean.MediaServer;
|
||||||
|
import com.genersoft.iot.vmp.media.event.mediaServer.MediaServerChangeEvent;
|
||||||
import com.genersoft.iot.vmp.media.service.IMediaServerService;
|
import com.genersoft.iot.vmp.media.service.IMediaServerService;
|
||||||
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;
|
||||||
|
@ -28,6 +29,7 @@ import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.context.ApplicationEventPublisher;
|
||||||
import org.springframework.util.ObjectUtils;
|
import org.springframework.util.ObjectUtils;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import oshi.SystemInfo;
|
import oshi.SystemInfo;
|
||||||
|
@ -73,18 +75,18 @@ public class ServerController {
|
||||||
@Autowired
|
@Autowired
|
||||||
private IStreamPushService pushService;
|
private IStreamPushService pushService;
|
||||||
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IStreamProxyService proxyService;
|
private IStreamProxyService proxyService;
|
||||||
|
|
||||||
|
|
||||||
@Value("${server.port}")
|
@Value("${server.port}")
|
||||||
private int serverPort;
|
private int serverPort;
|
||||||
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IRedisCatchStorage redisCatchStorage;
|
private IRedisCatchStorage redisCatchStorage;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ApplicationEventPublisher applicationEventPublisher;
|
||||||
|
|
||||||
|
|
||||||
@GetMapping(value = "/media_server/list")
|
@GetMapping(value = "/media_server/list")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
|
@ -134,13 +136,17 @@ public class ServerController {
|
||||||
@Parameter(name = "mediaServerItem", description = "流媒体信息", required = true)
|
@Parameter(name = "mediaServerItem", description = "流媒体信息", required = true)
|
||||||
@PostMapping(value = "/media_server/save")
|
@PostMapping(value = "/media_server/save")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public void saveMediaServer(@RequestBody MediaServer mediaServerItem) {
|
public void saveMediaServer(@RequestBody MediaServer mediaServer) {
|
||||||
MediaServer mediaServerItemInDatabase = mediaServerService.getOneFromDatabase(mediaServerItem.getId());
|
MediaServer mediaServerItemInDatabase = mediaServerService.getOneFromDatabase(mediaServer.getId());
|
||||||
|
|
||||||
if (mediaServerItemInDatabase != null) {
|
if (mediaServerItemInDatabase != null) {
|
||||||
mediaServerService.update(mediaServerItem);
|
mediaServerService.update(mediaServer);
|
||||||
} else {
|
} else {
|
||||||
mediaServerService.add(mediaServerItem);
|
mediaServerService.add(mediaServer);
|
||||||
|
// 发送事件
|
||||||
|
MediaServerChangeEvent event = new MediaServerChangeEvent(this);
|
||||||
|
event.setMediaServerItemList(mediaServer);
|
||||||
|
applicationEventPublisher.publishEvent(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue