firefly-iii/app/Jobs/MailError.php

97 lines
2.9 KiB
PHP
Raw Normal View History

<?php
/**
* MailError.php
2017-10-21 01:40:00 -05:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* This file is part of Firefly III.
*
2017-10-21 01:40:00 -05:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 07:44:05 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Jobs;
2018-03-25 02:01:43 -05:00
use Exception;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Message;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Log;
use Mail;
/**
2017-11-15 05:25:49 -06:00
* Class MailError.
*/
class MailError extends Job implements ShouldQueue
{
use InteractsWithQueue, SerializesModels;
2017-11-15 05:25:49 -06:00
/** @var string */
protected $destination;
2017-11-15 05:25:49 -06:00
/** @var array */
protected $exception;
2017-11-15 05:25:49 -06:00
/** @var string */
protected $ipAddress;
2017-11-15 05:25:49 -06:00
/** @var array */
2016-04-28 03:59:36 -05:00
protected $userData;
/**
* MailError constructor.
*
2016-04-28 03:59:36 -05:00
* @param array $userData
* @param string $destination
* @param string $ipAddress
2016-03-03 01:29:56 -06:00
* @param array $exceptionData
*/
2016-04-28 03:59:36 -05:00
public function __construct(array $userData, string $destination, string $ipAddress, array $exceptionData)
{
2016-04-28 03:59:36 -05:00
$this->userData = $userData;
$this->destination = $destination;
$this->ipAddress = $ipAddress;
$this->exception = $exceptionData;
2017-09-14 09:13:25 -05:00
$debug = $exceptionData;
2016-04-28 03:59:36 -05:00
unset($debug['stackTrace']);
Log::error('Exception is: ' . json_encode($debug));
}
/**
* Execute the job.
*/
public function handle()
{
if ($this->attempts() < 3) {
// mail?
try {
2016-02-24 13:44:39 -06:00
$email = env('SITE_OWNER');
$args = $this->exception;
2016-04-28 03:59:36 -05:00
$args['loggedIn'] = $this->userData['id'] > 0;
$args['user'] = $this->userData;
$args['ip'] = $this->ipAddress;
Mail::send(
2017-11-15 03:52:29 -06:00
['emails.error-html', 'emails.error-text'],
$args,
function (Message $message) use ($email) {
2017-11-15 05:25:49 -06:00
if ('mail@example.com' !== $email) {
2016-12-22 10:04:41 -06:00
$message->to($email, $email)->subject('Caught an error in Firely III');
}
}
);
2018-03-25 02:01:43 -05:00
} catch (Exception $e) {
Log::error('Exception when mailing: ' . $e->getMessage());
}
}
}
}