Passed
Push — master ( bc4523...437b48 )
by Timo
07:38 queued 03:27
created

getIsAllowLegacySiteModeEnabled()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php
2
namespace ApacheSolrForTypo3\Solr\System\Configuration;
3
4
/***************************************************************
5
 *  Copyright notice
6
 *
7
 *  (c) 2017- Timo Schmidt <[email protected]
8
 *  All rights reserved
9
 *
10
 *  This script is part of the TYPO3 project. The TYPO3 project is
11
 *  free software; you can redistribute it and/or modify
12
 *  it under the terms of the GNU General Public License as published by
13
 *  the Free Software Foundation; either version 3 of the License, or
14
 *  (at your option) any later version.
15
 *
16
 *  The GNU General Public License can be found at
17
 *  http://www.gnu.org/copyleft/gpl.html.
18
 *
19
 *  This script is distributed in the hope that it will be useful,
20
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 *  GNU General Public License for more details.
23
 *
24
 *  This copyright notice MUST APPEAR in all copies of the script!
25
 ***************************************************************/
26
27
use TYPO3\CMS\Core\Utility\GeneralUtility;
28
29
/**
30
 * This class encapsulates the access to the extension configuration.
31
 *
32
 * @package ApacheSolrForTypo3\Solr\System\Configuration
33
 * @author Timo Hund <[email protected]>
34
 */
35
class ExtensionConfiguration
36
{
37
    /**
38
     * Extension Configuration
39
     *
40
     * @var array
41
     */
42
    protected $configuration = [];
43
44
    /**
45
     * ExtensionConfiguration constructor.
46
     * @param array $configurationToUse
47
     */
48 217
    public function __construct($configurationToUse = [])
49
    {
50 217
        if (empty($configurationToUse)) {
51 217
            $this->configuration = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['solr']);
52
        } else {
53 6
            $this->configuration = $configurationToUse;
54
        }
55 217
    }
56
57
    /**
58
     * Get configuration for useConfigurationFromClosestTemplate
59
     *
60
     * @return bool
61
     */
62 176
    public function getIsUseConfigurationFromClosestTemplateEnabled()
63
    {
64 176
        return (bool)$this->getConfigurationOrDefaultValue('useConfigurationFromClosestTemplate', false);
65
    }
66
67
    /**
68
     * Get configuration for useConfigurationTrackRecordsOutsideSiteroot
69
     *
70
     * @return bool
71
     */
72 64
    public function getIsUseConfigurationTrackRecordsOutsideSiteroot()
73
    {
74 64
        return (bool)$this->getConfigurationOrDefaultValue('useConfigurationTrackRecordsOutsideSiteroot', true);
75
    }
76
77
    /**
78
     * Get configuration for allowSelfSignedCertificates
79
     *
80
     * @return bool
81
     */
82 1
    public function getIsSelfSignedCertificatesEnabled()
83
    {
84 1
        return (bool)$this->getConfigurationOrDefaultValue('allowSelfSignedCertificates', false);
85
    }
86
87
    /**
88
     * Get configuration for useConfigurationMonitorTables
89
     *
90
     * @return array of tableName
91
     */
92 40
    public function getIsUseConfigurationMonitorTables()
93
    {
94 40
        $monitorTables = [];
95 40
        $monitorTablesList = $this->getConfigurationOrDefaultValue('useConfigurationMonitorTables', '');
96
97 40
        if (empty($monitorTablesList)) {
98 38
            return $monitorTables;
99
        }
100
101 4
        return GeneralUtility::trimExplode(',', $monitorTablesList);
102
    }
103
104
    /**
105
     * Get configuration for allowLegacySiteMode
106
     *
107
     * @return bool
108
     */
109 185
    public function getIsAllowLegacySiteModeEnabled(): bool
110
    {
111 185
        return (bool)$this->getConfigurationOrDefaultValue('allowLegacySiteMode', false);
112
    }
113
114
    /**
115
     * @param string $key
116
     * @param mixed $defaultValue
117
     * @return mixed
118
     */
119
    protected function getConfigurationOrDefaultValue($key, $defaultValue)
120
    {
121
        return isset($this->configuration[$key]) ? $this->configuration[$key] : $defaultValue;
122
    }
123
}
124