firefly-iii/app/Exceptions/Handler.php

100 lines
2.8 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-11 01:11:26 -06:00
use ErrorException;
2015-02-05 21:39:52 -06:00
use Exception;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2016-02-10 08:18:13 -06:00
use Illuminate\Mail\Message;
use Log;
use Mail;
use Swift_TransportException;
use Symfony\Component\HttpKernel\Exception\HttpException;
2016-02-11 05:54:16 -06:00
use Auth;
2015-02-05 21:39:52 -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 01:11:26 -06:00
if ($exception instanceof FireflyException || $exception instanceof ErrorException) {
2016-02-05 22:01:34 -06:00
2016-02-10 08:18:13 -06:00
// log
Log::error($exception->getMessage());
// mail?
try {
$email = env('SITE_OWNER');
$args = [
'errorMessage' => $exception->getMessage(),
'stacktrace' => $exception->getTraceAsString(),
'file' => $exception->getFile(),
'line' => $exception->getLine(),
'code' => $exception->getCode(),
2016-02-11 05:54:16 -06:00
'loggedIn' => Auth::check(),
'user' => Auth::user(),
2016-02-10 08:18:13 -06:00
];
Mail::send(
['emails.error-html', 'emails.error'], $args,
function (Message $message) use ($email) {
if ($email != 'mail@example.com') {
$message->to($email, $email)->subject('Caught an error in Firely III.');
}
}
);
} catch (Swift_TransportException $e) {
// could also not mail! :o
Log::error($e->getMessage());
}
2016-02-11 01:11:26 -06:00
$isDebug = env('APP_DEBUG', false);
2016-02-10 08:18:13 -06:00
2016-02-11 01:11:26 -06:00
return response()->view('errors.FireflyException', ['exception' => $exception, 'debug' => $isDebug], 500);
2016-02-05 22:01:34 -06:00
}
return parent::render($request, $exception);
2015-02-11 00:35:10 -06:00
}
2015-02-05 21:39:52 -06:00
2016-02-05 22:01:34 -06:00
2015-02-11 00:35:10 -06:00
/**
* Report or log an exception.
2015-02-11 00:35:10 -06:00
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
* @param Exception $exception
*
* @return void
2015-02-11 00:35:10 -06:00
*/
public function report(Exception $exception)
2015-02-11 00:35:10 -06:00
{
parent::report($exception);
2015-02-11 00:35:10 -06:00
}
2015-02-05 21:39:52 -06:00
}