|
@@ -0,0 +1,184 @@
|
|
|
+package com.ym.mec.biz.service.impl;
|
|
|
+
|
|
|
+import com.google.common.collect.Lists;
|
|
|
+import com.ym.mec.biz.dal.dao.CourseScheduleDao;
|
|
|
+import com.ym.mec.biz.dal.dao.CourseScheduleStudentPaymentDao;
|
|
|
+import com.ym.mec.biz.dal.dao.CourseShareDao;
|
|
|
+import com.ym.mec.biz.dal.dao.StudentDao;
|
|
|
+import com.ym.mec.biz.dal.dao.StudentManageDao;
|
|
|
+import com.ym.mec.biz.dal.dto.CourseShareDto;
|
|
|
+import com.ym.mec.biz.dal.dto.StudentManageListDto;
|
|
|
+import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
|
+import com.ym.mec.biz.dal.entity.CourseScheduleStudentPayment;
|
|
|
+import com.ym.mec.biz.dal.entity.CourseShare;
|
|
|
+import com.ym.mec.biz.dal.entity.Student;
|
|
|
+import com.ym.mec.biz.dal.enums.JoinCourseType;
|
|
|
+import com.ym.mec.biz.dal.enums.ShareModeEnum;
|
|
|
+import com.ym.mec.biz.service.CourseShareService;
|
|
|
+import com.ym.mec.biz.service.SysUserService;
|
|
|
+import com.ym.mec.common.dal.BaseDAO;
|
|
|
+import com.ym.mec.common.service.impl.BaseServiceImpl;
|
|
|
+import org.apache.commons.collections.CollectionUtils;
|
|
|
+import org.springframework.beans.BeanUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author 袁亮
|
|
|
+ * @apiNote 课程分享业务实现类
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class CourseShareServiceImpl extends BaseServiceImpl<Integer, CourseShare> implements CourseShareService {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量操作,分批数据最大限制
|
|
|
+ */
|
|
|
+ private static final int BATCH_OPE_MAX_SIZE = 500;
|
|
|
+
|
|
|
+ private static final String TENANT_ID = "tenantId";
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private CourseShareDao courseShareDao;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private StudentManageDao studentManageDao;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private StudentDao studentDao;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private SysUserService userService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private CourseScheduleStudentPaymentDao courseScheduleStudentPaymentDao;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private CourseScheduleDao courseScheduleDao;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public BaseDAO<Integer, CourseShare> getDAO() {
|
|
|
+ return courseShareDao;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
+ @Override
|
|
|
+ public List<CourseShare> create(Integer tenantId, CourseShareDto courseShareDto) {
|
|
|
+ List<CourseShare> courseShares = new ArrayList<>();
|
|
|
+ Integer userId = userService.getUserId();
|
|
|
+ if (ShareModeEnum.PRIVATE.equals(courseShareDto.getShareMode())) {
|
|
|
+ if (CollectionUtils.isEmpty(courseShareDto.getUserIds())) {
|
|
|
+ // 不分享,清理数据并返回
|
|
|
+ courseShareDao.deleteByCourseId(courseShareDto.getCourseId());
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ List<Student> students = studentDao.findByStudentIds(courseShareDto.getUserIds());
|
|
|
+ courseShares = students.stream().map(next -> {
|
|
|
+ CourseShare courseShare = new CourseShare();
|
|
|
+ BeanUtils.copyProperties(courseShareDto, courseShare);
|
|
|
+ courseShare.setUserId(next.getUserId());
|
|
|
+ courseShare.setTenantId(tenantId);
|
|
|
+ courseShare.setCreateTime(new Date());
|
|
|
+ courseShare.setCreateBy(userId);
|
|
|
+ return courseShare;
|
|
|
+ }).collect(Collectors.toList());
|
|
|
+ } else {
|
|
|
+ CourseShare courseShare = new CourseShare();
|
|
|
+ BeanUtils.copyProperties(courseShareDto, courseShare);
|
|
|
+ courseShare.setTenantId(tenantId);
|
|
|
+ courseShare.setCreateTime(new Date());
|
|
|
+ courseShare.setCreateBy(userId);
|
|
|
+ courseShares.add(courseShare);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 处理已经分享过的数据
|
|
|
+ List<CourseShare> existShares = courseShareDao.selectByCourseId(courseShareDto.getCourseId());
|
|
|
+ if (CollectionUtils.isNotEmpty(existShares) && (courseShareDto.getShareMode().equals(ShareModeEnum.PRIVATE))) {
|
|
|
+ // 私有分享,删除历史数据
|
|
|
+ List<Integer> sharedHistoryRecords = existShares.stream()
|
|
|
+ .map(CourseShare::getId)
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (CollectionUtils.isNotEmpty(sharedHistoryRecords)) {
|
|
|
+ courseShareDao.deleteByIds(sharedHistoryRecords);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 数据入库
|
|
|
+ List<List<CourseShare>> groupList = Lists.partition(courseShares, BATCH_OPE_MAX_SIZE);
|
|
|
+ for (List<CourseShare> shares : groupList) {
|
|
|
+ courseShareDao.batchInsert(shares);
|
|
|
+ }
|
|
|
+ return courseShareDao.selectByCourseId(courseShareDto.getCourseId());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<StudentManageListDto> queryCourseSharedStudent(Integer tenantId, Integer courseId) {
|
|
|
+ // 查询该课程已经分享的学生列表
|
|
|
+ Map<String, Object> courseParam = new HashMap<>(2);
|
|
|
+ courseParam.put("courseId", courseId);
|
|
|
+ courseParam.put(TENANT_ID, tenantId);
|
|
|
+ List<CourseShare> courseShareRecords = courseShareDao.findAll(courseParam);
|
|
|
+ if (CollectionUtils.isEmpty(courseShareRecords)) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+
|
|
|
+ // 查询学生列表
|
|
|
+ Map<String, Object> param = new HashMap<>(2);
|
|
|
+ param.put(TENANT_ID, tenantId);
|
|
|
+ param.put("userIds", courseShareRecords.stream().map(CourseShare::getUserId).toArray());
|
|
|
+ return studentManageDao.findStudentsByOrganId(param);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<StudentManageListDto> queryStudentList(Integer tenantId, Integer organId, Integer subjectId) {
|
|
|
+ Map<String, Object> param = new HashMap<>(2);
|
|
|
+ if (organId != null) {
|
|
|
+ param.put("organIds", new int[]{organId});
|
|
|
+ }
|
|
|
+ if (subjectId != null) {
|
|
|
+ param.put("subjectId", subjectId);
|
|
|
+ }
|
|
|
+ param.put(TENANT_ID, tenantId);
|
|
|
+ // 查询指定分部和声部对应的学生列表
|
|
|
+ return studentManageDao.findStudentsByOrganId(param);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
+ @Override
|
|
|
+ public boolean createPaymentRecord(Integer tenantId, Long courseId, Integer userId) {
|
|
|
+ // 查询是否已经进入直播间,进入即表示存在记录,不需要重复插入数据
|
|
|
+ int haveCourse = courseScheduleStudentPaymentDao.checkStudentHaveCourse(courseId, userId);
|
|
|
+ if (haveCourse == 0) {
|
|
|
+ List<CourseSchedule> schedules =
|
|
|
+ courseScheduleDao.findByCourseScheduleIds(Collections.singletonList(courseId));
|
|
|
+ CourseSchedule schedule = schedules.get(0);
|
|
|
+ CourseScheduleStudentPayment payment = new CourseScheduleStudentPayment();
|
|
|
+ payment.setGroupType(schedule.getGroupType());
|
|
|
+ payment.setMusicGroupId(schedule.getMusicGroupId());
|
|
|
+ payment.setUserId(userId);
|
|
|
+ // 分享方式下,价格为0
|
|
|
+ BigDecimal sharePrice = new BigDecimal(0);
|
|
|
+ payment.setOriginalPrice(sharePrice);
|
|
|
+ payment.setExpectPrice(sharePrice);
|
|
|
+ payment.setActualPrice(sharePrice);
|
|
|
+ payment.setExpectPriceBak(sharePrice);
|
|
|
+ payment.setActualPriceBak(sharePrice);
|
|
|
+ payment.setCreateTime(new Date());
|
|
|
+ payment.setTenantId(tenantId);
|
|
|
+ payment.setClassGroupId(schedule.getClassGroupId());
|
|
|
+ payment.setJoinCourseType(JoinCourseType.SHARE);
|
|
|
+ courseScheduleStudentPaymentDao.insert(payment);
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|