mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
164 lines
6.0 KiB
PHP
164 lines
6.0 KiB
PHP
<?php
|
|
/**
|
|
* EventServiceProvider.php
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* 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
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Providers;
|
|
|
|
use Exception;
|
|
use FireflyIII\Events\AdminRequestedTestMessage;
|
|
use FireflyIII\Events\RegisteredUser;
|
|
use FireflyIII\Events\RequestedNewPassword;
|
|
use FireflyIII\Events\RequestedReportOnJournals;
|
|
use FireflyIII\Events\RequestedVersionCheckStatus;
|
|
use FireflyIII\Events\StoredTransactionGroup;
|
|
use FireflyIII\Events\UpdatedTransactionGroup;
|
|
use FireflyIII\Events\UserChangedEmail;
|
|
use FireflyIII\Mail\OAuthTokenCreatedMail;
|
|
use FireflyIII\Models\PiggyBank;
|
|
use FireflyIII\Models\PiggyBankRepetition;
|
|
use FireflyIII\Repositories\User\UserRepositoryInterface;
|
|
use Illuminate\Auth\Events\Login;
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
use Laravel\Passport\Client;
|
|
use Laravel\Passport\Events\AccessTokenCreated;
|
|
use Log;
|
|
use Mail;
|
|
use Request;
|
|
use Session;
|
|
|
|
/**
|
|
* Class EventServiceProvider.
|
|
*/
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* @codeCoverageIgnore
|
|
* The event listener mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen
|
|
= [
|
|
// is a User related event.
|
|
RegisteredUser::class => [
|
|
'FireflyIII\Handlers\Events\UserEventHandler@sendRegistrationMail',
|
|
'FireflyIII\Handlers\Events\UserEventHandler@attachUserRole',
|
|
],
|
|
// is a User related event.
|
|
Login::class => [
|
|
'FireflyIII\Handlers\Events\UserEventHandler@checkSingleUserIsAdmin',
|
|
'FireflyIII\Handlers\Events\UserEventHandler@demoUserBackToEnglish',
|
|
|
|
],
|
|
RequestedVersionCheckStatus::class => [
|
|
'FireflyIII\Handlers\Events\VersionCheckEventHandler@checkForUpdates',
|
|
],
|
|
RequestedReportOnJournals::class => [
|
|
'FireflyIII\Handlers\Events\AutomationHandler@reportJournals',
|
|
],
|
|
|
|
// is a User related event.
|
|
RequestedNewPassword::class => [
|
|
'FireflyIII\Handlers\Events\UserEventHandler@sendNewPassword',
|
|
],
|
|
// is a User related event.
|
|
UserChangedEmail::class => [
|
|
'FireflyIII\Handlers\Events\UserEventHandler@sendEmailChangeConfirmMail',
|
|
'FireflyIII\Handlers\Events\UserEventHandler@sendEmailChangeUndoMail',
|
|
],
|
|
// admin related
|
|
AdminRequestedTestMessage::class => [
|
|
'FireflyIII\Handlers\Events\AdminEventHandler@sendTestMessage',
|
|
],
|
|
// is a Transaction Journal related event.
|
|
StoredTransactionGroup::class => [
|
|
'FireflyIII\Handlers\Events\StoredGroupEventHandler@processRules',
|
|
],
|
|
// is a Transaction Journal related event.
|
|
UpdatedTransactionGroup::class => [
|
|
'FireflyIII\Handlers\Events\UpdatedGroupEventHandler@processRules',
|
|
],
|
|
// API related events:
|
|
AccessTokenCreated::class => [
|
|
'FireflyIII\Handlers\Events\APIEventHandler@accessTokenCreated',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
* Register any events for your application.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
parent::boot();
|
|
$this->registerCreateEvents();
|
|
}
|
|
|
|
/**
|
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
|
*/
|
|
protected function registerCreateEvents(): void
|
|
{
|
|
// in case of repeated piggy banks and/or other problems.
|
|
PiggyBank::created(
|
|
function (PiggyBank $piggyBank) {
|
|
$repetition = new PiggyBankRepetition;
|
|
$repetition->piggyBank()->associate($piggyBank);
|
|
$repetition->startdate = $piggyBank->startdate;
|
|
$repetition->targetdate = $piggyBank->targetdate;
|
|
$repetition->currentamount = 0;
|
|
$repetition->save();
|
|
}
|
|
);
|
|
Client::created(
|
|
function (Client $oauthClient) {
|
|
/** @var UserRepositoryInterface $repository */
|
|
$repository = app(UserRepositoryInterface::class);
|
|
$user = $repository->findNull((int)$oauthClient->user_id);
|
|
if (null === $user) {
|
|
Log::info('OAuth client generated but no user associated.');
|
|
|
|
return;
|
|
}
|
|
|
|
$email = $user->email;
|
|
$ipAddress = Request::ip();
|
|
|
|
Log::debug(sprintf('Now in EventServiceProvider::registerCreateEvents. Email is %s, IP is %s', $email, $ipAddress));
|
|
try {
|
|
Log::debug('Trying to send message...');
|
|
Mail::to($email)->send(new OAuthTokenCreatedMail($email, $ipAddress, $oauthClient));
|
|
// @codeCoverageIgnoreStart
|
|
} catch (Exception $e) {
|
|
Log::debug('Send message failed! :(');
|
|
Log::error($e->getMessage());
|
|
Log::error($e->getTraceAsString());
|
|
Session::flash('error', 'Possible email error: ' . $e->getMessage());
|
|
}
|
|
Log::debug('If no error above this line, message was sent.');
|
|
|
|
|
|
}
|
|
);
|
|
}
|
|
|
|
}
|