Auth.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use library\Controller;
  16. use library\service\AdminService;
  17. use think\Db;
  18. /**
  19. * 系统权限管理
  20. * Class Auth
  21. * @package app\admin\controller
  22. */
  23. class Auth extends Controller
  24. {
  25. /**
  26. * 默认数据模型
  27. * @var string
  28. */
  29. public $table = 'SystemAuth';
  30. /**
  31. * 系统权限管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '系统权限管理';
  43. $query = $this->_query($this->table)->dateBetween('create_at');
  44. $query->like('title,desc')->equal('status')->order('sort desc,id desc')->page();
  45. }
  46. /**
  47. * 权限配置节点
  48. * @auth true
  49. * @throws \ReflectionException
  50. * @throws \think\Exception
  51. * @throws \think\exception\PDOException
  52. */
  53. public function apply()
  54. {
  55. $map = ['auth' => input('id', '0')];
  56. $action = strtolower(input('action', ''));
  57. if ($action === 'get') {
  58. $checkeds = Db::name('SystemAuthNode')->where($map)->column('node');
  59. $authority = AdminService::instance()->getTree($checkeds);
  60. unset($authority[1]);
  61. unset($authority[3]);
  62. unset($authority[4]);
  63. unset($authority[5]);
  64. $this->success('获取权限节点成功!', $authority);
  65. } elseif ($action === 'save') {
  66. list($post, $data) = [$this->request->post(), []];
  67. foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
  68. $data[] = ['auth' => $map['auth'], 'node' => $node];
  69. }
  70. Db::name('SystemAuthNode')->where($map)->delete();
  71. Db::name('SystemAuthNode')->insertAll($data);
  72. AdminService::instance()->apply(true);
  73. $this->success('权限授权更新成功!', 'javascript:history.back()');
  74. } else {
  75. $this->title = '权限配置节点';
  76. $this->_form($this->table, 'apply');
  77. }
  78. }
  79. /**
  80. * 添加系统权限
  81. * @auth true
  82. * @throws \think\Exception
  83. * @throws \think\db\exception\DataNotFoundException
  84. * @throws \think\db\exception\ModelNotFoundException
  85. * @throws \think\exception\DbException
  86. * @throws \think\exception\PDOException
  87. */
  88. public function add()
  89. {
  90. $this->applyCsrfToken();
  91. $this->_form($this->table, 'form');
  92. }
  93. /**
  94. * 编辑系统权限
  95. * @auth true
  96. * @throws \think\Exception
  97. * @throws \think\db\exception\DataNotFoundException
  98. * @throws \think\db\exception\ModelNotFoundException
  99. * @throws \think\exception\DbException
  100. * @throws \think\exception\PDOException
  101. */
  102. public function edit()
  103. {
  104. $this->applyCsrfToken();
  105. $this->_form($this->table, 'form');
  106. }
  107. /**
  108. * 刷新系统权限
  109. * @auth true
  110. */
  111. public function refresh()
  112. {
  113. try {
  114. AdminService::instance()->apply(true);
  115. $this->success('刷新系统授权成功!');
  116. } catch (\think\exception\HttpResponseException $exception) {
  117. throw $exception;
  118. } catch (\Exception $e) {
  119. $this->error("刷新系统授权失败<br>{$e->getMessage()}");
  120. }
  121. }
  122. /**
  123. * 禁用系统权限
  124. * @auth true
  125. * @throws \think\Exception
  126. * @throws \think\exception\PDOException
  127. */
  128. public function forbid()
  129. {
  130. $this->applyCsrfToken();
  131. $this->_save($this->table, ['status' => '0']);
  132. }
  133. /**
  134. * 启用系统权限
  135. * @auth true
  136. * @throws \think\Exception
  137. * @throws \think\exception\PDOException
  138. */
  139. public function resume()
  140. {
  141. $this->applyCsrfToken();
  142. $this->_save($this->table, ['status' => '1']);
  143. }
  144. /**
  145. * 删除系统权限
  146. * @auth true
  147. * @throws \think\Exception
  148. * @throws \think\exception\PDOException
  149. */
  150. public function remove()
  151. {
  152. $this->applyCsrfToken();
  153. $this->_delete($this->table);
  154. }
  155. /**
  156. * 删除结果处理
  157. * @param boolean $result
  158. * @throws \think\Exception
  159. * @throws \think\exception\PDOException
  160. */
  161. protected function _remove_delete_result($result)
  162. {
  163. if ($result) {
  164. $map = ['auth' => $this->request->post('id')];
  165. Db::name('SystemAuthNode')->where($map)->delete();
  166. $this->success("权限删除成功!", '');
  167. } else {
  168. $this->error("权限删除失败,请稍候再试!");
  169. }
  170. }
  171. }