CatchConsole.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher;
  13. use catcher\library\Composer;
  14. use catcher\facade\FileSystem;
  15. use Symfony\Component\Finder\SplFileInfo;
  16. use think\App;
  17. use think\console\Command;
  18. class CatchConsole
  19. {
  20. protected $app;
  21. protected $namespace = '';
  22. protected $path = __DIR__ . DIRECTORY_SEPARATOR . 'command';
  23. public function __construct(App $app)
  24. {
  25. $this->app = $app;
  26. }
  27. /**
  28. * 获取 commands
  29. *
  30. * @time 2020年07月02日
  31. * @return array
  32. */
  33. public function commands()
  34. {
  35. $commandFiles = FileSystem::allFiles($this->path);
  36. $commands = [];
  37. /* \Symfony\Component\Finder\SplFileInfo $command */
  38. foreach ($commandFiles as $command) {
  39. if ($command->getExtension() === 'php') {
  40. $lastPath = str_replace($this->parseNamespace(), '', pathinfo($command->getPathname(), PATHINFO_DIRNAME));
  41. $namespace = $this->namespace . str_replace(DIRECTORY_SEPARATOR, '\\', $lastPath) . '\\';
  42. $commandClass = $namespace . pathinfo($command->getPathname(), PATHINFO_FILENAME);
  43. $commands[] = $commandClass;
  44. }
  45. }
  46. return $commands;
  47. }
  48. /**
  49. * 命名空间解析
  50. *
  51. * @time 2020年07月19日
  52. * @return string
  53. */
  54. protected function parseNamespace()
  55. {
  56. // 没有设置 namespace 默认使用 extend 目录
  57. if (!$this->namespace) {
  58. return root_path(). 'extend';
  59. }
  60. $psr4 = (new Composer())->psr4Autoload();
  61. $rootNamespace = substr($this->namespace, 0, strpos($this->namespace, '\\') + 1);
  62. return root_path(). $psr4[$rootNamespace] . DIRECTORY_SEPARATOR .
  63. str_replace('\\', DIRECTORY_SEPARATOR, substr($this->namespace, strpos($this->namespace, '\\') + 1));
  64. }
  65. /**
  66. * set path
  67. *
  68. * @time 2020年07月02日
  69. * @param $path
  70. * @return $this
  71. */
  72. public function path($path)
  73. {
  74. $this->path = $path;
  75. return $this;
  76. }
  77. /**
  78. * 设置命名空间
  79. *
  80. * @time 2020年07月02日
  81. * @param $namespace
  82. * @return $this
  83. */
  84. public function setNamespace($namespace)
  85. {
  86. $this->namespace = $namespace;
  87. return $this;
  88. }
  89. }