123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <?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;
- /**
- * 试卷
- * @icon fa fa-circle-o
- */
- class Paper extends Backend
- {
- /**
- * PaperModel模型对象
- * @var \app\admin\model\exam\PaperModel
- */
- protected $model = null;
- protected $noNeedRight = ['nograde','selectuser'];
- 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);
- }
- /**
- * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
- * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
- * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
- */
- /**
- * 查看
- */
- public function index()
- {
- //当前是否为关联查询
- $this->relationSearch = true;
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
- //如果发送的来源是Selectpage,则转发到Selectpage
- 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);
- }
- // dd($params);
- $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();
- }
- /**
- * 验证参数
- * @param $params
- * @return void
- */
- 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 (strtotime($params['start_time']) < 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;
- }
- /**
- * 保存固定选题
- * @param $paper
- * @param $params
- * @return void
- */
- 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) {
- // $item = [
- // 'paper_id' => $paper['id'],
- // 'question_id' => $question['id'],
- // 'score' => $question['score'],
- // 'sort' => $key + 1,
- // 'createtime' => time(),
- // ];
- //
- // if ($question['kind'] == 'SHORT') {
- // $item['answer'] = $question['answer'];
- // }
- // $data[] = $item;
- $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();
- }
- /**
- * 选人
- */
- public function selectuser(){
- $id = input('id');
- if($this->request->isPost()){
- $params = $this->request->post('row/a');
- $user_rule = explode(',',$params['user_rule']);
- $user_ids = [];
- foreach($user_rule as $key => $val){
- if(strpos($val,'u_') !== false){
- $user_ids[] = substr($val,2);
- }
- }
- $user_ids = implode(',',$user_ids);
- $update = [
- 'user_ids' => $user_ids,
- 'user_rule' => $params['user_rule'],
- ];
- Db::name('exam_paper')->where('id',$id)->update($update);
- $this->success('设置成功');
- }
- $id = input('id');
- $row = Db::name('exam_paper')->where('id',$id)->find();
- $user_rule = explode(',', $row['user_rule']);
- $nodeList = \app\admin\model\User::getTreeList($user_rule);
- $this->assign("nodeList", $nodeList);
- $this->assign('row',$row);
- return $this->view->fetch();
- }
- }
|