Auth.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 app\admin\service\NodeService;
  16. use library\Controller;
  17. use think\Db;
  18. use think\exception\HttpResponseException;
  19. /**
  20. * 系统权限管理
  21. * Class Auth
  22. * @package app\admin\controller
  23. */
  24. class Auth extends Controller
  25. {
  26. /**
  27. * 默认数据模型
  28. * @var string
  29. */
  30. public $table = 'SystemAuth';
  31. /**
  32. * 系统权限管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. * @throws \think\exception\PDOException
  40. */
  41. public function index()
  42. {
  43. $this->title = '系统权限管理';
  44. $query = $this->_query($this->table)->dateBetween('create_at');
  45. $query->like('title,desc')->equal('status')->order('sort desc,id desc')->page();
  46. }
  47. /**
  48. * 权限配置节点
  49. * @auth true
  50. * @throws \ReflectionException
  51. * @throws \think\Exception
  52. * @throws \think\exception\PDOException
  53. */
  54. public function apply()
  55. {
  56. $this->title = '权限配置节点';
  57. $auth = $this->request->post('id', '0');
  58. switch (strtolower($this->request->post('action'))) {
  59. case 'get': // 获取权限配置
  60. $checks = Db::name('SystemAuthNode')->where(['auth' => $auth])->column('node');
  61. return $this->success('获取权限节点成功!', NodeService::getAuthTree($checks));
  62. case 'save': // 保存权限配置
  63. list($post, $data) = [$this->request->post(), []];
  64. foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
  65. $data[] = ['auth' => $auth, 'node' => $node];
  66. }
  67. Db::name('SystemAuthNode')->where(['auth' => $auth])->delete();
  68. Db::name('SystemAuthNode')->insertAll($data);
  69. NodeService::applyUserAuth();
  70. return $this->success('权限授权更新成功!');
  71. default:
  72. return $this->_form($this->table, 'apply');
  73. }
  74. }
  75. /**
  76. * 添加系统权限
  77. * @auth true
  78. */
  79. public function add()
  80. {
  81. $this->applyCsrfToken();
  82. $this->_form($this->table, 'form');
  83. }
  84. /**
  85. * 编辑系统权限
  86. * @auth true
  87. */
  88. public function edit()
  89. {
  90. $this->applyCsrfToken();
  91. $this->_form($this->table, 'form');
  92. }
  93. /**
  94. * 刷新系统权限
  95. * @auth true
  96. */
  97. public function refresh()
  98. {
  99. try {
  100. NodeService::applyUserAuth(true);
  101. $this->success('刷新系统授权成功!');
  102. } catch (HttpResponseException $exception) {
  103. throw $exception;
  104. } catch (\Exception $e) {
  105. $this->error("刷新系统授权失败<br>{$e->getMessage()}");
  106. }
  107. }
  108. /**
  109. * 禁用系统权限
  110. * @auth true
  111. */
  112. public function forbid()
  113. {
  114. $this->applyCsrfToken();
  115. $this->_save($this->table, ['status' => '0']);
  116. }
  117. /**
  118. * 启用系统权限
  119. * @auth true
  120. */
  121. public function resume()
  122. {
  123. $this->applyCsrfToken();
  124. $this->_save($this->table, ['status' => '1']);
  125. }
  126. /**
  127. * 删除系统权限
  128. * @auth true
  129. */
  130. public function remove()
  131. {
  132. $this->applyCsrfToken();
  133. $this->_delete($this->table);
  134. }
  135. /**
  136. * 删除结果处理
  137. * @param boolean $result
  138. * @throws \think\Exception
  139. * @throws \think\exception\PDOException
  140. */
  141. protected function _remove_delete_result($result)
  142. {
  143. if ($result) {
  144. $map = ['auth' => $this->request->post('id')];
  145. Db::name('SystemAuthNode')->where($map)->delete();
  146. $this->success("权限删除成功!", '');
  147. } else {
  148. $this->error("权限删除失败,请稍候再试!");
  149. }
  150. }
  151. }