1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* This file is part of laravel.su package. |
5
|
|
|
* For the full copyright and license information, please view the LICENSE |
6
|
|
|
* file that was distributed with this source code. |
7
|
|
|
*/ |
8
|
|
|
declare(strict_types=1); |
9
|
|
|
|
10
|
|
|
namespace App\Exceptions; |
11
|
|
|
|
12
|
|
|
use Whoops\Run; |
13
|
|
|
use Illuminate\Http\Response; |
14
|
|
|
use Illuminate\Http\JsonResponse; |
15
|
|
|
use Illuminate\Http\RedirectResponse; |
16
|
|
|
use Whoops\Handler\PrettyPageHandler; |
17
|
|
|
use Illuminate\Auth\AuthenticationException; |
18
|
|
|
use Symfony\Component\HttpKernel\Exception\HttpException; |
19
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Class Handler. |
23
|
|
|
* Класс обработки всех исключений в нашем приложении. |
24
|
|
|
* Тут мы их будем обрабатывать и отображать ошибки, в случае проблем. |
25
|
|
|
*/ |
26
|
|
|
class Handler extends ExceptionHandler |
27
|
|
|
{ |
28
|
|
|
/** |
29
|
|
|
* Список исключений, которые являются частью нормальной работы приложения |
30
|
|
|
* и которые не надо как-то обрабатывать. Например, "ошибка 404" и прочие. |
31
|
|
|
* @var array |
32
|
|
|
*/ |
33
|
|
|
protected $dontReport = [ |
34
|
|
|
\Illuminate\Auth\AuthenticationException::class, |
35
|
|
|
\Illuminate\Auth\Access\AuthorizationException::class, |
36
|
|
|
\Symfony\Component\HttpKernel\Exception\HttpException::class, |
37
|
|
|
\Illuminate\Database\Eloquent\ModelNotFoundException::class, |
38
|
|
|
\Illuminate\Session\TokenMismatchException::class, |
39
|
|
|
\Illuminate\Validation\ValidationException::class, |
40
|
|
|
]; |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* Метод, куда прилетают все наши исключения для обработки. |
44
|
|
|
* Отличное место для отправки оных в Sentry, Bugsnag, и проч. |
45
|
|
|
* @param \Exception $exception |
46
|
|
|
* @throws \Exception |
47
|
|
|
*/ |
48
|
|
|
public function report(\Exception $exception): void |
49
|
|
|
{ |
50
|
|
|
if ($this->shouldReport($exception) && app('app')->bound('sentry')) { |
51
|
|
|
app('sentry')->captureException($exception); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
parent::report($exception); |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* Отображение наших необработанных ошибок. |
59
|
|
|
* @param \Illuminate\Http\Request $request |
60
|
|
|
* @param \Exception $exception |
61
|
|
|
* @return string|\Symfony\Component\HttpFoundation\Response |
62
|
|
|
* @throws \Throwable |
63
|
|
|
* @throws \InvalidArgumentException |
64
|
|
|
*/ |
65
|
|
|
public function render($request, \Exception $exception) |
66
|
|
|
{ |
67
|
|
|
$exception = $this->prepareException($exception); |
68
|
|
|
|
69
|
|
|
$htmlAccepted = ! $request->ajax() && $request->acceptsHtml(); |
70
|
|
|
|
71
|
|
|
if ($htmlAccepted && config('app.debug')) { |
72
|
|
|
$whoops = new Run(); |
73
|
|
|
$whoops->pushHandler(new PrettyPageHandler()); |
|
|
|
|
74
|
|
|
|
75
|
|
|
return $whoops->handleException($exception); |
|
|
|
|
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
if (! $this->isHttpException($exception)) { |
79
|
|
|
$exception = new HttpException(500, $exception->getMessage(), $exception); |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
if ($request->ajax() || $request->acceptsJson()) { |
83
|
|
|
return new JsonResponse($this->getError($exception), $exception->getStatusCode()); |
|
|
|
|
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
return response($this->getErrorView($exception)->render(), $exception->getStatusCode()); |
|
|
|
|
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
/** |
90
|
|
|
* @param HttpException $exception |
91
|
|
|
* @return array |
92
|
|
|
*/ |
93
|
|
|
private function getError(HttpException $exception): array |
94
|
|
|
{ |
95
|
|
|
if (config('app.debug')) { |
96
|
|
|
return $this->getDebugError($exception); |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
return [ |
100
|
|
|
'message' => Response::$statusTexts[$exception->getStatusCode()], |
101
|
|
|
'code' => $exception->getStatusCode(), |
102
|
|
|
]; |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
/** |
106
|
|
|
* @param HttpException $exception |
107
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
108
|
|
|
*/ |
109
|
|
|
private function getErrorView(HttpException $exception) |
110
|
|
|
{ |
111
|
|
|
return view('layout.error', array_merge($this->getError($exception), [ |
112
|
|
|
'error' => $exception, |
113
|
|
|
])); |
114
|
|
|
} |
115
|
|
|
|
116
|
|
|
/** |
117
|
|
|
* Преобразовываем ошибки аутентификации в разлогинивающий ответ. |
118
|
|
|
* @param \Illuminate\Http\Request $request |
119
|
|
|
* @param \Illuminate\Auth\AuthenticationException $exception |
120
|
|
|
* @return Response|RedirectResponse |
121
|
|
|
*/ |
122
|
|
|
protected function unauthenticated($request, AuthenticationException $exception) |
123
|
|
|
{ |
124
|
|
|
if ($request->expectsJson()) { |
125
|
|
|
return response()->json(['error' => 'Unauthenticated.'], 401); |
|
|
|
|
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
return redirect()->guest('login') |
129
|
|
|
->withException($exception); |
130
|
|
|
} |
131
|
|
|
|
132
|
|
|
/** |
133
|
|
|
* @param HttpException $exception |
134
|
|
|
* @return array |
135
|
|
|
*/ |
136
|
|
|
private function getDebugError(HttpException $exception): array |
137
|
|
|
{ |
138
|
|
|
$trace = $exception->getPrevious() |
139
|
|
|
? $exception->getPrevious()->getTraceAsString() |
140
|
|
|
: $exception->getTraceAsString(); |
141
|
|
|
|
142
|
|
|
return [ |
143
|
|
|
'message' => $exception->getMessage(), |
144
|
|
|
'code' => $exception->getStatusCode(), |
145
|
|
|
'trace' => explode("\n", $trace), |
146
|
|
|
]; |
147
|
|
|
} |
148
|
|
|
} |
149
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: