Change award events handler to subscription #888 (#894)

This commit is contained in:
Nabeel S 2020-10-23 07:28:22 -04:00 committed by GitHub
parent 584d37f230
commit b37bd2cd7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 74 additions and 34 deletions

View File

@ -0,0 +1,71 @@
<?php
namespace App\Listeners;
use App\Contracts\Listener;
use App\Events\PirepAccepted;
use App\Events\UserStateChanged;
use App\Events\UserStatsChanged;
use App\Models\Award;
/**
* Look for and run any of the award classes. Don't modify this.
* See the documentation on creating awards:
*
* @url http://docs.phpvms.net/customizing/awards
*/
class AwardHandler extends Listener
{
/** The events and the callback */
public static $callbacks = [
PirepAccepted::class => 'onPirepAccept',
UserStatsChanged::class => 'onUserStatsChanged',
UserStateChanged::class => 'onUserStateChanged',
];
/**
* Called when a PIREP is accepted
*
* @param \App\Events\PirepAccepted $event
*/
public function onPirepAccept(PirepAccepted $event)
{
$this->checkForAwards($event->pirep->user);
}
/**
* When the user's state has changed
*
* @param \App\Events\UserStateChanged $event
*/
public function onUserStateChanged(UserStateChanged $event): void
{
$this->checkForAwards($event->user);
}
/**
* Called when any of the user's states have changed
*
* @param UserStatsChanged $event
*/
public function onUserStatsChanged(UserStatsChanged $event): void
{
$this->checkForAwards($event->user);
}
/**
* Check for any awards to be run and test them against the user
*
* @param \App\Models\User $user
*/
public function checkForAwards($user)
{
$awards = Award::all();
foreach ($awards as $award) {
$klass = $award->getReference($award, $user);
if ($klass) {
$klass->handle();
}
}
}
}

View File

@ -1,32 +0,0 @@
<?php
namespace App\Listeners;
use App\Contracts\Listener;
use App\Events\UserStatsChanged;
use App\Models\Award;
/**
* Look for and run any of the award classes. Don't modify this.
* See the documentation on creating awards:
*
* @url http://docs.phpvms.net/customizing/awards
*/
class AwardListener extends Listener
{
/**
* Call all of the awards
*
* @param UserStatsChanged $event
*/
public function handle(UserStatsChanged $event): void
{
$awards = Award::all();
foreach ($awards as $award) {
$klass = $award->getReference($award, $event->user);
if ($klass) {
$klass->handle();
}
}
}
}

View File

@ -5,7 +5,7 @@ namespace App\Providers;
use App\Events\Expenses; use App\Events\Expenses;
use App\Events\PirepFiled; use App\Events\PirepFiled;
use App\Events\UserStatsChanged; use App\Events\UserStatsChanged;
use App\Listeners\AwardListener; use App\Listeners\AwardHandler;
use App\Listeners\BidEventHandler; use App\Listeners\BidEventHandler;
use App\Listeners\ExpenseListener; use App\Listeners\ExpenseListener;
use App\Listeners\FinanceEventHandler; use App\Listeners\FinanceEventHandler;
@ -33,7 +33,7 @@ class EventServiceProvider extends ServiceProvider
], ],
UserStatsChanged::class => [ UserStatsChanged::class => [
AwardListener::class,
], ],
UpdateAvailable::class => [], UpdateAvailable::class => [],
@ -44,5 +44,6 @@ class EventServiceProvider extends ServiceProvider
BidEventHandler::class, BidEventHandler::class,
FinanceEventHandler::class, FinanceEventHandler::class,
EventHandler::class, EventHandler::class,
AwardHandler::class,
]; ];
} }