AuthService.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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\service;
  15. use library\tools\Data;
  16. use think\admin\extend\DataExtend;
  17. use think\admin\extend\NodeExtend;
  18. /**
  19. * 系统授权服务
  20. * Class MenuService
  21. * @package app\admin\service
  22. */
  23. class AuthService
  24. {
  25. /**
  26. * 判断是否已经登录
  27. * @return boolean
  28. */
  29. public static function isLogin()
  30. {
  31. return app()->session->get('user.id') ? true : false;
  32. }
  33. /**
  34. * 检查指定节点授权
  35. * --- 需要读取缓存或扫描所有节点
  36. * @param string $node
  37. * @return boolean
  38. * @throws \ReflectionException
  39. */
  40. public static function check($node = '')
  41. {
  42. if (app()->session->get('user.username') === 'admin') return true;
  43. list($real, $nodes) = [NodeExtend::fullnode($node), NodeExtend::getMethods()];
  44. if (!empty($nodes[$real]['isauth'])) {
  45. return in_array($real, app()->session->get('user.nodes', []));
  46. }
  47. return !(!empty($nodes[$real]['islogin']) && !self::isLogin());
  48. }
  49. /**
  50. * 获取授权节点列表
  51. * @param array $checkeds
  52. * @return array
  53. * @throws \ReflectionException
  54. */
  55. public static function getTree($checkeds = [])
  56. {
  57. list($nodes, $pnodes, $methods) = [[], [], array_reverse(NodeExtend::getMethods())];
  58. foreach ($methods as $node => $method) {
  59. $count = substr_count($node, '/');
  60. $pnode = substr($node, 0, strripos($node, '/'));
  61. if ($count === 2 && !empty($method['isauth'])) {
  62. in_array($pnode, $pnodes) or array_push($pnodes, $pnode);
  63. $nodes[$node] = ['node' => $node, 'title' => $method['title'], 'pnode' => $pnode, 'checked' => in_array($node, $checkeds)];
  64. } elseif ($count === 1 && in_array($pnode, $pnodes)) {
  65. $nodes[$node] = ['node' => $node, 'title' => $method['title'], 'pnode' => $pnode, 'checked' => in_array($node, $checkeds)];
  66. }
  67. }
  68. foreach (array_keys($nodes) as $key) foreach ($methods as $node => $method) if (stripos($key, "{$node}/") !== false) {
  69. $pnode = substr($node, 0, strripos($node, '/'));
  70. $nodes[$node] = ['node' => $node, 'title' => $method['title'], 'pnode' => $pnode, 'checked' => in_array($node, $checkeds)];
  71. $nodes[$pnode] = ['node' => $pnode, 'title' => ucfirst($pnode), 'pnode' => '', 'checked' => in_array($pnode, $checkeds)];
  72. }
  73. return DataExtend::arr2tree(array_reverse($nodes), 'node', 'pnode', '_sub_');
  74. }
  75. /**
  76. * 初始化用户权限
  77. * @param boolean $force 是否重置系统权限
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\DbException
  80. * @throws \think\db\exception\ModelNotFoundException
  81. */
  82. public static function apply($force = false)
  83. {
  84. $app = app();
  85. if ($force) $app->cache->delete('system_auth_node');
  86. if (($uid = $app->session->get('user.id'))) {
  87. $user = $app->db->name('SystemUser')->where(['id' => $uid])->find();
  88. if (($aids = $user['authorize'])) {
  89. $where = [['status', 'eq', '1'], ['id', 'in', explode(',', $aids)]];
  90. $subsql = $app->db->name('SystemAuth')->field('id')->where($where)->buildSql();
  91. $user['nodes'] = array_unique($app->db->name('SystemAuthNode')->whereRaw("auth in {$subsql}")->column('node'));
  92. $app->session->set('user', $user);
  93. } else {
  94. $user['nodes'] = [];
  95. $app->session->set('user', $user);
  96. }
  97. }
  98. }
  99. }