firefly-iii/app/Handlers/Events/AdminEventHandler.php

86 lines
2.8 KiB
PHP
Raw Normal View History

2017-09-27 08:45:55 -05:00
<?php
/**
* AdminEventHandler.php
2020-01-28 01:45:38 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2017-09-27 08:45:55 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2017-10-21 01:40:00 -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
*
* 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/>.
2017-09-27 08:45:55 -05:00
*/
declare(strict_types=1);
namespace FireflyIII\Handlers\Events;
2018-04-02 07:42:07 -05:00
use Exception;
2017-09-27 08:45:55 -05:00
use FireflyIII\Events\AdminRequestedTestMessage;
2021-09-18 03:20:19 -05:00
use FireflyIII\Exceptions\FireflyException;
2017-09-27 08:45:55 -05:00
use FireflyIII\Mail\AdminTestMail;
2018-03-30 15:40:20 -05:00
use FireflyIII\Repositories\User\UserRepositoryInterface;
2017-09-27 08:45:55 -05:00
use Log;
use Mail;
use Session;
/**
2017-11-15 05:25:49 -06:00
* Class AdminEventHandler.
2017-09-27 08:45:55 -05:00
*/
class AdminEventHandler
{
/**
2017-11-25 08:20:53 -06:00
* Sends a test message to an administrator.
*
2017-09-27 08:45:55 -05:00
* @param AdminRequestedTestMessage $event
*
* @return bool
2021-09-18 03:20:19 -05:00
* @throws FireflyException
2017-09-27 08:45:55 -05:00
*/
public function sendTestMessage(AdminRequestedTestMessage $event): bool
{
2018-03-30 15:40:20 -05:00
/** @var UserRepositoryInterface $repository */
$repository = app(UserRepositoryInterface::class);
// is user even admin?
2018-07-07 00:48:10 -05:00
if ($repository->hasRole($event->user, 'owner')) {
2022-03-29 07:58:06 -05:00
$email = $event->user->email;
2017-09-27 08:45:55 -05:00
// if user is demo user, send to owner:
2021-03-21 03:15:40 -05:00
if ($event->user->hasRole('demo')) {
$email = config('firefly.site_owner');
}
// see if user has alternative email address:
2021-05-24 01:50:17 -05:00
$pref = app('preferences')->getForUser($event->user, 'remote_guard_alt_email');
if (null !== $pref) {
$email = $pref->data;
}
2022-03-29 05:45:48 -05:00
Log::debug(sprintf('Now in sendTestMessage event handler. Email is %s', $email));
2018-07-07 00:48:10 -05:00
try {
Log::debug('Trying to send message...');
2022-03-29 05:45:48 -05:00
Mail::to($email)->send(new AdminTestMail($email));
2021-04-07 00:28:43 -05:00
// Laravel cannot pretend this process failed during testing.
2021-04-07 00:28:43 -05:00
} catch (Exception $e) { // @phpstan-ignore-line
2018-07-07 00:48:10 -05:00
Log::debug('Send message failed! :(');
Log::error($e->getMessage());
Log::error($e->getTraceAsString());
Session::flash('error', 'Possible email error: ' . $e->getMessage());
}
2021-04-07 00:28:43 -05:00
2018-07-07 00:48:10 -05:00
Log::debug('If no error above this line, message was sent.');
2017-09-27 08:45:55 -05:00
}
2017-10-05 04:49:06 -05:00
2017-09-27 08:45:55 -05:00
return true;
}
2017-11-08 02:05:10 -06:00
}