Auth.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use think\admin\Controller;
  16. use think\admin\service\AdminService;
  17. /**
  18. * 系统权限管理
  19. * Class Auth
  20. * @package app\admin\controller
  21. */
  22. class Auth extends Controller
  23. {
  24. /**
  25. * 绑定数据表
  26. * @var string
  27. */
  28. private $table = 'SystemAuth';
  29. /**
  30. * 系统权限管理
  31. * @auth true
  32. * @menu true
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. */
  37. public function index()
  38. {
  39. $this->title = '系统权限管理';
  40. $query = $this->_query($this->table)->dateBetween('create_at');
  41. $query->like('title,desc')->equal('status')->order('sort desc,id desc')->page();
  42. }
  43. /**
  44. * 添加系统权限
  45. * @auth true
  46. * @throws \think\db\exception\DataNotFoundException
  47. * @throws \think\db\exception\DbException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. */
  50. public function add()
  51. {
  52. $this->_applyFormToken();
  53. $this->_form($this->table, 'form');
  54. }
  55. /**
  56. * 编辑系统权限
  57. * @auth true
  58. * @throws \think\db\exception\DataNotFoundException
  59. * @throws \think\db\exception\DbException
  60. * @throws \think\db\exception\ModelNotFoundException
  61. */
  62. public function edit()
  63. {
  64. $this->_applyFormToken();
  65. $this->_form($this->table, 'form');
  66. }
  67. /**
  68. * 修改权限状态
  69. * @auth true
  70. * @throws \think\db\exception\DbException
  71. */
  72. public function state()
  73. {
  74. $this->_applyFormToken();
  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->_applyFormToken();
  117. $this->_delete($this->table);
  118. }
  119. /**
  120. * 表单结果处理
  121. * @param bool $result
  122. */
  123. protected function _add_form_result(bool $result)
  124. {
  125. if ($result) {
  126. $id = $this->app->db->name($this->table)->getLastInsID();
  127. sysoplog('系统权限管理', "添加系统权限[{$id}]成功");
  128. }
  129. }
  130. /**
  131. * 表单结果处理
  132. * @param boolean $result
  133. */
  134. protected function _edit_form_result(bool $result)
  135. {
  136. if ($result) {
  137. $id = input('id') ?: 0;
  138. sysoplog('系统权限管理', "修改系统权限[{$id}]成功");
  139. }
  140. }
  141. /**
  142. * 状态结果处理
  143. * @param boolean $result
  144. */
  145. protected function _state_save_result(bool $result)
  146. {
  147. if ($result) {
  148. [$id, $state] = [input('id'), input('status')];
  149. sysoplog('系统权限管理', ($state ? '激活' : '禁用') . "系统权限[{$id}]成功");
  150. }
  151. }
  152. /**
  153. * 删除结果处理
  154. * @param boolean $result
  155. * @throws \think\db\exception\DbException
  156. */
  157. protected function _remove_delete_result(bool $result)
  158. {
  159. if ($result) {
  160. $map = $this->_vali(['auth.require#id' => '权限ID不能为空!']);
  161. $this->app->db->name('SystemAuthNode')->where($map)->delete();
  162. sysoplog('系统权限管理', "删除系统权限[{$map['auth']}]及授权配置");
  163. $this->success("权限删除成功!");
  164. } else {
  165. $this->error("权限删除失败,请稍候再试!");
  166. }
  167. }
  168. }