2017-12-23 02:00:57 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Listeners;
|
|
|
|
|
|
|
|
use Log;
|
2017-12-23 02:46:46 +08:00
|
|
|
use Illuminate\Support\Facades\Mail;
|
2017-12-23 02:00:57 +08:00
|
|
|
|
2017-12-23 02:46:46 +08:00
|
|
|
use App\Models\Enums\PilotState;
|
2017-12-23 02:00:57 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle sending emails on different events
|
|
|
|
* @package App\Listeners
|
|
|
|
*/
|
2017-12-31 10:39:17 +08:00
|
|
|
class NotificationEventListener
|
2017-12-23 02:00:57 +08:00
|
|
|
{
|
|
|
|
public function subscribe($events)
|
|
|
|
{
|
|
|
|
$events->listen(
|
2017-12-31 10:39:17 +08:00
|
|
|
\App\Events\UserRegistered::class,
|
|
|
|
'App\Listeners\NotificationEventListener@onUserRegister'
|
|
|
|
);
|
|
|
|
|
|
|
|
$events->listen(
|
|
|
|
\App\Events\UserStateChanged::class,
|
|
|
|
'App\Listeners\NotificationEventListener@onUserStateChange'
|
2017-12-23 02:00:57 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-12-23 02:46:46 +08:00
|
|
|
/**
|
|
|
|
* Send an email when the user registered
|
|
|
|
* @param UserRegistered $event
|
|
|
|
*/
|
2017-12-23 02:00:57 +08:00
|
|
|
public function onUserRegister(UserRegistered $event)
|
|
|
|
{
|
2017-12-23 02:46:46 +08:00
|
|
|
Log::info('onUserRegister: '
|
|
|
|
. $event->user->pilot_id . ' is '
|
|
|
|
. PilotState::label($event->user->state)
|
|
|
|
. ', sending active email');
|
|
|
|
|
2017-12-31 10:39:17 +08:00
|
|
|
# First send the admin a notification
|
|
|
|
$admin_email = setting('general.admin_email');
|
|
|
|
if (!empty($admin_email)) {
|
|
|
|
$email = new \App\Mail\Admin\UserRegistered($event->user);
|
|
|
|
Mail::to($admin_email)->send($email);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Then notify the user
|
2017-12-23 02:46:46 +08:00
|
|
|
if($event->user->state === PilotState::ACTIVE) {
|
2017-12-23 06:32:21 +08:00
|
|
|
$email = new \App\Mail\UserRegistered(
|
|
|
|
$event->user,
|
|
|
|
'Welcome to ' . config('app.name') . '!'
|
|
|
|
);
|
|
|
|
|
|
|
|
Mail::to($event->user->email)->send($email);
|
2017-12-23 02:46:46 +08:00
|
|
|
} else if($event->user->state === PilotState::PENDING) {
|
|
|
|
Mail::to($event->user->email)->send(new \App\Mail\UserPending($event->user));
|
|
|
|
}
|
2017-12-23 02:00:57 +08:00
|
|
|
}
|
|
|
|
|
2017-12-23 06:32:21 +08:00
|
|
|
/**
|
|
|
|
* When a user's state changes, send an email out
|
|
|
|
* @param UserStateChanged $event
|
|
|
|
*/
|
|
|
|
public function onUserStateChange(UserStateChanged $event)
|
|
|
|
{
|
|
|
|
if ($event->old_state === PilotState::PENDING) {
|
|
|
|
if ($event->user->state === PilotState::ACTIVE)
|
|
|
|
{
|
|
|
|
$email = new \App\Mail\UserRegistered(
|
|
|
|
$event->user,
|
|
|
|
'Your registration has been accepted!'
|
|
|
|
);
|
|
|
|
|
|
|
|
Mail::to($event->user->email)->send($email);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if ($event->user->state === PilotState::REJECTED)
|
|
|
|
{
|
|
|
|
$email = new \App\Mail\UserRejected($event->user);
|
|
|
|
Mail::to($event->user->email)->send($email);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# TODO: Other state transitions
|
|
|
|
elseif ($event->old_state === PilotState::ACTIVE)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2017-12-23 02:00:57 +08:00
|
|
|
}
|