mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
Better error handling for issue #168
This commit is contained in:
parent
71253b23d5
commit
4d6e244100
@ -6,6 +6,10 @@ use Exception;
|
|||||||
use Illuminate\Auth\Access\AuthorizationException;
|
use Illuminate\Auth\Access\AuthorizationException;
|
||||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||||
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
||||||
|
use Illuminate\Mail\Message;
|
||||||
|
use Log;
|
||||||
|
use Mail;
|
||||||
|
use Swift_TransportException;
|
||||||
use Symfony\Component\HttpKernel\Exception\HttpException;
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -39,6 +43,34 @@ class Handler extends ExceptionHandler
|
|||||||
{
|
{
|
||||||
if ($exception instanceof FireflyException) {
|
if ($exception instanceof FireflyException) {
|
||||||
|
|
||||||
|
// 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(),
|
||||||
|
];
|
||||||
|
|
||||||
|
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());
|
||||||
|
}
|
||||||
|
|
||||||
return response()->view('errors.FireflyException', ['exception' => $exception], 500);
|
return response()->view('errors.FireflyException', ['exception' => $exception], 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
31
resources/views/emails/error-html.twig
Normal file
31
resources/views/emails/error-html.twig
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||||
|
Firefly III ran into an error: <span style="font-family: monospace;">{{ errorMessage }}</span>.
|
||||||
|
</p>
|
||||||
|
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||||
|
This error occured in file <span style="font-family: monospace;">{{ file }}</span> on line {{ line }} with code {{ code }}.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||||
|
The full stacktrace is below. If you think this is a bug in Firefly III, you
|
||||||
|
can forward this message to
|
||||||
|
<a href="mailto:thegrumpydictator@gmail.com?subject=BUG!">thegrumpydictator@gmail.com</a>.
|
||||||
|
This can help fix the bug you just encountered.
|
||||||
|
</p>
|
||||||
|
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||||
|
If you prefer, you can also open a new issue on <a href="https://github.com/JC5/firefly-iii/issues/new">Github</a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||||
|
The full stacktrace is below:</p>
|
||||||
|
<p style="font-family: monospace;font-size:11px;color:#aaa">
|
||||||
|
{{ stacktrace|nl2br }}
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
15
resources/views/emails/error.twig
Normal file
15
resources/views/emails/error.twig
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
Firefly III ran into an error: {{ errorMessage }}.
|
||||||
|
|
||||||
|
This error occured in file "{{ file }}" on line {{ line }} with code {{ code }}.
|
||||||
|
|
||||||
|
The full stacktrace is below. If you think this is a bug in Firefly III, you
|
||||||
|
can forward this message to thegrumpydictator@gmail.com. This can help fix
|
||||||
|
the bug you just encountered.
|
||||||
|
|
||||||
|
If you prefer, you can also open a new issue here:
|
||||||
|
|
||||||
|
https://github.com/JC5/firefly-iii/issues/new
|
||||||
|
|
||||||
|
The full stacktrace is below:
|
||||||
|
|
||||||
|
{{ stacktrace }}
|
Loading…
Reference in New Issue
Block a user