Auth.php 5.6 KB

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