Auth.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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\AuthService;
  16. use app\admin\service\MenuService;
  17. use app\admin\service\NodeService;
  18. use think\admin\Controller;
  19. use think\Db;
  20. /**
  21. * 系统权限管理
  22. * Class Auth
  23. * @package app\admin\controller
  24. */
  25. class Auth extends Controller
  26. {
  27. /**
  28. * 绑定数据表
  29. * @var string
  30. */
  31. public $table = 'SystemAuth';
  32. /**
  33. * 系统权限管理
  34. * @auth true
  35. * @menu true
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  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 \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\DbException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. */
  53. public function add()
  54. {
  55. $this->_applyFormToken();
  56. $this->_form($this->table, 'form');
  57. }
  58. /**
  59. * 编辑系统权限
  60. * @auth true
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\DbException
  63. * @throws \think\db\exception\ModelNotFoundException
  64. */
  65. public function edit()
  66. {
  67. $this->_applyFormToken();
  68. $this->_form($this->table, 'form');
  69. }
  70. /**
  71. * 修改系统权限状态
  72. * @auth true
  73. * @throws \think\db\exception\DbException
  74. */
  75. public function state()
  76. {
  77. $this->_applyFormToken();
  78. $this->_save($this->table, ['status' => input('status')]);
  79. }
  80. /**
  81. * 删除系统权限
  82. * @auth true
  83. * @throws \think\db\exception\DbException
  84. */
  85. public function remove()
  86. {
  87. $this->_applyFormToken();
  88. $this->_delete($this->table);
  89. }
  90. /**
  91. * 权限配置节点
  92. * @auth true
  93. * @return mixed
  94. * @throws \ReflectionException
  95. * @throws \think\db\exception\DataNotFoundException
  96. * @throws \think\db\exception\DbException
  97. * @throws \think\db\exception\ModelNotFoundException
  98. */
  99. public function apply()
  100. {
  101. $map = ['auth' => input('id', '0')];
  102. $action = strtolower(input('action', ''));
  103. if ($action === 'get') {
  104. $checkeds = $this->app->db->name('SystemAuthNode')->where($map)->column('node');
  105. $this->success('获取权限节点成功!', AuthService::getTree($checkeds));
  106. } elseif ($action === 'save') {
  107. list($post, $data) = [$this->request->post(), []];
  108. foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
  109. $data[] = ['auth' => $map['auth'], 'node' => $node];
  110. }
  111. $this->app->db->name('SystemAuthNode')->where($map)->delete();
  112. $this->app->db->name('SystemAuthNode')->insertAll($data);
  113. AuthService::apply(true);
  114. $this->success('权限授权更新成功!', 'javascript:history.back()');
  115. } else {
  116. $this->title = '权限配置节点';
  117. $this->_form($this->table, 'apply');
  118. }
  119. }
  120. /**
  121. * 删除结果处理
  122. * @param boolean $result
  123. * @throws \think\db\exception\DbException
  124. */
  125. protected function _remove_delete_result($result)
  126. {
  127. if ($result) {
  128. $map = ['auth' => $this->request->post('id')];
  129. $this->app->db->name('SystemAuthNode')->where($map)->delete();
  130. $this->success("权限删除成功!", '');
  131. } else {
  132. $this->error("权限删除失败,请稍候再试!");
  133. }
  134. }
  135. }