package com.mindskip.xzs.controller.wx.student; import com.mindskip.xzs.base.RestResponse; import com.mindskip.xzs.controller.wx.BaseWXApiController; import com.mindskip.xzs.domain.*; import com.mindskip.xzs.domain.enums.QuestionTypeEnum; import com.mindskip.xzs.event.CalculateExamPaperAnswerCompleteEvent; import com.mindskip.xzs.event.UserEvent; import com.mindskip.xzs.service.ExamPaperAnswerService; import com.mindskip.xzs.service.ExamPaperService; import com.mindskip.xzs.service.SubjectService; import com.mindskip.xzs.utility.DateTimeUtil; import com.mindskip.xzs.utility.ExamUtil; import com.mindskip.xzs.utility.PageInfoHelper; import com.mindskip.xzs.viewmodel.admin.exam.ExamPaperEditRequestVM; import com.mindskip.xzs.viewmodel.admin.exam.ExamPaperEditRequestVO; import com.mindskip.xzs.viewmodel.student.exam.ExamPaperReadVO; import com.mindskip.xzs.viewmodel.student.exampaper.ExamPaperAnswerPageResponseVM; import com.mindskip.xzs.viewmodel.student.exampaper.ExamPaperAnswerPageVM; import com.github.pagehelper.PageInfo; import com.mindskip.xzs.viewmodel.student.exam.ExamPaperReadVM; import com.mindskip.xzs.viewmodel.student.exam.ExamPaperSubmitItemVM; import com.mindskip.xzs.viewmodel.student.exam.ExamPaperSubmitVM; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationEventPublisher; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; import java.util.*; import java.util.stream.Collectors; @Controller("WXStudentExamPaperAnswerController") @RequestMapping(value = "/api/wx/student/exampaper/answer") @ResponseBody public class ExamPaperAnswerController extends BaseWXApiController { private final ExamPaperAnswerService examPaperAnswerService; private final SubjectService subjectService; private final ApplicationEventPublisher eventPublisher; private final ExamPaperService examPaperService; @Autowired public ExamPaperAnswerController(ExamPaperAnswerService examPaperAnswerService, SubjectService subjectService, ApplicationEventPublisher eventPublisher, ExamPaperService examPaperService) { this.examPaperAnswerService = examPaperAnswerService; this.subjectService = subjectService; this.eventPublisher = eventPublisher; this.examPaperService = examPaperService; } @RequestMapping(value = "/pageList", method = RequestMethod.POST) public RestResponse> pageList(@Valid ExamPaperAnswerPageVM model) { model.setCreateUser(getCurrentUser().getId()); PageInfo pageInfo = examPaperAnswerService.studentPage(model); PageInfo page = PageInfoHelper.copyMap(pageInfo, e -> { ExamPaperAnswerPageResponseVM vm = modelMapper.map(e, ExamPaperAnswerPageResponseVM.class); Subject subject = subjectService.selectById(vm.getSubjectId()); vm.setDoTime(ExamUtil.secondToVM(e.getDoTime())); vm.setSystemScore(ExamUtil.scoreToVM(e.getSystemScore())); vm.setUserScore(ExamUtil.scoreToVM(e.getUserScore())); vm.setPaperScore(ExamUtil.scoreToVM(e.getPaperScore())); vm.setSubjectName(subject.getName()); vm.setCreateTime(DateTimeUtil.dateFormat(e.getCreateTime())); return vm; }); return RestResponse.ok(page); } @RequestMapping(value = "/answerSubmit", method = RequestMethod.POST) public RestResponse answerSubmit(HttpServletRequest request) { ExamPaperSubmitVM examPaperSubmitVM = requestToExamPaperSubmitVM(request); User user = getCurrentUser(); ExamPaperAnswerInfo examPaperAnswerInfo = examPaperAnswerService.calculateExamPaperAnswer(examPaperSubmitVM, user); if (null == examPaperAnswerInfo) { return RestResponse.fail(2, "试卷不能重复做"); } ExamPaperAnswer examPaperAnswer = examPaperAnswerInfo.getExamPaperAnswer(); Integer userScore = examPaperAnswer.getUserScore(); String scoreVm = ExamUtil.scoreToVM(userScore); UserEventLog userEventLog = new UserEventLog(user.getId(), user.getUserName(), user.getRealName(), new Date()); String content = user.getUserName() + " 提交试卷:" + examPaperAnswerInfo.getExamPaper().getName() + " 得分:" + scoreVm + " 耗时:" + ExamUtil.secondToVM(examPaperAnswer.getDoTime()); userEventLog.setContent(content); eventPublisher.publishEvent(new CalculateExamPaperAnswerCompleteEvent(examPaperAnswerInfo)); eventPublisher.publishEvent(new UserEvent(userEventLog)); return RestResponse.ok(scoreVm); } private ExamPaperSubmitVM requestToExamPaperSubmitVM(HttpServletRequest request) { ExamPaperSubmitVM examPaperSubmitVM = new ExamPaperSubmitVM(); examPaperSubmitVM.setId(Integer.parseInt(request.getParameter("id"))); examPaperSubmitVM.setDoTime(Integer.parseInt(request.getParameter("doTime"))); List parameterNames = Collections.list(request.getParameterNames()).stream() .filter(n -> n.contains("_")) .collect(Collectors.toList()); //题目答案按序号分组 Map> questionGroup = parameterNames.stream().collect(Collectors.groupingBy(p -> p.substring(0, p.indexOf("_")))); List answerItems = new ArrayList<>(); questionGroup.forEach((k, v) -> { ExamPaperSubmitItemVM examPaperSubmitItemVM = new ExamPaperSubmitItemVM(); String p = v.get(0); String[] keys = p.split("_"); examPaperSubmitItemVM.setQuestionId(Integer.parseInt(keys[1])); examPaperSubmitItemVM.setItemOrder(Integer.parseInt(keys[0])); QuestionTypeEnum typeEnum = QuestionTypeEnum.fromCode(Integer.parseInt(keys[2])); if (v.size() == 1) { String content = request.getParameter(p); examPaperSubmitItemVM.setContent(content); if (typeEnum == QuestionTypeEnum.MultipleChoice) { examPaperSubmitItemVM.setContentArray(Arrays.asList(content.split(","))); } } else { //多个空 填空题 List answers = v.stream().sorted(Comparator.comparingInt(ExamUtil::lastNum)).map(inputKey -> request.getParameter(inputKey)).collect(Collectors.toList()); examPaperSubmitItemVM.setContentArray(answers); } answerItems.add(examPaperSubmitItemVM); }); examPaperSubmitVM.setAnswerItems(answerItems); return examPaperSubmitVM; } @PostMapping(value = "/read/{id}") public RestResponse read(@PathVariable Integer id) { ExamPaperReadVO vm = new ExamPaperReadVO(); ExamPaperAnswer examPaperAnswer = examPaperAnswerService.selectById(id); ExamPaperEditRequestVO paper = examPaperService.examPaperToVM(examPaperAnswer.getExamPaperId()); ExamPaperSubmitVM answer = examPaperAnswerService.examPaperAnswerToVM(examPaperAnswer.getId()); vm.setPaper(paper); vm.setAnswer(answer); return RestResponse.ok(vm); } }