PropertyAdmin.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use fast\Random;
  5. use think\Db;
  6. use think\exception\PDOException;
  7. use think\exception\ValidateException;
  8. use think\Validate;
  9. use app\admin\model\AuthGroupAccess;
  10. /**
  11. * 管理员管理
  12. *
  13. * @icon fa fa-circle-o
  14. */
  15. class PropertyAdmin extends Backend
  16. {
  17. /**
  18. * PropertyAdmin模型对象
  19. * @var \app\admin\model\PropertyAdmin
  20. */
  21. protected $model = null;
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. $this->model = new \app\admin\model\PropertyAdmin;
  26. }
  27. /**
  28. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  29. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  30. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  31. */
  32. /**
  33. * 添加
  34. */
  35. public function add($ids = null)
  36. {
  37. if ($this->request->isPost()) {
  38. $this->token();
  39. $params = $this->request->post("row/a");
  40. if ($params) {
  41. if (!Validate::is($params['password'], '\S{6,16}')) {
  42. $this->error(__("Please input correct password"));
  43. }
  44. $params['salt'] = Random::alnum();
  45. $params['password'] = md5(md5($params['password']) . $params['salt']);
  46. $params['email']='xintian@xintian.com';
  47. if (empty($params['avatar'])){
  48. $params['avatar'] = '/assets/img/avatar.png'; //设置新管理员默认头像。
  49. }
  50. $result = $this->model->validate('Admin.add')->save($params);
  51. if ($result === false) {
  52. $this->error($this->model->getError());
  53. }
  54. $dataset[] = ['uid' => $this->model->id, 'group_id' => '2'];
  55. model('AuthGroupAccess')->saveAll($dataset);
  56. $this->success();
  57. }
  58. $this->error();
  59. }
  60. $this->assign('property_id',$ids);
  61. return $this->view->fetch();
  62. }
  63. /**
  64. * 编辑
  65. */
  66. public function edit($ids = null)
  67. {
  68. $row = $this->model->get($ids);
  69. if (!$row) {
  70. $this->error(__('No Results were found'));
  71. }
  72. $adminIds = $this->getDataLimitAdminIds();
  73. if (is_array($adminIds)) {
  74. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  75. $this->error(__('You have no permission'));
  76. }
  77. }
  78. if ($this->request->isPost()) {
  79. $params = $this->request->post("row/a");
  80. if ($params) {
  81. $params = $this->preExcludeFields($params);
  82. $result = false;
  83. Db::startTrans();
  84. try {
  85. //是否采用模型验证
  86. if ($this->modelValidate) {
  87. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  88. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  89. $row->validateFailException(true)->validate($validate);
  90. }
  91. $result = $row->allowField(true)->save($params);
  92. Db::commit();
  93. } catch (ValidateException $e) {
  94. Db::rollback();
  95. $this->error($e->getMessage());
  96. } catch (PDOException $e) {
  97. Db::rollback();
  98. $this->error($e->getMessage());
  99. } catch (Exception $e) {
  100. Db::rollback();
  101. $this->error($e->getMessage());
  102. }
  103. if ($result !== false) {
  104. $this->success();
  105. } else {
  106. $this->error(__('No rows were updated'));
  107. }
  108. }
  109. $this->error(__('Parameter %s can not be empty', ''));
  110. }
  111. $this->view->assign("row", $row);
  112. return $this->view->fetch();
  113. }
  114. }