|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* @copyright 2018 Vladimir Jimenez |
|
5
|
|
|
* @license https://github.com/allejo/stakx/blob/master/LICENSE.md MIT |
|
6
|
|
|
*/ |
|
7
|
|
|
|
|
8
|
|
|
namespace allejo\stakx\MarkupEngine; |
|
9
|
|
|
|
|
10
|
|
|
use __; |
|
11
|
|
|
use allejo\stakx\Exception\UnsupportedMarkupException; |
|
12
|
|
|
|
|
13
|
|
|
class MarkupEngineManager |
|
14
|
|
|
{ |
|
15
|
|
|
private $enginesByTags = []; |
|
16
|
|
|
private $enginesByExtension = []; |
|
17
|
|
|
|
|
18
|
|
|
public function addMarkupEngines(/*iterable*/ $markupEngines) |
|
19
|
|
|
{ |
|
20
|
|
|
foreach ($markupEngines as $markupEngine) |
|
21
|
|
|
{ |
|
22
|
|
|
$this->addMarkupEngine($markupEngine); |
|
23
|
|
|
} |
|
24
|
|
|
} |
|
25
|
|
|
|
|
26
|
|
|
public function addMarkupEngine(MarkupEngine $markupEngine) |
|
27
|
|
|
{ |
|
28
|
|
|
$extensions = $markupEngine->getExtensions(); |
|
29
|
|
|
$primaryExt = __::first($extensions); |
|
30
|
|
|
|
|
31
|
|
|
foreach ($extensions as $k => $extension) |
|
32
|
|
|
{ |
|
33
|
|
|
if ($k === 0) |
|
34
|
|
|
{ |
|
35
|
|
|
$this->enginesByExtension[$extension] = $markupEngine; |
|
36
|
|
|
} |
|
37
|
|
|
else |
|
38
|
|
|
{ |
|
39
|
|
|
$this->enginesByExtension[$extension] = &$this->enginesByExtension[$primaryExt]; |
|
40
|
|
|
} |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
$this->enginesByTags[$markupEngine->getTemplateTag()] = &$this->enginesByExtension[$primaryExt]; |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
public function getEngineByTag($tag) |
|
|
|
|
|
|
47
|
|
|
{ |
|
48
|
|
|
if (isset($this->enginesByTags[$tag])) |
|
49
|
|
|
{ |
|
50
|
|
|
return $this->enginesByTags[$tag]; |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
throw new UnsupportedMarkupException($tag, 'There is no support to handle this markup format.'); |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
public function getEngineByExtension($extension) |
|
|
|
|
|
|
57
|
|
|
{ |
|
58
|
|
|
if (isset($this->enginesByExtension[$extension])) |
|
59
|
|
|
{ |
|
60
|
|
|
return $this->enginesByExtension[$extension]; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
throw new UnsupportedMarkupException($extension, 'There is no support to handle this markup format.'); |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
public function getTemplateTags() |
|
67
|
|
|
{ |
|
68
|
|
|
return array_filter(array_keys($this->enginesByTags)); |
|
69
|
|
|
} |
|
70
|
|
|
} |
|
71
|
|
|
|
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.