Min.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. namespace app\admin\command;
  3. use think\console\Command;
  4. use think\console\Input;
  5. use think\console\input\Option;
  6. use think\console\Output;
  7. use think\Exception;
  8. class Min extends Command
  9. {
  10. /**
  11. * 路径和文件名配置
  12. */
  13. protected $options = [
  14. 'cssBaseUrl' => 'public/assets/css/',
  15. 'cssBaseName' => '{module}',
  16. 'jsBaseUrl' => 'public/assets/js/',
  17. 'jsBaseName' => 'require-{module}',
  18. ];
  19. protected function configure()
  20. {
  21. $this
  22. ->setName('min')
  23. ->addOption('module', 'm', Option::VALUE_REQUIRED, 'module name(frontend or backend),use \'all\' when build all modules', null)
  24. ->addOption('resource', 'r', Option::VALUE_REQUIRED, 'resource name(js or css),use \'all\' when build all resources', null)
  25. ->addOption('optimize', 'o', Option::VALUE_OPTIONAL, 'optimize type(uglify|closure|none)', 'none')
  26. ->setDescription('Compress js and css file');
  27. }
  28. protected function execute(Input $input, Output $output)
  29. {
  30. $module = $input->getOption('module') ?: '';
  31. $resource = $input->getOption('resource') ?: '';
  32. $optimize = $input->getOption('optimize') ?: 'none';
  33. if (!$module || !in_array($module, ['frontend', 'backend', 'all']))
  34. {
  35. throw new Exception('Please input correct module name');
  36. }
  37. if (!$resource || !in_array($resource, ['js', 'css', 'all']))
  38. {
  39. throw new Exception('Please input correct resource name');
  40. }
  41. $moduleArr = $module == 'all' ? ['frontend', 'backend'] : [$module];
  42. $resourceArr = $resource == 'all' ? ['js', 'css'] : [$resource];
  43. $minPath = __DIR__ . DS . 'Min' . DS;
  44. $publicPath = ROOT_PATH . 'public' . DS;
  45. $tempFile = $minPath . 'temp.js';
  46. $nodeExec = '';
  47. if (!$nodeExec)
  48. {
  49. if (IS_WIN)
  50. {
  51. // Winsows下请手动配置配置该值,一般将该值配置为 '"C:\Program Files\nodejs\node.exe"',除非你的Node安装路径有变更
  52. $nodeExec = 'C:\Program Files\nodejs\node.exe';
  53. if (file_exists($nodeExec)){
  54. $nodeExec = '"' . $nodeExec . '"';
  55. }else{
  56. // 如果 '"C:\Program Files\nodejs\node.exe"' 不存在,可能是node安装路径有变更
  57. // 但安装node会自动配置环境变量,直接执行 '"node.exe"' 提高第一次使用压缩打包的成功率
  58. $nodeExec = '"node.exe"';
  59. }
  60. }
  61. else
  62. {
  63. try
  64. {
  65. $nodeExec = exec("which node");
  66. if (!$nodeExec)
  67. {
  68. throw new Exception("node environment not found!please install node first!");
  69. }
  70. }
  71. catch (Exception $e)
  72. {
  73. throw new Exception($e->getMessage());
  74. }
  75. }
  76. }
  77. foreach ($moduleArr as $mod)
  78. {
  79. foreach ($resourceArr as $res)
  80. {
  81. $data = [
  82. 'publicPath' => $publicPath,
  83. 'jsBaseName' => str_replace('{module}', $mod, $this->options['jsBaseName']),
  84. 'jsBaseUrl' => $this->options['jsBaseUrl'],
  85. 'cssBaseName' => str_replace('{module}', $mod, $this->options['cssBaseName']),
  86. 'cssBaseUrl' => $this->options['cssBaseUrl'],
  87. 'jsBasePath' => str_replace(DS, '/', ROOT_PATH . $this->options['jsBaseUrl']),
  88. 'cssBasePath' => str_replace(DS, '/', ROOT_PATH . $this->options['cssBaseUrl']),
  89. 'optimize' => $optimize,
  90. 'ds' => DS,
  91. ];
  92. //源文件
  93. $from = $data["{$res}BasePath"] . $data["{$res}BaseName"] . '.' . $res;
  94. if (!is_file($from))
  95. {
  96. $output->error("{$res} source file not found!file:{$from}");
  97. continue;
  98. }
  99. if ($res == "js")
  100. {
  101. $content = file_get_contents($from);
  102. preg_match("/require\.config\(\{[\r\n]?[\n]?+(.*?)[\r\n]?[\n]?}\);/is", $content, $matches);
  103. if (!isset($matches[1]))
  104. {
  105. $output->error("js config not found!");
  106. continue;
  107. }
  108. $config = preg_replace("/(urlArgs|baseUrl):(.*)\n/", '', $matches[1]);
  109. $data['config'] = $config;
  110. }
  111. // 生成压缩文件
  112. $this->writeToFile($res, $data, $tempFile);
  113. $output->info("Compress " . $data["{$res}BaseName"] . ".{$res}");
  114. // 执行压缩
  115. $command = "{$nodeExec} \"{$minPath}r.js\" -o \"{$tempFile}\" >> \"{$minPath}node.log\"";
  116. if ($output->isDebug())
  117. {
  118. $output->warning($command);
  119. }
  120. echo exec($command);
  121. }
  122. }
  123. if (!$output->isDebug())
  124. {
  125. @unlink($tempFile);
  126. }
  127. $output->info("Build Successed!");
  128. }
  129. /**
  130. * 写入到文件
  131. * @param string $name
  132. * @param array $data
  133. * @param string $pathname
  134. * @return mixed
  135. */
  136. protected function writeToFile($name, $data, $pathname)
  137. {
  138. $search = $replace = [];
  139. foreach ($data as $k => $v)
  140. {
  141. $search[] = "{%{$k}%}";
  142. $replace[] = $v;
  143. }
  144. $stub = file_get_contents($this->getStub($name));
  145. $content = str_replace($search, $replace, $stub);
  146. if (!is_dir(dirname($pathname)))
  147. {
  148. mkdir(strtolower(dirname($pathname)), 0755, true);
  149. }
  150. return file_put_contents($pathname, $content);
  151. }
  152. /**
  153. * 获取基础模板
  154. * @param string $name
  155. * @return string
  156. */
  157. protected function getStub($name)
  158. {
  159. return __DIR__ . DS . 'Min' . DS . 'stubs' . DS . $name . '.stub';
  160. }
  161. }