Exam.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php
  2. namespace app\api\controller\yexam;
  3. use app\admin\model\yexam\Answer;
  4. use app\admin\model\yexam\ExamUser;
  5. use app\admin\model\yexam\ExamUserLog;
  6. use app\common\controller\Api;
  7. use think\Db;
  8. /**
  9. * 考试接口
  10. */
  11. class Exam extends Api
  12. {
  13. // 无需登录的接口,*表示全部
  14. protected $noNeedLogin = [];
  15. // 无需鉴权的接口,*表示全部
  16. protected $noNeedRight = ['*'];
  17. /**
  18. * 获取模拟考试列表
  19. * @ApiMethod (POST)
  20. */
  21. public function virtual()
  22. {
  23. $subject_id = $this->request->post('subject_id');
  24. $page = $this->request->post('page');
  25. $limit = $this->request->post('limit');
  26. $examModel = new \addons\yexam\service\Exam();
  27. $data = $examModel->getExamList(['status'=>1,'type'=>2,
  28. 'subject_id'=>$subject_id,
  29. 'start_date'=>['elt',date("Y-m-d H:i:s",time())],
  30. 'end_date'=>['egt',date("Y-m-d H:i:s",time())]
  31. ],$page,$limit);
  32. foreach ($data['data'] as &$v){
  33. $v['is_allow'] = 1;
  34. }
  35. $this->success('请求成功', $data);
  36. }
  37. /**
  38. * 获取正式考试列表
  39. * @ApiMethod (POST)
  40. */
  41. public function index()
  42. {
  43. $subject_id = $this->request->post('subject_id',0);
  44. $page = $this->request->post('page');
  45. $limit = $this->request->post('limit');
  46. $examModel = new \addons\yexam\service\Exam();
  47. $data = $examModel->getExamList(['status'=>1,'type'=>1,'subject_id'=>$subject_id, 'start_date'=>['elt',date("Y-m-d H:i:s",time())],
  48. 'end_date'=>['egt',date("Y-m-d H:i:s",time())]],$page,$limit);
  49. foreach($data['data'] as &$v){
  50. //查看是否已经参加考试了
  51. $examUserModel = new ExamUser();
  52. /*if($examUserModel->where(['exam_id'=>$v['id'],'user_id'=>$this->auth->id,'up_status'=>2])->find()){
  53. $v['is_allow'] = 0;
  54. }else{
  55. $v['is_allow'] = 1;
  56. }*/
  57. $ups=$examUserModel->where(['exam_id'=>$v['id'],'user_id'=>$this->auth->id,'is_submit'=>1])->count();
  58. if($ups>=$v['answer_count']){
  59. $v['is_allow']=0;
  60. }else{
  61. $v['is_allow']=1;
  62. }
  63. }
  64. $this->success('请求成功', $data);
  65. }
  66. /**
  67. * 获取考试答题卡
  68. * @ApiMethod (POST)
  69. * @ApiParams (name=exam_id,description=考试id)
  70. * @ApiReturnParams (name=state,description=是否回答过)
  71. * @ApiMethod (POST)
  72. */
  73. public function card(){
  74. $exam_id = $this->request->post('exam_id');
  75. $exam = new \addons\yexam\service\Exam();
  76. $data = $exam->getCard($exam_id,$this->auth->id);
  77. if($data){
  78. $this->success('请求成功', $data);
  79. }else{
  80. $this->error($exam->error);
  81. }
  82. }
  83. /**
  84. * 获取考试记录
  85. * @ApiMethod (POST)
  86. */
  87. public function record(){
  88. $subject_id = $this->request->post('subject_id')?:0;
  89. $page = $this->request->post('page');
  90. $limit = $this->request->post('limit');
  91. $exam = new \addons\yexam\service\Exam();
  92. $data = $exam->getRecordList($subject_id,$this->auth->id,$page,$limit);
  93. $this->success('请求成功', $data);
  94. }
  95. /**
  96. * 定位到上次考试答题位置
  97. * @ApiMethod (POST)
  98. * @ApiParams (name=exam_id,description=考试id)
  99. */
  100. public function position(){
  101. $exam_id = $this->request->post('exam_id');
  102. $unit = new \addons\yexam\service\Exam();
  103. $pos=$unit->getLastPosition($exam_id,$this->auth->id);
  104. if($pos===false){
  105. $this->error($unit->error);
  106. }
  107. $this->success('请求成功',$pos);
  108. }
  109. /**
  110. * 获取考试题目详情
  111. * @ApiMethod (POST)
  112. * @ApiParams (name=exam_id,description=考试id)
  113. * @ApiParams (name=question_id,description=问题ID)
  114. * @throws \think\Exception
  115. */
  116. public function question(){
  117. $exam_id = $this->request->post('exam_id');
  118. $question_id = $this->request->post('question_id');
  119. $question = new \addons\yexam\service\Exam();
  120. $data = $question->getQuestion($exam_id,$question_id,$this->auth->id);
  121. if($data){
  122. $this->success('请求成功',$data);
  123. }else{
  124. $this->error($question->error);
  125. }
  126. }
  127. /**
  128. * 开始考试
  129. * @ApiMethod (POST)
  130. * @ApiParams (name=exam_id,description=考试id)
  131. */
  132. public function begin(){
  133. $exam_id = $this->request->post('exam_id');
  134. $exam = new \addons\yexam\service\Exam();
  135. $result = $exam->begin($exam_id,$this->auth->id);
  136. if($result){
  137. $this->success('请求成功',$result);
  138. }else{
  139. $this->success($exam->error,[
  140. 'joined'=>$exam->num,
  141. 'code'=>0,
  142. ]);
  143. }
  144. }
  145. /**
  146. * 考试答题
  147. * @ApiMethod (POST)
  148. * @ApiParams (name=exam_id,description=考试id)
  149. * @ApiParams (name=question_id,description=问题ID)
  150. * @ApiParams (name=answer,description=答案)
  151. */
  152. public function answer(){
  153. $exam_id = $this->request->post('exam_id');
  154. $question_id = $this->request->post('question_id');
  155. $answer = $this->request->post('answer');
  156. $this->validate([
  157. 'answer'=>$answer,
  158. ],[
  159. 'answer|答案'=>['require']
  160. ]);
  161. Db::startTrans();
  162. $exam = new \addons\yexam\service\Exam();
  163. $result = $exam->answer($exam_id,$this->auth->id,$question_id,$answer);
  164. if($result){
  165. Db::commit();
  166. $this->success('请求成功');
  167. }else{
  168. Db::rollback();
  169. $this->error($exam->error);
  170. }
  171. }
  172. /**
  173. * 交卷
  174. * @ApiMethod (POST)
  175. * @ApiParams (name=exam_id,description=考试id)
  176. */
  177. public function up(){
  178. $exam_id = $this->request->post('exam_id');
  179. $user=$this->auth->getUser();
  180. $exam = new \addons\yexam\service\Exam();
  181. $result = $exam->up($exam_id,$this->auth->id);
  182. if(!$result){
  183. $this->error($exam->error);
  184. }
  185. $logs=ExamUserLog::where('exam_id',$exam_id)
  186. ->alias('a')
  187. ->where('exam_user_id',$result['examUser']['id'])
  188. ->join('yexam_question b','b.id=a.question_id')
  189. ->field('a.*,b.right_answer,b.type,b.question_name')
  190. ->where('a.user_id',$user['id'])->select();
  191. foreach ($logs as &$log){
  192. $log['option']=Answer::where('question_id',$log['question_id'])->select();
  193. }
  194. if($result){
  195. $this->success($result,$logs);
  196. }else{
  197. $this->error($exam->error);
  198. }
  199. }
  200. /**
  201. * 错题记录
  202. * @ApiMethod (POST)
  203. */
  204. public function error_log(){
  205. $type = $this->request->post("type",1);
  206. $subject_id = $this->request->post("subject_id",0);
  207. $page = $this->request->post("page");
  208. $limit = $this->request->post("limit");
  209. $unit = new \addons\yexam\service\Exam();
  210. if(empty($subject_id)){
  211. $this->error('科目ID异常');
  212. }
  213. $data = $unit->getErrorLogList($subject_id,$type,$this->auth->id,$page,$limit);
  214. $this->success('请求成功',$data);
  215. }
  216. /**
  217. * 获取考试错题答题卡
  218. * @ApiMethod (POST)
  219. */
  220. public function error_card()
  221. {
  222. $exam_user_id = $this->request->post('exam_user_id');
  223. $subject = new \addons\yexam\service\Exam();
  224. $data = $subject->getErrorCard($exam_user_id,$this->auth->id);
  225. $this->success('请求成功', $data);
  226. }
  227. }