1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Aoe\Asdis\Domain\Model; |
4
|
|
|
|
5
|
|
|
use Aoe\Asdis\Content\Replacement\Processor; |
6
|
|
|
use Aoe\Asdis\Content\Scraper\ChainFactory; |
7
|
|
|
use Aoe\Asdis\Domain\Model\Asset\Collection; |
8
|
|
|
use Aoe\Asdis\Domain\Model\DistributionAlgorithm\Factory; |
9
|
|
|
use Aoe\Asdis\Domain\Repository\ServerRepository; |
10
|
|
|
use Aoe\Asdis\System\Configuration\Provider; |
11
|
|
|
use Exception; |
12
|
|
|
use TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* Represents a page in the TYPO3 page tree. |
16
|
|
|
*/ |
17
|
|
|
class Page |
18
|
|
|
{ |
19
|
|
|
private ?Collection $assets = null; |
20
|
|
|
|
21
|
|
|
private ?TypoScriptFrontendController $pageObject = null; |
22
|
|
|
|
23
|
|
|
private ?ChainFactory $scraperChainFactory = null; |
24
|
|
|
|
25
|
|
|
private ?Factory $distributionAlgorithmFactory = null; |
26
|
|
|
|
27
|
|
|
private ?ServerRepository $serverRepository = null; |
28
|
|
|
|
29
|
|
|
private ?Provider $configurationProvider = null; |
30
|
|
|
|
31
|
|
|
private ?Processor $replacementProcessor = null; |
32
|
|
|
|
33
|
|
|
public function __construct(Provider $configurationProvider) { |
34
|
|
|
$this->configurationProvider = $configurationProvider; |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
public function injectScraperChainFactory(ChainFactory $scraperChainFactory): void |
38
|
|
|
{ |
39
|
|
|
$this->scraperChainFactory = $scraperChainFactory; |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
public function injectDistributionAlgorithmFactory(Factory $distributionAlgorithmFactory): void |
43
|
|
|
{ |
44
|
|
|
$this->distributionAlgorithmFactory = $distributionAlgorithmFactory; |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
public function injectServerRepository(ServerRepository $serverRepository): void |
48
|
|
|
{ |
49
|
|
|
$this->serverRepository = $serverRepository; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/* |
53
|
|
|
public function injectConfigurationProvider(Provider $configurationProvider): void |
54
|
|
|
{ |
55
|
|
|
$this->configurationProvider = $configurationProvider; |
56
|
|
|
} |
57
|
|
|
*/ |
58
|
|
|
|
59
|
|
|
public function injectReplacementProcessor(Processor $replacementProcessor): void |
60
|
|
|
{ |
61
|
|
|
$this->replacementProcessor = $replacementProcessor; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* Scrapes the assets of the page. There is no replacement taking place. You have to call "replaceAssets" to replace |
66
|
|
|
* the paths after calling "scrapeAssets". |
67
|
|
|
*/ |
68
|
|
|
public function scrapeAssets(): void |
69
|
|
|
{ |
70
|
|
|
if (!$this->configurationProvider->isReplacementEnabled()) { |
|
|
|
|
71
|
|
|
return; |
72
|
|
|
} |
73
|
|
|
$this->setAssets($this->scraperChainFactory->buildChain()->scrape($this->pageObject->content)); |
|
|
|
|
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* Replaces the assets of the page. |
78
|
1 |
|
* To force any replacement, you have to call "scrapeAssets" before. |
79
|
|
|
*/ |
80
|
1 |
|
public function replaceAssets(): void |
81
|
1 |
|
{ |
82
|
|
|
if (!$this->configurationProvider->isReplacementEnabled()) { |
83
|
|
|
return; |
84
|
|
|
} |
85
|
|
|
$distributionAlgorithmKey = ''; |
|
|
|
|
86
|
|
|
try { |
87
|
|
|
$distributionAlgorithmKey = $this->configurationProvider->getDistributionAlgorithmKey(); |
88
|
|
|
} catch (Exception $exception) { |
|
|
|
|
89
|
|
|
} |
90
|
|
|
$distributionAlgorithm = $this->distributionAlgorithmFactory->buildDistributionAlgorithmFromKey($distributionAlgorithmKey); |
|
|
|
|
91
|
|
|
$distributionAlgorithm->distribute($this->assets, $this->serverRepository->findAllByPage($this)); |
|
|
|
|
92
|
|
|
|
93
|
|
|
$this->pageObject->content = $this->replacementProcessor->replace( |
|
|
|
|
94
|
|
|
$this->assets->getReplacementMap(), |
|
|
|
|
95
|
|
|
$this->pageObject->content |
96
|
|
|
); |
97
|
1 |
|
} |
98
|
|
|
|
99
|
1 |
|
public function setAssets(Collection $assets): void |
100
|
1 |
|
{ |
101
|
|
|
$this->assets = $assets; |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
public function setPageObject(TypoScriptFrontendController $pageObject): void |
105
|
|
|
{ |
106
|
|
|
$this->pageObject = $pageObject; |
107
|
|
|
} |
108
|
|
|
|
109
|
|
|
public function getPageObject(): ?TypoScriptFrontendController |
110
|
|
|
{ |
111
|
|
|
return $this->pageObject; |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
public function getAssets(): ?Collection |
115
|
|
|
{ |
116
|
|
|
return $this->assets; |
117
|
|
|
} |
118
|
|
|
} |
119
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.