You've already forked FrameTour-BE
- 新增TaskUpdateResult类存储任务更新检查结果 - 在VideoTaskRepository中实现checkTaskUpdate方法检查任务更新状态 - 重构GoodsServiceImpl中的视频更新检查逻辑,使用VideoTaskRepository的统一实现 - 在ContentPageVO中添加newSegmentCount字段显示新增片段数
This commit is contained in:
@@ -45,6 +45,7 @@ import com.ycwl.basic.repository.TemplateRepository;
|
||||
import com.ycwl.basic.repository.SourceRepository;
|
||||
import com.ycwl.basic.biz.TemplateBiz;
|
||||
import com.ycwl.basic.config.VideoUpdateConfig;
|
||||
import com.ycwl.basic.model.repository.TaskUpdateResult;
|
||||
import com.ycwl.basic.service.task.TaskService;
|
||||
import com.ycwl.basic.storage.StorageFactory;
|
||||
import com.ycwl.basic.storage.adapters.IStorageAdapter;
|
||||
@@ -792,20 +793,20 @@ public class GoodsServiceImpl implements GoodsService {
|
||||
public VideoUpdateCheckVO checkVideoUpdate(Long videoId) {
|
||||
VideoUpdateCheckVO result = new VideoUpdateCheckVO();
|
||||
result.setVideoId(videoId);
|
||||
|
||||
|
||||
if (!videoUpdateConfig.isEnabled()) {
|
||||
log.info("视频更新检查功能已禁用");
|
||||
result.setCanUpdate(false);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
VideoEntity video = videoRepository.getVideo(videoId);
|
||||
if (video == null) {
|
||||
log.error("视频不存在: videoId={}", videoId);
|
||||
result.setCanUpdate(false);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Long taskId = video.getTaskId();
|
||||
TaskEntity task = videoTaskRepository.getTaskById(taskId);
|
||||
if (task == null) {
|
||||
@@ -813,121 +814,21 @@ public class GoodsServiceImpl implements GoodsService {
|
||||
result.setCanUpdate(false);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
result.setTaskId(taskId);
|
||||
|
||||
result.setFaceId(task.getFaceId());
|
||||
result.setTemplateId(task.getTemplateId());
|
||||
|
||||
try {
|
||||
Map<String, Object> originalTaskParams = JacksonUtil.parseObject(task.getTaskParams(), Map.class);
|
||||
if (originalTaskParams == null) {
|
||||
log.error("原始任务参数解析失败: taskId={}", taskId);
|
||||
result.setCanUpdate(false);
|
||||
return result;
|
||||
}
|
||||
|
||||
int originalSegmentCount = calculateSegmentCount(originalTaskParams);
|
||||
result.setOriginalSegmentCount(originalSegmentCount);
|
||||
|
||||
Map<String, List<SourceEntity>> currentTaskParams = sourceRepository.getTaskParams(task.getFaceId(), task.getTemplateId());
|
||||
if (currentTaskParams.isEmpty()) {
|
||||
log.info("当前没有可用的任务参数: faceId={}, templateId={}", task.getFaceId(), task.getTemplateId());
|
||||
result.setCanUpdate(false);
|
||||
result.setTotalSegmentCount(0);
|
||||
result.setNewSegmentCount(0);
|
||||
return result;
|
||||
}
|
||||
|
||||
Map<String, List<SourceEntity>> filteredTaskParams = templateBiz.filterTaskParams(task.getTemplateId(), currentTaskParams);
|
||||
int currentSegmentCount = calculateSegmentCount(filteredTaskParams);
|
||||
result.setTotalSegmentCount(currentSegmentCount);
|
||||
|
||||
boolean hasNewSegments = videoUpdateConfig.isDetectChangesAsNew()
|
||||
? hasNewSegments(originalTaskParams, filteredTaskParams)
|
||||
: currentSegmentCount > originalSegmentCount;
|
||||
int newSegmentCount = Math.max(0, currentSegmentCount - originalSegmentCount);
|
||||
|
||||
boolean canUpdate = hasNewSegments && newSegmentCount >= videoUpdateConfig.getMinNewSegmentCount();
|
||||
result.setCanUpdate(canUpdate);
|
||||
result.setNewSegmentCount(newSegmentCount);
|
||||
|
||||
log.info("视频更新检查完成: videoId={}, taskId={}, canUpdate={}, newSegmentCount={}, originalCount={}, currentCount={}",
|
||||
videoId, taskId, result.isCanUpdate(), newSegmentCount, originalSegmentCount, currentSegmentCount);
|
||||
|
||||
} catch (Exception e) {
|
||||
log.error("检查视频更新失败: videoId={}, taskId={}", videoId, taskId, e);
|
||||
result.setCanUpdate(false);
|
||||
}
|
||||
|
||||
TaskUpdateResult taskResult = videoTaskRepository.checkTaskUpdate(taskId);
|
||||
result.setCanUpdate(taskResult.isCanUpdate());
|
||||
result.setNewSegmentCount(taskResult.getNewSegmentCount());
|
||||
result.setTotalSegmentCount(taskResult.getTotalSegmentCount());
|
||||
result.setOriginalSegmentCount(taskResult.getOriginalSegmentCount());
|
||||
|
||||
log.info("视频更新检查完成: videoId={}, taskId={}, canUpdate={}, newSegmentCount={}",
|
||||
videoId, taskId, result.isCanUpdate(), result.getNewSegmentCount());
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
private int calculateSegmentCount(Map<String, ?> taskParams) {
|
||||
if (taskParams == null || taskParams.isEmpty()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int totalCount = 0;
|
||||
for (Map.Entry<String, ?> entry : taskParams.entrySet()) {
|
||||
Object value = entry.getValue();
|
||||
if (value instanceof List) {
|
||||
totalCount += ((List<?>) value).size();
|
||||
} else if (value instanceof String && StringUtils.isNumeric(entry.getKey())) {
|
||||
try {
|
||||
List<?> jsonArray = JacksonUtil.parseArray((String) value, Object.class);
|
||||
if (jsonArray != null) {
|
||||
totalCount += jsonArray.size();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.warn("解析任务参数失败: key={}, value={}", entry.getKey(), value);
|
||||
}
|
||||
}
|
||||
}
|
||||
return totalCount;
|
||||
}
|
||||
|
||||
private boolean hasNewSegments(Map<String, ?> originalParams, Map<String, List<SourceEntity>> currentParams) {
|
||||
if (currentParams == null || currentParams.isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (originalParams == null || originalParams.isEmpty()) {
|
||||
return !currentParams.isEmpty();
|
||||
}
|
||||
|
||||
for (Map.Entry<String, List<SourceEntity>> entry : currentParams.entrySet()) {
|
||||
String deviceKey = entry.getKey();
|
||||
List<SourceEntity> currentSources = entry.getValue();
|
||||
|
||||
if (!originalParams.containsKey(deviceKey)) {
|
||||
if (currentSources != null && !currentSources.isEmpty()) {
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
Object originalValue = originalParams.get(deviceKey);
|
||||
int originalCount = 0;
|
||||
|
||||
if (originalValue instanceof List) {
|
||||
originalCount = ((List<?>) originalValue).size();
|
||||
} else if (originalValue instanceof String) {
|
||||
try {
|
||||
List<?> jsonArray = JacksonUtil.parseArray((String) originalValue, Object.class);
|
||||
if (jsonArray != null) {
|
||||
originalCount = jsonArray.size();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.warn("解析原始参数失败: key={}, value={}", deviceKey, originalValue);
|
||||
}
|
||||
}
|
||||
|
||||
int currentCount = currentSources != null ? currentSources.size() : 0;
|
||||
if (currentCount > originalCount) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@@ -42,6 +42,7 @@ import com.ycwl.basic.model.pc.order.entity.OrderEntity;
|
||||
import com.ycwl.basic.model.pc.task.entity.TaskEntity;
|
||||
import com.ycwl.basic.model.pc.video.entity.MemberVideoEntity;
|
||||
import com.ycwl.basic.model.pc.video.entity.VideoEntity;
|
||||
import com.ycwl.basic.model.repository.TaskUpdateResult;
|
||||
import com.ycwl.basic.model.task.resp.SearchFaceRespVo;
|
||||
import com.ycwl.basic.repository.DeviceRepository;
|
||||
import com.ycwl.basic.repository.FaceRepository;
|
||||
@@ -669,6 +670,8 @@ public class FaceServiceImpl implements FaceService {
|
||||
if (video != null) {
|
||||
contentPageVO.setDuration(video.getDuration());
|
||||
contentPageVO.setLockType(-1);
|
||||
TaskUpdateResult updResult = videoTaskRepository.checkTaskUpdate(video.getTaskId());
|
||||
contentPageVO.setNewSegmentCount(updResult.getNewSegmentCount());
|
||||
} else {
|
||||
TaskEntity taskById = videoTaskRepository.getTaskById(memberVideoEntityList.getFirst().getTaskId());
|
||||
if (taskById == null) {
|
||||
|
Reference in New Issue
Block a user