|
@@ -199,7 +199,7 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
@Override
|
|
|
public IPage<MusicSheetVoResult> selectCbsPage(IPage<MusicSheetVo> page, MusicSheetSearch query) {
|
|
|
List<MusicSheetVo> musicSheets = baseMapper.selectPage(page, query);
|
|
|
- IPage<MusicSheetVo> info = page.setRecords(musicDataFormat(musicSheets));
|
|
|
+ IPage<MusicSheetVo> info = page.setRecords(musicDataFormat(musicSheets,query.getSourceType()));
|
|
|
List<MusicSheetVo> rows = info.getRecords();
|
|
|
List<MusicSheetVoResult> musicSheetVoResults = new ArrayList<>();
|
|
|
for (MusicSheetVo row : rows) {
|
|
@@ -210,7 +210,7 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
return com.yonge.cooleshow.biz.dal.dto.PageUtil.transPageInfo(info, musicSheetVoResults);
|
|
|
}
|
|
|
|
|
|
- public List<MusicSheetVo> musicDataFormat(List<MusicSheetVo> musicSheets) {
|
|
|
+ public List<MusicSheetVo> musicDataFormat(List<MusicSheetVo> musicSheets,SourceTypeEnum sourceType) {
|
|
|
if (CollectionUtils.isEmpty(musicSheets)) {
|
|
|
return musicSheets;
|
|
|
}
|
|
@@ -218,11 +218,15 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
if (CollectionUtils.isEmpty(cbsMusicSheetIds)) {
|
|
|
return new ArrayList<>();
|
|
|
}
|
|
|
+ Long appId = Long.parseLong(openFeignClientConfigProperties.getAppId());
|
|
|
+ if (sourceType!=null && sourceType==SourceTypeEnum.TENANT) {
|
|
|
+ appId = Long.parseLong(sysConfigService.findConfigValue(SysConfigConstant.CBS_TENANT_APP_ID));
|
|
|
+ }
|
|
|
// 调用内容平台查询曲目信息
|
|
|
R<PageInfo<CbsMusicSheetWrapper.MusicSheetApplication>> pageInfoR = musicFeignClientService
|
|
|
.musicSheetPageByApplication(CbsMusicSheetWrapper.MusicSheetApplicationQuery.builder()
|
|
|
.musicSheetIds(cbsMusicSheetIds).detailFlag(false).rows(-1).delFlag(true)
|
|
|
- .applicationId(Long.parseLong(openFeignClientConfigProperties.getAppId())).build());
|
|
|
+ .applicationId(appId).build());
|
|
|
List<CbsMusicSheetWrapper.MusicSheetApplication> rows;
|
|
|
try {
|
|
|
PageInfo<CbsMusicSheetWrapper.MusicSheetApplication> musicSheetApplicationPageInfo = pageInfoR.feignData();
|
|
@@ -550,6 +554,7 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
if (musicSheetApplication.getAudioType() != null) {
|
|
|
sheet.setAccompanimentType(AccompanimentTypeEnum.valueOf(musicSheetApplication.getAudioType().getCode()));
|
|
|
}
|
|
|
+ sheet.setCategoryName(musicSheetApplication.getMusicSheetCategoryName());
|
|
|
sheet.setMusicTagNames(musicSheetApplication.getMusicTagNames());
|
|
|
sheet.setSubjectNames(musicSheetApplication.getSubjectNames());
|
|
|
sheet.setPaymentType(musicSheetApplication.getPaymentType());
|
|
@@ -612,6 +617,8 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
}
|
|
|
}
|
|
|
MusicSheetDetailVo detail = this.getCbsDetail(Long.parseLong(id));
|
|
|
+
|
|
|
+ detail.setTenantFlag(false);
|
|
|
//兼容审批数据
|
|
|
MusicSheetAuthRecord one = musicSheetAuthRecordService.lambdaQuery().eq(MusicSheetAuthRecord::getMusicSheetId, detail.getId()).last("limit 1").one();
|
|
|
if (one != null) {
|
|
@@ -650,12 +657,42 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
|
|
|
// 如果是机构用户,判断机构专辑
|
|
|
|
|
|
- // 机构专辑购买
|
|
|
+ // 机构学生,查询购买过的机构专辑,是否存在当前曲目
|
|
|
+ Long tenantId = userTenantId(sysUser.getId(), userType);
|
|
|
|
|
|
- // 学生生效中的机构专辑
|
|
|
- if (userType == ClientEnum.STUDENT && tenantUserCheck(sysUser.getId(),userType)) {
|
|
|
- tenantMusicCheck(sysUser.getId(), detail, userType);
|
|
|
+ if (tenantId >0L) {
|
|
|
+ detail.setTenantFlag(true);
|
|
|
+
|
|
|
+ if (detail.getProviderType().contains(SourceTypeEnum.TENANT.getCode())) {
|
|
|
+ if (userType == ClientEnum.STUDENT) {
|
|
|
+
|
|
|
+ // 机构学生
|
|
|
+ List<Long> tenantAlbumIds = userTenantAlbumRecordMapper.selectTenantIds(sysUser.getId());
|
|
|
+ if (CollectionUtils.isNotEmpty(tenantAlbumIds)) {
|
|
|
+ List<Long> musicSheetIds = tenantAlbumMusicService.getMusicIdsByIds(tenantAlbumIds);
|
|
|
+ if (musicSheetIds.contains(detail.getId())) {
|
|
|
+ detail.setPlay(YesOrNoEnum.YES);
|
|
|
+ detail.setBuyed(true);
|
|
|
+ return detail;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 老师所在机构启用的专辑
|
|
|
+ Teacher teacher = teacherService.getById(sysUser.getId());
|
|
|
+ if (teacher.getTenantId() != null) {
|
|
|
+ List<Long> musicSheetIds = tenantAlbumMusicService.getMusicIdsByTenantIds(teacher.getTenantId());
|
|
|
+ if (musicSheetIds.contains(detail.getId())) {
|
|
|
+ detail.setPlay(YesOrNoEnum.YES);
|
|
|
+ detail.setBuyed(true);
|
|
|
+ return detail;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
} else {
|
|
|
+ if (!detail.getProviderType().contains(SourceTypeEnum.PLATFORM.getCode())) {
|
|
|
+ return detail;
|
|
|
+ }
|
|
|
if (detail.getPaymentType().contains(ChargeTypeEnum.FREE.getCode())) {
|
|
|
detail.setPlay(YesOrNoEnum.YES);
|
|
|
} else if (ClientEnum.STUDENT.getCode().equals(userType.getCode())
|
|
@@ -671,6 +708,10 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
+ detail.setTenantFlag(true);
|
|
|
+ if (!detail.getProviderType().contains(SourceTypeEnum.TENANT.getCode())) {
|
|
|
+ return detail;
|
|
|
+ }
|
|
|
// 机构专辑购买
|
|
|
detail.setPlay(YesOrNoEnum.NO);
|
|
|
List<Long> collected = Arrays.stream(tenantAlbumId.split(",")).map(Long::parseLong).collect(Collectors.toList());
|
|
@@ -704,15 +745,19 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
return detail;
|
|
|
}
|
|
|
|
|
|
- private boolean tenantUserCheck(Long userId, ClientEnum userType) {
|
|
|
+ private Long userTenantId(Long userId, ClientEnum userType) {
|
|
|
if (ClientEnum.STUDENT == userType) {
|
|
|
Student student = studentService.getById(userId);
|
|
|
- return student != null&& student.getTenantId() !=null && student.getTenantId() >0;
|
|
|
+ if (student != null&& student.getTenantId() !=null && student.getTenantId() >0) {
|
|
|
+ return student.getTenantId();
|
|
|
+ }
|
|
|
} else if (ClientEnum.TEACHER == userType) {
|
|
|
Teacher teacher = teacherService.getById(userId);
|
|
|
- return teacher != null && teacher.getTenantId() !=null && teacher.getTenantId() >0;
|
|
|
+ if (teacher != null && teacher.getTenantId() !=null && teacher.getTenantId() >0) {
|
|
|
+ return teacher.getTenantId();
|
|
|
+ }
|
|
|
}
|
|
|
- return false;
|
|
|
+ return -1L;
|
|
|
|
|
|
}
|
|
|
|
|
@@ -792,31 +837,6 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
if (count > 0) {
|
|
|
detail.setPlay(YesOrNoEnum.YES);
|
|
|
detail.setBuyed(true);
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
- tenantMusicCheck(studentId,detail,userType);
|
|
|
- }
|
|
|
-
|
|
|
- private void tenantMusicCheck(Long studentId, MusicSheetDetailVo detail, ClientEnum userType) {
|
|
|
- if (ClientEnum.STUDENT == userType) {
|
|
|
- List<Long> tenantAlbumIds = userTenantAlbumRecordMapper.selectTenantIds(studentId);
|
|
|
- if (CollectionUtils.isNotEmpty(tenantAlbumIds)) {
|
|
|
- List<Long> musicSheetIds = tenantAlbumMusicService.getMusicIdsByIds(tenantAlbumIds);
|
|
|
- if (musicSheetIds.contains(detail.getId())) {
|
|
|
- detail.setPlay(YesOrNoEnum.YES);
|
|
|
- detail.setBuyed(true);
|
|
|
- }
|
|
|
- }
|
|
|
- } else if (ClientEnum.TEACHER == userType) {
|
|
|
- // 老师所在机构启用的专辑
|
|
|
- Teacher teacher = teacherService.getById(studentId);
|
|
|
- if (teacher.getTenantId() !=null) {
|
|
|
- List<Long> musicSheetIds = tenantAlbumMusicService.getMusicIdsByTenantIds(teacher.getTenantId());
|
|
|
- if (musicSheetIds.contains(detail.getId())) {
|
|
|
- detail.setPlay(YesOrNoEnum.YES);
|
|
|
- detail.setBuyed(true);
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1009,6 +1029,9 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
// 更新曲目专辑数量
|
|
|
musicSheetService.updateMusicAlbumNumInfo(page.getRecords());
|
|
|
}
|
|
|
+ for (MusicSheetVo record : page.getRecords()) {
|
|
|
+ record.setPlay(detail(record.getId(), sysUserFeignService.queryUserById(query.getStudentId()), ClientEnum.STUDENT).getPlay());
|
|
|
+ }
|
|
|
return page;
|
|
|
}
|
|
|
|
|
@@ -2437,6 +2460,11 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void delPractice(Long musicSheetId,Long userId,ClientEnum clientEnum) {
|
|
|
+ baseMapper.delPractice(musicSheetId,userId,clientEnum);
|
|
|
+ }
|
|
|
+
|
|
|
private Map<Long,MusicSheet> getMapByCbsIds(List<Long> cbsMusicSheetIds) {
|
|
|
if (CollectionUtils.isEmpty(cbsMusicSheetIds)) {
|
|
|
return new HashMap<>();
|