|
@@ -204,8 +204,16 @@ public class LessonCoursewareServiceImpl extends ServiceImpl<LessonCoursewareMap
|
|
|
if (detail == null) {
|
|
|
return null;
|
|
|
}
|
|
|
+ //获取课件下面包含的所有的曲目编号
|
|
|
+ List<Long> musicScoreIds = new ArrayList<>();
|
|
|
+ this.setMusicSheetId(detail.getKnowledgePointList(),musicScoreIds);
|
|
|
+ Map<Long, SysMusicScore> musicScoreMap = new HashMap<>();
|
|
|
+ if (CollectionUtils.isNotEmpty(musicScoreIds)) {
|
|
|
+ List<SysMusicScore> musicScores = sysMusicScoreService.getDao().findByCbsId(musicScoreIds,false);
|
|
|
+ musicScoreMap = musicScores.stream().collect(Collectors.toMap(e -> e.getId().longValue(), o -> o));
|
|
|
+ }
|
|
|
//获取知识点下的素材列表、下面关联的资源列表,如果applicationIdList是空的,那么把他剔除掉
|
|
|
- this.setTreeResourceId(detail.getKnowledgePointList(),query);
|
|
|
+ this.setTreeResourceId(detail.getKnowledgePointList(),query,musicScoreMap);
|
|
|
return detail;
|
|
|
}
|
|
|
|
|
@@ -350,32 +358,67 @@ public class LessonCoursewareServiceImpl extends ServiceImpl<LessonCoursewareMap
|
|
|
|
|
|
//递归处理CbsLessonCoursewareDetailWrapper.KnowledgePointSmall
|
|
|
@Override
|
|
|
- public void setTreeResourceId(List<CbsLessonCoursewareDetailWrapper.KnowledgePointSmall> knowledgePointList,LessonCoursewareWrapper.LessonCoursewareDetailQuery query){
|
|
|
+ public void setTreeResourceId(List<CbsLessonCoursewareDetailWrapper.KnowledgePointSmall> knowledgePointList,
|
|
|
+ LessonCoursewareWrapper.LessonCoursewareDetailQuery query,
|
|
|
+ Map<Long, SysMusicScore> musicScores){
|
|
|
if(CollectionUtils.isNotEmpty(knowledgePointList)){
|
|
|
knowledgePointList.forEach(knowledgePointSmall -> {
|
|
|
- this.setResourceId(knowledgePointSmall,query);
|
|
|
+ this.setResourceId(knowledgePointSmall,query,musicScores);
|
|
|
List<CbsLessonCoursewareDetailWrapper.KnowledgePointSmall> children = knowledgePointSmall.getChildren();
|
|
|
if(CollectionUtils.isNotEmpty(children)){
|
|
|
- this.setTreeResourceId(children,query);
|
|
|
+ this.setTreeResourceId(children,query,musicScores);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<Long> getMusicScoreIds(List<CbsLessonCoursewareWrapper.CourseScheduleCoursewareDetail> courseScheduleCoursewareDetails) {
|
|
|
+ List<Long> musicScoreIds = new ArrayList<>();
|
|
|
+ //获取所有曲目的ID
|
|
|
+ if(CollectionUtils.isNotEmpty(courseScheduleCoursewareDetails)){
|
|
|
+ courseScheduleCoursewareDetails.forEach(courseScheduleCoursewareDetail -> {
|
|
|
+ this.setMusicSheetId(courseScheduleCoursewareDetail.getKnowledgePointList(),musicScoreIds);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return musicScoreIds;
|
|
|
+ }
|
|
|
|
|
|
- private void setResourceId(CbsLessonCoursewareDetailWrapper.KnowledgePointSmall knowledgePointSmall,LessonCoursewareWrapper.LessonCoursewareDetailQuery query){
|
|
|
- List<CbsLessonCoursewareDetailWrapper.MaterialSmall> materialList = knowledgePointSmall.getMaterialList();
|
|
|
- if(CollectionUtils.isNotEmpty(materialList)){
|
|
|
- //获取所有曲目的ID
|
|
|
- List<Long> musicScoreIds = materialList.stream().filter(materialSmall -> materialSmall.getType() == EMaterialType.SONG)
|
|
|
- .map(materialSmall -> Long.parseLong(materialSmall.getContent())).collect(Collectors.toList());
|
|
|
- Map<Long, SysMusicScore> musicScoreMap = new HashMap<>();
|
|
|
- if(CollectionUtils.isNotEmpty(musicScoreIds)){
|
|
|
- List<SysMusicScore> musicScores = sysMusicScoreService.getDao().findByCbsId(musicScoreIds,false);
|
|
|
- if(CollectionUtils.isNotEmpty(musicScores)){
|
|
|
- musicScoreMap = musicScores.stream().collect(Collectors.toMap(e->e.getId().longValue(), o -> o));
|
|
|
+ private void setMusicSheetId(List<CbsLessonCoursewareDetailWrapper.KnowledgePointSmall> knowledgePointList,List<Long> musicScoreIds){
|
|
|
+ if(CollectionUtils.isNotEmpty(knowledgePointList)){
|
|
|
+ for (CbsLessonCoursewareDetailWrapper.KnowledgePointSmall knowledgePointSmall : knowledgePointList) {
|
|
|
+ List<CbsLessonCoursewareDetailWrapper.MaterialSmall> materialList = knowledgePointSmall.getMaterialList();
|
|
|
+ if(CollectionUtils.isNotEmpty(materialList)){
|
|
|
+ //获取所有曲目的ID
|
|
|
+ List<Long> musicScoreIds1 = materialList.stream().filter(materialSmall -> materialSmall.getType() == EMaterialType.SONG)
|
|
|
+ .map(materialSmall -> Long.parseLong(materialSmall.getContent())).collect(Collectors.toList());
|
|
|
+ musicScoreIds.addAll(musicScoreIds1);
|
|
|
+ for (CbsLessonCoursewareDetailWrapper.MaterialSmall materialSmall : materialList) {
|
|
|
+ List<CbsMaterialRefWrapper.AddMaterialRef> materialRefs = materialSmall.getMaterialRefs();
|
|
|
+ if(CollectionUtils.isNotEmpty(materialRefs)){
|
|
|
+ //获取所有曲目的ID
|
|
|
+ List<Long> musicScoreIds2 = materialRefs.stream().filter(materialRef -> materialRef.getRelateMaterialInfo() != null
|
|
|
+ && StringUtils.equals(materialRef.getRelateMaterialInfo().getType(),"SONG")
|
|
|
+ && CollectionUtils.isNotEmpty(materialRef.getRelateMaterialInfo().getApplicationIdList()))
|
|
|
+ .map(materialRef -> materialRef.getRelateMaterialInfo().getId()).collect(Collectors.toList());
|
|
|
+ musicScoreIds.addAll(musicScoreIds2);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ List<CbsLessonCoursewareDetailWrapper.KnowledgePointSmall> children = knowledgePointSmall.getChildren();
|
|
|
+ if(CollectionUtils.isNotEmpty(children)){
|
|
|
+ this.setMusicSheetId(children,musicScoreIds);
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ private void setResourceId(CbsLessonCoursewareDetailWrapper.KnowledgePointSmall knowledgePointSmall,
|
|
|
+ LessonCoursewareWrapper.LessonCoursewareDetailQuery query,
|
|
|
+ Map<Long, SysMusicScore> musicScoreMap){
|
|
|
+ List<CbsLessonCoursewareDetailWrapper.MaterialSmall> materialList = knowledgePointSmall.getMaterialList();
|
|
|
+ if(CollectionUtils.isNotEmpty(materialList)){
|
|
|
for (CbsLessonCoursewareDetailWrapper.MaterialSmall materialSmall : materialList) {
|
|
|
if(materialSmall.getType() == EMaterialType.SONG){
|
|
|
SysMusicScore musicScore = musicScoreMap.get(Long.parseLong(materialSmall.getContent()));
|
|
@@ -389,23 +432,11 @@ public class LessonCoursewareServiceImpl extends ServiceImpl<LessonCoursewareMap
|
|
|
//
|
|
|
List<CbsMaterialRefWrapper.AddMaterialRef> materialRefs = materialSmall.getMaterialRefs();
|
|
|
if (CollectionUtils.isNotEmpty(materialRefs)){
|
|
|
- //获取所有曲目的ID
|
|
|
- List<Long> musicScoreIds1 = materialRefs.stream().filter(materialRef -> materialRef.getRelateMaterialInfo() != null
|
|
|
- && StringUtils.equals(materialRef.getRelateMaterialInfo().getType(),"SONG")
|
|
|
- && CollectionUtils.isNotEmpty(materialRef.getRelateMaterialInfo().getApplicationIdList()))
|
|
|
- .map(materialRef -> materialRef.getRelateMaterialInfo().getId()).collect(Collectors.toList());
|
|
|
- Map<Long, SysMusicScore> musicScoreMap1 = new HashMap<>();
|
|
|
- if(CollectionUtils.isNotEmpty(musicScoreIds1)){
|
|
|
- List<SysMusicScore> musicScores = sysMusicScoreService.getDao().findByCbsId(musicScoreIds1,false);
|
|
|
- if(CollectionUtils.isNotEmpty(musicScores)){
|
|
|
- musicScoreMap1 = musicScores.stream().collect(Collectors.toMap(e->e.getId().longValue(), o -> o));
|
|
|
- }
|
|
|
- }
|
|
|
for (CbsMaterialRefWrapper.AddMaterialRef materialRef : materialRefs) {
|
|
|
CbsMaterialRefWrapper.RelateMaterialInfo relateMaterialInfo = materialRef.getRelateMaterialInfo();
|
|
|
if(relateMaterialInfo != null && StringUtils.equals(relateMaterialInfo.getType(),"SONG")
|
|
|
&& CollectionUtils.isNotEmpty(relateMaterialInfo.getApplicationIdList())){
|
|
|
- SysMusicScore musicScore = musicScoreMap1.get(relateMaterialInfo.getId());
|
|
|
+ SysMusicScore musicScore = musicScoreMap.get(relateMaterialInfo.getId());
|
|
|
if(musicScore != null && musicScore.getShowFlag() == 1 && musicScore.getClientShowFlag() == 1
|
|
|
&& query.getTenantCategoriesIdList().contains(musicScore.getCbsMusicCategoriesId())) {
|
|
|
materialRef.setResourceIdStr(musicScore.getId().toString());
|