Min.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. ->setDescription('Compress js and css file');
  26. }
  27. protected function execute(Input $input, Output $output)
  28. {
  29. $module = $input->getOption('module') ?: '';
  30. $resource = $input->getOption('resource') ?: '';
  31. if (!$module || !in_array($module, ['frontend', 'backend', 'all']))
  32. {
  33. throw new Exception('Please input correct module name');
  34. }
  35. if (!$resource || !in_array($resource, ['js', 'css', 'all']))
  36. {
  37. throw new Exception('Please input correct resource name');
  38. }
  39. $moduleArr = $module == 'all' ? ['frontend', 'backend'] : [$module];
  40. $resourceArr = $resource == 'all' ? ['js', 'css'] : [$resource];
  41. $minPath = __DIR__ . DS . 'Min' . DS;
  42. $publicPath = ROOT_PATH . 'public' . DS;
  43. $tempFile = $minPath . 'temp.js';
  44. $nodeExec = '';
  45. if (!$nodeExec)
  46. {
  47. if (IS_WIN)
  48. {
  49. // Winsows下请手动配置配置该值,一般将该值配置为 '"C:/Program Files/nodejs/node.exe"',除非你的Node安装路径有变更
  50. $nodeExec = '"C:/Program Files/nodejs/node.exe"';
  51. }
  52. else
  53. {
  54. try
  55. {
  56. $nodeExec = exec("which node");
  57. if (!$nodeExec)
  58. {
  59. throw new Exception("node environment not found!please install node first!");
  60. }
  61. }
  62. catch (Exception $e)
  63. {
  64. throw new Exception($e->getMessage());
  65. }
  66. }
  67. }
  68. foreach ($moduleArr as $mod)
  69. {
  70. foreach ($resourceArr as $res)
  71. {
  72. $data = [
  73. 'publicPath' => $publicPath,
  74. 'jsBaseName' => str_replace('{module}', $mod, $this->options['jsBaseName']),
  75. 'jsBaseUrl' => $this->options['jsBaseUrl'],
  76. 'cssBaseName' => str_replace('{module}', $mod, $this->options['cssBaseName']),
  77. 'cssBaseUrl' => $this->options['cssBaseUrl'],
  78. 'jsBasePath' => str_replace(DS, '/', ROOT_PATH . $this->options['jsBaseUrl']),
  79. 'cssBasePath' => str_replace(DS, '/', ROOT_PATH . $this->options['cssBaseUrl']),
  80. 'ds' => DS,
  81. ];
  82. //源文件
  83. $from = $data["{$res}BasePath"] . $data["{$res}BaseName"] . '.' . $res;
  84. if (!is_file($from))
  85. {
  86. $output->error("{$res} source file not found!file:{$from}");
  87. continue;
  88. }
  89. if ($res == "js")
  90. {
  91. $content = file_get_contents($from);
  92. preg_match("/require\.config\(\{[\r\n]?[\n]?+(.*?)[\r\n]?[\n]?}\);/is", $content, $matches);
  93. if (!isset($matches[1]))
  94. {
  95. $output->error("js config not found!");
  96. continue;
  97. }
  98. $config = preg_replace("/(urlArgs|baseUrl):(.*)\n/", '', $matches[1]);
  99. $data['config'] = $config;
  100. }
  101. // 生成压缩文件
  102. $this->writeToFile($res, $data, $tempFile);
  103. $output->info("Compress " . $data["{$res}BaseName"] . ".{$res}");
  104. // 执行压缩
  105. echo exec("{$nodeExec} {$minPath}r.js -o {$tempFile} >> {$minPath}node.log");
  106. }
  107. }
  108. @unlink($tempFile);
  109. $output->info("Build Successed!");
  110. }
  111. /**
  112. * 写入到文件
  113. * @param string $name
  114. * @param array $data
  115. * @param string $pathname
  116. * @return mixed
  117. */
  118. protected function writeToFile($name, $data, $pathname)
  119. {
  120. $search = $replace = [];
  121. foreach ($data as $k => $v)
  122. {
  123. $search[] = "{%{$k}%}";
  124. $replace[] = $v;
  125. }
  126. $stub = file_get_contents($this->getStub($name));
  127. $content = str_replace($search, $replace, $stub);
  128. if (!is_dir(dirname($pathname)))
  129. {
  130. mkdir(strtolower(dirname($pathname)), 0755, true);
  131. }
  132. return file_put_contents($pathname, $content);
  133. }
  134. /**
  135. * 获取基础模板
  136. * @param string $name
  137. * @return string
  138. */
  139. protected function getStub($name)
  140. {
  141. return __DIR__ . DS . 'Min' . DS . 'stubs' . DS . $name . '.stub';
  142. }
  143. }