Question.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. namespace addons\yexam\service;
  3. use app\admin\model\yexam\Answer;
  4. use app\admin\model\yexam\Fav;
  5. use think\Exception;
  6. class Question
  7. {
  8. public $model;
  9. public function __construct()
  10. {
  11. $this->model = new \app\admin\model\yexam\Unit();
  12. }
  13. /**
  14. * 获取章节练习答题卡
  15. */
  16. public function getTestCard($unit_id,$user_id){
  17. $questionModel = new \app\admin\model\yexam\Question();
  18. $data = $questionModel
  19. ->alias("question")
  20. ->field("question.*,ifnull(log.state,3) as state")
  21. ->join("yexam_question_log log","question.id=log.question_id and log.user_id=".$user_id,"left")
  22. ->where(['question.unit_id'=>$unit_id])->order("question.type asc,question.id asc")->select();
  23. $return = [];
  24. foreach($data as $v){
  25. $_return['id'] = $v['id'];
  26. $_return['state'] = $v['state'] ==3?3:($v['state']==0?1:2); //1是错2是对3是未答过此题
  27. $return[] = $_return;
  28. }
  29. return $return;
  30. }
  31. /**
  32. * 收藏题目
  33. * @param $id
  34. * @param $user_id
  35. * @return int|void
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException]
  39. */
  40. public function favQuestion($id,$user_id){
  41. $questionModel = new \app\admin\model\yexam\Question();
  42. if (!$questionInfo = $questionModel->where(['id'=>$id])->find()) {
  43. return;
  44. }
  45. $favModel = new Fav();
  46. if($favInfo = $favModel->where(['user_id'=>$user_id,'question_id'=>$questionInfo['id']])->find()){
  47. $favInfo->delete();
  48. return 1;
  49. }else{
  50. $favModel = new Fav();
  51. $favModel->save([
  52. 'user_id' => $user_id,
  53. 'subject_id' => $questionInfo['subject_id'],
  54. 'library_id' => $questionInfo['library_id'],
  55. 'unit_id' => $questionInfo['unit_id'],
  56. 'question_id' => $questionInfo['id'],
  57. 'createtime' => time()
  58. ]);
  59. return 2;
  60. }
  61. }
  62. /**
  63. * 获取题目详情
  64. * @throws Exception
  65. */
  66. public function getQuestion($question_id,$user_id){
  67. $questionModel = new \app\admin\model\yexam\Question();
  68. $question = $questionModel->field("id,question_name,type,right_answer,area")->where(['id'=>$question_id])->find();
  69. if(empty($question)){
  70. return [];
  71. }else{
  72. //获取答案
  73. if($question['type'] == 3){
  74. $question['answers'] = array(
  75. '0' => array(
  76. 'answer' => "对",
  77. 'answer_code' => "1",
  78. 'id' => 1,
  79. 'question_id' => $question['id']
  80. ),
  81. '1' => array(
  82. 'answer' => "错",
  83. 'answer_code' => "0",
  84. 'id' => 2,
  85. 'question_id' => $question['id']
  86. ),
  87. );
  88. }else{
  89. $answerModel = new Answer();
  90. $question['answers'] = $answerModel->where(['question_id'=>$question['id']])->select();
  91. }
  92. $favModel = new Fav();
  93. if($favModel->where(['question_id'=>$question['id'],'user_id'=>$user_id])->count()){
  94. $question['is_fav'] = 1;
  95. }else{
  96. $question['is_fav'] = 0;
  97. }
  98. }
  99. return $question;
  100. }
  101. }