Passed
Push — master ( c5f5aa...4151a2 )
by Rafael
101:21 queued 57:25
created

Site::getPagesWithinNoSearchSubEntriesPages()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 16
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 10
c 0
b 0
f 0
dl 0
loc 16
ccs 2
cts 2
cp 1
rs 9.9332
cc 2
nc 2
nop 2
crap 2
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 180
    public static function isRootPage($page)
84
    {
85 180
        if ($page['is_siteroot']) {
86 179
            return true;
87
        }
88
89 94
        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 82
    public function getRootPageId()
98
    {
99 82
        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 85
    public function getAvailableLanguageIds(): array {
108 85
        return $this->availableLanguageIds;
109
    }
110
111
    /**
112
     * Gets the site's label. The label is build from the the site title and root
113
     * page ID (uid).
114
     *
115
     * @return string The site's label.
116
     */
117 3
    public function getLabel()
118
    {
119 3
        $rootlineTitles = [];
120 3
        $rootLine = BackendUtility::BEgetRootLine($this->rootPage['uid']);
121
        // Remove last
122 3
        array_pop($rootLine);
123 3
        $rootLine = array_reverse($rootLine);
124 3
        foreach ($rootLine as $rootLineItem) {
125 3
            $rootlineTitles[] = $rootLineItem['title'];
126
        }
127 3
        return implode(' - ', $rootlineTitles) . ', Root Page ID: ' . $this->rootPage['uid'];
128
    }
129
130
    /**
131
     * Gets the site's Solr TypoScript configuration (plugin.tx_solr.*)
132
     *
133
     * @return  \ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration The Solr TypoScript configuration
134
     */
135 64
    public function getSolrConfiguration()
136
    {
137 64
        return $this->configuration;
138
    }
139
140
    /**
141
     * Gets the site's default language as configured in
142
     * config.sys_language_uid. If sys_language_uid is not set, 0 is assumed to
143
     * be the default.
144
     *
145
     * @return int The site's default language.
146
     */
147 1
    public function getDefaultLanguage()
148
    {
149 1
        return $this->defaultLanguageId;
150
    }
151
152
    /**
153
     * Generates a list of page IDs in this site. Attention, this includes
154
     * all page types! Deleted pages are not included.
155
     *
156
     * @param int|string $rootPageId Page ID from where to start collection sub pages
157
     * @param int $maxDepth Maximum depth to descend into the site tree
158
     * @return array Array of pages (IDs) in this site
159
     */
160 12
    public function getPages($rootPageId = 'SITE_ROOT', $maxDepth = 999)
161
    {
162 12
        $pageIds = [];
163 12
        if ($rootPageId === 'SITE_ROOT') {
164 12
            $rootPageId = (int)$this->rootPage['uid'];
165 12
            $pageIds[] = $rootPageId;
166
        }
167
168 12
        $configurationAwareRecordService = GeneralUtility::makeInstance(ConfigurationAwareRecordService::class);
169
        // Fetch configuration in order to be able to read initialPagesAdditionalWhereClause
170 12
        $solrConfiguration = $this->getSolrConfiguration();
171 12
        $indexQueueConfigurationName = $configurationAwareRecordService->getIndexingConfigurationName('pages', $this->rootPage['uid'], $solrConfiguration);
172 12
        if ($indexQueueConfigurationName === null) {
173
            return $pageIds;
174
        }
175 12
        $initialPagesAdditionalWhereClause = $solrConfiguration->getInitialPagesAdditionalWhereClause($indexQueueConfigurationName);
176 12
        return array_merge($pageIds, $this->pagesRepository->findAllSubPageIdsByRootPage($rootPageId, $maxDepth, $initialPagesAdditionalWhereClause));
0 ignored issues
show
Bug introduced by
It seems like $rootPageId can also be of type string; however, parameter $rootPageId of ApacheSolrForTypo3\Solr\...lSubPageIdsByRootPage() does only seem to accept integer, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

176
        return array_merge($pageIds, $this->pagesRepository->findAllSubPageIdsByRootPage(/** @scrutinizer ignore-type */ $rootPageId, $maxDepth, $initialPagesAdditionalWhereClause));
Loading history...
177
    }
178
179
    /**
180
     * @param string $rootPageId
181
     * @param int $maxDepth
182
     * @return array
183
     */
184
    public function getPagesWithinNoSearchSubEntriesPages($rootPageId = 'SITE_ROOT', $maxDepth = 999): array
185
    {
186
        if ($rootPageId === 'SITE_ROOT') {
187
            $rootPageId = (int)$this->rootPage['uid'];
188
        }
189 94
190
        $configurationAwareRecordService = GeneralUtility::makeInstance(ConfigurationAwareRecordService::class);
191 94
        // Fetch configuration in order to be able to read initialPagesAdditionalWhereClause
192
        $solrConfiguration = $this->getSolrConfiguration();
193
        $indexQueueConfigurationName = $configurationAwareRecordService->getIndexingConfigurationName('pages', $this->rootPage['uid'], $solrConfiguration);
194
        $initialPagesAdditionalWhereClause = $solrConfiguration->getInitialPagesAdditionalWhereClause($indexQueueConfigurationName);
195
196
        return $this->pagesRepository->findAllPagesWithinNoSearchSubEntriesMarkedPagesByRootPage(
197
            $rootPageId,
0 ignored issues
show
Bug introduced by
It seems like $rootPageId can also be of type string; however, parameter $rootPageId of ApacheSolrForTypo3\Solr\...MarkedPagesByRootPage() does only seem to accept integer, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

197
            /** @scrutinizer ignore-type */ $rootPageId,
Loading history...
198
            $maxDepth,
199
            $initialPagesAdditionalWhereClause
200 93
        );
201
    }
202 93
203
    /**
204
     * Generates the site's unique Site Hash.
205
     *
206
     * The Site Hash is build from the site's main domain, the system encryption
207
     * key, and the extension "tx_solr". These components are concatenated and
208
     * sha1-hashed.
209
     *
210 21
     * @return string Site Hash.
211
     */
212 21
    public function getSiteHash()
213
    {
214
        return $this->siteHash;
215
    }
216
217
    /**
218
     * Gets the site's main domain. More specifically the first domain record in
219
     * the site tree.
220
     *
221
     * @return string The site's main domain.
222
     */
223
    public function getDomain()
224
    {
225
        return $this->domain;
226
    }
227
228
    /**
229
     * Gets the site's root page.
230
     *
231
     * @return array The site's root page.
232 44
     */
233
    public function getRootPage()
234 44
    {
235 44
        return $this->rootPage;
236 7
    }
237
238
    /**
239 44
     * Gets the site's root page's title.
240
     *
241
     * @return string The site's root page's title
242
     */
243
    public function getTitle()
244
    {
245
        return $this->rootPage['title'];
246 84
    }
247 84
248 84
    /**
249
     * Retrieves the rootPageIds as an array from a set of sites.
250 84
     *
251 1
     * @param array $sites
252
     * @return array
253 84
     * @todo: move to SiteUtility?
254
     */
255
    public static function getRootPageIdsFromSites(array $sites): array
256 76
    {
257
        $rootPageIds = [];
258 76
        foreach ($sites as $site) {
259
            $rootPageIds[] = (int)$site->getRootPageId();
260
        }
261
262
        return $rootPageIds;
263
    }
264
265
    /**
266
     * @return array
267
     * @throws NoSolrConnectionFoundException
268
     */
269
    public function getAllSolrConnectionConfigurations(): array {
270
        $configs = [];
271
        foreach ($this->getAvailableLanguageIds() as $languageId) {
272
            try {
273
                $configs[$languageId] = $this->getSolrConnectionConfiguration($languageId);
274
            } catch (NoSolrConnectionFoundException $e) {}
0 ignored issues
show
Coding Style Comprehensibility introduced by
Consider adding a comment why this CATCH block is empty.
Loading history...
275
        }
276
        return $configs;
277
    }
278
279
    public function isEnabled(): bool
280
    {
281
        return !empty($this->getAllSolrConnectionConfigurations());
282
    }
283
284
    /**
285
     * @param int $languageId
286
     * @return array
287
     */
288
    abstract function getSolrConnectionConfiguration(int $language = 0): array;
289
}
290