diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php index 8bfa48679..99afe4b80 100644 --- a/application/admin/controller/Menu.php +++ b/application/admin/controller/Menu.php @@ -4,6 +4,7 @@ namespace app\admin\controller; use controller\BasicAdmin; use library\Data; +use library\Node; use library\Tools; use think\Db; @@ -55,7 +56,7 @@ class Menu extends BasicAdmin { protected function _form_filter(&$vo) { if ($this->request->isGet()) { - $_menus = Db::name($this->table)->where('status', '1')->order('sort ASC,id ASC')->select(); + $_menus = Db::name($this->table)->where('status', '1')->order('sort desc,id desc')->select(); $_menus[] = ['title' => '顶级菜单', 'id' => '0', 'pid' => '-1']; $menus = Tools::arr2table($_menus); foreach ($menus as $key => &$menu) { @@ -70,6 +71,7 @@ class Menu extends BasicAdmin { } } } + $this->assign('nodes', Node::getNodeTree(APP_PATH)); $this->assign('menus', $menus); } } diff --git a/application/admin/view/menu.form.html b/application/admin/view/menu.form.html index 412600e83..f7e55edcb 100644 --- a/application/admin/view/menu.form.html +++ b/application/admin/view/menu.form.html @@ -2,7 +2,7 @@
- @@ -22,7 +22,7 @@
- +
@@ -42,6 +42,9 @@
diff --git a/extend/library/Node.php b/extend/library/Node.php index ec7c385ac..17753e00a 100644 --- a/extend/library/Node.php +++ b/extend/library/Node.php @@ -3,126 +3,59 @@ namespace library; /** - * 代码节点读取工具 - * - * @author shaobo - * @date 2016-10-21 + * 代码节点分析器 + * + * @author Anyon + * @date 2017/02/23 14:46 */ class Node { + /** + * 获取节点列表 + * @param string $path + * @param array $nodes + * @return array + */ + static public function getNodeTree($path, $nodes = []) { + foreach (self::getFilePaths($path) as $vo) { + if (stripos($vo, DS . 'controller' . DS) === false) { + continue; + } + $_tmp = explode(DS, $vo); + $controllerName = rtrim(array_pop($_tmp), '.php'); + array_pop($_tmp); + $moduleName = array_pop($_tmp); + $className = config('app_namespace') . "\\{$moduleName}\\controller\\{$controllerName}"; + if (!class_exists($className)) { + continue; + } + foreach (get_class_methods($className) as $actionName) { + if ($actionName[0] !== '_') { + $nodes[] = strtolower("{$moduleName}/{$controllerName}/{$actionName}"); + } + } + } + return $nodes; + } + /** * 获取所有PHP文件 * @param string $path * @param array $data + * @param string $ext * @return array */ - static public function getTree($path, $data = []) { + static public function getFilePaths($path, $data = [], $ext = 'php') { foreach (scandir($path) as $dir) { if ($dir[0] === '.') { continue; } - $tmp = realpath($path . DIRECTORY_SEPARATOR . $dir); - if ($tmp && (is_dir($tmp) || pathinfo($tmp, PATHINFO_EXTENSION) === 'php')) { - is_dir($tmp) ? $data = array_merge($data, self::getTree($tmp)) : $data[] = $tmp; + $tmp = realpath($path . DS . $dir); + if ($tmp && (is_dir($tmp) || pathinfo($tmp, PATHINFO_EXTENSION) === $ext)) { + is_dir($tmp) ? $data = array_merge($data, self::getFilePaths($tmp)) : $data[] = $tmp; } } return $data; } - /** - * 处理类继承关系 - * @param array $data - * @param string $class - * @param array $params - */ - static public function setSubClass(&$data, $class, &$params) { - foreach ($data as $key => &$value) { - if (isset($value['extends']) && $value['extends'] === $class) { - $value['attribute'] = array_merge($params['attribute'], $value['attribute']); - $value['method'] = array_merge($params['method'], $value['method']); - array_unique($value['method']); - array_unique($value['attribute']); - self::setSubClass($data, $key, $value); - } - } - } - - /** - * 获取节点数据 - * @return array - */ - static public function getNodeArrayTree() { - $list = self::getTree(ROOT_PATH); - $data = []; - $dirspace = []; - foreach ($list as $file) { - $content = file_get_contents($file); - // 解析空间及名称 - preg_match("|namespace\s*(.*?)\s*;.*?class\s*(\w+)\s*|is", $content, $matches); - if (count($matches) > 1) { - $name = "{$matches[1]}\\{$matches[2]}"; - $dir = dirname($file); - $class = ['method' => [], 'attribute' => [], 'namespace' => $matches[1], 'classname' => $matches[2]]; - $dirspace[$dir] = $matches[1]; - $class['dir'] = $dir; - // 解析类方法 - preg_match_all("|public\s*function\s*(\w+)\s*\(|is", $content, $matches); - if (!empty($matches[1])) { - foreach ($matches[1] as $v) { - !in_array($v, ['_initialize', '__construct']) && $class['method'][] = $v; - } - } - // 解析简单的类属性 - preg_match_all("|public\s*\\$(\w+)\s*=\s*(\w+)\s*;|is", $content, $matches); - if (!empty($matches[1]) && !empty($matches[2])) { - foreach ($matches[1] as $k => $v) { - $class['attribute'][$v] = $matches[2][$k]; - } - } - // 类继承分析 - preg_match("|extends\s*(\w+)\s*\{|is", $content, $matches); - if (!empty($matches[1])) { - // 直接继承 - if ($matches[1][0] === '\\') { - $class['extends'] = $matches[1]; - break; - } - // use 继承 - if (preg_match_all("|use\s*([\w\\\]*)\s*\;|is", $content, $use) && !empty($use[1])) { - foreach ($use[1] as $c) { - $attr = explode('\\', $c); - if ($matches[1] === end($attr)) { - $class['extends'] = $c; - break; - } - } - } - // 同空间继续,需要修复 - empty($class['extends']) && ($class['extends'] = '?' . $matches[1]); - } - $data[$name] = $class; - } - } - // 命名空间修复 - foreach ($data as &$vo) { - if (!empty($vo['extends']) && $vo['extends'][0] === '?' && isset($dirspace[$vo['dir']])) { - $vo['extends'] = $dirspace[$vo['dir']] . '\\' . trim($vo['extends'], '?'); - } - } - // 类继续方法参数合并 - foreach ($data as $key => $value) { - empty($value['extends']) && self::setSubClass($data, $key, $value); - } - // 过滤掉非控制器的域名 - foreach ($data as $k => &$v) { - if (!preg_match('/app.*?controller/', $k)) { - unset($data[$k]); - continue; - } - //获取模块名 - $v['module'] = substr(str_replace("app\\", "", $k), 0, strpos(str_replace("app\\", "", $k), "\\")); - } - return $data; - } - } diff --git a/public/static/admin/app.js b/public/static/admin/app.js index 28c2b7de3..109a78620 100644 --- a/public/static/admin/app.js +++ b/public/static/admin/app.js @@ -17,6 +17,7 @@ require.config({ 'jquery.icheck': ['//cdn.bootcss.com/iCheck/1.0.2/icheck.min'], 'jquery.cookies': ['//cdn.bootcss.com/jquery-cookie/1.4.1/jquery.cookie', '../plugs/jquery/jquery.cookie'], 'bootstrap': ['//cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min', '../plugs/bootstrap/js/bootstrap.min'], + 'bootstrap.typeahead': ['//cdn.bootcss.com/bootstrap-3-typeahead/4.0.2/bootstrap3-typeahead.min'], 'bootstrap.multiselect': ['//cdn.bootcss.com/bootstrap-multiselect/0.9.13/js/bootstrap-multiselect.min', '../plugs/multiselect/bootstrap-multiselect'], // 自定义插件 'admin.plugs': ['plugs'],