-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathExceptionHandler.php
309 lines (288 loc) · 9.6 KB
/
ExceptionHandler.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<?php
/**
* Copyright 2024 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);
namespace Magento\Framework\App;
use Magento\Framework\App\Response\Http as ResponseHttp;
use Magento\Framework\App\Request\Http as RequestHttp;
use Magento\Framework\Encryption\EncryptorInterface;
use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Debug;
use Magento\Framework\Filesystem;
use Psr\Log\LoggerInterface;
use Magento\Framework\Exception\SessionException;
use Magento\Framework\Exception\State\InitException;
/**
* Handler of HTTP web application exception
*/
class ExceptionHandler implements ExceptionHandlerInterface
{
/**
* @var Filesystem
*/
private $filesystem;
/**
* @var LoggerInterface
*/
private $logger;
/**
* @var EncryptorInterface
*/
private $encryptor;
/**
* @param EncryptorInterface $encryptor
* @param Filesystem $filesystem
* @param LoggerInterface $logger
*/
public function __construct(
EncryptorInterface $encryptor,
Filesystem $filesystem,
LoggerInterface $logger
) {
$this->encryptor = $encryptor;
$this->filesystem = $filesystem;
$this->logger = $logger;
}
/**
* Handles exception of HTTP web application
*
* @param Bootstrap $bootstrap
* @param \Exception $exception
* @param ResponseHttp $response
* @param RequestHttp $request
* @return bool
*/
public function handle(
Bootstrap $bootstrap,
\Exception $exception,
ResponseHttp $response,
RequestHttp $request
): bool {
$result = $this->handleDeveloperMode($bootstrap, $exception, $response)
|| $this->handleBootstrapErrors($bootstrap, $exception, $response)
|| $this->handleSessionException($exception, $response, $request)
|| $this->handleInitException($exception)
|| $this->handleGenericReport($bootstrap, $exception);
return $result;
}
/**
* Error handler for developer mode
*
* @param Bootstrap $bootstrap
* @param \Exception $exception
* @param ResponseHttp $response
* @return bool
*/
private function handleDeveloperMode(
Bootstrap $bootstrap,
\Exception $exception,
ResponseHttp $response
): bool {
if ($bootstrap->isDeveloperMode()) {
if (Bootstrap::ERR_IS_INSTALLED == $bootstrap->getErrorCode()) {
try {
$this->redirectToSetup($bootstrap, $exception, $response);
return true;
} catch (\Exception $e) {
$exception = $e;
}
}
$response->clearHeader('Location');
$response->setHttpResponseCode(500);
$response->setHeader('Content-Type', 'text/plain');
$response->setBody($this->buildContentFromException($exception));
$response->sendResponse();
return true;
}
return false;
}
/**
* Retrieves the location of an exception as a formatted string.
*
* This method extracts the file path and line number from the given exception
* and formats them into a string representing the exception's location.
* The format of the returned string is determined by the `normalizeCodeLocation` method.
*
* Example Output:
* "app/code/Vendor/Module/SomeClass.php:123"
*
* @param \Exception $exception The exception object from which to extract the file and line information.
* @return string A formatted string representing the exception's file path and line number.
*/
private function getExceptionLocation(\Exception $exception): string
{
return Debug::normalizeCodeLocation([
'file' => $exception->getFile(),
'line' => $exception->getLine()
]);
}
/**
* Build content based on an exception
*
* @param \Exception $exception
* @return string
*/
private function buildContentFromException(\Exception $exception): string
{
/** @var \Exception[] $exceptions */
$exceptions = [];
do {
$exceptions[] = $exception;
} while ($exception = $exception->getPrevious());
$buffer = sprintf("%d exception(s):\n", count($exceptions));
foreach ($exceptions as $index => $exception) {
$buffer .= sprintf(
"Exception #%d (%s): \"%s\" thrown at [%s]\n",
$index,
get_class($exception),
$exception->getMessage(),
$this->getExceptionLocation($exception)
);
}
foreach ($exceptions as $index => $exception) {
$buffer .= sprintf(
"\nException #%d (%s): \"%s\" thrown at [%s]\n%s\n",
$index,
get_class($exception),
$exception->getMessage(),
$this->getExceptionLocation($exception),
Debug::trace(
$exception->getTrace(),
true,
true,
(bool)getenv('MAGE_DEBUG_SHOW_ARGS')
)
);
}
return $buffer;
}
/**
* Handler for bootstrap errors
*
* @param Bootstrap $bootstrap
* @param \Exception $exception
* @param ResponseHttp $response
* @return bool
*/
private function handleBootstrapErrors(
Bootstrap $bootstrap,
\Exception &$exception,
ResponseHttp $response
): bool {
$bootstrapCode = $bootstrap->getErrorCode();
if (Bootstrap::ERR_MAINTENANCE == $bootstrapCode) {
// phpcs:ignore Magento2.Security.IncludeFile
require $this->filesystem
->getDirectoryRead(DirectoryList::PUB)
->getAbsolutePath('errors/503.php');
return true;
}
if (Bootstrap::ERR_IS_INSTALLED == $bootstrapCode) {
try {
$this->redirectToSetup($bootstrap, $exception, $response);
return true;
} catch (\Exception $e) {
$exception = $e;
}
}
return false;
}
/**
* Handler for session errors
*
* @param \Exception $exception
* @param ResponseHttp $response
* @param RequestHttp $request
* @return bool
*/
private function handleSessionException(
\Exception $exception,
ResponseHttp $response,
RequestHttp $request
): bool {
if ($exception instanceof SessionException) {
$response->setRedirect($request->getDistroBaseUrl());
$response->sendHeaders();
return true;
}
return false;
}
/**
* Handler for application initialization errors
*
* @param \Exception $exception
* @return bool
*/
private function handleInitException(\Exception $exception): bool
{
if ($exception instanceof InitException) {
$this->logger->critical($exception);
// phpcs:ignore Magento2.Security.IncludeFile
require $this->filesystem
->getDirectoryRead(DirectoryList::PUB)
->getAbsolutePath('errors/404.php');
return true;
}
return false;
}
/**
* Handle for any other errors
*
* @param Bootstrap $bootstrap
* @param \Exception $exception
* @return bool
*/
private function handleGenericReport(Bootstrap $bootstrap, \Exception $exception): bool
{
$reportData = [
$exception->getMessage(),
Debug::trace(
$exception->getTrace(),
true,
false,
(bool)getenv('MAGE_DEBUG_SHOW_ARGS')
)
];
$params = $bootstrap->getParams();
if (isset($params['REQUEST_URI'])) {
$reportData['url'] = $params['REQUEST_URI'];
}
if (isset($params['SCRIPT_NAME'])) {
$reportData['script_name'] = $params['SCRIPT_NAME'];
}
$reportData['report_id'] = $this->encryptor->getHash(implode('', $reportData));
$this->logger->critical($exception, ['report_id' => $reportData['report_id']]);
// phpcs:ignore Magento2.Security.IncludeFile
require $this->filesystem
->getDirectoryRead(DirectoryList::PUB)
->getAbsolutePath('errors/report.php');
return true;
}
/**
* If not installed, try to redirect to installation wizard
*
* @param Bootstrap $bootstrap
* @param \Exception $exception
* @param ResponseHttp $response
* @return void
* @throws \Exception
*/
private function redirectToSetup(Bootstrap $bootstrap, \Exception $exception, ResponseHttp $response)
{
$setupInfo = new SetupInfo($bootstrap->getParams());
$projectRoot = $this->filesystem->getDirectoryRead(DirectoryList::ROOT)->getAbsolutePath();
if ($setupInfo->isAvailable()) {
$response->setRedirect($setupInfo->getUrl());
$response->sendHeaders();
} else {
$newMessage = $exception->getMessage() . "\nNOTE: You cannot install Magento using the Setup Wizard "
. "because the Magento setup directory cannot be accessed. \n"
. 'You can install Magento using either the command line or you must restore access '
. 'to the following directory: ' . $setupInfo->getDir($projectRoot) . "\n";
// phpcs:ignore Magento2.Exceptions.DirectThrow
throw new \Exception($newMessage, 0, $exception);
}
}
}