-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathHandler.php
More file actions
419 lines (364 loc) · 10.8 KB
/
Copy pathHandler.php
File metadata and controls
419 lines (364 loc) · 10.8 KB
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<?php
namespace Dingo\Api\Exception;
use Closure;
use Dingo\Api\Http\Request;
use Exception;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Support\Str;
use Illuminate\Http\Response;
use Dingo\Api\Contract\Debug\ExceptionHandler;
use Dingo\Api\Contract\Debug\MessageBagErrors;
use Illuminate\Contracts\Debug\ExceptionHandler as IlluminateExceptionHandler;
use Illuminate\Foundation\Exceptions\ReportableHandler;
use Illuminate\Validation\ValidationException;
use ReflectionFunction;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\HttpFoundation\Response as BaseResponse;
use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Throwable;
class Handler implements ExceptionHandler, IlluminateExceptionHandler
{
/**
* Array of exception handlers.
*
* @var array
*/
protected $handlers = [];
/**
* Generic response format.
*
* @var array
*/
protected $format;
/**
* Indicates if we are in debug mode.
*
* @var bool
*/
protected $debug = false;
/**
* User defined replacements to merge with defaults.
*
* @var array
*/
protected $replacements = [];
/**
* The parent Illuminate exception handler instance.
*
* @var IlluminateExceptionHandler
*/
protected $parentHandler;
/**
* Create a new exception handler instance.
*
* @param IlluminateExceptionHandler $parentHandler
* @param array $format
* @param bool $debug
* @return void
*/
public function __construct(IlluminateExceptionHandler $parentHandler, array $format, $debug)
{
$this->parentHandler = $parentHandler;
$this->format = $format;
$this->debug = $debug;
}
/**
* Report or log an exception.
*
* @param Throwable $exception
* @return void
*/
public function report(Throwable $throwable)
{
$this->parentHandler->report($throwable);
}
/**
* Determine if the exception should be reported.
*
* @param Throwable $e
* @return bool
*/
public function shouldReport(Throwable $e)
{
return $this->parentHandler->shouldReport($e);
}
/**
* Render an exception into an HTTP response.
*
* @param Request $request
* @param Throwable $exception
* @return mixed
*
* @throws Exception
*/
public function render($request, Throwable $exception)
{
return $this->handle($exception);
}
/**
* Render an exception to the console.
*
* @param OutputInterface $output
* @param Throwable $exception
* @return mixed
*/
public function renderForConsole($output, Throwable $exception)
{
return $this->parentHandler->renderForConsole($output, $exception);
}
/**
* Register a new exception handler.
*
* @param callable $callback
* @return void
*/
public function register(callable $callback)
{
$hint = $this->handlerHint($callback);
$this->handlers[$hint] = $callback;
}
/**
* Handle an exception if it has an existing handler.
*
* @param Throwable|Exception $exception
* @return Response
*/
public function handle($exception)
{
// Convert Eloquent's 500 ModelNotFoundException into a 404 NotFoundHttpException
if ($exception instanceof ModelNotFoundException) {
$exception = new NotFoundHttpException($exception->getMessage(), $exception);
}
foreach ($this->handlers as $hint => $handler) {
if (! $exception instanceof $hint) {
continue;
}
if ($response = $handler($exception)) {
if (! $response instanceof BaseResponse) {
$response = new Response($response, $this->getExceptionStatusCode($exception));
}
return $response->withException($exception);
}
}
return $this->genericResponse($exception)->withException($exception);
}
/**
* Handle a generic error response if there is no handler available.
*
* @param Throwable $exception
* @return Response
*
* @throws Throwable
*/
protected function genericResponse(Throwable $exception)
{
$replacements = $this->prepareReplacements($exception);
$response = $this->newResponseArray();
array_walk_recursive($response, function (&$value, $key) use ($replacements) {
if (Str::startsWith($value, ':') && isset($replacements[$value])) {
$value = $replacements[$value];
}
});
$response = $this->recursivelyRemoveEmptyReplacements($response);
return new Response($response, $this->getStatusCode($exception), $this->getHeaders($exception));
}
/**
* Get the status code from the exception.
*
* @param Throwable $exception
* @return int
*/
protected function getStatusCode(Throwable $exception)
{
$statusCode = null;
if ($exception instanceof ValidationException) {
$statusCode = $exception->status;
} elseif ($exception instanceof HttpExceptionInterface) {
$statusCode = $exception->getStatusCode();
} else {
// By default throw 500
$statusCode = 500;
}
// Be extra defensive
if ($statusCode < 100 || $statusCode > 599) {
$statusCode = 500;
}
return $statusCode;
}
/**
* Get the headers from the exception.
*
* @param Throwable $exception
* @return array
*/
protected function getHeaders(Throwable $exception)
{
return $exception instanceof HttpExceptionInterface ? $exception->getHeaders() : [];
}
/**
* Prepare the replacements array by gathering the keys and values.
*
* @param Throwable $exception
* @return array
*/
protected function prepareReplacements(Throwable $exception)
{
$statusCode = $this->getStatusCode($exception);
if (! $message = $exception->getMessage()) {
$message = sprintf('%d %s', $statusCode, Response::$statusTexts[$statusCode]);
}
$replacements = [
':message' => $message,
':status_code' => $statusCode,
];
if ($exception instanceof MessageBagErrors && $exception->hasErrors()) {
$replacements[':errors'] = $exception->getErrors();
}
if ($exception instanceof ValidationException) {
$replacements[':errors'] = $exception->errors();
$replacements[':status_code'] = $exception->status;
}
if ($code = $exception->getCode()) {
$replacements[':code'] = $code;
}
if ($this->runningInDebugMode()) {
$replacements[':debug'] = [
'line' => $exception->getLine(),
'file' => $exception->getFile(),
'class' => get_class($exception),
'trace' => explode("\n", $exception->getTraceAsString()),
];
// Attach trace of previous exception, if exists
if (! is_null($exception->getPrevious())) {
$currentTrace = $replacements[':debug']['trace'];
$replacements[':debug']['trace'] = [
'previous' => explode("\n", $exception->getPrevious()->getTraceAsString()),
'current' => $currentTrace,
];
}
}
return array_merge($replacements, $this->replacements);
}
/**
* Set user defined replacements.
*
* @param array $replacements
* @return void
*/
public function setReplacements(array $replacements)
{
$this->replacements = $replacements;
}
/**
* Recursively remove any empty replacement values in the response array.
*
* @param array $input
* @return array
*/
protected function recursivelyRemoveEmptyReplacements(array $input)
{
foreach ($input as &$value) {
if (is_array($value)) {
$value = $this->recursivelyRemoveEmptyReplacements($value);
}
}
return array_filter($input, function ($value) {
if (is_string($value)) {
return ! Str::startsWith($value, ':');
}
return true;
});
}
/**
* Create a new response array with replacement values.
*
* @return array
*/
protected function newResponseArray()
{
return $this->format;
}
/**
* Get the exception status code.
*
* @param Exception $exception
* @param int $defaultStatusCode
* @return int
*/
protected function getExceptionStatusCode(Exception $exception, $defaultStatusCode = 500)
{
return ($exception instanceof HttpExceptionInterface) ? $exception->getStatusCode() : $defaultStatusCode;
}
/**
* Determines if we are running in debug mode.
*
* @return bool
*/
protected function runningInDebugMode()
{
return $this->debug;
}
/**
* Get the hint for an exception handler.
*
* @param callable $callback
* @return string
*/
protected function handlerHint(callable $callback)
{
$reflection = new ReflectionFunction($callback);
$exception = $reflection->getParameters()[0];
$reflectionType = $exception->getType();
if ($reflectionType && ! $reflectionType->isBuiltin()) {
if ($reflectionType instanceof \ReflectionNamedType) {
return $reflectionType->getName();
}
}
return '';
}
/**
* Get the exception handlers.
*
* @return array
*/
public function getHandlers()
{
return $this->handlers;
}
/**
* Set the error format array.
*
* @param array $format
* @return void
*/
public function setErrorFormat(array $format)
{
$this->format = $format;
}
/**
* Set the debug mode.
*
* @param bool $debug
* @return void
*/
public function setDebug($debug)
{
$this->debug = $debug;
}
/**
* Register a reportable callback.
*
* @param callable $reportUsing
* @return \Illuminate\Foundation\Exceptions\ReportableHandler
*/
public function reportable(callable $reportUsing)
{
if (! $reportUsing instanceof Closure) {
$reportUsing = Closure::fromCallable($reportUsing);
}
return tap(new ReportableHandler($reportUsing), function ($callback) {
$this->reportCallbacks[] = $callback;
});
}
}