123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <?php
- namespace app\admin\controller\exam;
- use addons\exam\enum\PaperMode;
- use app\admin\model\exam\PaperQuestionModel;
- use app\admin\model\exam\QuestionModel;
- use app\common\controller\Backend;
- use think\Db;
- use think\exception\PDOException;
- use think\exception\ValidateException;
- use app\common\model\Usergangwei;
- use fast\Tree;
- class Paper extends Backend
- {
-
- protected $model = null;
- protected $noNeedRight = ['nograde'];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\exam\PaperModel;
- $this->view->assign("modeList", $this->model->getModeList());
- $this->view->assign("kindList", $this->model->getKindList());
- $this->view->assign("statusList", $this->model->getStatusList());
-
- $tree = Tree::instance();
- $tree->init(Usergangwei::getCategoryArray(), 'pid');
- $gangweilist = $tree->getTreeList($tree->getTreeArray(0), 'name');
- $this->view->assign("gangweilist", $gangweilist);
- }
-
-
- public function index()
- {
-
- $this->relationSearch = true;
-
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
-
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model
- ->with(['cate'])
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- foreach ($list as $row) {
- $row->getRelation('cate')->visible(['name']);
- }
- $result = array("total" => $list->total(), "rows" => $list->items());
- return json($result);
- }
- return $this->view->fetch();
- }
-
- public function add()
- {
- if ($this->request->isPost()) {
- $params = $this->request->post("row/a");
- if ($params) {
- $params = $this->preExcludeFields($params);
- $this->valid($params);
- if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
- $params[$this->dataLimitField] = $this->auth->id;
- }
- $result = false;
- Db::startTrans();
- try {
-
- if ($this->modelValidate) {
- $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
- $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
- $this->model->validateFailException(true)->validate($validate);
- }
-
- $result = $this->model->allowField(true)->save($params);
-
- $this->saveFixQuestion($this->model, $params);
- Db::commit();
- } catch (ValidateException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (PDOException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if ($result !== false) {
- $this->success();
- } else {
- $this->error(__('No rows were inserted'));
- }
- }
- $this->error(__('Parameter %s can not be empty', ''));
- }
- return $this->view->fetch();
- }
-
- public function edit($ids = null)
- {
- $row = $this->model->get($ids);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $adminIds = $this->getDataLimitAdminIds();
- if (is_array($adminIds)) {
- if (!in_array($row[$this->dataLimitField], $adminIds)) {
- $this->error(__('You have no permission'));
- }
- }
- if ($this->request->isPost()) {
- $params = $this->request->post("row/a");
- if ($params) {
- $this->valid($params);
- $params = $this->preExcludeFields($params);
- $result = false;
- Db::startTrans();
- try {
-
- if ($this->modelValidate) {
- $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
- $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
- $row->validateFailException(true)->validate($validate);
- }
- $result = $row->allowField(true)->save($params);
-
- $this->saveFixQuestion($row, $params, 'edit');
- Db::commit();
- } catch (ValidateException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (PDOException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if ($result !== false) {
- $this->success();
- } else {
- $this->error(__('No rows were updated'));
- }
- }
- $this->error(__('Parameter %s can not be empty', ''));
- }
- if ($row['mode'] == PaperMode::FIX) {
- $row['questions'] = QuestionModel::getFixListByPaper($row['id'], ['cates']);
- }
- $this->view->assign("row", $row);
- $this->view->assign("configs", json_decode($row['configs'], true));
- return $this->view->fetch();
- }
-
- protected function valid(&$params)
- {
- if ($params['pass_score'] > $params['total_score']) {
- $this->error('及格分数不能大于总分');
- }
- $params['start_time'] = $params['start_time'] ?: 0;
- $params['end_time'] = $params['end_time'] ?: 0;
- if ($params['start_time']) {
- if ($params['start_time'] > $params['end_time']) {
- $this->error('开始时间不能大于结束时间');
- }
-
-
-
- }
- if ($params['end_time']) {
- if (!$params['start_time']) {
- $this->error('请先选择开始时间');
- }
- }
-
- if ($params['mode'] == 'FIX') {
- $params['questions'] = json_decode($params['questions'], true);
- if (!$params['questions']) {
- $this->error('请先选择题目');
- }
- if (count($params['questions']) < $params['quantity']) {
- $this->error('题目数量不能大于题目总数');
- }
- }
- $limit_time = 0;
- if ($params['limit_time_hour']) {
- $limit_time += $params['limit_time_hour'] * 60 * 60;
- }
- if ($params['limit_time_minute']) {
- $limit_time += $params['limit_time_minute'] * 60;
- }
- $params['limit_time'] = $limit_time;
- }
-
- public function saveFixQuestion($paper, $params, $method = 'add')
- {
- if ($paper['mode'] != 'FIX') {
- return;
- }
- if ($method == 'edit') {
- PaperQuestionModel::where('paper_id', $paper['id'])->delete();
- }
- $questions = $params['questions'];
- $data = [];
- foreach ($questions as $key => $question) {
-
-
-
-
-
-
-
-
-
-
-
-
- $data[] = [
- 'paper_id' => $paper['id'],
- 'question_id' => $question['id'],
- 'score' => $question['score'],
- 'answer_config' => is_array($question['answer']) ? json_encode($question['answer'], JSON_UNESCAPED_UNICODE) : $question['answer'],
- 'sort' => $key + 1,
- 'createtime' => time(),
- ];
- }
- (new PaperQuestionModel())->saveAll($data);
- }
-
- public function nograde(){
- $id = input('id');
- $info = Db::name('exam_paper')->where('id',$id)->find();
- $user_ids = $info['user_ids'];
- $grade_uids = Db::name('exam_grade')->where('paper_id',$id)->where('status',2)->column('user_id');
- $lists = Db::name('user')->where('id','IN',$user_ids)->where('id','NOTIN',$grade_uids)->select();
- $this->assign('lists',$lists);
- return $this->view->fetch();
- }
- }
|