1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @copyright 2017 Vladimir Jimenez |
5
|
|
|
* @license https://github.com/allejo/stakx/blob/master/LICENSE.md MIT |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
namespace allejo\stakx; |
9
|
|
|
|
10
|
|
|
use allejo\stakx\Command\BuildableCommand; |
11
|
|
|
use allejo\stakx\Document\BasePageView; |
12
|
|
|
use allejo\stakx\Document\ContentItem; |
13
|
|
|
use allejo\stakx\Document\DynamicPageView; |
14
|
|
|
use allejo\stakx\Document\PermalinkDocument; |
15
|
|
|
use allejo\stakx\Document\RepeaterPageView; |
16
|
|
|
use allejo\stakx\Document\StaticPageView; |
17
|
|
|
use allejo\stakx\Document\TemplateReadyDocument; |
18
|
|
|
use allejo\stakx\Exception\FileAwareException; |
19
|
|
|
use allejo\stakx\Filesystem\FilesystemLoader as fs; |
20
|
|
|
use allejo\stakx\FrontMatter\ExpandedValue; |
21
|
|
|
use allejo\stakx\Manager\BaseManager; |
22
|
|
|
use allejo\stakx\Manager\PageManager; |
23
|
|
|
use allejo\stakx\Manager\ThemeManager; |
24
|
|
|
use allejo\stakx\Filesystem\Folder; |
25
|
|
|
use allejo\stakx\System\FilePath; |
26
|
|
|
use allejo\stakx\Templating\TemplateBridgeInterface; |
27
|
|
|
use allejo\stakx\Templating\TemplateErrorInterface; |
28
|
|
|
use allejo\stakx\Templating\TemplateInterface; |
29
|
|
|
use Psr\Log\LoggerAwareTrait; |
30
|
|
|
use Psr\Log\LoggerInterface; |
31
|
|
|
use Symfony\Component\DependencyInjection\ContainerAwareTrait; |
32
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
33
|
|
|
use Symfony\Component\Filesystem\Exception\FileNotFoundException; |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* This class takes care of rendering the Twig body of PageViews with the respective information and it also takes care |
37
|
|
|
* of writing the rendered Twig to the filesystem. |
38
|
|
|
* |
39
|
|
|
* @internal |
40
|
|
|
* |
41
|
|
|
* @since 0.1.1 |
42
|
|
|
*/ |
43
|
|
|
class Compiler |
44
|
|
|
{ |
45
|
|
|
use LoggerAwareTrait; |
46
|
|
|
use ContainerAwareTrait; |
47
|
|
|
|
48
|
|
|
/** @var string|false */ |
49
|
|
|
private $redirectTemplate; |
50
|
|
|
|
51
|
|
|
/** @var BasePageView[][] */ |
52
|
|
|
private $importDependencies; |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* Any time a PageView extends another template, that relationship is stored in this array. This is necessary so |
56
|
|
|
* when watching a website, we can rebuild the necessary PageViews when these base templates change. |
57
|
|
|
* |
58
|
|
|
* ``` |
59
|
|
|
* array['_layouts/base.html.twig'] = &PageView; |
60
|
|
|
* ``` |
61
|
|
|
* |
62
|
|
|
* @var TemplateInterface[] |
63
|
|
|
*/ |
64
|
|
|
private $templateDependencies; |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* All of the PageViews handled by this Compiler instance indexed by their file paths relative to the site root. |
68
|
|
|
* |
69
|
|
|
* ``` |
70
|
|
|
* array['_pages/index.html.twig'] = &PageView; |
71
|
|
|
* ``` |
72
|
|
|
* |
73
|
|
|
* @var BasePageView[] |
74
|
|
|
*/ |
75
|
|
|
private $pageViewsFlattened; |
76
|
|
|
|
77
|
|
|
/** @var string[] */ |
78
|
|
|
private $templateMapping; |
79
|
|
|
|
80
|
|
|
/** @var BasePageView[][] */ |
81
|
|
|
private $pageViews; |
|
|
|
|
82
|
|
|
|
83
|
|
|
/** @var Folder */ |
84
|
|
|
private $folder; |
85
|
|
|
|
86
|
|
|
/** @var string */ |
87
|
|
|
private $theme; |
88
|
|
|
|
89
|
|
|
/** @var TemplateBridgeInterface */ |
90
|
|
|
private $templateBridge; |
91
|
|
|
/** |
92
|
|
|
* @var PageManager |
93
|
|
|
*/ |
94
|
|
|
private $pageManager; |
95
|
|
|
/** |
96
|
|
|
* @var EventDispatcherInterface |
97
|
|
|
*/ |
98
|
|
|
private $eventDispatcher; |
99
|
|
|
|
100
|
|
|
public function __construct(TemplateBridgeInterface $templateBridge, PageManager $pageManager, EventDispatcherInterface $eventDispatcher, LoggerInterface $logger) |
101
|
|
|
{ |
102
|
|
|
$this->templateBridge = $templateBridge; |
103
|
|
|
$this->theme = ''; |
104
|
|
|
$this->pageManager = $pageManager; |
105
|
|
|
$this->eventDispatcher = $eventDispatcher; |
106
|
|
|
$this->logger = $logger; |
107
|
|
|
|
108
|
|
|
$this->pageViewsFlattened = &$pageManager->getPageViewsFlattened(); |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
/** |
112
|
|
|
* @param string|false $template |
113
|
|
|
*/ |
114
|
|
|
public function setRedirectTemplate($template) |
115
|
|
|
{ |
116
|
|
|
$this->redirectTemplate = $template; |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
/** |
120
|
|
|
* @param Folder $folder |
121
|
|
|
*/ |
122
|
|
|
public function setTargetFolder(Folder $folder) |
123
|
|
|
{ |
124
|
|
|
$this->folder = $folder; |
125
|
|
|
} |
126
|
|
|
|
127
|
|
|
/** |
128
|
|
|
* @param string $themeName |
129
|
|
|
*/ |
130
|
|
|
public function setThemeName($themeName) |
131
|
|
|
{ |
132
|
|
|
$this->theme = $themeName; |
133
|
|
|
} |
134
|
|
|
|
135
|
|
|
/// |
136
|
|
|
// Twig parent templates |
137
|
|
|
/// |
138
|
|
|
|
139
|
|
|
public function isImportDependency($filePath) |
140
|
|
|
{ |
141
|
|
|
return isset($this->importDependencies[$filePath]); |
142
|
|
|
} |
143
|
|
|
|
144
|
|
|
/** |
145
|
|
|
* Check whether a given file path is used as a parent template by a PageView |
146
|
|
|
* |
147
|
|
|
* @param string $filePath |
148
|
|
|
* |
149
|
|
|
* @return bool |
150
|
|
|
*/ |
151
|
|
|
public function isParentTemplate($filePath) |
152
|
|
|
{ |
153
|
|
|
return isset($this->templateDependencies[$filePath]); |
154
|
|
|
} |
155
|
|
|
|
156
|
|
|
/** |
157
|
|
|
* Rebuild all of the PageViews that used a given template as a parent |
158
|
|
|
* |
159
|
|
|
* @param string $filePath The file path to the parent Twig template |
160
|
|
|
*/ |
161
|
|
|
public function refreshParent($filePath) |
162
|
|
|
{ |
163
|
|
|
foreach ($this->templateDependencies[$filePath] as &$parentTemplate) |
|
|
|
|
164
|
|
|
{ |
165
|
|
|
$this->compilePageView($parentTemplate); |
166
|
|
|
} |
167
|
|
|
} |
168
|
|
|
|
169
|
|
|
public function getTemplateMappings() |
170
|
|
|
{ |
171
|
|
|
return $this->templateMapping; |
172
|
|
|
} |
173
|
|
|
|
174
|
|
|
/// |
175
|
|
|
// IO Functionality |
176
|
|
|
/// |
177
|
|
|
|
178
|
|
|
/** |
179
|
|
|
* Compile all of the PageViews registered with the compiler. |
180
|
|
|
* |
181
|
|
|
* @since 0.1.0 |
182
|
|
|
*/ |
183
|
|
|
public function compileAll() |
184
|
|
|
{ |
185
|
|
|
foreach ($this->pageViewsFlattened as &$pageView) |
186
|
|
|
{ |
187
|
|
|
$this->compilePageView($pageView); |
188
|
|
|
} |
189
|
|
|
} |
190
|
|
|
|
191
|
|
|
public function compileImportDependencies($filePath) |
192
|
|
|
{ |
193
|
|
|
foreach ($this->importDependencies[$filePath] as &$dependent) |
194
|
|
|
{ |
195
|
|
|
$this->compilePageView($dependent); |
196
|
|
|
} |
197
|
|
|
} |
198
|
|
|
|
199
|
|
|
public function compileSome(array $filter = array()) |
200
|
|
|
{ |
201
|
|
|
/** @var BasePageView $pageView */ |
202
|
|
|
foreach ($this->pageViewsFlattened as &$pageView) |
203
|
|
|
{ |
204
|
|
|
$ns = $filter['namespace']; |
205
|
|
|
|
206
|
|
|
if ($pageView->hasDependencyOnCollection($ns, $filter['dependency']) || |
207
|
|
|
$pageView->hasDependencyOnCollection($ns, null) |
208
|
|
|
) { |
209
|
|
|
$this->compilePageView($pageView); |
210
|
|
|
} |
211
|
|
|
} |
212
|
|
|
} |
213
|
|
|
|
214
|
|
|
/** |
215
|
|
|
* Compile an individual PageView from a given path. |
216
|
|
|
* |
217
|
|
|
* @param string $filePath |
218
|
|
|
* |
219
|
|
|
* @throws FileNotFoundException When the given file path isn't tracked by the Compiler. |
220
|
|
|
*/ |
221
|
|
|
public function compilePageViewFromPath($filePath) |
222
|
|
|
{ |
223
|
|
|
if (!isset($this->pageViewsFlattened[$filePath])) |
224
|
|
|
{ |
225
|
|
|
throw new FileNotFoundException(sprintf('The "%s" PageView is not being tracked by this compiler.', $filePath)); |
226
|
|
|
} |
227
|
|
|
|
228
|
|
|
$this->compilePageView($this->pageViewsFlattened[$filePath]); |
229
|
|
|
} |
230
|
|
|
|
231
|
|
|
/** |
232
|
|
|
* Compile an individual PageView item. |
233
|
|
|
* |
234
|
|
|
* This function will take care of determining *how* to treat the PageView and write the compiled output to a the |
235
|
|
|
* respective target file. |
236
|
|
|
* |
237
|
|
|
* @param DynamicPageView|RepeaterPageView|StaticPageView $pageView The PageView that needs to be compiled |
|
|
|
|
238
|
|
|
* |
239
|
|
|
* @since 0.1.1 |
240
|
|
|
*/ |
241
|
|
|
public function compilePageView(BasePageView &$pageView) |
242
|
|
|
{ |
243
|
|
|
$this->templateBridge->setGlobalVariable('__currentTemplate', $pageView->getAbsoluteFilePath()); |
244
|
|
|
$this->logger->debug('Compiling {type} PageView: {pageview}', array( |
245
|
|
|
'pageview' => $pageView->getRelativeFilePath(), |
246
|
|
|
'type' => $pageView->getType() |
247
|
|
|
)); |
248
|
|
|
|
249
|
|
|
try |
250
|
|
|
{ |
251
|
|
|
switch ($pageView->getType()) |
252
|
|
|
{ |
253
|
|
|
case BasePageView::STATIC_TYPE: |
254
|
|
|
$this->compileStaticPageView($pageView); |
|
|
|
|
255
|
|
|
$this->compileStandardRedirects($pageView); |
256
|
|
|
break; |
257
|
|
|
|
258
|
|
|
case BasePageView::DYNAMIC_TYPE: |
259
|
|
|
$this->compileDynamicPageViews($pageView); |
|
|
|
|
260
|
|
|
$this->compileStandardRedirects($pageView); |
261
|
|
|
break; |
262
|
|
|
|
263
|
|
|
case BasePageView::REPEATER_TYPE: |
264
|
|
|
$this->compileRepeaterPageViews($pageView); |
|
|
|
|
265
|
|
|
$this->compileExpandedRedirects($pageView); |
266
|
|
|
break; |
267
|
|
|
} |
268
|
|
|
} |
269
|
|
|
catch (TemplateErrorInterface $e) |
270
|
|
|
{ |
271
|
|
|
throw new FileAwareException( |
272
|
|
|
$e->getMessage(), |
273
|
|
|
$e->getCode(), |
274
|
|
|
$e, |
275
|
|
|
$pageView->getRelativeFilePath(), |
276
|
|
|
$e->getTemplateLine() + $pageView->getLineOffset() |
|
|
|
|
277
|
|
|
); |
278
|
|
|
} |
279
|
|
|
} |
280
|
|
|
|
281
|
|
|
/** |
282
|
|
|
* Write the compiled output for a static PageView. |
283
|
|
|
* |
284
|
|
|
* @since 0.1.1 |
285
|
|
|
* |
286
|
|
|
* @throws TemplateErrorInterface |
287
|
|
|
*/ |
288
|
|
|
private function compileStaticPageView(StaticPageView &$pageView) |
289
|
|
|
{ |
290
|
|
|
$pageView->compile(); |
291
|
|
|
|
292
|
|
|
$targetFile = $pageView->getTargetFile(); |
293
|
|
|
$output = $this->renderStaticPageView($pageView); |
294
|
|
|
|
295
|
|
|
$this->logger->notice('Writing file: {file}', array('file' => $targetFile)); |
296
|
|
|
$this->folder->writeFile($targetFile, $output); |
297
|
|
|
} |
298
|
|
|
|
299
|
|
|
/** |
300
|
|
|
* Write the compiled output for a dynamic PageView. |
301
|
|
|
* |
302
|
|
|
* @param DynamicPageView $pageView |
303
|
|
|
* |
304
|
|
|
* @since 0.1.1 |
305
|
|
|
* |
306
|
|
|
* @throws TemplateErrorInterface |
307
|
|
|
*/ |
308
|
|
|
private function compileDynamicPageViews(DynamicPageView &$pageView) |
309
|
|
|
{ |
310
|
|
|
$contentItems = $pageView->getCollectableItems(); |
311
|
|
|
$template = $this->createTwigTemplate($pageView); |
312
|
|
|
|
313
|
|
|
foreach ($contentItems as &$contentItem) |
314
|
|
|
{ |
315
|
|
|
if ($contentItem->isDraft() && !Service::getParameter(BuildableCommand::USE_DRAFTS)) |
316
|
|
|
{ |
317
|
|
|
$this->logger->debug('{file}: marked as a draft', array( |
318
|
|
|
'file' => $contentItem->getRelativeFilePath() |
319
|
|
|
)); |
320
|
|
|
|
321
|
|
|
continue; |
322
|
|
|
} |
323
|
|
|
|
324
|
|
|
$targetFile = $contentItem->getTargetFile(); |
325
|
|
|
$output = $this->renderDynamicPageView($template, $contentItem); |
|
|
|
|
326
|
|
|
|
327
|
|
|
$this->logger->notice('Writing file: {file}', array('file' => $targetFile)); |
328
|
|
|
$this->folder->writeFile($targetFile, $output); |
329
|
|
|
|
330
|
|
|
$this->compileStandardRedirects($contentItem); |
|
|
|
|
331
|
|
|
} |
332
|
|
|
} |
333
|
|
|
|
334
|
|
|
/** |
335
|
|
|
* Write the compiled output for a repeater PageView. |
336
|
|
|
* |
337
|
|
|
* @param RepeaterPageView $pageView |
338
|
|
|
|
339
|
|
|
* @since 0.1.1 |
340
|
|
|
* |
341
|
|
|
* @throws TemplateErrorInterface |
342
|
|
|
*/ |
343
|
|
|
private function compileRepeaterPageViews(RepeaterPageView &$pageView) |
344
|
|
|
{ |
345
|
|
|
$pageView->rewindPermalink(); |
346
|
|
|
|
347
|
|
|
$template = $this->createTwigTemplate($pageView); |
348
|
|
|
$permalinks = $pageView->getRepeaterPermalinks(); |
|
|
|
|
349
|
|
|
|
350
|
|
|
foreach ($permalinks as $permalink) |
351
|
|
|
{ |
352
|
|
|
$pageView->bumpPermalink(); |
|
|
|
|
353
|
|
|
$targetFile = $pageView->getTargetFile(); |
354
|
|
|
$output = $this->renderRepeaterPageView($template, $pageView, $permalink); |
|
|
|
|
355
|
|
|
|
356
|
|
|
$this->logger->notice('Writing repeater file: {file}', ['file' => $targetFile]); |
357
|
|
|
$this->folder->writeFile($targetFile, $output); |
358
|
|
|
} |
359
|
|
|
} |
360
|
|
|
|
361
|
|
|
/** |
362
|
|
|
* @deprecated |
363
|
|
|
* |
364
|
|
|
* @todo This function needs to be rewritten or removed. Something |
365
|
|
|
* |
366
|
|
|
* @param ContentItem $contentItem |
367
|
|
|
*/ |
368
|
|
|
public function compileContentItem(ContentItem &$contentItem) |
369
|
|
|
{ |
370
|
|
|
$pageView = &$contentItem->getPageView(); |
|
|
|
|
371
|
|
|
$template = $this->createTwigTemplate($pageView); |
372
|
|
|
|
373
|
|
|
$this->templateBridge->setGlobalVariable('__currentTemplate', $pageView->getAbsoluteFilePath()); |
374
|
|
|
$contentItem->evaluateFrontMatter($pageView->getFrontMatter(false)); |
375
|
|
|
|
376
|
|
|
$targetFile = $contentItem->getTargetFile(); |
377
|
|
|
$output = $this->renderDynamicPageView($template, $contentItem); |
378
|
|
|
|
379
|
|
|
$this->logger->notice('Writing file: {file}', array('file' => $targetFile)); |
380
|
|
|
$this->folder->writeFile($targetFile, $output); |
381
|
|
|
} |
382
|
|
|
|
383
|
|
|
/// |
384
|
|
|
// Redirect handling |
385
|
|
|
/// |
386
|
|
|
|
387
|
|
|
/** |
388
|
|
|
* Write redirects for standard redirects. |
389
|
|
|
* |
390
|
|
|
* @throws TemplateErrorInterface |
391
|
|
|
* |
392
|
|
|
* @since 0.1.1 |
393
|
|
|
*/ |
394
|
|
|
private function compileStandardRedirects(PermalinkDocument &$pageView) |
395
|
|
|
{ |
396
|
|
|
$redirects = $pageView->getRedirects(); |
397
|
|
|
|
398
|
|
View Code Duplication |
foreach ($redirects as $redirect) |
|
|
|
|
399
|
|
|
{ |
400
|
|
|
$redirectPageView = BasePageView::createRedirect( |
401
|
|
|
$redirect, |
402
|
|
|
$pageView->getPermalink(), |
403
|
|
|
$this->redirectTemplate |
404
|
|
|
); |
405
|
|
|
$redirectPageView->evaluateFrontMatter([], [ |
406
|
|
|
'site' => $this->container->get(Configuration::class)->getConfiguration(), |
407
|
|
|
]); |
408
|
|
|
|
409
|
|
|
$this->compileStaticPageView($redirectPageView); |
410
|
|
|
} |
411
|
|
|
} |
412
|
|
|
|
413
|
|
|
/** |
414
|
|
|
* Write redirects for expanded redirects. |
415
|
|
|
* |
416
|
|
|
* @param RepeaterPageView $pageView |
417
|
|
|
* |
418
|
|
|
* @since 0.1.1 |
419
|
|
|
*/ |
420
|
|
|
private function compileExpandedRedirects(RepeaterPageView &$pageView) |
421
|
|
|
{ |
422
|
|
|
$permalinks = $pageView->getRepeaterPermalinks(); |
423
|
|
|
|
424
|
|
|
/** @var ExpandedValue[] $repeaterRedirect */ |
425
|
|
|
foreach ($pageView->getRepeaterRedirects() as $repeaterRedirect) |
426
|
|
|
{ |
427
|
|
|
/** |
428
|
|
|
* @var int $index |
429
|
|
|
* @var ExpandedValue $redirect |
430
|
|
|
*/ |
431
|
|
View Code Duplication |
foreach ($repeaterRedirect as $index => $redirect) |
|
|
|
|
432
|
|
|
{ |
433
|
|
|
$redirectPageView = BasePageView::createRedirect( |
434
|
|
|
$redirect->getEvaluated(), |
435
|
|
|
$permalinks[$index]->getEvaluated(), |
436
|
|
|
$this->redirectTemplate |
437
|
|
|
); |
438
|
|
|
$redirectPageView->evaluateFrontMatter([], [ |
439
|
|
|
'site' => $this->container->get(Configuration::class)->getConfiguration(), |
440
|
|
|
]); |
441
|
|
|
|
442
|
|
|
$this->compilePageView($redirectPageView); |
443
|
|
|
} |
444
|
|
|
} |
445
|
|
|
} |
446
|
|
|
|
447
|
|
|
/// |
448
|
|
|
// Twig Functionality |
449
|
|
|
/// |
450
|
|
|
|
451
|
|
|
/** |
452
|
|
|
* Get the compiled HTML for a specific iteration of a repeater PageView. |
453
|
|
|
* |
454
|
|
|
* @param TemplateInterface $template |
455
|
|
|
* @param RepeaterPageView $pageView |
456
|
|
|
* @param ExpandedValue $expandedValue |
457
|
|
|
* |
458
|
|
|
* @since 0.1.1 |
459
|
|
|
* |
460
|
|
|
* @return string |
461
|
|
|
*/ |
462
|
|
|
private function renderRepeaterPageView(TemplateInterface &$template, RepeaterPageView &$pageView, ExpandedValue &$expandedValue) |
463
|
|
|
{ |
464
|
|
|
$pageView->evaluateFrontMatter([ |
465
|
|
|
'permalink' => $expandedValue->getEvaluated(), |
466
|
|
|
'iterators' => $expandedValue->getIterators(), |
467
|
|
|
]); |
468
|
|
|
|
469
|
|
|
return $template |
470
|
|
|
->render(array( |
471
|
|
|
'this' => $pageView->createJail(), |
472
|
|
|
)); |
473
|
|
|
} |
474
|
|
|
|
475
|
|
|
/** |
476
|
|
|
* Get the compiled HTML for a specific ContentItem. |
477
|
|
|
* |
478
|
|
|
* @since 0.1.1 |
479
|
|
|
* |
480
|
|
|
* @return string |
481
|
|
|
*/ |
482
|
|
|
private function renderDynamicPageView(TemplateInterface &$template, TemplateReadyDocument &$twigItem) |
483
|
|
|
{ |
484
|
|
|
return $template |
485
|
|
|
->render(array( |
486
|
|
|
'this' => $twigItem->createJail(), |
487
|
|
|
)); |
488
|
|
|
} |
489
|
|
|
|
490
|
|
|
/** |
491
|
|
|
* Get the compiled HTML for a static PageView. |
492
|
|
|
* |
493
|
|
|
* @since 0.1.1 |
494
|
|
|
* |
495
|
|
|
* @throws TemplateErrorInterface |
496
|
|
|
* |
497
|
|
|
* @return string |
498
|
|
|
*/ |
499
|
|
|
private function renderStaticPageView(StaticPageView &$pageView) |
500
|
|
|
{ |
501
|
|
|
return $this |
502
|
|
|
->createTwigTemplate($pageView) |
503
|
|
|
->render(array( |
504
|
|
|
'this' => $pageView->createJail(), |
|
|
|
|
505
|
|
|
)); |
506
|
|
|
} |
507
|
|
|
|
508
|
|
|
/** |
509
|
|
|
* Create a Twig template that just needs an array to render. |
510
|
|
|
* |
511
|
|
|
* @since 0.1.1 |
512
|
|
|
* |
513
|
|
|
* @throws TemplateErrorInterface |
514
|
|
|
* |
515
|
|
|
* @return TemplateInterface |
516
|
|
|
*/ |
517
|
|
|
private function createTwigTemplate(BasePageView &$pageView) |
518
|
|
|
{ |
519
|
|
|
try |
520
|
|
|
{ |
521
|
|
|
$template = $this->templateBridge->createTemplate($pageView->getContent()); |
522
|
|
|
|
523
|
|
|
$this->templateMapping[$template->getTemplateName()] = $pageView->getRelativeFilePath(); |
524
|
|
|
|
525
|
|
|
if (Service::getParameter(BuildableCommand::WATCHING)) |
526
|
|
|
{ |
527
|
|
|
// Keep track of import dependencies |
528
|
|
|
foreach ($pageView->getImportDependencies() as $dependency) |
529
|
|
|
{ |
530
|
|
|
$this->importDependencies[$dependency][$pageView->getBasename()] = &$pageView; |
531
|
|
|
} |
532
|
|
|
|
533
|
|
|
// Keep track of Twig extends' |
534
|
|
|
$parent = $template->getParentTemplate(); |
535
|
|
|
|
536
|
|
|
while ($parent !== false) |
537
|
|
|
{ |
538
|
|
|
// Replace the '@theme' namespace in Twig with the path to the theme folder and create a UnixFilePath object from the given path |
539
|
|
|
$path = str_replace('@theme', fs::appendPath(ThemeManager::THEME_FOLDER, $this->theme), $parent->getTemplateName()); |
540
|
|
|
$path = new FilePath($path); |
541
|
|
|
|
542
|
|
|
$this->templateDependencies[(string)$path][$pageView->getBasename()] = &$pageView; |
543
|
|
|
|
544
|
|
|
$parent = $parent->getParentTemplate(); |
545
|
|
|
} |
546
|
|
|
} |
547
|
|
|
|
548
|
|
|
return $template; |
549
|
|
|
} |
550
|
|
|
catch (TemplateErrorInterface $e) |
551
|
|
|
{ |
552
|
|
|
$e |
553
|
|
|
->setTemplateLine($e->getTemplateLine() + $pageView->getLineOffset()) |
554
|
|
|
->setContent($pageView->getContent()) |
555
|
|
|
->setName($pageView->getRelativeFilePath()) |
556
|
|
|
->setRelativeFilePath($pageView->getRelativeFilePath()) |
557
|
|
|
->buildException() |
558
|
|
|
; |
559
|
|
|
|
560
|
|
|
throw $e; |
561
|
|
|
} |
562
|
|
|
} |
563
|
|
|
} |
564
|
|
|
|
This check marks private properties in classes that are never used. Those properties can be removed.