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

107 lines
2.6 KiB
PHP
Raw Normal View History

<?php
2016-04-01 09:44:46 -05:00
declare(strict_types = 1);
/**
* UserConfirmation.php
2016-04-01 09:44:46 -05:00
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Handlers\Events;
2016-03-29 06:55:57 -05:00
use Exception;
use FireflyIII\Events\ResendConfirmation;
use FireflyIII\Events\UserRegistration;
use FireflyIII\User;
use Illuminate\Mail\Message;
use Log;
use Mail;
use Preferences;
use Swift_TransportException;
/**
* Class UserConfirmation
*
* @package FireflyIII\Handlers\Events
*/
class UserConfirmation
{
/**
* Create the event listener.
*
*/
public function __construct()
{
//
}
/**
* @param ResendConfirmation $event
2016-04-06 09:37:28 -05:00
*
* @return bool
*/
2016-04-06 09:37:28 -05:00
public function resendConfirmation(ResendConfirmation $event): bool
{
$user = $event->user;
2016-03-29 09:10:51 -05:00
$ipAddress = $event->ipAddress;
$this->doConfirm($user, $ipAddress);
2016-04-25 11:43:09 -05:00
2016-04-06 09:37:28 -05:00
return true;
}
/**
* Handle the event.
*
* @param UserRegistration $event
2016-04-06 09:37:28 -05:00
*
* @return bool
*/
2016-04-06 09:37:28 -05:00
public function sendConfirmation(UserRegistration $event): bool
{
$user = $event->user;
2016-03-29 09:10:51 -05:00
$ipAddress = $event->ipAddress;
$this->doConfirm($user, $ipAddress);
2016-04-25 11:43:09 -05:00
2016-04-06 09:37:28 -05:00
return true;
}
/**
* @param User $user
* @param string $ipAddress
*/
private function doConfirm(User $user, string $ipAddress)
{
$confirmAccount = env('MUST_CONFIRM_ACCOUNT', false);
if ($confirmAccount === false) {
Preferences::setForUser($user, 'user_confirmed', true);
Preferences::setForUser($user, 'user_confirmed_last_mail', 0);
2016-03-29 06:52:51 -05:00
Preferences::mark();
return;
}
$email = $user->email;
$code = str_random(16);
$route = route('do_confirm_account', [$code]);
Preferences::setForUser($user, 'user_confirmed', false);
Preferences::setForUser($user, 'user_confirmed_last_mail', time());
Preferences::setForUser($user, 'user_confirmed_code', $code);
try {
Mail::send(
['emails.confirm-account-html', 'emails.confirm-account'], ['route' => $route, 'ip' => $ipAddress],
function (Message $message) use ($email) {
$message->to($email, $email)->subject('Please confirm your Firefly III account');
}
);
} catch (Swift_TransportException $e) {
2016-03-29 06:55:57 -05:00
Log::error($e->getMessage());
} catch (Exception $e) {
Log::error($e->getMessage());
}
2016-03-29 06:55:57 -05:00
return;
}
2016-03-29 09:17:06 -05:00
}