-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathConfig.php
248 lines (215 loc) · 8.09 KB
/
Config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?php
declare(strict_types=1);
namespace ClawRock\Debug\Helper;
use ClawRock\Debug\Exception\CollectorNotFoundException;
use ClawRock\Debug\Model\Config\Source\ErrorHandler;
use Magento\Framework\App\Area;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\Exception\LocalizedException;
/**
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
*/
class Config
{
public const CONFIG_ENABLED = 'clawrock_debug/general/active';
public const CONFIG_ENABLED_ADMINHTML = 'clawrock_debug/general/active_adminhtml';
public const CONFIG_ALLOWED_IPS = 'clawrock_debug/general/allowed_ips';
public const CONFIG_ERROR_HANDLER = 'clawrock_debug/general/error_handler';
public const CONFIG_TIME_PRECISION = 'clawrock_debug/time/precision';
public const CONFIG_PERFORMANCE_COLOR = 'clawrock_debug/performance/%s_color';
public const CONFIG_COLLECTOR_AJAX = 'clawrock_debug/collector/ajax';
public const CONFIG_COLLECTOR_CACHE = 'clawrock_debug/collector/cache';
public const CONFIG_COLLECTOR_CONFIG = 'clawrock_debug/collector/config';
public const CONFIG_COLLECTOR_CUSTOMER = 'clawrock_debug/collector/customer';
public const CONFIG_COLLECTOR_DATABASE = 'clawrock_debug/collector/database';
public const CONFIG_COLLECTOR_EVENT = 'clawrock_debug/collector/event';
public const CONFIG_COLLECTOR_PLUGIN = 'clawrock_debug/collector/plugin';
public const CONFIG_COLLECTOR_LAYOUT = 'clawrock_debug/collector/layout';
public const CONFIG_COLLECTOR_MEMORY = 'clawrock_debug/collector/memory';
public const CONFIG_COLLECTOR_MODEL = 'clawrock_debug/collector/model';
public const CONFIG_COLLECTOR_TIME = 'clawrock_debug/collector/time';
public const CONFIG_COLLECTOR_TRANSLATION = 'clawrock_debug/collector/translation';
public const COLLECTORS = 'clawrock_debug/profiler/collectors';
private \Magento\Framework\PhraseFactory $phraseFactory;
private \Magento\Framework\App\State $appState;
private \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig;
private \Magento\Framework\App\DeploymentConfig $deploymentConfig;
private \ClawRock\Debug\Model\Storage\HttpStorage $httpStorage;
public function __construct(
\Magento\Framework\PhraseFactory $phraseFactory,
\Magento\Framework\App\State $appState,
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
\Magento\Framework\App\DeploymentConfig $deploymentConfig,
\ClawRock\Debug\Model\Storage\HttpStorage $httpStorage
) {
$this->phraseFactory = $phraseFactory;
$this->appState = $appState;
$this->scopeConfig = $scopeConfig;
$this->deploymentConfig = $deploymentConfig;
$this->httpStorage = $httpStorage;
}
public function getErrorHandler(): string
{
if (!$this->isEnabled()) {
return ErrorHandler::MAGENTO;
}
return $this->scopeConfig->getValue(self::CONFIG_ERROR_HANDLER, ScopeConfigInterface::SCOPE_TYPE_DEFAULT);
}
public function isEnabled(): bool
{
if (!$this->isActive()) {
return false;
}
try {
if ($this->appState->getAreaCode() === Area::AREA_ADMINHTML && !$this->isAdminhtmlActive()) {
return false;
}
} catch (LocalizedException $e) {
return true;
}
return true;
}
public function isActive(): bool
{
return $this->scopeConfig->isSetFlag(self::CONFIG_ENABLED, ScopeConfigInterface::SCOPE_TYPE_DEFAULT);
}
public function isAdminhtmlActive(): bool
{
return $this->scopeConfig->isSetFlag(self::CONFIG_ENABLED_ADMINHTML, ScopeConfigInterface::SCOPE_TYPE_DEFAULT);
}
public function isFrontend(): bool
{
return $this->appState->getAreaCode() === Area::AREA_FRONTEND;
}
public function getAllowedIPs(): array
{
return array_filter(array_map('trim', explode(',', (string) $this->scopeConfig->getValue(
self::CONFIG_ALLOWED_IPS,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
))));
}
/**
* @SuppressWarnings(PHPMD.Superglobals)
* @return bool
*/
public function isAllowedIP(): bool
{
if (empty($this->getAllowedIPs())) {
return true;
}
// phpcs:ignore Magento2.Security.Superglobal.SuperglobalUsageWarning
return in_array($_SERVER['REMOTE_ADDR'], $this->getAllowedIPs());
}
public function getTimePrecision(): int
{
return (int) $this->scopeConfig->getValue(
self::CONFIG_TIME_PRECISION,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function getCollectors(): array
{
return $this->scopeConfig->getValue(self::COLLECTORS, ScopeConfigInterface::SCOPE_TYPE_DEFAULT);
}
public function getCollectorClass(string $name): string
{
if (!isset($this->getCollectors()[$name])) {
throw new CollectorNotFoundException($this->phraseFactory->create([
'text' => 'Collector "%1" not found',
'arguments' => $name,
]));
}
return $this->getCollectors()[$name];
}
public function isAjaxCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_AJAX,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isCacheCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_CACHE,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isConfigCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_CONFIG,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isCustomerCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_CUSTOMER,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isDatabaseCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_DATABASE,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
) && $this->deploymentConfig->get('db/connection/default/profiler/enabled');
}
public function isEventCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_EVENT,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isPluginCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_PLUGIN,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isLayoutCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_LAYOUT,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
) && !$this->httpStorage->isFPCRequest();
}
public function isMemoryCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_MEMORY,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isModelCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_MODEL,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isTimeCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_TIME,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
public function isTranslationCollectorEnabled(): bool
{
return $this->scopeConfig->isSetFlag(
self::CONFIG_COLLECTOR_TRANSLATION,
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
) && !$this->httpStorage->isFPCRequest();
}
public function getPerformanceColor(string $event): string
{
return $this->scopeConfig->getValue(
sprintf(self::CONFIG_PERFORMANCE_COLOR, $event),
ScopeConfigInterface::SCOPE_TYPE_DEFAULT
);
}
}