Menu.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <?php
  2. namespace app\admin\command;
  3. use app\admin\model\AuthRule;
  4. use ReflectionClass;
  5. use ReflectionMethod;
  6. use think\Cache;
  7. use think\Config;
  8. use think\console\Command;
  9. use think\console\Input;
  10. use think\console\input\Option;
  11. use think\console\Output;
  12. use think\Exception;
  13. class Menu extends Command
  14. {
  15. protected $model = null;
  16. protected function configure()
  17. {
  18. $this
  19. ->setName('menu')
  20. ->addOption('controller', 'c', Option::VALUE_REQUIRED | Option::VALUE_IS_ARRAY, 'controller name,use \'all-controller\' when build all menu', null)
  21. ->addOption('delete', 'd', Option::VALUE_OPTIONAL, 'delete the specified menu', '')
  22. ->addOption('force', 'f', Option::VALUE_OPTIONAL, 'force delete menu,without tips', null)
  23. ->addOption('equal', 'e', Option::VALUE_OPTIONAL, 'the controller must be equal', null)
  24. ->setDescription('Build auth menu from controller');
  25. //要执行的controller必须一样,不适用模糊查询
  26. }
  27. protected function execute(Input $input, Output $output)
  28. {
  29. $this->model = new AuthRule();
  30. $adminPath = dirname(__DIR__) . DS;
  31. //控制器名
  32. $controller = $input->getOption('controller') ?: '';
  33. if (!$controller) {
  34. throw new Exception("please input controller name");
  35. }
  36. $force = $input->getOption('force');
  37. //是否为删除模式
  38. $delete = $input->getOption('delete');
  39. //是否控制器完全匹配
  40. $equal = $input->getOption('equal');
  41. if ($delete) {
  42. if (in_array('all-controller', $controller)) {
  43. throw new Exception("could not delete all menu");
  44. }
  45. $ids = [];
  46. $list = $this->model->where(function ($query) use ($controller, $equal) {
  47. foreach ($controller as $index => $item) {
  48. if ($equal)
  49. $query->whereOr('name', 'eq', $item);
  50. else
  51. $query->whereOr('name', 'like', strtolower($item) . "%");
  52. }
  53. })->select();
  54. foreach ($list as $k => $v) {
  55. $output->warning($v->name);
  56. $ids[] = $v->id;
  57. }
  58. if (!$ids) {
  59. throw new Exception("There is no menu to delete");
  60. }
  61. if (!$force) {
  62. $output->info("Are you sure you want to delete all those menu? Type 'yes' to continue: ");
  63. $line = fgets(STDIN);
  64. if (trim($line) != 'yes') {
  65. throw new Exception("Operation is aborted!");
  66. }
  67. }
  68. AuthRule::destroy($ids);
  69. Cache::rm("__menu__");
  70. $output->info("Delete Successed");
  71. return;
  72. }
  73. if (!in_array('all-controller', $controller)) {
  74. foreach ($controller as $index => $item) {
  75. $controllerArr = explode('/', $item);
  76. end($controllerArr);
  77. $key = key($controllerArr);
  78. $controllerArr[$key] = ucfirst($controllerArr[$key]);
  79. $adminPath = dirname(__DIR__) . DS . 'controller' . DS . implode(DS, $controllerArr) . '.php';
  80. if (!is_file($adminPath)) {
  81. $output->error("controller not found");
  82. return;
  83. }
  84. $this->importRule($item);
  85. }
  86. } else {
  87. $this->model->where('id', '>', 0)->delete();
  88. $controllerDir = $adminPath . 'controller' . DS;
  89. // 扫描新的节点信息并导入
  90. $treelist = $this->import($this->scandir($controllerDir));
  91. }
  92. Cache::rm("__menu__");
  93. $output->info("Build Successed!");
  94. }
  95. /**
  96. * 递归扫描文件夹
  97. * @param string $dir
  98. * @return array
  99. */
  100. public function scandir($dir)
  101. {
  102. $result = [];
  103. $cdir = scandir($dir);
  104. foreach ($cdir as $value) {
  105. if (!in_array($value, array(".", ".."))) {
  106. if (is_dir($dir . DS . $value)) {
  107. $result[$value] = $this->scandir($dir . DS . $value);
  108. } else {
  109. $result[] = $value;
  110. }
  111. }
  112. }
  113. return $result;
  114. }
  115. /**
  116. * 导入规则节点
  117. * @param array $dirarr
  118. * @param array $parentdir
  119. * @return array
  120. */
  121. public function import($dirarr, $parentdir = [])
  122. {
  123. $menuarr = [];
  124. foreach ($dirarr as $k => $v) {
  125. if (is_array($v)) {
  126. //当前是文件夹
  127. $nowparentdir = array_merge($parentdir, [$k]);
  128. $this->import($v, $nowparentdir);
  129. } else {
  130. //只匹配PHP文件
  131. if (!preg_match('/^(\w+)\.php$/', $v, $matchone)) {
  132. continue;
  133. }
  134. //导入文件
  135. $controller = ($parentdir ? implode('/', $parentdir) . '/' : '') . $matchone[1];
  136. $this->importRule($controller);
  137. }
  138. }
  139. return $menuarr;
  140. }
  141. protected function importRule($controller)
  142. {
  143. $controller = str_replace('\\', '/', $controller);
  144. $controllerArr = explode('/', $controller);
  145. end($controllerArr);
  146. $key = key($controllerArr);
  147. $controllerArr[$key] = ucfirst($controllerArr[$key]);
  148. $classSuffix = Config::get('controller_suffix') ? ucfirst(Config::get('url_controller_layer')) : '';
  149. $className = "\\app\\admin\\controller\\" . implode("\\", $controllerArr) . $classSuffix;
  150. $pathArr = $controllerArr;
  151. array_unshift($pathArr, '', 'application', 'admin', 'controller');
  152. $classFile = ROOT_PATH . implode(DS, $pathArr) . $classSuffix . ".php";
  153. $classContent = file_get_contents($classFile);
  154. $uniqueName = uniqid("FastAdmin") . $classSuffix;
  155. $classContent = str_replace("class " . $controllerArr[$key] . $classSuffix . " ", 'class ' . $uniqueName . ' ', $classContent);
  156. $classContent = preg_replace("/namespace\s(.*);/", 'namespace ' . __NAMESPACE__ . ";", $classContent);
  157. //临时的类文件
  158. $tempClassFile = __DIR__ . DS . $uniqueName . ".php";
  159. file_put_contents($tempClassFile, $classContent);
  160. $className = "\\app\\admin\\command\\" . $uniqueName;
  161. //反射机制调用类的注释和方法名
  162. $reflector = new ReflectionClass($className);
  163. if (isset($tempClassFile)) {
  164. //删除临时文件
  165. @unlink($tempClassFile);
  166. }
  167. //只匹配公共的方法
  168. $methods = $reflector->getMethods(ReflectionMethod::IS_PUBLIC);
  169. $classComment = $reflector->getDocComment();
  170. //判断是否有启用软删除
  171. $softDeleteMethods = ['destroy', 'restore', 'recyclebin'];
  172. $withSofeDelete = false;
  173. preg_match_all("/\\\$this\->model\s*=\s*model\('(\w+)'\);/", $classContent, $matches);
  174. if (isset($matches[1]) && isset($matches[1][0]) && $matches[1][0]) {
  175. \think\Request::instance()->module('admin');
  176. $model = model($matches[1][0]);
  177. if (in_array('trashed', get_class_methods($model))) {
  178. $withSofeDelete = true;
  179. }
  180. }
  181. //忽略的类
  182. if (stripos($classComment, "@internal") !== FALSE) {
  183. return;
  184. }
  185. preg_match_all('#(@.*?)\n#s', $classComment, $annotations);
  186. $controllerIcon = 'fa fa-circle-o';
  187. $controllerRemark = '';
  188. //判断注释中是否设置了icon值
  189. if (isset($annotations[1])) {
  190. foreach ($annotations[1] as $tag) {
  191. if (stripos($tag, '@icon') !== FALSE) {
  192. $controllerIcon = substr($tag, stripos($tag, ' ') + 1);
  193. }
  194. if (stripos($tag, '@remark') !== FALSE) {
  195. $controllerRemark = substr($tag, stripos($tag, ' ') + 1);
  196. }
  197. }
  198. }
  199. //过滤掉其它字符
  200. $controllerTitle = trim(preg_replace(array('/^\/\*\*(.*)[\n\r\t]/u', '/[\s]+\*\//u', '/\*\s@(.*)/u', '/[\s|\*]+/u'), '', $classComment));
  201. //导入中文语言包
  202. \think\Lang::load(dirname(__DIR__) . DS . 'lang/zh-cn.php');
  203. //先导入菜单的数据
  204. $pid = 0;
  205. foreach ($controllerArr as $k => $v) {
  206. $key = $k + 1;
  207. $name = strtolower(implode('/', array_slice($controllerArr, 0, $key)));
  208. $title = (!isset($controllerArr[$key]) ? $controllerTitle : '');
  209. $icon = (!isset($controllerArr[$key]) ? $controllerIcon : 'fa fa-list');
  210. $remark = (!isset($controllerArr[$key]) ? $controllerRemark : '');
  211. $title = $title ? $title : $v;
  212. $rulemodel = $this->model->get(['name' => $name]);
  213. if (!$rulemodel) {
  214. $this->model
  215. ->data(['pid' => $pid, 'name' => $name, 'title' => $title, 'icon' => $icon, 'remark' => $remark, 'ismenu' => 1, 'status' => 'normal'])
  216. ->isUpdate(false)
  217. ->save();
  218. $pid = $this->model->id;
  219. } else {
  220. $pid = $rulemodel->id;
  221. }
  222. }
  223. $ruleArr = [];
  224. foreach ($methods as $m => $n) {
  225. //过滤特殊的类
  226. if (substr($n->name, 0, 2) == '__' || $n->name == '_initialize') {
  227. continue;
  228. }
  229. //未启用软删除时过滤相关方法
  230. if (!$withSofeDelete && in_array($n->name, $softDeleteMethods)) {
  231. continue;
  232. }
  233. //只匹配符合的方法
  234. if (!preg_match('/^(\w+)' . Config::get('action_suffix') . '/', $n->name, $matchtwo)) {
  235. unset($methods[$m]);
  236. continue;
  237. }
  238. $comment = $reflector->getMethod($n->name)->getDocComment();
  239. //忽略的方法
  240. if (stripos($comment, "@internal") !== FALSE) {
  241. continue;
  242. }
  243. //过滤掉其它字符
  244. $comment = preg_replace(array('/^\/\*\*(.*)[\n\r\t]/u', '/[\s]+\*\//u', '/\*\s@(.*)/u', '/[\s|\*]+/u'), '', $comment);
  245. $title = $comment ? $comment : ucfirst($n->name);
  246. //获取主键,作为AuthRule更新依据
  247. $id = $this->getAuthRulePK($name . "/" . strtolower($n->name));
  248. $ruleArr[] = array('id' => $id, 'pid' => $pid, 'name' => $name . "/" . strtolower($n->name), 'icon' => 'fa fa-circle-o', 'title' => $title, 'ismenu' => 0, 'status' => 'normal');
  249. }
  250. $this->model->isUpdate(false)->saveAll($ruleArr);
  251. }
  252. //获取主键
  253. protected function getAuthRulePK($name)
  254. {
  255. if (!empty($name)) {
  256. $id = $this->model
  257. ->where('name', $name)
  258. ->value('id');
  259. return $id ? $id : null;
  260. }
  261. }
  262. }