linzhijie
2021-03-11 c33914ba0a98c823c4b4d7da21cdd476906c9924
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package com.ots.project.exam.service.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.ots.common.enums.QuestionTypeEnum;
import com.ots.project.exam.domain.ExamPaperAnswer;
import com.ots.project.exam.domain.ExamPaperQuestionCustomerAnswer;
import com.ots.project.exam.domain.ExamUser;
import com.ots.project.exam.domain.TExamPaper;
import com.ots.project.exam.domain.TQuestion;
import com.ots.project.exam.dto.ExamPaperAnswerInfo;
import com.ots.project.exam.dto.ExamPaperQuestionItemObject;
import com.ots.project.exam.dto.ExamPaperTitleItemObject;
import com.ots.project.exam.dto.QuestionPart;
import com.ots.project.exam.dto.SubmitReport;
import com.ots.project.exam.mapper.ExamPaperAnswerMapper;
import com.ots.project.exam.mapper.TExamPaperMapper;
import com.ots.project.exam.mapper.TQuestionMapper;
import com.ots.project.exam.service.ExamPaperAnswerService;
import com.ots.project.exam.service.ITTextContentService;
import com.ots.project.exam.viewmodel.ExamPaperAnswerPageVM;
import com.ots.project.exam.viewmodel.ExamPaperSubmitItemVM;
import com.ots.project.exam.viewmodel.ExamPaperSubmitVM;
import com.ots.project.tool.exam.ExamUtil;
import com.ots.project.tool.exam.JsonUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Collectors;
@Service
public class ExamPaperAnswerServiceImpl implements ExamPaperAnswerService {
    private static final Logger log = LoggerFactory.getLogger(ExamPaperAnswerServiceImpl.class);
    @Autowired
    private TExamPaperMapper examPaperMapper;
    @Autowired
    private ExamPaperAnswerMapper examPaperAnswerMapper;
    @Autowired
    private ITTextContentService textContentService;
    @Autowired
    private TQuestionMapper questionMapper;
    @Override
    public ExamPaperAnswerInfo calculateExamPaperAnswer(ExamPaperSubmitVM examPaperSubmitVM, ExamUser user) {
        ExamPaperAnswerInfo examPaperAnswerInfo = new ExamPaperAnswerInfo();
        Date now = new Date();
        TExamPaper examPaper = examPaperMapper.selectTExamPaperById(examPaperSubmitVM.getId().longValue());
        String frameTextContent = textContentService.selectTTextContentById(examPaper.getFrameTextContentId()).getContent();
        List<ExamPaperTitleItemObject> examPaperTitleItemObjects = JsonUtil.toJsonListObject(frameTextContent, ExamPaperTitleItemObject.class);
        List<Integer> questionIds = examPaperTitleItemObjects.stream().flatMap(t -> t.getQuestionItems().stream().map(q -> q.getId())).collect(Collectors.toList());
        List<TQuestion> questions = questionMapper.selectByIds(questionIds);
        
        setWhichPart(examPaperSubmitVM, examPaperAnswerInfo, examPaperTitleItemObjects, questions);
        examPaperAnswerInfo.setExamPaper(examPaper);
        return examPaperAnswerInfo;
    }
    
    private void setWhichPart(ExamPaperSubmitVM examPaperSubmitVM, ExamPaperAnswerInfo examPaperAnswerInfo, List<ExamPaperTitleItemObject> examPaperTitleItemObjects, List<TQuestion> questions) {
        
        if (Objects.isNull(examPaperSubmitVM.getPartOrder())) {
            return;
        }
        int answerPartOrder = examPaperSubmitVM.getPartOrder();
        SubmitReport submitReport = new SubmitReport();
        if (Objects.isNull(answerPartOrder)) {
            submitReport.setJump("this");
            examPaperAnswerInfo.setSubmitReport(submitReport);
            return;
        }
        
        List<ExamPaperSubmitItemVM> answerItems = examPaperSubmitVM.getAnswerItems();
        
        
        Map<Integer, String> answerContentMap = getAnswerContentMap(answerItems);
        
        Map<Integer, QuestionPart> partMap = getParts(examPaperTitleItemObjects);
        
        
        Map<Integer, Integer> questionPartOrdeMap = getQuestionPartOrdeMap(examPaperTitleItemObjects);
        
        
        Map<Integer, Integer> partAnswerScoreMap = new HashMap<>();
        
        
        Map<Integer, Integer> partQuestionScoreMap = new HashMap<>();
        
        Map<Integer, Integer> partAnswerTimeMap = new HashMap<>();
        setAnswerScoreMap(questions, answerContentMap, questionPartOrdeMap, partAnswerScoreMap, partQuestionScoreMap);
        
 
 
 
 
 
 
 
 
 
 
 
 
        examPaperAnswerInfo.setSubmitReport(submitReport);
        
    }
    private void setAnswerScoreMap(List<TQuestion> questions, Map<Integer, String> answerContentMap, Map<Integer, Integer> questionPartOrdeMap, Map<Integer, Integer> partAnswerScoreMap, Map<Integer, Integer> partQuestionScoreMap) {
        for (TQuestion tQuestion : questions) {
            
            int partOrder = questionPartOrdeMap.get(tQuestion.getId().intValue());
            
            if (Objects.isNull(partQuestionScoreMap.get(partOrder))){
                partQuestionScoreMap.put(partOrder, 0);
            }
            if (Objects.isNull(partAnswerScoreMap.get(partOrder))) {
                partAnswerScoreMap.put(partOrder, 0);
            }
            
            
            if (Objects.nonNull(answerContentMap.get(tQuestion.getId().intValue()))) {
                setAnswerScoreMap(partQuestionScoreMap, tQuestion, partOrder);
            }
            
 
 
 
            if (Objects.equals(tQuestion.getCorrect(), answerContentMap.get(tQuestion.getId().intValue()))) {
                
                setAnswerScoreMap(partAnswerScoreMap, tQuestion, partOrder);
            }
        }
    }
    private Map<Integer, Integer> getQuestionPartOrdeMap(List<ExamPaperTitleItemObject> examPaperTitleItemObjects) {
        Map<Integer, Integer> questionPartOrdeMap = new HashMap<>();
        for (ExamPaperTitleItemObject examPaperTitleItemObject : examPaperTitleItemObjects) {
            List<ExamPaperQuestionItemObject> questionItems = examPaperTitleItemObject.getQuestionItems();
            for (ExamPaperQuestionItemObject examPaperQuestionItemObject : questionItems) {
                questionPartOrdeMap.put(examPaperQuestionItemObject.getId(), examPaperQuestionItemObject.getPartOrder());
            }
        }
        return questionPartOrdeMap;
    }
    private Map<Integer, QuestionPart> getParts(List<ExamPaperTitleItemObject> examPaperTitleItemObjects) {
        List<QuestionPart> parts = examPaperTitleItemObjects.get(0).getParts();
        
        Map<Integer, QuestionPart> partMap = new HashMap<>();
        for (QuestionPart questionPart : parts) {
            partMap.put(questionPart.getPartOrder(), questionPart);
        }
        return partMap;
    }
    private Map<Integer, String> getAnswerContentMap(List<ExamPaperSubmitItemVM> answerItems) {
        Map<Integer, String> answerContentMap = new HashMap<>();
        answerItems.stream().forEach(answerItem ->{
            answerContentMap.put(answerItem.getQuestionId(), answerItem.getContent());
        });
        return answerContentMap;
    }
    private void setAnswerScoreMap(Map<Integer, Integer> partQuestionScoreMap, TQuestion tQuestion, int partOrder) {
        int questonScore = Objects.nonNull(tQuestion.getScore()) ? tQuestion.getScore().intValue() : 0;
        if (Objects.nonNull(partQuestionScoreMap.get(partOrder))) {
            int score = partQuestionScoreMap.get(partOrder).intValue() + questonScore;
            partQuestionScoreMap.put(partOrder, score);
        } else {
            partQuestionScoreMap.put(partOrder, questonScore);
        }
    }
    
    private ExamPaperQuestionCustomerAnswer ExamPaperQuestionCustomerAnswerFromVM(TQuestion question, ExamPaperSubmitItemVM customerQuestionAnswer, TExamPaper examPaper, Integer itemOrder, ExamUser user, Date now) {
        ExamPaperQuestionCustomerAnswer examPaperQuestionCustomerAnswer = new ExamPaperQuestionCustomerAnswer();
        examPaperQuestionCustomerAnswer.setQuestionId(question.getId().intValue());
        examPaperQuestionCustomerAnswer.setExamPaperId(examPaper.getId().intValue());
        
        
        examPaperQuestionCustomerAnswer.setItemOrder(itemOrder);
        examPaperQuestionCustomerAnswer.setCreateTime(now);
        examPaperQuestionCustomerAnswer.setCreateUser(user.getId());
        examPaperQuestionCustomerAnswer.setQuestionType(question.getQuestionType().intValue());
        examPaperQuestionCustomerAnswer.setQuestionTextContentId(question.getInfoTextContentId().intValue());
        if (null == customerQuestionAnswer) {
            examPaperQuestionCustomerAnswer.setCustomerScore(0);
        } else {
            setSpecialFromVM(examPaperQuestionCustomerAnswer, question, customerQuestionAnswer);
        }
        return examPaperQuestionCustomerAnswer;
    }
    
    private void setSpecialFromVM(ExamPaperQuestionCustomerAnswer examPaperQuestionCustomerAnswer, TQuestion question, ExamPaperSubmitItemVM customerQuestionAnswer) {
        QuestionTypeEnum questionTypeEnum = QuestionTypeEnum.fromCode(examPaperQuestionCustomerAnswer.getQuestionType());
        switch (questionTypeEnum) {
            case SingleChoice:
            case TrueFalse:
                examPaperQuestionCustomerAnswer.setAnswer(customerQuestionAnswer.getContent());
                examPaperQuestionCustomerAnswer.setDoRight(question.getCorrect().equals(customerQuestionAnswer.getContent()));
                examPaperQuestionCustomerAnswer.setCustomerScore(0);
                break;
            case MultipleChoice:
                String customerAnswer = ExamUtil.contentToString(customerQuestionAnswer.getContentArray());
                examPaperQuestionCustomerAnswer.setAnswer(customerAnswer);
                examPaperQuestionCustomerAnswer.setDoRight(customerAnswer.equals(question.getCorrect()));
                examPaperQuestionCustomerAnswer.setCustomerScore(0);
                break;
            case GapFilling:
                String correctAnswer = JsonUtil.toJsonStr(customerQuestionAnswer.getContentArray());
                examPaperQuestionCustomerAnswer.setAnswer(correctAnswer);
                examPaperQuestionCustomerAnswer.setCustomerScore(0);
                break;
            default:
                examPaperQuestionCustomerAnswer.setAnswer(customerQuestionAnswer.getContent());
                examPaperQuestionCustomerAnswer.setCustomerScore(0);
                break;
        }
    }
    @Override
    public PageInfo<ExamPaperAnswer> studentPage(ExamPaperAnswerPageVM requestVM) {
        return PageHelper.startPage(requestVM.getPageIndex(), requestVM.getPageSize(), "id desc").doSelectPageInfo(() ->
                examPaperAnswerMapper.studentPage(requestVM));
    }
    @Override
    public String judge(ExamPaperSubmitVM examPaperSubmitVM) {
        return null;
    }
    @Override
    public ExamPaperSubmitVM examPaperAnswerToVM(Integer id) {
        return null;
    }
    @Override
    public Integer selectAllCount() {
        return null;
    }
    @Override
    public List<Integer> selectMothCount() {
        return null;
    }
    @Override
    public int deleteById(Integer id) {
        return 0;
    }
    @Override
    public int insert(ExamPaperAnswer record) {
        return examPaperAnswerMapper.insertSelective(record);
    }
    @Override
    public int insertByFilter(ExamPaperAnswer record) {
        return examPaperAnswerMapper.insertSelective(record);
    }
    @Override
    public ExamPaperAnswer selectById(Integer id) {
        return null;
    }
    @Override
    public int updateByIdFilter(ExamPaperAnswer record) {
        return 0;
    }
    @Override
    public int updateById(ExamPaperAnswer record) {
        return 0;
    }
}