| | |
| | | import com.alibaba.fastjson2.JSONArray; |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.genersoft.iot.vmp.conf.exception.ControllerException; |
| | | import com.genersoft.iot.vmp.gb28181.bean.GbStream; |
| | | import com.genersoft.iot.vmp.gb28181.bean.SsrcTransaction; |
| | | import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager; |
| | | import com.genersoft.iot.vmp.media.zlm.AssistRESTfulUtils; |
| | | import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem; |
| | |
| | | import com.genersoft.iot.vmp.vmanager.bean.ErrorCode; |
| | | import com.github.pagehelper.PageHelper; |
| | | import com.github.pagehelper.PageInfo; |
| | | import org.apache.commons.lang3.ObjectUtils; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.util.unit.DataUnit; |
| | | |
| | | import java.time.*; |
| | | import java.time.temporal.TemporalAccessor; |
| | | import java.util.*; |
| | | |
| | | @Service |
| | |
| | | private VideoStreamSessionManager streamSession; |
| | | |
| | | @Override |
| | | public PageInfo<CloudRecordItem> getList(int page, int count, String app, String stream, String startTime, String endTime, List<MediaServerItem> mediaServerItems) { |
| | | public PageInfo<CloudRecordItem> getList(int page, int count, String query, String app, String stream, String startTime, String endTime, List<MediaServerItem> mediaServerItems) { |
| | | // 开始时间和结束时间在数据库中都是以秒为单位的 |
| | | Long startTimeStamp = null; |
| | | Long endTimeStamp = null; |
| | |
| | | |
| | | } |
| | | PageHelper.startPage(page, count); |
| | | List<CloudRecordItem> all = cloudRecordServiceMapper.getList(app, stream, startTimeStamp, endTimeStamp, |
| | | List<CloudRecordItem> all = cloudRecordServiceMapper.getList(query, app, stream, startTimeStamp, endTimeStamp, |
| | | null, mediaServerItems); |
| | | return new PageInfo<>(all); |
| | | } |
| | |
| | | } |
| | | long startTimeStamp = startDate.atStartOfDay().toInstant(ZoneOffset.ofHours(8)).getEpochSecond(); |
| | | long endTimeStamp = endDate.atStartOfDay().toInstant(ZoneOffset.ofHours(8)).getEpochSecond(); |
| | | List<CloudRecordItem> cloudRecordItemList = cloudRecordServiceMapper.getList(app, stream, startTimeStamp, |
| | | List<CloudRecordItem> cloudRecordItemList = cloudRecordServiceMapper.getList(null, app, stream, startTimeStamp, |
| | | endTimeStamp, null, mediaServerItems); |
| | | if (cloudRecordItemList.isEmpty()) { |
| | | return new ArrayList<>(); |
| | |
| | | } |
| | | return result.getJSONArray("data"); |
| | | } |
| | | |
| | | @Override |
| | | public int changeCollect(boolean result, String app, String stream, String mediaServerId, String startTime, String endTime, String callId) { |
| | | // 开始时间和结束时间在数据库中都是以秒为单位的 |
| | | Long startTimeStamp = null; |
| | | Long endTimeStamp = null; |
| | | if (startTime != null ) { |
| | | if (!DateUtil.verification(startTime, DateUtil.formatter)) { |
| | | throw new ControllerException(ErrorCode.ERROR100.getCode(), "开始时间格式错误,正确格式为: " + DateUtil.formatter); |
| | | } |
| | | startTimeStamp = DateUtil.yyyy_MM_dd_HH_mm_ssToTimestamp(startTime); |
| | | |
| | | } |
| | | if (endTime != null ) { |
| | | if (!DateUtil.verification(endTime, DateUtil.formatter)) { |
| | | throw new ControllerException(ErrorCode.ERROR100.getCode(), "结束时间格式错误,正确格式为: " + DateUtil.formatter); |
| | | } |
| | | endTimeStamp = DateUtil.yyyy_MM_dd_HH_mm_ssToTimestamp(endTime); |
| | | |
| | | } |
| | | |
| | | List<MediaServerItem> mediaServerItems; |
| | | if (!ObjectUtils.isEmpty(mediaServerId)) { |
| | | mediaServerItems = new ArrayList<>(); |
| | | MediaServerItem mediaServerItem = mediaServerService.getOne(mediaServerId); |
| | | if (mediaServerItem == null) { |
| | | throw new ControllerException(ErrorCode.ERROR100.getCode(), "未找到流媒体: " + mediaServerId); |
| | | } |
| | | mediaServerItems.add(mediaServerItem); |
| | | } else { |
| | | mediaServerItems = null; |
| | | } |
| | | |
| | | List<CloudRecordItem> all = cloudRecordServiceMapper.getList(null, app, stream, startTimeStamp, endTimeStamp, |
| | | callId, mediaServerItems); |
| | | if (all.isEmpty()) { |
| | | throw new ControllerException(ErrorCode.ERROR100.getCode(), "未找到待收藏的视频"); |
| | | } |
| | | int limitCount = 50; |
| | | int resultCount = 0; |
| | | if (all.size() > limitCount) { |
| | | for (int i = 0; i < all.size(); i += limitCount) { |
| | | int toIndex = i + limitCount; |
| | | if (i + limitCount > all.size()) { |
| | | toIndex = all.size(); |
| | | } |
| | | resultCount += cloudRecordServiceMapper.updateCollectList(result, all.subList(i, toIndex)); |
| | | |
| | | } |
| | | }else { |
| | | resultCount = cloudRecordServiceMapper.updateCollectList(result, all); |
| | | } |
| | | return resultCount; |
| | | } |
| | | |
| | | @Override |
| | | public int changeCollectById(Integer recordId, boolean result) { |
| | | return cloudRecordServiceMapper.changeCollectById(result, recordId); |
| | | } |
| | | } |