|
@@ -21,6 +21,7 @@ import com.ozs.service.entity.vo.ReqMsgAlarmVo;
|
|
import com.ozs.vo.RespGeoHazardMonitorVo;
|
|
import com.ozs.vo.RespGeoHazardMonitorVo;
|
|
import com.ozs.vo.RespMsgAlarmVo;
|
|
import com.ozs.vo.RespMsgAlarmVo;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
+import okhttp3.Response;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
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;
|
|
@@ -503,20 +504,27 @@ public class GeoHazardMonitorTokenController {
|
|
String result;
|
|
String result;
|
|
String url = bakUrl + "/gb28181/api/invite?id=" + cameraCode + "&channel=" + channel + "&startTime=" + seconds + "&endTime=" + second;
|
|
String url = bakUrl + "/gb28181/api/invite?id=" + cameraCode + "&channel=" + channel + "&startTime=" + seconds + "&endTime=" + second;
|
|
try {
|
|
try {
|
|
- result = HttpClientUtil.get(url);
|
|
|
|
- if ("200".equals(result)) {
|
|
|
|
- String path = apiSummary(cameraCode + "/" + channel + "/" + seconds + "-" + second);
|
|
|
|
- if (org.apache.commons.lang3.StringUtils.isNotEmpty(path)) {
|
|
|
|
- String codes = HttpUtils.sendGet(startRecording(cameraCode + "/" + channel + "/" + seconds + "-" + second));
|
|
|
|
- log.info("codes------>" + codes);
|
|
|
|
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
- // 使用SimpleDateFormat将Date对象格式化为指定样式的字符串
|
|
|
|
- String formattedDate = sdf.format(alarmDate);
|
|
|
|
- log.info("-----formattedDate-----------" + formattedDate);
|
|
|
|
- String records = getQueryRecords(cameraCode + "/" + channel + "/" + seconds + "-" + second, formattedDate, "mp4");
|
|
|
|
- log.info("-----records-----------" + records);
|
|
|
|
- return records;
|
|
|
|
|
|
+ Response response = HttpClientUtil.get(url);
|
|
|
|
+ if (response != null) {
|
|
|
|
+ log.info("-----alarmHistoryPlay----code--" + cameraCode + "---" + response.code());
|
|
|
|
+ log.info("-----alarmHistoryPlay----message--" + cameraCode + "---" + response.message());
|
|
|
|
+ log.info("-----alarmHistoryPlay----body--" + cameraCode + "---" + response.body());
|
|
|
|
+ if (200 == response.code()) {
|
|
|
|
+ String path = apiSummary(cameraCode + "/" + channel + "/" + seconds + "-" + second);
|
|
|
|
+ if (org.apache.commons.lang3.StringUtils.isNotEmpty(path)) {
|
|
|
|
+ String codes = HttpUtils.sendGet(startRecording(cameraCode + "/" + channel + "/" + seconds + "-" + second));
|
|
|
|
+ log.info("codes------>" + codes);
|
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
+ // 使用SimpleDateFormat将Date对象格式化为指定样式的字符串
|
|
|
|
+ String formattedDate = sdf.format(alarmDate);
|
|
|
|
+ log.info("-----formattedDate-----------" + formattedDate);
|
|
|
|
+ String records = getQueryRecords(cameraCode + "/" + channel + "/" + seconds + "-" + second, formattedDate, "mp4");
|
|
|
|
+ log.info("-----records-----------" + records);
|
|
|
|
+ return records;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ }else {
|
|
|
|
+ return null;
|
|
}
|
|
}
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
log.info(e.getMessage());
|
|
log.info(e.getMessage());
|