1 | <?php |
||
2 | |||
3 | namespace ApacheSolrForTypo3\Solr\Domain\Site; |
||
4 | |||
5 | /*************************************************************** |
||
6 | * Copyright notice |
||
7 | * |
||
8 | * (c) 2011-2015 Ingo Renner <[email protected]> |
||
9 | * All rights reserved |
||
10 | * |
||
11 | * This script is part of the TYPO3 project. The TYPO3 project is |
||
12 | * free software; you can redistribute it and/or modify |
||
13 | * it under the terms of the GNU General Public License as published by |
||
14 | * the Free Software Foundation; either version 3 of the License, or |
||
15 | * (at your option) any later version. |
||
16 | * |
||
17 | * The GNU General Public License can be found at |
||
18 | * http://www.gnu.org/copyleft/gpl.html. |
||
19 | * |
||
20 | * This script is distributed in the hope that it will be useful, |
||
21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
23 | * GNU General Public License for more details. |
||
24 | * |
||
25 | * This copyright notice MUST APPEAR in all copies of the script! |
||
26 | ***************************************************************/ |
||
27 | |||
28 | use ApacheSolrForTypo3\Solr\Domain\Index\Queue\RecordMonitor\Helper\ConfigurationAwareRecordService; |
||
29 | use ApacheSolrForTypo3\Solr\NoSolrConnectionFoundException; |
||
30 | use ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration; |
||
31 | use ApacheSolrForTypo3\Solr\System\Records\Pages\PagesRepository; |
||
32 | use TYPO3\CMS\Backend\Utility\BackendUtility; |
||
33 | use TYPO3\CMS\Core\Utility\GeneralUtility; |
||
34 | |||
35 | /** |
||
36 | * Base Clas for Typo3ManagedSite and LegacySite |
||
37 | */ |
||
38 | abstract class Site implements SiteInterface |
||
39 | { |
||
40 | /** |
||
41 | * @var TypoScriptConfiguration |
||
42 | */ |
||
43 | protected $configuration; |
||
44 | |||
45 | /** |
||
46 | * Root page record. |
||
47 | * |
||
48 | * @var array |
||
49 | */ |
||
50 | protected $rootPage = []; |
||
51 | /** |
||
52 | * @var string |
||
53 | */ |
||
54 | protected $domain; |
||
55 | |||
56 | /** |
||
57 | * @var string |
||
58 | */ |
||
59 | protected $siteHash; |
||
60 | |||
61 | /** |
||
62 | * @var PagesRepository |
||
63 | */ |
||
64 | protected $pagesRepository; |
||
65 | |||
66 | /** |
||
67 | * @var int |
||
68 | */ |
||
69 | protected $defaultLanguageId = 0; |
||
70 | |||
71 | /** |
||
72 | * @var int[] Available language ids |
||
73 | */ |
||
74 | protected $availableLanguageIds = []; |
||
75 | |||
76 | /** |
||
77 | * Takes an pagerecord and checks whether the page is marked as root page. |
||
78 | * |
||
79 | * @param array $page pagerecord |
||
80 | * @return bool true if the page is marked as root page, false otherwise |
||
81 | * @todo: move to SiteUtility? |
||
82 | */ |
||
83 | public static function isRootPage($page) |
||
84 | { |
||
85 | if ($page['is_siteroot']) { |
||
86 | return true; |
||
87 | } |
||
88 | |||
89 | return false; |
||
90 | } |
||
91 | |||
92 | /** |
||
93 | * Gets the site's root page ID (uid). |
||
94 | * |
||
95 | * @return int The site's root page ID. |
||
96 | */ |
||
97 | public function getRootPageId() |
||
98 | { |
||
99 | return (int)$this->rootPage['uid']; |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * Gets available language id's for this site |
||
104 | * |
||
105 | * @return int[] array or language id's |
||
106 | */ |
||
107 | public function getAvailableLanguageIds(): array { |
||
108 | return $this->availableLanguageIds; |
||
109 | } |
||
110 | |||
111 | /** |
||
112 | * Gets the site's root page language IDs (uids). |
||
113 | * |
||
114 | * @return array |
||
115 | * @deprecated use getAvailableLanguageIds() |
||
116 | * @todo check if this method is still needed (only used in tests currently) |
||
117 | */ |
||
118 | public function getRootPageLanguageIds() : array |
||
119 | { |
||
120 | trigger_error('solr:deprecation: Method getRootPageLanguageIds is deprecated since EXT:solr 10 and will be removed in v11, use getAvailableLanguageIds instead', E_USER_DEPRECATED); |
||
121 | |||
122 | $rootPageLanguageIds = []; |
||
123 | $rootPageId = $this->getRootPageId(); |
||
124 | |||
125 | $rootPageOverlays = $this->pagesRepository->findTranslationOverlaysByPageId($rootPageId); |
||
126 | if (count($rootPageOverlays)) { |
||
127 | foreach ($rootPageOverlays as $rootPageOverlay) { |
||
128 | $rootPageLanguageIds[] = $rootPageOverlay['sys_language_uid']; |
||
129 | } |
||
130 | } |
||
131 | return $rootPageLanguageIds; |
||
132 | } |
||
133 | |||
134 | /** |
||
135 | * Gets the site's label. The label is build from the the site title and root |
||
136 | * page ID (uid). |
||
137 | * |
||
138 | * @return string The site's label. |
||
139 | */ |
||
140 | public function getLabel() |
||
141 | { |
||
142 | $rootlineTitles = []; |
||
143 | $rootLine = BackendUtility::BEgetRootLine($this->rootPage['uid']); |
||
144 | // Remove last |
||
145 | array_pop($rootLine); |
||
146 | $rootLine = array_reverse($rootLine); |
||
147 | foreach ($rootLine as $rootLineItem) { |
||
148 | $rootlineTitles[] = $rootLineItem['title']; |
||
149 | } |
||
150 | return implode(' - ', $rootlineTitles) . ', Root Page ID: ' . $this->rootPage['uid']; |
||
151 | } |
||
152 | |||
153 | /** |
||
154 | * Gets the site's Solr TypoScript configuration (plugin.tx_solr.*) |
||
155 | * |
||
156 | * @return \ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration The Solr TypoScript configuration |
||
157 | */ |
||
158 | public function getSolrConfiguration() |
||
159 | { |
||
160 | return $this->configuration; |
||
161 | } |
||
162 | |||
163 | /** |
||
164 | * Gets the site's default language as configured in |
||
165 | * config.sys_language_uid. If sys_language_uid is not set, 0 is assumed to |
||
166 | * be the default. |
||
167 | * |
||
168 | * @return int The site's default language. |
||
169 | */ |
||
170 | public function getDefaultLanguage() |
||
171 | { |
||
172 | return $this->defaultLanguageId; |
||
173 | } |
||
174 | |||
175 | /** |
||
176 | * Generates a list of page IDs in this site. Attention, this includes |
||
177 | * all page types! Deleted pages are not included. |
||
178 | * |
||
179 | * @param int|string $rootPageId Page ID from where to start collection sub pages |
||
180 | * @param int $maxDepth Maximum depth to descend into the site tree |
||
181 | * @return array Array of pages (IDs) in this site |
||
182 | */ |
||
183 | public function getPages($rootPageId = 'SITE_ROOT', $maxDepth = 999) |
||
184 | { |
||
185 | $pageIds = []; |
||
186 | if ($rootPageId === 'SITE_ROOT') { |
||
187 | $rootPageId = (int)$this->rootPage['uid']; |
||
188 | $pageIds[] = $rootPageId; |
||
189 | } |
||
190 | |||
191 | $configurationAwareRecordService = GeneralUtility::makeInstance(ConfigurationAwareRecordService::class); |
||
192 | // Fetch configuration in order to be able to read initialPagesAdditionalWhereClause |
||
193 | $solrConfiguration = $this->getSolrConfiguration(); |
||
194 | $indexQueueConfigurationName = $configurationAwareRecordService->getIndexingConfigurationName('pages', $this->rootPage['uid'], $solrConfiguration); |
||
195 | $initialPagesAdditionalWhereClause = $solrConfiguration->getInitialPagesAdditionalWhereClause($indexQueueConfigurationName); |
||
196 | |||
197 | return array_merge($pageIds, $this->pagesRepository->findAllSubPageIdsByRootPage($rootPageId, $maxDepth, $initialPagesAdditionalWhereClause)); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
198 | } |
||
199 | |||
200 | |||
201 | /** |
||
202 | * Generates the site's unique Site Hash. |
||
203 | * |
||
204 | * The Site Hash is build from the site's main domain, the system encryption |
||
205 | * key, and the extension "tx_solr". These components are concatenated and |
||
206 | * sha1-hashed. |
||
207 | * |
||
208 | * @return string Site Hash. |
||
209 | */ |
||
210 | public function getSiteHash() |
||
211 | { |
||
212 | return $this->siteHash; |
||
213 | } |
||
214 | |||
215 | /** |
||
216 | * Gets the site's main domain. More specifically the first domain record in |
||
217 | * the site tree. |
||
218 | * |
||
219 | * @return string The site's main domain. |
||
220 | */ |
||
221 | public function getDomain() |
||
222 | { |
||
223 | return $this->domain; |
||
224 | } |
||
225 | |||
226 | /** |
||
227 | * Gets the site's root page. |
||
228 | * |
||
229 | * @return array The site's root page. |
||
230 | */ |
||
231 | public function getRootPage() |
||
232 | { |
||
233 | return $this->rootPage; |
||
234 | } |
||
235 | |||
236 | /** |
||
237 | * Gets the site's root page's title. |
||
238 | * |
||
239 | * @return string The site's root page's title |
||
240 | */ |
||
241 | public function getTitle() |
||
242 | { |
||
243 | return $this->rootPage['title']; |
||
244 | } |
||
245 | |||
246 | /** |
||
247 | * Retrieves the rootPageIds as an array from a set of sites. |
||
248 | * |
||
249 | * @param array $sites |
||
250 | * @return array |
||
251 | * @todo: move to SiteUtility? |
||
252 | */ |
||
253 | public static function getRootPageIdsFromSites(array $sites): array |
||
254 | { |
||
255 | $rootPageIds = []; |
||
256 | foreach ($sites as $site) { |
||
257 | $rootPageIds[] = (int)$site->getRootPageId(); |
||
258 | } |
||
259 | |||
260 | return $rootPageIds; |
||
261 | } |
||
262 | |||
263 | /** |
||
264 | * @return array |
||
265 | * @throws NoSolrConnectionFoundException |
||
266 | */ |
||
267 | public function getAllSolrConnectionConfigurations(): array { |
||
268 | $configs = []; |
||
269 | foreach ($this->getAvailableLanguageIds() as $languageId) { |
||
270 | try { |
||
271 | $configs[$languageId] = $this->getSolrConnectionConfiguration($languageId); |
||
272 | } catch (NoSolrConnectionFoundException $e) {} |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
|
|||
273 | } |
||
274 | return $configs; |
||
275 | } |
||
276 | |||
277 | /** |
||
278 | * @param int $languageId |
||
279 | * @return array |
||
280 | */ |
||
281 | abstract function getSolrConnectionConfiguration(int $language = 0): array; |
||
282 | } |
||
283 |