Api.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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('author', 'a', Option::VALUE_OPTIONAL, 'document author', $site['name'])
  24. ->addOption('class', 'c', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'extend class', null)
  25. ->addOption('language', 'l', Option::VALUE_OPTIONAL, 'language', 'zh-cn')
  26. ->setDescription('Compress js and css file');
  27. }
  28. protected function execute(Input $input, Output $output)
  29. {
  30. $apiDir = __DIR__ . DS . 'Api' . DS;
  31. $force = $input->getOption('force');
  32. $url = $input->getOption('url');
  33. $language = $input->getOption('language');
  34. $language = $language ? $language : 'zh-cn';
  35. $langFile = $apiDir . 'lang' . DS . $language . '.php';
  36. if (!is_file($langFile)) {
  37. throw new Exception('language file not found');
  38. }
  39. $lang = include_once $langFile;
  40. // 目标目录
  41. $output_dir = ROOT_PATH . 'public' . DS;
  42. $output_file = $output_dir . $input->getOption('output');
  43. if (is_file($output_file) && !$force) {
  44. throw new Exception("api index file already exists!\nIf you need to rebuild again, use the parameter --force=true ");
  45. }
  46. // 模板文件
  47. $template_dir = $apiDir . 'template' . DS;
  48. $template_file = $template_dir . $input->getOption('template');
  49. if (!is_file($template_file)) {
  50. throw new Exception('template file not found');
  51. }
  52. // 额外的类
  53. $classes = $input->getOption('class');
  54. // 标题
  55. $title = $input->getOption('title');
  56. // 作者
  57. $author = $input->getOption('author');
  58. // 模块
  59. $module = $input->getOption('module');
  60. $moduleDir = APP_PATH . $module . DS;
  61. if (!is_dir($moduleDir)) {
  62. throw new Exception('module not found');
  63. }
  64. if (version_compare(PHP_VERSION, '7.0.0', '<')) {
  65. if (extension_loaded('Zend OPcache')) {
  66. $configuration = opcache_get_configuration();
  67. $directives = $configuration['directives'];
  68. $configName = request()->isCli() ? 'opcache.enable_cli' : 'opcache.enable';
  69. if (!$directives[$configName]) {
  70. throw new Exception("Please make sure {$configName} is turned on, Get help:https://forum.fastadmin.net/d/1321");
  71. }
  72. } else {
  73. throw new Exception("Please make sure opcache already enabled, Get help:https://forum.fastadmin.net/d/1321");
  74. }
  75. }
  76. $controllerDir = $moduleDir . Config::get('url_controller_layer') . DS;
  77. $files = new \RecursiveIteratorIterator(
  78. new \RecursiveDirectoryIterator($controllerDir), \RecursiveIteratorIterator::LEAVES_ONLY
  79. );
  80. foreach ($files as $name => $file) {
  81. if (!$file->isDir() && $file->getExtension() == 'php') {
  82. $filePath = $file->getRealPath();
  83. $classes[] = $this->get_class_from_file($filePath);
  84. }
  85. }
  86. $classes = array_unique(array_filter($classes));
  87. $config = [
  88. 'title' => $title,
  89. 'author' => $author,
  90. 'description' => '',
  91. 'apiurl' => $url,
  92. 'language' => $language,
  93. ];
  94. $builder = new Builder($classes);
  95. $content = $builder->render($template_file, ['config' => $config, 'lang' => $lang]);
  96. if (!file_put_contents($output_file, $content)) {
  97. throw new Exception('Cannot save the content to ' . $output_file);
  98. }
  99. $output->info("Build Successed!");
  100. }
  101. /**
  102. * get full qualified class name
  103. *
  104. * @param string $path_to_file
  105. * @author JBYRNE http://jarretbyrne.com/2015/06/197/
  106. * @return string
  107. */
  108. protected function get_class_from_file($path_to_file)
  109. {
  110. //Grab the contents of the file
  111. $contents = file_get_contents($path_to_file);
  112. //Start with a blank namespace and class
  113. $namespace = $class = "";
  114. //Set helper values to know that we have found the namespace/class token and need to collect the string values after them
  115. $getting_namespace = $getting_class = false;
  116. //Go through each token and evaluate it as necessary
  117. foreach (token_get_all($contents) as $token) {
  118. //If this token is the namespace declaring, then flag that the next tokens will be the namespace name
  119. if (is_array($token) && $token[0] == T_NAMESPACE) {
  120. $getting_namespace = true;
  121. }
  122. //If this token is the class declaring, then flag that the next tokens will be the class name
  123. if (is_array($token) && $token[0] == T_CLASS) {
  124. $getting_class = true;
  125. }
  126. //While we're grabbing the namespace name...
  127. if ($getting_namespace === true) {
  128. //If the token is a string or the namespace separator...
  129. if (is_array($token) && in_array($token[0], [T_STRING, T_NS_SEPARATOR])) {
  130. //Append the token's value to the name of the namespace
  131. $namespace .= $token[1];
  132. } else if ($token === ';') {
  133. //If the token is the semicolon, then we're done with the namespace declaration
  134. $getting_namespace = false;
  135. }
  136. }
  137. //While we're grabbing the class name...
  138. if ($getting_class === true) {
  139. //If the token is a string, it's the name of the class
  140. if (is_array($token) && $token[0] == T_STRING) {
  141. //Store the token's value as the class name
  142. $class = $token[1];
  143. //Got what we need, stope here
  144. break;
  145. }
  146. }
  147. }
  148. //Build the fully-qualified class name and return it
  149. return $namespace ? $namespace . '\\' . $class : $class;
  150. }
  151. }