| | |
| | | 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.storager.IRedisCatchStorage; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | @Autowired |
| | | private IMediaServerService mediaServerService; |
| | | |
| | | @Autowired |
| | | private UserSetup userSetup; |
| | | |
| | | @Value("${server.port}") |
| | | private int serverPort; |
| | | |
| | |
| | | JSONObject jsonObject = new JSONObject(); |
| | | jsonObject.put("ip", sipConfig.getIp()); |
| | | jsonObject.put("port", serverPort); |
| | | redisCatchStorage.updateWVPInfo(userSetup.getServerId(), jsonObject, 3); |
| | | redisCatchStorage.updateWVPInfo(jsonObject, 3); |
| | | } |
| | | } |