Min.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. try
  45. {
  46. $nodeExec = exec("which node");
  47. if (!$nodeExec)
  48. {
  49. throw new Exception("node environment not found!please install node first!");
  50. }
  51. }
  52. catch (Exception $e)
  53. {
  54. throw new Exception($e->getMessage());
  55. }
  56. foreach ($moduleArr as $mod)
  57. {
  58. foreach ($resourceArr as $res)
  59. {
  60. $data = [
  61. 'publicPath' => $publicPath,
  62. 'jsBaseName' => str_replace('{module}', $mod, $this->options['jsBaseName']),
  63. 'jsBaseUrl' => $this->options['jsBaseUrl'],
  64. 'cssBaseName' => str_replace('{module}', $mod, $this->options['cssBaseName']),
  65. 'cssBaseUrl' => $this->options['cssBaseUrl'],
  66. 'jsBasePath' => ROOT_PATH . $this->options['jsBaseUrl'],
  67. 'cssBasePath' => ROOT_PATH . $this->options['cssBaseUrl'],
  68. 'ds' => DS,
  69. ];
  70. //源文件
  71. $from = $data["{$res}BasePath"] . $data["{$res}BaseName"] . '.' . $res;
  72. if (!is_file($from))
  73. {
  74. $output->error("{$res} source file not found!file:{$from}");
  75. continue;
  76. }
  77. if ($res == "js")
  78. {
  79. $content = file_get_contents($from);
  80. preg_match("/require\.config\(\{[\n]+(.*?)\n\}\);/is", $content, $matches);
  81. if (!isset($matches[1]))
  82. {
  83. $output->error("js config not found!");
  84. continue;
  85. }
  86. $config = preg_replace("/(urlArgs|baseUrl):(.*)\n/", '', $matches[1]);
  87. $data['config'] = $config;
  88. }
  89. // 生成压缩文件
  90. $this->writeToFile($res, $data, $tempFile);
  91. $output->info("Compress " . $data["{$res}BaseName"] . ".{$res}");
  92. // 执行压缩
  93. echo exec("{$nodeExec} {$minPath}r.js -o {$tempFile} >> {$minPath}node.log");
  94. }
  95. }
  96. @unlink($tempFile);
  97. $output->info("Build Successed!");
  98. }
  99. /**
  100. * 写入到文件
  101. * @param string $name
  102. * @param array $data
  103. * @param string $pathname
  104. * @return mixed
  105. */
  106. protected function writeToFile($name, $data, $pathname)
  107. {
  108. $search = $replace = [];
  109. foreach ($data as $k => $v)
  110. {
  111. $search[] = "{%{$k}%}";
  112. $replace[] = $v;
  113. }
  114. $stub = file_get_contents($this->getStub($name));
  115. $content = str_replace($search, $replace, $stub);
  116. if (!is_dir(dirname($pathname)))
  117. {
  118. mkdir(strtolower(dirname($pathname)), 0755, true);
  119. }
  120. return file_put_contents($pathname, $content);
  121. }
  122. /**
  123. * 获取基础模板
  124. * @param string $name
  125. * @return string
  126. */
  127. protected function getStub($name)
  128. {
  129. return __DIR__ . '/Min/stubs/' . $name . '.stub';
  130. }
  131. }