Passed
Push — master ( 180e9a...0faa30 )
by Timo
57:55 queued 24:56
created

getIsUseConfigurationFromClosestTemplateEnabled()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 1
cts 1
cp 1
rs 10
cc 1
eloc 2
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 2 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 115
     * @param array $configurationToUse
47
     */
48 115
    public function __construct($configurationToUse = [])
49 115
    {
50 115
        if (empty($configurationToUse)) {
51 2
            $this->configuration =  unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['solr']);
52
        } else {
53 115
            $this->configuration = $configurationToUse;
54
        }
55
    }
56
57
    /**
58
     * Get configuration for useConfigurationFromClosestTemplate
59
     *
60 63
     * @return bool
61
     */
62 63
    public function getIsUseConfigurationFromClosestTemplateEnabled()
63
    {
64
        return (bool)$this->getConfigurationOrDefaultValue('useConfigurationFromClosestTemplate', false);
65
    }
66
67
    /**
68
     * Get configuration for useConfigurationTrackRecordsOutsideSiteroot
69
     *
70 49
     * @return bool
71
     */
72 49
    public function getIsUseConfigurationTrackRecordsOutsideSiteroot()
73
    {
74
        return (bool)$this->getConfigurationOrDefaultValue('useConfigurationTrackRecordsOutsideSiteroot', true);
75
    }
76
77
    /**
78
     * Get configuration for useConfigurationMonitorTables
79
     *
80 66
     * @return array of tableName => true
81
     */
82 66
    public function getIsUseConfigurationMonitorTables()
83
    {
84
        $monitorTables = [];
85
        $monitorTablesList = $this->getConfigurationOrDefaultValue('useConfigurationMonitorTables', '');
86
87
        if (empty($monitorTablesList)) {
88
            return $monitorTables;
89
        }
90
91
        $monitorTablesTemp = GeneralUtility::trimExplode(',', $monitorTablesList);
92
        foreach ($monitorTablesTemp as $value) {
93
            $monitorTables[$value] = true;
94
        }
95
96
        return $monitorTables;
97
    }
98
99
    /**
100
     * @param string $key
101
     * @param mixed $defaultValue
102
     * @return mixed
103
     */
104
    protected function getConfigurationOrDefaultValue($key, $defaultValue)
105
    {
106
        return isset($this->configuration[$key]) ? $this->configuration[$key] : $defaultValue;
107
    }
108
}
109