MakeMenuCommand.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. declare (strict_types = 1);
  3. namespace catcher\command\Tools;
  4. use catchAdmin\permissions\model\Permissions;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Argument;
  8. use think\console\Output;
  9. class MakeMenuCommand extends Command
  10. {
  11. protected $table;
  12. protected function configure()
  13. {
  14. // 指令配置
  15. $this->setName('make:menu')
  16. ->addArgument('controller', Argument::REQUIRED, '完整的控制器名称,eg. catchAdmin\\permissions\\controller\\User')
  17. ->addArgument('menu', Argument::REQUIRED, '菜单名称')
  18. ->addArgument('path', Argument::REQUIRED, '前端路由地址')
  19. ->addArgument('component', Argument::REQUIRED, '前端组件名称')
  20. ->setDescription(<<<DES
  21. controller: 完整的控制器名称,eg:catchAdmin\\permissions\\controller\\User
  22. menu: 菜单名称
  23. path: 前端路由地址
  24. component: 前端组件名称
  25. DES
  26. );
  27. }
  28. protected function execute(Input $input, Output $output)
  29. {
  30. $arguments = $input->getArguments();
  31. try {
  32. [$root, $module, $c, $controller] = explode('\\', $arguments['controller']);
  33. $permission = Permissions::where('module', $module)
  34. ->where('parent_id', 0)->find();
  35. $permissionModel = $this->app->make(Permissions::class);
  36. // 菜单是否已经建立
  37. $hasMenu = Permissions::where('module', $module)
  38. ->where('permission_mark', lcfirst($controller))->find();
  39. if (!$hasMenu) {
  40. $id = $permissionModel->createBy([
  41. 'permission_name' => $arguments['menu'],
  42. 'module' => $module,
  43. 'parent_id' => $permission->id,
  44. 'level' => $permission->id,
  45. 'route' => $arguments['path'],
  46. 'creator_id' => 1,
  47. 'method' => 'get',
  48. 'permission_mark' => lcfirst($controller),
  49. 'component' => $arguments['component'],
  50. ]);
  51. } else {
  52. $id = $hasMenu->id;
  53. }
  54. $reflectClass = new \ReflectionClass($this->app->make($arguments['controller']));
  55. $exceptMethods = $this->getExceptionMethods($reflectClass);
  56. $methods = $this->getCurrentControllerMethods($reflectClass);
  57. $initMethods = $this->initMethods();
  58. foreach ($methods as $method) {
  59. if (!in_array($method, $exceptMethods)) {
  60. $hasInit = $initMethods[$method] ?? false;
  61. // 如果已经存在 直接跳过
  62. if (Permissions::where('module', $module)
  63. ->where('permission_mark', lcfirst($controller) . '@' . $method)->find()) {
  64. continue;
  65. }
  66. $data = [
  67. 'level' => $permission->id . '-' .$id,
  68. 'permission_mark' => lcfirst($controller) . '@' . $method,
  69. 'parent_id' => $id,
  70. 'module' => $module,
  71. 'type' => Permissions::BTN_TYPE,
  72. ];
  73. if (!$hasInit) {
  74. $name = $output->ask($input, sprintf('请输入方法【%s】的菜单名称', $method));
  75. $data['permission_name'] = $name;
  76. } else {
  77. [$name, $httpMethod] = $initMethods[$method];
  78. $data['permission_name'] = $name;
  79. $data['method'] = $httpMethod;
  80. }
  81. $permissionModel->createBy($data);
  82. }
  83. }
  84. $output->info('success');
  85. } catch (\Exception $e) {
  86. $output->error($e->getMessage());
  87. }
  88. //dd($reflectClass->getMethods());
  89. // dd($this->app->make($arguments['controller'])->methods());
  90. }
  91. /**
  92. * 获取 except 方法
  93. *
  94. * @time 2020年05月08日
  95. * @param \ReflectionClass $class
  96. * @return array
  97. */
  98. protected function getExceptionMethods(\ReflectionClass $class)
  99. {
  100. $methods = [];
  101. $methods[] = '__construct';
  102. foreach ($class->getParentClass()->getMethods() as $method) {
  103. $methods[] = $method->getName();
  104. }
  105. return $methods;
  106. }
  107. /**
  108. * 获取当前控制器的方法
  109. *
  110. * @time 2020年05月08日
  111. * @param \ReflectionClass $class
  112. * @return array
  113. */
  114. protected function getCurrentControllerMethods(\ReflectionClass $class)
  115. {
  116. $methods = [];
  117. foreach ($class->getMethods() as $method) {
  118. $methods[] = $method->getName();
  119. }
  120. return $methods;
  121. }
  122. /**
  123. * 初始化方法
  124. *
  125. * @time 2020年05月08日
  126. * @return \string[][]
  127. */
  128. protected function initMethods()
  129. {
  130. return [
  131. 'index' => ['列表', 'get'],
  132. 'save' => ['保存', 'post'],
  133. 'read' => ['读取', 'get'],
  134. 'update' => ['更新', 'put'],
  135. 'delete' => ['删除', 'delete'],
  136. ];
  137. }
  138. }