2 // src/Rapsys/PackBundle/Twig/PackTokenParser.php
3 namespace Rapsys\PackBundle\Twig
;
5 use Symfony\Component\HttpKernel\Config\FileLocator
;
6 use Symfony\Component\DependencyInjection\ContainerInterface
;
8 class PackTokenParser
extends \Twig_TokenParser
{
14 * @param class $fileLocator The FileLocator instance
15 * @param class $assetsPackages The Assets Packages instance
16 * @param string $prefix The prefix path
17 * @param string $tag The tag name
18 * @param string $output The default output string
19 * @param array $filters The default filters array
21 public function __construct(FileLocator
$fileLocator, ContainerInterface
$containerInterface, $prefix, $tag, $output, $filters) {
22 $this->fileLocator
= $fileLocator;
23 $this->containerInterface
= $containerInterface;
24 $this->prefix
= $prefix;
26 $this->output
= $output;
27 $this->filters
= $filters;
29 if ($this->containerInterface
->hasParameter('rapsys_pack')) {
30 if ($parameters = $this->containerInterface
->getParameter('rapsys_pack')) {
31 if (isset($parameters['timeout'])) {
32 $timeout = $parameters['timeout'];
33 } elseif (isset($parameters['user_agent'])) {
34 $userAgent = $parameters['user_agent'];
35 } elseif (isset($parameters['redirect'])) {
36 $redirect = $parameters['redirect'];
41 //Set http default timeout
42 $this->timeout
= ini_get('default_socket_timeout');
43 //Set http default user agent
44 $this->userAgent
= ini_get('user_agent');
45 //Set http default redirect
48 //Try to load service defaults
49 if ($this->containerInterface
->hasParameter('rapsys_pack')) {
50 if ($parameters = $this->containerInterface
->getParameter('rapsys_pack')) {
51 if (!empty($parameters['timeout'])) {
52 $this->timeout
= $parameters['timeout'];
54 if (!empty($parameters['user_agent'])) {
55 $this->userAgent
= $parameters['user_agent'];
57 if (!empty($parameters['redirect'])) {
58 $this->redirect
= $parameters['redirect'];
64 public function getTag() {
68 public function parse(\Twig_Token
$token) {
69 $parser = $this->parser
;
70 $stream = $this->parser
->getStream();
74 $output = $this->output
;
75 $filters = $this->filters
;
79 while (!$stream->test(\Twig_Token
::BLOCK_END_TYPE
)) {
80 if ($stream->test(\Twig_Token
::STRING_TYPE
)) {
81 // '@jquery', 'js/src/core/*', 'js/src/extra.js'
82 $inputs[] = $stream->next()->getValue();
83 } elseif ($stream->test(\Twig_Token
::NAME_TYPE
, 'filter')) {
86 $stream->expect(\Twig_Token
::OPERATOR_TYPE
, '=');
87 $filters = array_merge($filters, array_filter(array_map('trim', explode(',', $stream->expect(\Twig_Token
::STRING_TYPE
)->getValue()))));
88 } elseif ($stream->test(\Twig_Token
::NAME_TYPE
, 'output')) {
89 // output='js/packed/*.js' OR output='js/core.js'
91 $stream->expect(\Twig_Token
::OPERATOR_TYPE
, '=');
92 $output = $stream->expect(\Twig_Token
::STRING_TYPE
)->getValue();
93 } elseif ($stream->test(\Twig_Token
::NAME_TYPE
, 'name')) {
96 $stream->expect(\Twig_Token
::OPERATOR_TYPE
, '=');
97 $name = $stream->expect(\Twig_Token
::STRING_TYPE
)->getValue();
99 $token = $stream->getCurrent();
100 throw new \
Twig_Error_Syntax(sprintf('Unexpected token "%s" of value "%s"', \Twig_Token
::typeToEnglish($token->getType()), $token->getValue()), $token->getLine(), $stream->getSourceContext());
104 $stream->expect(\Twig_Token
::BLOCK_END_TYPE
);
106 $body = $this->parser
->subparse(array($this, 'testEndTag'), true);
108 $stream->expect(\Twig_Token
::BLOCK_END_TYPE
);
110 //Replace star with sha1
111 if (($pos = strpos($output, '*')) !== false) {
112 #XXX: assetic code: substr(sha1(serialize($inputs).serialize($filters).serialize($options)), 0, 7)
113 $output = substr($output, 0, $pos).sha1(serialize($inputs).serialize($filters)).substr($output, $pos +
1);
117 for($k = 0; $k < count($inputs); $k++
) {
118 //Deal with generic url
119 if (strpos($inputs[$k], '//') === 0) {
121 $scheme = 'https://';
122 //Try to load service scheme
123 if ($this->containerInterface
->hasParameter('rapsys_pack')) {
124 if ($parameters = $this->containerInterface
->getParameter('rapsys_pack')) {
125 if (isset($parameters['scheme'])) {
126 $scheme = $parameters['scheme'];
131 $inputs[$k] = $scheme.substr($inputs[$k], 2);
132 //Deal with non url path
133 } elseif (strpos($inputs[$k], '://') === false) {
134 //Check if we have a bundle path
135 if ($inputs[$k][0] == '@') {
136 //Check that we don't have only a path
137 if (($pos = strpos($inputs[$k], '/')) === false) {
138 #TODO: @jquery support (if we really want it)
139 #header('Content-Type: text/plain');
141 #if ($inputs[0] == '@jquery') {
144 throw new \
Twig_Error_Syntax(sprintf('Invalid input path "%s"', $inputs[$k]), $token->getLine(), $stream->getSourceContext());
146 //Resolve bundle prefix
147 $inputs[$k] = $this->fileLocator
->locate(substr($inputs[$k], 0, $pos)).substr($inputs[$k], $pos +
1);
150 if (strpos($inputs[$k], '*') !== false || (($a = strpos($inputs[$k], '{')) !== false && ($b = strpos($inputs[$k], ',', $a)) !== false && strpos($inputs[$k], '}', $b) !== false)) {
152 $replacement = glob($inputs[$k], GLOB_NOSORT
|GLOB_BRACE
);
153 //Check that these are working files
154 foreach($replacement as $input) {
155 if (!is_file($input)) {
156 throw new \
Twig_Error_Syntax(sprintf('Input path "%s" from "%s" is not a file', $input, $inputs[$k]), $token->getLine(), $stream->getSourceContext());
159 //Replace with glob path
160 array_splice($inputs, $k, 1, $replacement);
162 $k +
= count($replacement) - 1;
163 //Check that it's a file
164 } elseif (!is_file($inputs[$k])) {
165 throw new \
Twig_Error_Syntax(sprintf('Input path "%s" is not a file', $inputs[$k]), $token->getLine(), $stream->getSourceContext());
171 $ctx = stream_context_create(
174 'timeout' => $this->timeout
,
175 'user_agent' => $this->userAgent
,
176 'redirect' => $this->redirect
,
182 if (!empty($inputs)) {
183 //Retrieve files content
184 foreach($inputs as $input) {
185 //Try to retrieve content
186 if (($data = file_get_contents($input, false, $ctx)) === false) {
187 throw new \
Twig_Error_Syntax(sprintf('Unable to retrieve input path "%s"', $input), $token->getLine(), $stream->getSourceContext());
193 #TODO: trigger error about empty inputs ?
197 if (!empty($filters)) {
199 foreach($filters as $filter) {
201 $filter = __NAMESPACE__
.'\\Filter\\'.$filter;
203 $tool = new $filter($this->containerInterface
, $stream->getSourceContext(), $token->getLine());
205 $content = $tool->process($content);
210 #TODO: trigger error about empty filters ?
213 //Create output dir on demand
214 if (!is_dir($parent = $dir = dirname($this->prefix
.$output))) {
215 //XXX: set as 0777, symfony umask (0022) will reduce rights (0755)
216 mkdir($dir, 0777, true);
220 //XXX: atomic rotation is required to avoid partial content in reverse cache
221 if (file_put_contents($this->prefix
.$output.'.new', $content) === false) {
222 throw new \
Twig_Error_Syntax(sprintf('Unable to write to: %s', $prefix.$output.'.new'), $token->getLine(), $stream->getSourceContext());
226 if (is_file($this->prefix
.$output) && unlink($this->prefix
.$output) === false) {
227 throw new \
Twig_Error_Syntax(sprintf('Unable to unlink: %s', $prefix.$output), $token->getLine(), $stream->getSourceContext());
231 if (rename($this->prefix
.$output.'.new', $this->prefix
.$output) === false) {
232 throw new \
Twig_Error_Syntax(sprintf('Unable to rename: %s to %s', $prefix.$output.'.new', $prefix.$output), $token->getLine(), $stream->getSourceContext());
236 if (($output = $this->containerInterface
->get('assets.packages')->getUrl($output, 'rapsys_pack')) === false) {
237 throw new \
Twig_Error_Syntax(sprintf('Unable to get url for asset: %s with package %s', $output, 'rapsys_pack'), $token->getLine(), $stream->getSourceContext());
241 return new PackNode(array('value' => $body), array('inputs' => $inputs, 'filters' => $filters, 'name' => $name, 'output' => $output), $token->getLine(), $this->getTag());
244 public function testEndTag(\Twig_Token
$token) {
245 return $token->test(array('end'.$this->getTag()));