phpvms/app/Listeners/NotificationEventListener.php

94 lines
2.6 KiB
PHP
Raw Normal View History

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