|
@@ -1,6 +1,5 @@
|
|
|
package com.yonge.cooleshow.biz.dal.service.impl;
|
|
|
|
|
|
-import cn.hutool.core.util.NumberUtil;
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
@@ -8,21 +7,22 @@ import com.dayaedu.cbs.common.enums.school.ECourseType;
|
|
|
import com.dayaedu.cbs.common.enums.school.EKnowledgeType;
|
|
|
import com.dayaedu.cbs.common.enums.school.EMaterialType;
|
|
|
import com.dayaedu.cbs.openfeign.client.CoursewareFeignService;
|
|
|
+import com.dayaedu.cbs.openfeign.client.MusicFeignClientService;
|
|
|
import com.dayaedu.cbs.openfeign.wrapper.courseware.CbsCourseTypeWrapper;
|
|
|
import com.dayaedu.cbs.openfeign.wrapper.courseware.CbsLessonCoursewareDetailWrapper;
|
|
|
import com.dayaedu.cbs.openfeign.wrapper.courseware.CbsLessonCoursewareWrapper;
|
|
|
-import com.dayaedu.cbs.openfeign.wrapper.courseware.CbsMaterialRefWrapper;
|
|
|
import com.dayaedu.cbs.openfeign.wrapper.music.CbsMusicSheetWrapper;
|
|
|
+import com.dayaedu.cbs.openfeign.wrapper.music.MusicSheetCategoriesWrapper;
|
|
|
import com.microsvc.toolkit.common.response.paging.PageInfo;
|
|
|
import com.yonge.cooleshow.biz.dal.entity.*;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.ClientEnum;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.SubjectTypeEnum;
|
|
|
import com.yonge.cooleshow.biz.dal.mapper.TenantAlbumMusicMapper;
|
|
|
import com.yonge.cooleshow.biz.dal.service.*;
|
|
|
-import com.yonge.cooleshow.biz.dal.service.cbs.CbsMusicScoreService;
|
|
|
import com.yonge.cooleshow.biz.dal.wrapper.LessonCoursewareDetailWrapper;
|
|
|
import com.yonge.cooleshow.biz.dal.wrapper.LessonCoursewareWrapper;
|
|
|
import com.yonge.cooleshow.biz.dal.wrapper.TenantAlbumMusicWrapper;
|
|
|
+import com.yonge.cooleshow.common.constant.SysConfigConstant;
|
|
|
import com.yonge.toolset.base.exception.BizException;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
@@ -33,7 +33,6 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
-import java.util.stream.Stream;
|
|
|
|
|
|
/**
|
|
|
* 机构专辑曲目
|
|
@@ -57,6 +56,12 @@ public class TenantAlbumMusicServiceImpl extends ServiceImpl<TenantAlbumMusicMap
|
|
|
private MusicTagService musicTagService;
|
|
|
|
|
|
@Autowired
|
|
|
+ private MusicFeignClientService musicFeignClientService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private SysConfigService sysConfigService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
private TenantAlbumMusicMapper tenantAlbumMusicMapper;
|
|
|
|
|
|
@Autowired
|
|
@@ -99,6 +104,20 @@ public class TenantAlbumMusicServiceImpl extends ServiceImpl<TenantAlbumMusicMap
|
|
|
TenantAlbumMusicWrapper.StudentTenantAlbumMusicQuery query) {
|
|
|
List<TenantAlbumMusicWrapper.StudentTenantAlbumMusic> musicSheets = new ArrayList<>();
|
|
|
if (query.getSubjectType() != SubjectTypeEnum.COURSEWARE) {
|
|
|
+ // 如果分类不为空,查询分类下的曲目
|
|
|
+ List<Long> categoryIds = new ArrayList<>();
|
|
|
+ if (query.getCategoryId() !=null) {
|
|
|
+ } else {
|
|
|
+ Long categoryId = getCategoryId(query.getSubjectType().name());
|
|
|
+ query.setCategoryId(categoryId);
|
|
|
+ }
|
|
|
+ MusicSheetCategoriesWrapper.MusicSheetCategories musicSheetCategories = musicFeignClientService.getChildTreeById(query.getCategoryId()).feignData();
|
|
|
+
|
|
|
+ categoryIds.add(query.getCategoryId());
|
|
|
+ if (musicSheetCategories !=null) {
|
|
|
+ formatCategory(categoryIds, musicSheetCategories.getMusicSheetCategoriesList());
|
|
|
+ }
|
|
|
+ query.setCategoryIds(categoryIds);
|
|
|
|
|
|
musicSheets = tenantAlbumMusicMapper.selectPage(page, query);
|
|
|
if (CollectionUtils.isEmpty(musicSheets)) {
|
|
@@ -207,6 +226,16 @@ public class TenantAlbumMusicServiceImpl extends ServiceImpl<TenantAlbumMusicMap
|
|
|
return page.setRecords(musicSheets);
|
|
|
}
|
|
|
|
|
|
+ private void formatCategory(List<Long> categoryIds, List<MusicSheetCategoriesWrapper.MusicSheetCategories> musicSheetCategoriesList) {
|
|
|
+ if (CollectionUtils.isEmpty(musicSheetCategoriesList)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ for (MusicSheetCategoriesWrapper.MusicSheetCategories musicSheetCategories : musicSheetCategoriesList) {
|
|
|
+ categoryIds.add(musicSheetCategories.getId());
|
|
|
+ formatCategory(categoryIds,musicSheetCategories.getMusicSheetCategoriesList());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 添加
|
|
|
* @param tenantAlbumMusic TenantAlbumMusicWrapper.TenantAlbumMusic
|
|
@@ -277,32 +306,46 @@ public class TenantAlbumMusicServiceImpl extends ServiceImpl<TenantAlbumMusicMap
|
|
|
return data;
|
|
|
}
|
|
|
|
|
|
+ // 获取曲目所有分类
|
|
|
+ List<Long> categoryIds = musicSheets.stream().map(MusicSheet::getTenantCategoryId)
|
|
|
+ .filter(StringUtils::isNotBlank).map(Long::parseLong).distinct().collect(Collectors.toList());
|
|
|
+
|
|
|
+
|
|
|
+ // 查询分类
|
|
|
+ MusicSheetCategoriesWrapper.MusicSheetCategories musicSheetCategories = musicFeignClientService.getChildTreeById(getCategoryId(query.getSubjectType().name())).feignData();
|
|
|
+
|
|
|
+ // 过滤掉不存在的分类
|
|
|
+ List<Long> ids = new ArrayList<>();
|
|
|
+ getCategory(musicSheetCategories.getMusicSheetCategoriesList(),categoryIds,ids);
|
|
|
+ filterCategory(musicSheetCategories.getMusicSheetCategoriesList(),ids);
|
|
|
+ data.setCategoyList(musicSheetCategories.getMusicSheetCategoriesList());
|
|
|
+
|
|
|
// 类型
|
|
|
- List<Long> typeIds =list.stream().map(TenantAlbumMusic::getType).distinct().filter(StringUtils::isNotBlank)
|
|
|
- .filter(NumberUtil::isNumber).map(Long::valueOf).collect(Collectors.toList());
|
|
|
- if (!typeIds.isEmpty()) {
|
|
|
- List<TenantAlbumCategoryDetail> typeList = tenantAlbumCategoryDetailService.lambdaQuery()
|
|
|
- .in(TenantAlbumCategoryDetail::getId, typeIds).list();
|
|
|
- List<String> typeNameList = typeList.stream()
|
|
|
- .map(TenantAlbumCategoryDetail::getValue).collect(Collectors.toList());
|
|
|
- data.setTypes(typeNameList);
|
|
|
- data.setTypeList(typeList);
|
|
|
- } else {
|
|
|
- data.setTypes(new ArrayList<>());
|
|
|
- }
|
|
|
- // 级别
|
|
|
- List<Long> levelIds =list.stream().map(TenantAlbumMusic::getLevel).distinct().filter(StringUtils::isNotBlank)
|
|
|
- .filter(NumberUtil::isNumber).map(Long::valueOf).collect(Collectors.toList());
|
|
|
- if (!levelIds.isEmpty()) {
|
|
|
- List<TenantAlbumCategoryDetail> levelList = tenantAlbumCategoryDetailService.lambdaQuery()
|
|
|
- .in(TenantAlbumCategoryDetail::getId, levelIds).list();
|
|
|
- List<String> levelNameList = levelList.stream()
|
|
|
- .map(TenantAlbumCategoryDetail::getValue).collect(Collectors.toList());
|
|
|
- data.setLevels(levelNameList);
|
|
|
- data.setLevelList(levelList);
|
|
|
- } else {
|
|
|
- data.setLevels(new ArrayList<>());
|
|
|
- }
|
|
|
+// List<Long> typeIds =list.stream().map(TenantAlbumMusic::getType).distinct().filter(StringUtils::isNotBlank)
|
|
|
+// .filter(NumberUtil::isNumber).map(Long::valueOf).collect(Collectors.toList());
|
|
|
+// if (!typeIds.isEmpty()) {
|
|
|
+// List<TenantAlbumCategoryDetail> typeList = tenantAlbumCategoryDetailService.lambdaQuery()
|
|
|
+// .in(TenantAlbumCategoryDetail::getId, typeIds).list();
|
|
|
+// List<String> typeNameList = typeList.stream()
|
|
|
+// .map(TenantAlbumCategoryDetail::getValue).collect(Collectors.toList());
|
|
|
+// data.setTypes(typeNameList);
|
|
|
+// data.setTypeList(typeList);
|
|
|
+// } else {
|
|
|
+// data.setTypes(new ArrayList<>());
|
|
|
+// }
|
|
|
+// // 级别
|
|
|
+// List<Long> levelIds =list.stream().map(TenantAlbumMusic::getLevel).distinct().filter(StringUtils::isNotBlank)
|
|
|
+// .filter(NumberUtil::isNumber).map(Long::valueOf).collect(Collectors.toList());
|
|
|
+// if (!levelIds.isEmpty()) {
|
|
|
+// List<TenantAlbumCategoryDetail> levelList = tenantAlbumCategoryDetailService.lambdaQuery()
|
|
|
+// .in(TenantAlbumCategoryDetail::getId, levelIds).list();
|
|
|
+// List<String> levelNameList = levelList.stream()
|
|
|
+// .map(TenantAlbumCategoryDetail::getValue).collect(Collectors.toList());
|
|
|
+// data.setLevels(levelNameList);
|
|
|
+// data.setLevelList(levelList);
|
|
|
+// } else {
|
|
|
+// data.setLevels(new ArrayList<>());
|
|
|
+// }
|
|
|
|
|
|
// 声部
|
|
|
String subjectIds = musicSheets.stream()
|
|
@@ -313,23 +356,76 @@ public class TenantAlbumMusicServiceImpl extends ServiceImpl<TenantAlbumMusicMap
|
|
|
data.setSubjects(subjects);
|
|
|
}
|
|
|
|
|
|
- // 标签
|
|
|
- List<Long> musicTagIds = musicSheets.stream().flatMap(o -> {
|
|
|
- if (StringUtils.isNotBlank(o.getMusicTag())) {
|
|
|
- return Arrays.stream(o.getMusicTag().split(","));
|
|
|
- }
|
|
|
- return Stream.empty();
|
|
|
+// // 标签
|
|
|
+// List<Long> musicTagIds = musicSheets.stream().flatMap(o -> {
|
|
|
+// if (StringUtils.isNotBlank(o.getMusicTag())) {
|
|
|
+// return Arrays.stream(o.getMusicTag().split(","));
|
|
|
+// }
|
|
|
+// return Stream.empty();
|
|
|
+//
|
|
|
+// }).filter(StringUtils::isNotBlank).distinct().map(Long::parseLong).collect(Collectors.toList());
|
|
|
+// if (!CollectionUtils.isEmpty(musicTagIds)) {
|
|
|
+//
|
|
|
+// List<MusicTag> tagList = musicTagService.listByIds(musicTagIds).parallelStream().collect(Collectors.toList());
|
|
|
+// data.setTags(tagList);
|
|
|
+// }
|
|
|
+ data.setSubjects(new ArrayList<>());
|
|
|
|
|
|
- }).filter(StringUtils::isNotBlank).distinct().map(Long::parseLong).collect(Collectors.toList());
|
|
|
- if (!CollectionUtils.isEmpty(musicTagIds)) {
|
|
|
+ return data;
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
- List<MusicTag> tagList = musicTagService.listByIds(musicTagIds).parallelStream().collect(Collectors.toList());
|
|
|
- data.setTags(tagList);
|
|
|
+ private void filterCategory(List<MusicSheetCategoriesWrapper.MusicSheetCategories> musicSheetCategoriesList, List<Long> ids) {
|
|
|
+ if (CollectionUtils.isEmpty(musicSheetCategoriesList)) {
|
|
|
+ return;
|
|
|
}
|
|
|
- data.setSubjects(new ArrayList<>());
|
|
|
+ for (int i = 0; i < musicSheetCategoriesList.size(); i++) {
|
|
|
+ MusicSheetCategoriesWrapper.MusicSheetCategories musicSheetCategories = musicSheetCategoriesList.get(i);
|
|
|
+ if (!ids.contains(musicSheetCategories.getId())) {
|
|
|
+ musicSheetCategoriesList.remove(i);
|
|
|
+ i--;
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if (CollectionUtils.isNotEmpty(musicSheetCategories.getMusicSheetCategoriesList())) {
|
|
|
+ filterCategory(musicSheetCategories.getMusicSheetCategoriesList(), ids);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- return data;
|
|
|
+ private boolean getCategory(List<MusicSheetCategoriesWrapper.MusicSheetCategories> musicSheetCategoriesList,
|
|
|
+ List<Long> categoryIds, List<Long> result) {
|
|
|
+ boolean flag = false;
|
|
|
+ if (CollectionUtils.isEmpty(musicSheetCategoriesList)) {
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
+ for (MusicSheetCategoriesWrapper.MusicSheetCategories musicSheetCategories : musicSheetCategoriesList) {
|
|
|
+ if (categoryIds.contains(musicSheetCategories.getId())) {
|
|
|
+ result.add(musicSheetCategories.getId());
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+ if (CollectionUtils.isNotEmpty(musicSheetCategories.getMusicSheetCategoriesList())) {
|
|
|
+ boolean b = getCategory(musicSheetCategories.getMusicSheetCategoriesList(), categoryIds, result);
|
|
|
+ if (b) {
|
|
|
+ result.add(musicSheetCategories.getId());
|
|
|
+ }
|
|
|
+ flag = flag || b;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
|
|
|
+ private Long getCategoryId(String subjectType) {
|
|
|
+ if (StringUtils.isBlank(subjectType)) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ if (SubjectTypeEnum.SUBJECT.name().equals(subjectType)) {
|
|
|
+ return Long.parseLong(sysConfigService.findConfigValue(SysConfigConstant.TENANT_ALBUM_SUBJECT_TYPE_CATEGORY));
|
|
|
+ } else if (SubjectTypeEnum.ENSEMBLE.name().equals(subjectType)) {
|
|
|
+ return Long.parseLong(sysConfigService.findConfigValue(SysConfigConstant.TENANT_ALBUM_ENSEMBLE_TYPE_CATEGORY));
|
|
|
+ } if (SubjectTypeEnum.MUSIC.name().equals(subjectType)) {
|
|
|
+ return Long.parseLong(sysConfigService.findConfigValue(SysConfigConstant.TENANT_ALBUM_MUSIC_TYPE_CATEGORY));
|
|
|
+ }
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
private List<ECourseType> courseTypeBySubject(Long subjectId) {
|