Api.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <?php
  2. namespace app\admin\command;
  3. use app\admin\command\Api\library\Builder;
  4. use think\Config;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Option;
  8. use think\console\Output;
  9. use think\Exception;
  10. class Api extends Command
  11. {
  12. protected function configure()
  13. {
  14. $site = Config::get('site');
  15. $this
  16. ->setName('api')
  17. ->addOption('url', 'u', Option::VALUE_OPTIONAL, 'default api url', '')
  18. ->addOption('module', 'm', Option::VALUE_OPTIONAL, 'module name(admin/index/api)', 'api')
  19. ->addOption('output', 'o', Option::VALUE_OPTIONAL, 'output index file name', 'api.html')
  20. ->addOption('template', 'e', Option::VALUE_OPTIONAL, '', 'index.html')
  21. ->addOption('force', 'f', Option::VALUE_OPTIONAL, 'force override general file', false)
  22. ->addOption('title', 't', Option::VALUE_OPTIONAL, 'document title', $site['name'] ?? '')
  23. ->addOption('class', 'c', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'extend class', null)
  24. ->addOption('language', 'l', Option::VALUE_OPTIONAL, 'language', 'zh-cn')
  25. ->addOption('addon', 'a', Option::VALUE_OPTIONAL, 'addon name', null)
  26. ->addOption('controller', 'r', Option::VALUE_REQUIRED | Option::VALUE_IS_ARRAY, 'controller name', null)
  27. ->setDescription('Build Api document from controller');
  28. }
  29. protected function execute(Input $input, Output $output)
  30. {
  31. $apiDir = __DIR__ . DS . 'Api' . DS;
  32. $force = $input->getOption('force');
  33. $url = $input->getOption('url');
  34. $language = $input->getOption('language');
  35. $template = $input->getOption('template');
  36. if (!preg_match("/^([a-z0-9]+)\.html\$/i", $template)) {
  37. throw new Exception('template file not correct');
  38. }
  39. $language = $language ? $language : 'zh-cn';
  40. $langFile = $apiDir . 'lang' . DS . $language . '.php';
  41. if (!is_file($langFile)) {
  42. throw new Exception('language file not found');
  43. }
  44. $lang = include_once $langFile;
  45. // 目标目录
  46. $output_dir = ROOT_PATH . 'public' . DS;
  47. $output_file = $output_dir . $input->getOption('output');
  48. if (is_file($output_file) && !$force) {
  49. throw new Exception("api index file already exists!\nIf you need to rebuild again, use the parameter --force=true ");
  50. }
  51. // 模板文件
  52. $template_dir = $apiDir . 'template' . DS;
  53. $template_file = $template_dir . $template;
  54. if (!is_file($template_file)) {
  55. throw new Exception('template file not found');
  56. }
  57. // 额外的类
  58. $classes = $input->getOption('class');
  59. // 标题
  60. $title = $input->getOption('title');
  61. // 模块
  62. $module = $input->getOption('module');
  63. // 插件
  64. $addon = $input->getOption('addon');
  65. $moduleDir = $addonDir = '';
  66. if ($addon) {
  67. $addonInfo = get_addon_info($addon);
  68. if (!$addonInfo) {
  69. throw new Exception('addon not found');
  70. }
  71. $moduleDir = ADDON_PATH . $addon . DS;
  72. } else {
  73. $moduleDir = APP_PATH . $module . DS;
  74. }
  75. if (!is_dir($moduleDir)) {
  76. throw new Exception('module not found');
  77. }
  78. if (version_compare(PHP_VERSION, '7.0.0', '<')) {
  79. throw new Exception("Requires PHP version 7.0 or newer");
  80. }
  81. //控制器名
  82. $controller = $input->getOption('controller') ?: [];
  83. if (!$controller) {
  84. $controllerDir = $moduleDir . Config::get('url_controller_layer') . DS;
  85. $files = new \RecursiveIteratorIterator(
  86. new \RecursiveDirectoryIterator($controllerDir),
  87. \RecursiveIteratorIterator::LEAVES_ONLY
  88. );
  89. foreach ($files as $name => $file) {
  90. if (!$file->isDir() && $file->getExtension() == 'php') {
  91. $filePath = $file->getRealPath();
  92. $classes[] = $this->getClassFromFile($filePath);
  93. }
  94. }
  95. } else {
  96. foreach ($controller as $index => $item) {
  97. $filePath = $moduleDir . Config::get('url_controller_layer') . DS . $item . '.php';
  98. $classes[] = $this->getClassFromFile($filePath);
  99. }
  100. }
  101. $classes = array_unique(array_filter($classes));
  102. $config = [
  103. 'sitename' => config('site.name'),
  104. 'title' => $title,
  105. 'author' => config('site.name'),
  106. 'description' => '',
  107. 'apiurl' => $url,
  108. 'language' => $language,
  109. ];
  110. $builder = new Builder($classes);
  111. $content = $builder->render($template_file, ['config' => $config, 'lang' => $lang]);
  112. if (!file_put_contents($output_file, $content)) {
  113. throw new Exception('Cannot save the content to ' . $output_file);
  114. }
  115. $output->info("Build Successed!");
  116. }
  117. /**
  118. * 从文件获取命名空间和类名
  119. *
  120. * @param string $filename
  121. * @return string
  122. */
  123. protected function getClassFromFile($filename)
  124. {
  125. $getNext = null;
  126. $isNamespace = false;
  127. $skipNext = false;
  128. $namespace = '';
  129. $class = '';
  130. foreach (\PhpToken::tokenize(file_get_contents($filename)) as $token) {
  131. if (!$token->isIgnorable()) {
  132. $name = $token->getTokenName();
  133. switch ($name) {
  134. case 'T_NAMESPACE':
  135. $isNamespace = true;
  136. break;
  137. case 'T_EXTENDS':
  138. case 'T_USE':
  139. case 'T_IMPLEMENTS':
  140. $skipNext = true;
  141. break;
  142. case 'T_CLASS':
  143. if ($skipNext) {
  144. $skipNext = false;
  145. } else {
  146. $getNext = strtolower(substr($name, 2));
  147. }
  148. break;
  149. case 'T_NAME_QUALIFIED':
  150. case 'T_NS_SEPARATOR':
  151. case 'T_STRING':
  152. case ';':
  153. if ($isNamespace) {
  154. if ($name == ';') {
  155. $isNamespace = false;
  156. } else {
  157. $namespace .= $token->text;
  158. }
  159. } elseif ($skipNext) {
  160. $skipNext = false;
  161. } elseif ($getNext == 'class') {
  162. $class = $token->text;
  163. $getNext = null;
  164. break 2;
  165. }
  166. break;
  167. default:
  168. $getNext = null;
  169. }
  170. }
  171. }
  172. return $namespace . '\\' . $class;
  173. }
  174. }