2016-02-24 13:13:55 -06:00
|
|
|
<?php
|
2022-12-29 12:42:26 -06:00
|
|
|
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* MailError.php
|
2020-02-07 04:16:38 -06:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2016-05-20 05:41:23 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2016-10-04 23:52:15 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-10-21 01:40:00 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2017-10-21 01:40:00 -05:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-01 23:37:26 -05:00
|
|
|
* GNU Affero General Public License for more details.
|
2017-10-21 01:40:00 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-05-20 05:41:23 -05:00
|
|
|
*/
|
2017-04-09 00:44:22 -05:00
|
|
|
declare(strict_types=1);
|
2016-02-24 13:13:55 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Jobs;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Mail\Message;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2023-06-11 09:12:13 -05:00
|
|
|
use Symfony\Component\Mailer\Exception\TransportException;
|
2016-02-24 13:13:55 -06:00
|
|
|
|
|
|
|
/**
|
2017-11-15 05:25:49 -06:00
|
|
|
* Class MailError.
|
2016-02-24 13:13:55 -06:00
|
|
|
*/
|
|
|
|
class MailError extends Job implements ShouldQueue
|
|
|
|
{
|
2022-10-30 08:24:28 -05:00
|
|
|
use InteractsWithQueue;
|
|
|
|
use SerializesModels;
|
2016-02-24 13:13:55 -06:00
|
|
|
|
2021-04-07 00:28:43 -05:00
|
|
|
protected string $destination;
|
2021-09-18 03:26:12 -05:00
|
|
|
protected array $exception;
|
2021-04-07 00:28:43 -05:00
|
|
|
protected string $ipAddress;
|
2021-09-18 03:26:12 -05:00
|
|
|
protected array $userData;
|
2016-02-24 13:13:55 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MailError constructor.
|
|
|
|
*/
|
2016-04-28 03:59:36 -05:00
|
|
|
public function __construct(array $userData, string $destination, string $ipAddress, array $exceptionData)
|
2016-02-24 13:13:55 -06:00
|
|
|
{
|
2016-04-28 03:59:36 -05:00
|
|
|
$this->userData = $userData;
|
2016-02-24 13:13:55 -06:00
|
|
|
$this->destination = $destination;
|
2016-03-14 14:50:19 -05:00
|
|
|
$this->ipAddress = $ipAddress;
|
2016-02-24 13:13:55 -06:00
|
|
|
$this->exception = $exceptionData;
|
2017-09-14 09:13:25 -05:00
|
|
|
$debug = $exceptionData;
|
2023-12-20 12:35:52 -06:00
|
|
|
unset($debug['stackTrace'], $debug['headers']);
|
|
|
|
|
2023-10-29 00:32:00 -05:00
|
|
|
app('log')->error(sprintf('Exception is: %s', json_encode($debug)));
|
2016-02-24 13:13:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*/
|
2023-11-04 05:31:14 -05:00
|
|
|
public function handle(): void
|
2016-02-24 13:13:55 -06:00
|
|
|
{
|
2022-12-29 12:42:26 -06:00
|
|
|
$email = (string)config('firefly.site_owner');
|
2021-04-03 11:48:21 -05:00
|
|
|
$args = $this->exception;
|
|
|
|
$args['loggedIn'] = $this->userData['id'] > 0;
|
|
|
|
$args['user'] = $this->userData;
|
|
|
|
$args['ip'] = $this->ipAddress;
|
|
|
|
$args['token'] = config('firefly.ipinfo_token');
|
2023-12-20 12:35:52 -06:00
|
|
|
if ($this->attempts() < 3 && '' !== $email) {
|
2016-02-24 13:13:55 -06:00
|
|
|
try {
|
2023-12-20 12:35:52 -06:00
|
|
|
\Mail::send(
|
2017-11-15 03:52:29 -06:00
|
|
|
['emails.error-html', 'emails.error-text'],
|
|
|
|
$args,
|
2023-12-20 22:07:26 -06:00
|
|
|
static function (Message $message) use ($email): void {
|
2017-11-15 05:25:49 -06:00
|
|
|
if ('mail@example.com' !== $email) {
|
2022-12-29 12:42:26 -06:00
|
|
|
$message->to($email, $email)->subject((string)trans('email.error_subject'));
|
2016-02-24 13:13:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2023-12-20 12:35:52 -06:00
|
|
|
} catch (\Exception|TransportException $e) { // @phpstan-ignore-line
|
2023-03-04 15:26:09 -06:00
|
|
|
$message = $e->getMessage();
|
|
|
|
if (str_contains($message, 'Bcc')) {
|
2023-10-29 00:31:13 -05:00
|
|
|
app('log')->warning('[Bcc] Could not email or log the error. Please validate your email settings, use the .env.example file as a guide.');
|
2023-12-20 12:35:52 -06:00
|
|
|
|
2023-03-04 15:26:09 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (str_contains($message, 'RFC 2822')) {
|
2023-10-29 00:31:13 -05:00
|
|
|
app('log')->warning('[RFC] Could not email or log the error. Please validate your email settings, use the .env.example file as a guide.');
|
2023-12-20 12:35:52 -06:00
|
|
|
|
2023-03-04 15:26:09 -06:00
|
|
|
return;
|
|
|
|
}
|
2023-10-29 00:32:00 -05:00
|
|
|
app('log')->error($e->getMessage());
|
|
|
|
app('log')->error($e->getTraceAsString());
|
2016-02-24 13:13:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|