Use a job to send the error email instead of inline. #196

This commit is contained in:
James Cole 2016-02-24 20:13:55 +01:00
parent ecefcfabc0
commit 91eb052c22
4 changed files with 109 additions and 32 deletions

View File

@ -5,14 +5,12 @@ namespace FireflyIII\Exceptions;
use Auth;
use ErrorException;
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;
use Illuminate\Mail\Message;
use Log;
use Mail;
use Request;
use Swift_TransportException;
use Symfony\Component\HttpKernel\Exception\HttpException;
/**
@ -69,34 +67,20 @@ class Handler extends ExceptionHandler
if ($exception instanceof FireflyException || $exception instanceof ErrorException) {
// mail?
try {
$email = env('SITE_OWNER');
$user = Auth::user();
$args = [
'errorMessage' => $exception->getMessage(),
'stacktrace' => $exception->getTraceAsString(),
'file' => $exception->getFile(),
'line' => $exception->getLine(),
'code' => $exception->getCode(),
'loggedIn' => !is_null($user),
'user' => $user,
'ip' => Request::ip(),
$user = Auth::check() ? Auth::user() : new User;
];
$data = [
'class' => get_class($exception),
'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());
}
// create job that will mail.
$job = new MailError($user, env('SITE_OWNER'), Request::ip(), $data);
dispatch($job);
}
parent::report($exception);

93
app/Jobs/MailError.php Normal file
View File

@ -0,0 +1,93 @@
<?php
namespace FireflyIII\Jobs;
use ErrorException;
use FireflyIII\User;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Message;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Log;
use Mail;
use Swift_TransportException;
/**
* Class MailError
*
* @package FireflyIII\Jobs
*/
class MailError extends Job implements ShouldQueue
{
use InteractsWithQueue, SerializesModels;
/** @var string */
protected $destination;
/** @var array */
protected $exception;
/** @var string */
protected $ip;
/** @var User */
protected $user;
/**
* MailError constructor.
*
* @param User $user
* @param string $destination
* @param string $ip
* @param array $exception
*/
public function __construct(User $user, string $destination, string $ip, array $exceptionData)
{
$this->user = $user;
$this->destination = $destination;
$this->ip = $ip;
$this->exception = $exceptionData;
Log::debug('In mail job constructor');
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
Log::debug('Start of handle()');
if ($this->attempts() < 3) {
// mail?
try {
$email = env('SITE_OWNER');
$args = [
'class' => $this->exception['class'],
'errorMessage' => $this->exception['errorMessage'],
'stacktrace' => $this->exception['stackTrace'],
'file' => $this->exception['file'],
'line' => $this->exception['line'],
'code' => $this->exception['code'],
'loggedIn' => !is_null($this->user->id),
'user' => $this->user,
'ip' => $this->ip,
];
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('Swift Transport Exception' . $e->getMessage());
} catch (ErrorException $e) {
Log::error('ErrorException ' . $e->getMessage());
}
Log::debug('Successfully handled error.');
}
}
}

View File

@ -6,7 +6,7 @@
</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>.
Firefly III ran into an error: <span style="font-family: monospace;">{{ errorMessage }}</span> of class (type) "{{ class }}".
</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 }}.

View File

@ -1,4 +1,4 @@
Firefly III ran into an error: {{ errorMessage }}.
Firefly III ran into an error: {{ errorMessage }} of class (type) "{{ class }}".
This error occured in file "{{ file }}" on line {{ line }} with code {{ code }}.