firefly-iii/app/Jobs/MailError.php

99 lines
3.1 KiB
PHP
Raw Normal View History

<?php
2022-12-29 12:42:26 -06:00
/**
* MailError.php
2020-02-07 04:16:38 -06:00
* Copyright (c) 2019 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* 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
*
* 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
* GNU Affero General Public License for more details.
2017-10-21 01:40:00 -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/>.
*/
declare(strict_types=1);
namespace FireflyIII\Jobs;
2018-03-25 02:01:43 -05:00
use Exception;
2022-12-30 02:28:03 -06:00
use FireflyIII\Exceptions\FireflyException;
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
{
2022-10-30 08:24:28 -05:00
use InteractsWithQueue;
use SerializesModels;
2021-04-07 00:28:43 -05:00
protected string $destination;
protected array $exception;
2021-04-07 00:28:43 -05:00
protected string $ipAddress;
protected array $userData;
/**
* MailError constructor.
*
2022-12-29 12:42:26 -06:00
* @param array $userData
* @param string $destination
* @param string $ipAddress
* @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']);
2022-03-06 09:03:52 -06:00
unset($debug['headers']);
Log::error(sprintf('Exception is: %s', json_encode($debug)));
}
/**
* Execute the job.
2022-12-30 02:28:03 -06:00
* @throws FireflyException
*/
public function handle()
{
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');
2021-12-24 03:46:41 -06:00
if ($this->attempts() < 3 && strlen($email) > 0) {
try {
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) {
2022-12-29 12:42:26 -06:00
$message->to($email, $email)->subject((string)trans('email.error_subject'));
}
}
);
2022-12-30 13:25:04 -06:00
} catch (Exception $e) { // intentional generic exception
2022-12-30 02:28:03 -06:00
throw new FireflyException($e->getMessage(), 0, $e);
}
}
}
}