105 lines
2.9 KiB
PHP
105 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Exception;
|
|
use GuzzleHttp\Client;
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Response;
|
|
use Illuminate\Session\TokenMismatchException;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
use Throwable;
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class Handler extends ExceptionHandler
|
|
{
|
|
/**
|
|
* A list of the exception types that are not reported.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dontReport = [
|
|
NotFoundHttpException::class,
|
|
ModelNotFoundException::class,
|
|
];
|
|
|
|
/**
|
|
* A list of the inputs that are never flashed for validation exceptions.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dontFlash = [
|
|
'password',
|
|
'password_confirmation',
|
|
];
|
|
|
|
/**
|
|
* Report or log an exception.
|
|
*
|
|
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
|
|
*
|
|
* @param Throwable $throwable
|
|
* @return void
|
|
*
|
|
* @throws Exception
|
|
* @throws Throwable
|
|
*/
|
|
public function report(Throwable $throwable)
|
|
{
|
|
parent::report($throwable);
|
|
|
|
if (config('logging.slack') && $this->shouldReport($throwable)) {
|
|
$guzzle = new Client([
|
|
'headers' => [
|
|
'Content-Type' => 'application/json',
|
|
],
|
|
]);
|
|
|
|
$exceptionName = get_class($throwable) ?? 'Unknown Exception';
|
|
$title = $exceptionName . ': ' . $throwable->getMessage();
|
|
|
|
$guzzle->post(
|
|
config('logging.slack'),
|
|
[
|
|
'body' => json_encode([
|
|
'attachments' => [[
|
|
'fallback' => 'There was an exception.',
|
|
'pretext' => 'There was an exception.',
|
|
'color' => '#d00000',
|
|
'author_name' => app()->environment(),
|
|
'author_link' => config('app.url'),
|
|
'fields' => [[
|
|
'title' => $title,
|
|
'value' => request()->method() . ' ' . request()->fullUrl(),
|
|
]],
|
|
'ts' => time(),
|
|
]],
|
|
]),
|
|
]
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Render an exception into an HTTP response.
|
|
*
|
|
* @param Request $request
|
|
* @param Throwable $throwable
|
|
* @return Response
|
|
*
|
|
* @throws Throwable
|
|
*/
|
|
public function render($request, Throwable $throwable)
|
|
{
|
|
if ($throwable instanceof TokenMismatchException) {
|
|
Route::getRoutes()->match($request);
|
|
}
|
|
|
|
return parent::render($request, $throwable);
|
|
}
|
|
}
|