Auth.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. $this->success('获取权限节点成功!', AdminService::instance()->getTree($checkeds));
  60. } elseif ($action === 'save') {
  61. list($post, $data) = [$this->request->post(), []];
  62. foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
  63. $data[] = ['auth' => $map['auth'], 'node' => $node];
  64. }
  65. Db::name('SystemAuthNode')->where($map)->delete();
  66. Db::name('SystemAuthNode')->insertAll($data);
  67. AdminService::instance()->apply(true);
  68. $this->success('权限授权更新成功!', 'javascript:history.back()');
  69. } else {
  70. $this->title = '权限配置节点';
  71. $this->_form($this->table, 'apply');
  72. }
  73. }
  74. /**
  75. * 添加系统权限
  76. * @auth true
  77. * @throws \think\Exception
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. * @throws \think\exception\DbException
  81. * @throws \think\exception\PDOException
  82. */
  83. public function add()
  84. {
  85. $this->applyCsrfToken();
  86. $this->_form($this->table, 'form');
  87. }
  88. /**
  89. * 编辑系统权限
  90. * @auth true
  91. * @throws \think\Exception
  92. * @throws \think\db\exception\DataNotFoundException
  93. * @throws \think\db\exception\ModelNotFoundException
  94. * @throws \think\exception\DbException
  95. * @throws \think\exception\PDOException
  96. */
  97. public function edit()
  98. {
  99. $this->applyCsrfToken();
  100. $this->_form($this->table, 'form');
  101. }
  102. /**
  103. * 刷新系统权限
  104. * @auth true
  105. */
  106. public function refresh()
  107. {
  108. try {
  109. AdminService::instance()->apply(true);
  110. $this->success('刷新系统授权成功!');
  111. } catch (\think\exception\HttpResponseException $exception) {
  112. throw $exception;
  113. } catch (\Exception $e) {
  114. $this->error("刷新系统授权失败<br>{$e->getMessage()}");
  115. }
  116. }
  117. /**
  118. * 禁用系统权限
  119. * @auth true
  120. * @throws \think\Exception
  121. * @throws \think\exception\PDOException
  122. */
  123. public function forbid()
  124. {
  125. $this->applyCsrfToken();
  126. $this->_save($this->table, ['status' => '0']);
  127. }
  128. /**
  129. * 启用系统权限
  130. * @auth true
  131. * @throws \think\Exception
  132. * @throws \think\exception\PDOException
  133. */
  134. public function resume()
  135. {
  136. $this->applyCsrfToken();
  137. $this->_save($this->table, ['status' => '1']);
  138. }
  139. /**
  140. * 删除系统权限
  141. * @auth true
  142. * @throws \think\Exception
  143. * @throws \think\exception\PDOException
  144. */
  145. public function remove()
  146. {
  147. $this->applyCsrfToken();
  148. $this->_delete($this->table);
  149. }
  150. /**
  151. * 删除结果处理
  152. * @param boolean $result
  153. * @throws \think\Exception
  154. * @throws \think\exception\PDOException
  155. */
  156. protected function _remove_delete_result($result)
  157. {
  158. if ($result) {
  159. $map = ['auth' => $this->request->post('id')];
  160. Db::name('SystemAuthNode')->where($map)->delete();
  161. $this->success("权限删除成功!", '');
  162. } else {
  163. $this->error("权限删除失败,请稍候再试!");
  164. }
  165. }
  166. }