firefly-iii/app/Exceptions/Handler.php

90 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
namespace FireflyIII\Exceptions;
2015-02-05 21:39:52 -06:00
2016-02-12 07:15:49 -06:00
use Auth;
2016-02-11 01:11:26 -06:00
use ErrorException;
2015-02-05 21:39:52 -06:00
use Exception;
use FireflyIII\Jobs\MailError;
use FireflyIII\User;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2016-02-11 07:20:18 -06:00
use Request;
use Symfony\Component\HttpKernel\Exception\HttpException;
2016-02-12 07:15:49 -06:00
/**
* Class Handler
*
* @package FireflyIII\Exceptions
*/
2015-02-11 00:35:10 -06:00
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*
* @var array
*/
protected $dontReport
= [
AuthorizationException::class,
HttpException::class,
ModelNotFoundException::class,
];
2015-02-05 21:39:52 -06:00
2015-02-11 00:35:10 -06:00
/**
* Render an exception into an HTTP response.
2015-02-11 00:35:10 -06:00
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
*
* @return \Illuminate\Http\Response
2015-02-11 00:35:10 -06:00
*/
public function render($request, Exception $exception)
2015-02-11 00:35:10 -06:00
{
2016-02-11 07:17:11 -06:00
if ($exception instanceof FireflyException || $exception instanceof ErrorException) {
$isDebug = env('APP_DEBUG', false);
return response()->view('errors.FireflyException', ['exception' => $exception, 'debug' => $isDebug], 500);
}
return parent::render($request, $exception);
}
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
* @param Exception $exception
*
* @return void
*/
public function report(Exception $exception)
{
2016-02-11 01:11:26 -06:00
if ($exception instanceof FireflyException || $exception instanceof ErrorException) {
2016-02-05 22:01:34 -06:00
$user = Auth::check() ? Auth::user() : new User;
2016-02-11 07:13:23 -06:00
$data = [
'class' => get_class($exception),
'errorMessage' => $exception->getMessage(),
2016-02-24 13:42:05 -06:00
'time' => date('r'),
'stackTrace' => $exception->getTraceAsString(),
'file' => $exception->getFile(),
'line' => $exception->getLine(),
'code' => $exception->getCode(),
];
2016-02-10 08:18:13 -06:00
// create job that will mail.
$job = new MailError($user, env('SITE_OWNER'), Request::ip(), $data);
dispatch($job);
2016-02-05 22:01:34 -06:00
}
parent::report($exception);
2015-02-11 00:35:10 -06:00
}
2015-02-05 21:39:52 -06:00
}