Question.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. use app\utils\RedisKeyEnum;
  6. use app\utils\RedisUtil;
  7. /**
  8. * 答题
  9. */
  10. class Question extends Api
  11. {
  12. protected $noNeedLogin = [];
  13. protected $noNeedRight = ['*'];
  14. //获取10个题
  15. public function get_question(){
  16. //上次绑定选手的时间不是今天
  17. if($this->auth->bind_player_date != strtotime(date('Y-m-d'))){
  18. $this->error('先绑定单位再答题',null,2);
  19. }
  20. //获取10个随机题目
  21. $count = config('site.exam_times_user_eday');
  22. $lists = Db::name('exam_question')
  23. ->field('id,kind,title,options_json')
  24. ->where('is_material_child', 0)// 材料题子题不显示
  25. ->where('status', 'NORMAL')// 正常
  26. ->where('deletetime', NULL)
  27. ->orderRaw('rand()')->limit($count)->select();
  28. foreach($lists as $key => $val){
  29. $val['options_json'] = $this->getOptionsJsonAttr($val['options_json']);
  30. $lists[$key] = $val;
  31. }
  32. $this->success(1,$lists);
  33. }
  34. private function getOptionsJsonAttr($value)
  35. {
  36. if ($value = json_decode($value, true)) {
  37. $data = [];
  38. foreach ($value as $key => $row) {
  39. $arr['key'] = $key;
  40. $arr['value'] = $row;
  41. array_push($data, $arr);
  42. }
  43. return $data;
  44. }
  45. return [];
  46. }
  47. /**
  48. * 答题
  49. */
  50. public function submit()
  51. {
  52. if(!$this->apiLimit('操作太快了,休息一下吧'));
  53. //上次绑定选手的时间不是今天
  54. if($this->auth->bind_player_date != strtotime(date('Y-m-d'))){
  55. $this->error('先绑定单位再答题',null,2);
  56. }
  57. //检查今日答题次数
  58. $exam_times_user_eday = config('site.exam_times_user_eday');
  59. // $count = Db::name('user_question_log')->where('createdate',strtotime(date('Y-m-d')))->where('user_id',$this->auth->id)->count();
  60. $count = RedisUtil::getInstance(RedisKeyEnum::EAXM_TIMES.date('Y-m-d').':'.$this->auth->id)->get();
  61. if($count >= $exam_times_user_eday){
  62. $this->error('今日答题次数用完了,明天再来吧');
  63. }
  64. $question_id = input('question_id');
  65. $answer = input('answer');
  66. if (!$question_id || !$answer) {
  67. $this->error('提交数据有误');
  68. }
  69. $is_right = $this->paperExam($question_id,$answer);
  70. Db::startTrans();
  71. //答题日志
  72. $log = [
  73. 'user_id' => $this->auth->id,
  74. 'question_id' => $question_id,
  75. 'is_right' => $is_right ? 1 : 0,
  76. 'player_id' => $this->auth->bind_player_id,
  77. 'createtime' => time(),
  78. 'createdate' => strtotime(date('Y-m-d')),
  79. ];
  80. $log_id = Db::name('user_question_log')->insertGetId($log);
  81. if(!$log_id){
  82. Db::rollback();
  83. $this->error('答题失败');
  84. }
  85. if($is_right){
  86. //给选手加分
  87. $rs = Db::name('vote_player')->where('id',$this->auth->bind_player_id)->setInc('score');
  88. if($rs === false){
  89. Db::rollback();
  90. $this->error('答题失败');
  91. }
  92. }
  93. Db::commit();
  94. //今日答题次数,自增一次
  95. RedisUtil::getInstance(RedisKeyEnum::EAXM_TIMES.date('Y-m-d').':'.$this->auth->id)->incr_expire(86400);
  96. if($is_right){
  97. //今日答对次数,自增一次
  98. RedisUtil::getInstance(RedisKeyEnum::EAXM_RIGHT.date('Y-m-d').':'.$this->auth->id)->incr_expire(86400);
  99. $msg = '回答正确';
  100. }else{
  101. //
  102. $msg = '回答错误';
  103. }
  104. $this->success($msg);
  105. }
  106. /**
  107. * 试题
  108. * @param $question_id
  109. * @param $answer
  110. * @return bool
  111. */
  112. private function paperExam($question_id,$answer)
  113. {
  114. $is_right = false;
  115. $question = Db::name('exam_question')->where('id', $question_id)->find();
  116. if(empty($question)){
  117. return false;
  118. }
  119. switch ($question['kind']) {
  120. case 'JUDGE': // 判断题
  121. case 'SINGLE': // 单选题
  122. case 'MULTI': // 多选题
  123. // 答题正确
  124. if (strtoupper($answer) == $question['answer']) {
  125. $is_right = true;
  126. } else {
  127. $is_right = false;
  128. }
  129. break;
  130. case 'SHORT': // 简答题
  131. // 答案得分配置
  132. $answer_config = is_string($question['answer']) ? json_decode($question['answer'], true) : $question['answer'];
  133. $user_answers = $answer;
  134. foreach ($answer_config['config'] as $answer_item) {
  135. // 匹配答案关键词
  136. if (strpos($user_answers, $answer_item['answer']) !== false) {
  137. $is_right = true;
  138. }
  139. }
  140. break;
  141. }
  142. return $is_right;
  143. }
  144. }