NodeService.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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 library\tools\Node;
  17. use think\Db;
  18. use think\facade\Cache;
  19. use think\facade\Request;
  20. /**
  21. * 功能节点管理服务
  22. * Class NodeService
  23. * @package app\admin\service
  24. */
  25. class NodeService
  26. {
  27. /**
  28. * 获取标准访问节点
  29. * @param string $node
  30. * @return string
  31. */
  32. public static function full($node = null)
  33. {
  34. if (empty($node)) return self::current();
  35. if (count(explode('/', $node)) === 1) {
  36. $node = Request::module() . '/' . Request::controller() . '/' . $node;
  37. }
  38. return self::parseString(trim($node, " /"));
  39. }
  40. /**
  41. * 判断是否已经登录
  42. * @return boolean
  43. */
  44. public static function islogin()
  45. {
  46. return session('admin_user.id') ? true : false;
  47. }
  48. /**
  49. * 获取当前访问节点
  50. * @return string
  51. */
  52. public static function current()
  53. {
  54. return self::parseString(Request::module() . '/' . Request::controller() . '/' . Request::action());
  55. }
  56. /**
  57. * 检查密码是否合法
  58. * @param string $password
  59. * @return array
  60. */
  61. public static function checkpwd($password)
  62. {
  63. $password = trim($password);
  64. if (!strlen($password) >= 6) {
  65. return ['code' => 0, 'msg' => '密码必须大于6字符!'];
  66. }
  67. if (!preg_match("/^(?![\d]+$)(?![a-zA-Z]+$)(?![^\da-zA-Z]+$).{6,32}$/", $password)) {
  68. return ['code' => 0, 'msg' => '密码必需包含大小写字母、数字、符号任意两者组合!'];
  69. } else {
  70. return ['code' => 1, 'msg' => '密码复杂度通过验证!'];
  71. }
  72. }
  73. /**
  74. * 获取可选菜单节点
  75. * @return array
  76. * @throws \ReflectionException
  77. */
  78. public static function getMenuNodeList()
  79. {
  80. static $nodes = [];
  81. if (count($nodes) > 0) return $nodes;
  82. foreach (self::getMethodList() as $node => $method) if ($method['menu']) {
  83. $nodes[] = ['node' => $node, 'title' => $method['title']];
  84. }
  85. return $nodes;
  86. }
  87. /**
  88. * 获取系统菜单树数据
  89. * @return array
  90. * @throws \ReflectionException
  91. * @throws \think\db\exception\DataNotFoundException
  92. * @throws \think\db\exception\ModelNotFoundException
  93. * @throws \think\exception\DbException
  94. */
  95. public static function getMenuNodeTree()
  96. {
  97. $list = Db::name('SystemMenu')->where(['status' => '1'])->order('sort desc,id asc')->select();
  98. return self::buildMenuData(Data::arr2tree($list), self::getMethodList());
  99. }
  100. /**
  101. * 后台主菜单权限过滤
  102. * @param array $menus 当前菜单列表
  103. * @param array $nodes 系统权限节点
  104. * @return array
  105. * @throws \ReflectionException
  106. */
  107. private static function buildMenuData($menus, $nodes)
  108. {
  109. foreach ($menus as $key => &$menu) {
  110. if (!empty($menu['sub'])) $menu['sub'] = self::buildMenuData($menu['sub'], $nodes);
  111. if (!empty($menu['sub'])) $menu['url'] = '#';
  112. elseif (preg_match('/^https?\:/i', $menu['url'])) continue;
  113. elseif ($menu['url'] === '#') unset($menus[$key]);
  114. else {
  115. $node = join('/', array_slice(explode('/', preg_replace('/[\W]/', '/', $menu['url'])), 0, 3));
  116. $menu['url'] = url($menu['url']) . (empty($menu['params']) ? '' : "?{$menu['params']}");
  117. if (!self::checkAuth($node)) unset($menus[$key]);
  118. }
  119. }
  120. return $menus;
  121. }
  122. /**
  123. * 获取授权节点列表
  124. * @return array
  125. * @throws \ReflectionException
  126. */
  127. public static function getAuthList()
  128. {
  129. static $nodes = [];
  130. if (count($nodes) > 0) return $nodes;
  131. $nodes = Cache::tag('system')->get('NodeAuthList', []);
  132. if (count($nodes) > 0) return $nodes;
  133. foreach (self::getMethodList() as $key => $node) {
  134. if ($node['auth']) $nodes[$key] = $node['title'];
  135. }
  136. Cache::tag('system')->set('NodeAuthList', $nodes);
  137. return $nodes;
  138. }
  139. /**
  140. * 检查节点授权
  141. * @param null|string $node
  142. * @return boolean
  143. * @throws \ReflectionException
  144. */
  145. public static function checkAuth($node = null)
  146. {
  147. if (session('admin_user.username') === 'admin') return true;
  148. $real = is_null($node) ? self::current() : self::full($node);
  149. if (isset(self::getAuthList()[$real])) {
  150. return in_array($real, (array)session('admin_user.nodes'));
  151. } else {
  152. return true;
  153. }
  154. }
  155. /**
  156. * 获取授权节点列表
  157. * @param array $checkeds
  158. * @return array
  159. * @throws \ReflectionException
  160. */
  161. public static function getAuthTree($checkeds = [])
  162. {
  163. static $nodes = [];
  164. if (count($nodes) > 0) return $nodes;
  165. foreach (self::getAuthList() as $node => $title) {
  166. $pnode = substr($node, 0, strripos($node, '/'));
  167. $nodes[$node] = ['node' => $node, 'title' => $title, 'pnode' => $pnode, 'checked' => in_array($node, $checkeds)];
  168. }
  169. foreach (self::getClassList() as $node => $title) foreach (array_keys($nodes) as $key) {
  170. if (stripos($key, "{$node}/") !== false) {
  171. $pnode = substr($node, 0, strripos($node, '/'));
  172. $nodes[$node] = ['node' => $node, 'title' => $title, 'pnode' => $pnode, 'checked' => in_array($node, $checkeds)];
  173. $nodes[$pnode] = ['node' => $pnode, 'title' => ucfirst($pnode), 'checked' => in_array($pnode, $checkeds)];
  174. }
  175. }
  176. return $nodes = Data::arr2tree($nodes, 'node', 'pnode', '_sub_');
  177. }
  178. /**
  179. * 初始化用户权限
  180. * @param boolean $force 是否重置系统权限
  181. * @throws \think\db\exception\DataNotFoundException
  182. * @throws \think\db\exception\ModelNotFoundException
  183. * @throws \think\exception\DbException
  184. */
  185. public static function applyUserAuth($force = false)
  186. {
  187. if ($force) {
  188. Cache::tag('system')->rm('NodeAuthList');
  189. Cache::tag('system')->rm('NodeClassData');
  190. Cache::tag('system')->rm('NodeMethodData');
  191. }
  192. if (($uid = session('admin_user.id'))) {
  193. session('admin_user', Db::name('SystemUser')->where(['id' => $uid])->find());
  194. }
  195. $authorize = session('admin_user.authorize');
  196. if (!empty($authorize) && $authids = explode(',', $authorize)) {
  197. $auths = Db::name('SystemAuth')->where(['status' => '1'])->whereIn('id', $authids)->column('id');
  198. if (empty($auths)) {
  199. session('admin_user.nodes', []);
  200. } else {
  201. session('admin_user.nodes', array_unique(Db::name('SystemAuthNode')->whereIn('auth', $auths)->column('node')));
  202. }
  203. } else {
  204. session('admin_user.nodes', []);
  205. }
  206. }
  207. /**
  208. * 获取控制器节点列表
  209. * @return array
  210. * @throws \ReflectionException
  211. */
  212. public static function getClassList()
  213. {
  214. static $nodes = [];
  215. if (count($nodes) > 0) return $nodes;
  216. $nodes = Cache::tag('system')->get('NodeClassData', []);
  217. if (count($nodes) > 0) return $nodes;
  218. self::eachController(function (\ReflectionClass $reflection, $prenode) use (&$nodes) {
  219. list($node, $comment) = [trim($prenode, ' / '), $reflection->getDocComment()];
  220. $nodes[$node] = preg_replace('/^\/\*\*\*(.*?)\*.*?$/', '$1', preg_replace("/\s/", '', $comment));
  221. if (stripos($nodes[$node], '@') !== false) $nodes[$node] = '';
  222. });
  223. Cache::tag('system')->set('NodeClassData', $nodes);
  224. return $nodes;
  225. }
  226. /**
  227. * 获取方法节点列表
  228. * @return array
  229. * @throws \ReflectionException
  230. */
  231. public static function getMethodList()
  232. {
  233. static $nodes = [];
  234. if (count($nodes) > 0) return $nodes;
  235. $nodes = Cache::tag('system')->get('NodeMethodData', []);
  236. if (count($nodes) > 0) return $nodes;
  237. self::eachController(function (\ReflectionClass $reflection, $prenode) use (&$nodes) {
  238. foreach ($reflection->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) {
  239. $action = strtolower($method->getName());
  240. list($node, $comment) = ["{$prenode}{$action}", preg_replace("/\s/", '', $method->getDocComment())];
  241. $nodes[$node] = [
  242. 'auth' => stripos($comment, '@authtrue') !== false,
  243. 'menu' => stripos($comment, '@menutrue') !== false,
  244. 'title' => preg_replace('/^\/\*\*\*(.*?)\*.*?$/', '$1', $comment),
  245. ];
  246. if (stripos($nodes[$node]['title'], '@') !== false) $nodes[$node]['title'] = '';
  247. }
  248. });
  249. Cache::tag('system')->set('NodeMethodData', $nodes);
  250. return $nodes;
  251. }
  252. /**
  253. * 控制器扫描回调
  254. * @param callable $callable
  255. * @throws \ReflectionException
  256. */
  257. public static function eachController($callable)
  258. {
  259. foreach (self::scanPath(env('app_path') . "*/controller/") as $file) {
  260. if (!preg_match("|/(\w+)/controller/(.+)\.php$|", $file, $matches)) continue;
  261. list($module, $controller) = [$matches[1], strtr($matches[2], '/', '.')];
  262. if (class_exists($class = substr(strtr(env('app_namespace') . $matches[0], '/', '\\'), 0, -4))) {
  263. call_user_func($callable, new \ReflectionClass($class), Node::parseString("{$module}/{$controller}/"));
  264. }
  265. }
  266. }
  267. /**
  268. * 驼峰转下划线规则
  269. * @param string $node 节点名称
  270. * @return string
  271. */
  272. public static function parseString($node)
  273. {
  274. if (count($nodes = explode('/', $node)) > 1) {
  275. $dots = [];
  276. foreach (explode('.', $nodes[1]) as $dot) {
  277. $dots[] = trim(preg_replace("/[A-Z]/", "_\\0", $dot), "_");
  278. }
  279. $nodes[1] = join('.', $dots);
  280. }
  281. return strtolower(join('/', $nodes));
  282. }
  283. /**
  284. * 获取所有PHP文件
  285. * @param string $dirname 扫描目录
  286. * @param array $data 额外数据
  287. * @param string $ext 有文件后缀
  288. * @return array
  289. */
  290. private static function scanPath($dirname, $data = [], $ext = 'php')
  291. {
  292. foreach (glob("{$dirname}*") as $file) {
  293. if (is_dir($file)) {
  294. $data = array_merge($data, self::scanPath("{$file}/"));
  295. } elseif (is_file($file) && pathinfo($file, 4) === $ext) {
  296. $data[] = str_replace('\\', '/', $file);
  297. }
  298. }
  299. return $data;
  300. }
  301. }