123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- namespace app\admin\controller\task;
- use app\common\controller\Backend;
- use fast\Random;
- use think\Db;
- class Task extends Backend
- {
-
-
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\task\Task;
- $this->view->assign("typeIdList", $this->model->getTypeIdList());
- $this->view->assign("isShowList", $this->model->getIsShowList());
- $this->view->assign("urlTypeList", $this->model->getUrlTypeList());
- }
- public function import()
- {
- parent::import();
- }
-
-
- public function add()
- {
- if ($this->request->isPost()) {
- $params = $this->request->post("row/a");
- if ($params) {
- $params = $this->preExcludeFields($params);
- $ids = \app\common\model\Task::column("task_no");
- $params["task_no"] = $this->getUinqueId(8,$ids);
- 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);
- 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();
- }
-
- function getUinqueId($length = 8,$ids = []) {
- $newid = Random::build("alnum",$length);
- if(in_array($newid,$ids)) {
- $this->getUinqueId(8);
- }
- return $newid;
- }
- }
|