MenuLogic.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\logic;
  12. use think\Db;
  13. use think\facade\Env;
  14. use mindplay\annotations\Annotations;
  15. class MenuLogic
  16. {
  17. /**
  18. * 导入应用后台菜单
  19. * @param $app
  20. * @return array
  21. * @throws \ReflectionException
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public static function importMenus($app)
  29. {
  30. Annotations::$config['cache'] = false;
  31. $annotationManager = Annotations::getManager();
  32. $annotationManager->registry['adminMenu'] = 'app\admin\annotation\AdminMenuAnnotation';
  33. $annotationManager->registry['adminMenuRoot'] = 'app\admin\annotation\AdminMenuRootAnnotation';
  34. $newMenus = [];
  35. if ($app == 'admin') {
  36. $filePatten = Env::get('root_path') . "vendor/thinkcmf/cmf-app/src/{$app}/controller/*Controller.php";
  37. $coreAppControllers = cmf_scan_dir($filePatten);
  38. $filePatten = APP_PATH . $app . '/controller/*Controller.php';
  39. $controllers = cmf_scan_dir($filePatten);
  40. $controllers = array_merge($coreAppControllers, $controllers);
  41. } else if ($app == 'user') {
  42. $filePatten = Env::get('root_path') . "vendor/thinkcmf/cmf-app/src/{$app}/controller/Admin*Controller.php";
  43. $coreAppControllers = cmf_scan_dir($filePatten);
  44. $filePatten = APP_PATH . $app . '/controller/Admin*Controller.php';
  45. $controllers = cmf_scan_dir($filePatten);
  46. $controllers = array_merge($coreAppControllers, $controllers);
  47. } else {
  48. $filePatten = APP_PATH . $app . '/controller/Admin*Controller.php';
  49. $controllers = cmf_scan_dir($filePatten);
  50. }
  51. if (!empty($controllers)) {
  52. foreach ($controllers as $controller) {
  53. $controller = preg_replace('/\.php$/', '', $controller);
  54. $controllerName = preg_replace('/\Controller$/', '', $controller);
  55. $controllerClass = "app\\$app\\controller\\$controller";
  56. $menuAnnotations = Annotations::ofClass($controllerClass, '@adminMenuRoot');
  57. if (!empty($menuAnnotations)) {
  58. foreach ($menuAnnotations as $menuAnnotation) {
  59. $name = $menuAnnotation->name;
  60. $icon = $menuAnnotation->icon;
  61. $type = 0;//1:有界面可访问菜单,2:无界面可访问菜单,0:只作为菜单
  62. $action = $menuAnnotation->action;
  63. $status = empty($menuAnnotation->display) ? 0 : 1;
  64. $listOrder = floatval($menuAnnotation->order);
  65. $param = $menuAnnotation->param;
  66. $remark = $menuAnnotation->remark;
  67. if (empty($menuAnnotation->parent)) {
  68. $parentId = 0;
  69. } else {
  70. $parent = explode('/', $menuAnnotation->parent);
  71. $countParent = count($parent);
  72. if ($countParent > 3) {
  73. throw new \Exception($controllerClass . ':' . $action . ' @adminMenuRoot parent格式不正确!');
  74. }
  75. $parentApp = $app;
  76. $parentController = $controllerName;
  77. $parentAction = '';
  78. switch ($countParent) {
  79. case 1:
  80. $parentAction = $parent[0];
  81. break;
  82. case 2:
  83. $parentController = $parent[0];
  84. $parentAction = $parent[1];
  85. break;
  86. case 3:
  87. $parentApp = $parent[0];
  88. $parentController = $parent[1];
  89. $parentAction = $parent[2];
  90. break;
  91. }
  92. $findParentAdminMenu = Db::name('admin_menu')->where([
  93. 'app' => $parentApp,
  94. 'controller' => $parentController,
  95. 'action' => $parentAction
  96. ])->find();
  97. if (empty($findParentAdminMenu)) {
  98. $parentId = Db::name('admin_menu')->insertGetId([
  99. 'app' => $parentApp,
  100. 'controller' => $parentController,
  101. 'action' => $parentAction,
  102. 'name' => '--new--'
  103. ]);
  104. } else {
  105. $parentId = $findParentAdminMenu['id'];
  106. }
  107. }
  108. $findAdminMenu = Db::name('admin_menu')->where([
  109. 'app' => $app,
  110. 'controller' => $controllerName,
  111. 'action' => $action
  112. ])->find();
  113. if (empty($findAdminMenu)) {
  114. Db::name('admin_menu')->insert([
  115. 'parent_id' => $parentId,
  116. 'type' => $type,
  117. 'status' => $status,
  118. 'list_order' => $listOrder,
  119. 'app' => $app,
  120. 'controller' => $controllerName,
  121. 'action' => $action,
  122. 'param' => $param,
  123. 'name' => $name,
  124. 'icon' => $icon,
  125. 'remark' => $remark
  126. ]);
  127. $menuName = $name;
  128. array_push($newMenus, "$app/$controllerName/$action 已导入");
  129. } else {
  130. if ($findAdminMenu['name'] == '--new--') {
  131. Db::name('admin_menu')->where([
  132. 'app' => $app,
  133. 'controller' => $controllerName,
  134. 'action' => $action
  135. ])->update([
  136. 'parent_id' => $parentId,
  137. 'type' => $type,
  138. 'status' => $status,
  139. 'list_order' => $listOrder,
  140. 'param' => $param,
  141. 'name' => $name,
  142. 'icon' => $icon,
  143. 'remark' => $remark
  144. ]);
  145. $menuName = $name;
  146. } else {
  147. // 只关注菜单层级关系,是否有视图
  148. Db::name('admin_menu')->where([
  149. 'app' => $app,
  150. 'controller' => $controllerName,
  151. 'action' => $action
  152. ])->update([
  153. //'parent_id' => $parentId,
  154. 'type' => $type,
  155. ]);
  156. $menuName = $findAdminMenu['name'];
  157. }
  158. array_push($newMenus, "$app/$controllerName/$action 层级关系已更新");
  159. }
  160. $authRuleName = "{$app}/{$controllerName}/{$action}";
  161. $findAuthRuleCount = Db::name('auth_rule')->where([
  162. 'app' => $app,
  163. 'name' => $authRuleName,
  164. 'type' => 'admin_url'
  165. ])->count();
  166. if ($findAuthRuleCount == 0) {
  167. Db::name('auth_rule')->insert([
  168. 'app' => $app,
  169. 'name' => $authRuleName,
  170. 'type' => 'admin_url',
  171. 'param' => $param,
  172. 'title' => $menuName
  173. ]);
  174. } else {
  175. Db::name('auth_rule')->where([
  176. 'app' => $app,
  177. 'name' => $authRuleName,
  178. 'type' => 'admin_url',
  179. ])->update([
  180. 'param' => $param,
  181. 'title' => $menuName
  182. ]);
  183. }
  184. }
  185. }
  186. $reflect = new \ReflectionClass($controllerClass);
  187. $methods = $reflect->getMethods(\ReflectionMethod::IS_PUBLIC);
  188. if (!empty($methods)) {
  189. foreach ($methods as $method) {
  190. if ($method->class == $controllerClass && strpos($method->name, '_') !== 0) {
  191. $menuAnnotations = Annotations::ofMethod($controllerClass, $method->name, '@adminMenu');
  192. if (!empty($menuAnnotations)) {
  193. $menuAnnotation = $menuAnnotations[0];
  194. $name = $menuAnnotation->name;
  195. $icon = $menuAnnotation->icon;
  196. $type = $menuAnnotation->hasView ? 1 : 2;//1:有界面可访问菜单,2:无界面可访问菜单,0:只作为菜单
  197. $action = $method->name;
  198. $status = empty($menuAnnotation->display) ? 0 : 1;
  199. $listOrder = floatval($menuAnnotation->order);
  200. $param = $menuAnnotation->param;
  201. $remark = $menuAnnotation->remark;
  202. if (empty($menuAnnotation->parent)) {
  203. $parentId = 0;
  204. } else {
  205. $parent = explode('/', $menuAnnotation->parent);
  206. $countParent = count($parent);
  207. if ($countParent > 3) {
  208. throw new \Exception($controllerClass . ':' . $action . ' @menuRoot parent格式不正确!');
  209. }
  210. $parentApp = $app;
  211. $parentController = $controllerName;
  212. $parentAction = '';
  213. switch ($countParent) {
  214. case 1:
  215. $parentAction = $parent[0];
  216. break;
  217. case 2:
  218. $parentController = $parent[0];
  219. $parentAction = $parent[1];
  220. break;
  221. case 3:
  222. $parentApp = $parent[0];
  223. $parentController = $parent[1];
  224. $parentAction = $parent[2];
  225. break;
  226. }
  227. $findParentAdminMenu = Db::name('admin_menu')->where([
  228. 'app' => $parentApp,
  229. 'controller' => $parentController,
  230. 'action' => $parentAction
  231. ])->find();
  232. if (empty($findParentAdminMenu)) {
  233. $parentId = Db::name('admin_menu')->insertGetId([
  234. 'app' => $parentApp,
  235. 'controller' => $parentController,
  236. 'action' => $parentAction,
  237. 'name' => '--new--'
  238. ]);
  239. } else {
  240. $parentId = $findParentAdminMenu['id'];
  241. }
  242. }
  243. $findAdminMenu = Db::name('admin_menu')->where([
  244. 'app' => $app,
  245. 'controller' => $controllerName,
  246. 'action' => $action
  247. ])->find();
  248. if (empty($findAdminMenu)) {
  249. Db::name('admin_menu')->insert([
  250. 'parent_id' => $parentId,
  251. 'type' => $type,
  252. 'status' => $status,
  253. 'list_order' => $listOrder,
  254. 'app' => $app,
  255. 'controller' => $controllerName,
  256. 'action' => $action,
  257. 'param' => $param,
  258. 'name' => $name,
  259. 'icon' => $icon,
  260. 'remark' => $remark
  261. ]);
  262. $menuName = $name;
  263. array_push($newMenus, "$app/$controllerName/$action 已导入");
  264. } else {
  265. if ($findAdminMenu['name'] == '--new--') {
  266. Db::name('admin_menu')->where([
  267. 'app' => $app,
  268. 'controller' => $controllerName,
  269. 'action' => $action
  270. ])->update([
  271. 'parent_id' => $parentId,
  272. 'type' => $type,
  273. 'status' => $status,
  274. 'list_order' => $listOrder,
  275. 'param' => $param,
  276. 'name' => $name,
  277. 'icon' => $icon,
  278. 'remark' => $remark
  279. ]);
  280. $menuName = $name;
  281. } else {
  282. // 只关注菜单层级关系,是否有视图
  283. Db::name('admin_menu')->where([
  284. 'app' => $app,
  285. 'controller' => $controllerName,
  286. 'action' => $action
  287. ])->update([
  288. //'parent_id' => $parentId,
  289. 'type' => $type,
  290. ]);
  291. $menuName = $findAdminMenu['name'];
  292. }
  293. array_push($newMenus, "$app/$controllerName/$action 已更新");
  294. }
  295. $authRuleName = "{$app}/{$controllerName}/{$action}";
  296. $findAuthRuleCount = Db::name('auth_rule')->where([
  297. 'app' => $app,
  298. 'name' => $authRuleName,
  299. 'type' => 'admin_url'
  300. ])->count();
  301. if ($findAuthRuleCount == 0) {
  302. Db::name('auth_rule')->insert([
  303. 'app' => $app,
  304. 'name' => $authRuleName,
  305. 'type' => 'admin_url',
  306. 'param' => $param,
  307. 'title' => $menuName
  308. ]);
  309. } else {
  310. Db::name('auth_rule')->where([
  311. 'app' => $app,
  312. 'name' => $authRuleName,
  313. 'type' => 'admin_url',
  314. ])->update([
  315. 'param' => $param,
  316. 'title' => $menuName
  317. ]);
  318. }
  319. }
  320. }
  321. }
  322. }
  323. }
  324. }
  325. return $newMenus;
  326. }
  327. }