*/ class UglifyCssFilter extends BaseNodeFilter { private $uglifycssBin; private $nodeBin; private $expandVars; private $uglyComments; private $cuteComments; /** * @param string $uglifycssBin Absolute path to the uglifycss executable * @param string $nodeBin Absolute path to the folder containg node.js executable */ public function __construct($uglifycssBin = '/usr/bin/uglifycss', $nodeBin = null) { $this->uglifycssBin = $uglifycssBin; $this->nodeBin = $nodeBin; } /** * Expand variables * @param bool $expandVars True to enable */ public function setExpandVars($expandVars) { $this->expandVars = $expandVars; } /** * Remove newlines within preserved comments * @param bool $uglyComments True to enable */ public function setUglyComments($uglyComments) { $this->uglyComments = $uglyComments; } /** * Preserve newlines within and around preserved comments * @param bool $cuteComments True to enable */ public function setCuteComments($cuteComments) { $this->cuteComments = $cuteComments; } /** * @see Assetic\Filter\FilterInterface::filterLoad() */ public function filterLoad(AssetInterface $asset) { } /** * Run the asset through UglifyJs * * @see Assetic\Filter\FilterInterface::filterDump() */ public function filterDump(AssetInterface $asset) { $pb = $this->createProcessBuilder($this->nodeBin ? array($this->nodeBin, $this->uglifycssBin) : array($this->uglifycssBin)); if ($this->expandVars) { $pb->add('--expand-vars'); } if ($this->uglyComments) { $pb->add('--ugly-comments'); } if ($this->cuteComments) { $pb->add('--cute-comments'); } // input and output files $input = FilesystemUtils::createTemporaryFile('uglifycss'); file_put_contents($input, $asset->getContent()); $pb->add($input); $proc = $pb->getProcess(); $code = $proc->run(); unlink($input); if (127 === $code) { throw new \RuntimeException('Path to node executable could not be resolved.'); } if (0 !== $code) { throw FilterException::fromProcess($proc)->setInput($asset->getContent()); } $asset->setContent($proc->getOutput()); } }