2FAuth/app/Providers/EventServiceProvider.php

101 lines
2.7 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App\Providers;
use App\Events\GroupDeleted;
2023-03-10 22:59:46 +01:00
use App\Events\GroupDeleting;
use App\Events\ScanForNewReleaseCalled;
2022-11-22 15:15:52 +01:00
use App\Events\TwoFAccountDeleted;
2024-04-26 08:01:20 +02:00
use App\Events\VisitedByProxyUser;
2024-04-22 14:59:20 +02:00
use App\Listeners\Authentication\FailedLoginListener;
use App\Listeners\Authentication\LoginListener;
use App\Listeners\Authentication\LogoutListener;
2024-04-26 08:01:20 +02:00
use App\Listeners\Authentication\VisitedByProxyUserListener;
2022-09-21 21:50:41 +02:00
use App\Listeners\CleanIconStorage;
use App\Listeners\DissociateTwofaccountFromGroup;
use App\Listeners\LogNotificationListener;
2023-12-20 16:55:58 +01:00
use App\Listeners\RegisterOpenId;
2022-11-22 15:15:52 +01:00
use App\Listeners\ReleaseRadar;
use App\Listeners\ResetUsersPreference;
use App\Models\User;
use App\Observers\UserObserver;
2024-04-22 14:59:20 +02:00
use Illuminate\Auth\Events\Failed;
use Illuminate\Auth\Events\Login;
use Illuminate\Auth\Events\Logout;
2019-05-20 07:37:41 +02:00
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Notifications\Events\NotificationSent;
2023-11-20 23:25:36 +01:00
use SocialiteProviders\Manager\SocialiteWasCalled;
2019-05-20 07:37:41 +02:00
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
2023-03-26 23:04:06 +02:00
* @var array<string, array<int, string>>
2019-05-20 07:37:41 +02:00
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
2022-09-21 21:50:41 +02:00
TwoFAccountDeleted::class => [
CleanIconStorage::class,
],
2022-09-21 21:50:41 +02:00
GroupDeleting::class => [
DissociateTwofaccountFromGroup::class,
],
GroupDeleted::class => [
ResetUsersPreference::class,
],
ScanForNewReleaseCalled::class => [
2022-09-21 21:50:41 +02:00
ReleaseRadar::class,
],
2023-11-20 23:25:36 +01:00
SocialiteWasCalled::class => [
RegisterOpenId::class,
],
NotificationSent::class => [
LogNotificationListener::class,
],
2024-04-22 14:59:20 +02:00
Login::class => [
LoginListener::class,
],
Failed::class => [
FailedLoginListener::class,
],
Logout::class => [
LogoutListener::class,
],
2024-04-24 14:06:15 +02:00
VisitedByProxyUser::class => [
VisitedByProxyUserListener::class,
],
2019-05-20 07:37:41 +02:00
];
2024-03-29 09:42:54 +01:00
/**
2024-03-29 09:42:54 +01:00
* The model observers for your application.
*
* @var array<string, string|object|array<int, string|object>>
*/
protected $observers = [
User::class => [UserObserver::class],
];
2019-05-20 07:37:41 +02:00
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
//
}
2023-08-01 11:26:58 +02:00
/**
* Determine if events and listeners should be automatically discovered.
*/
public function shouldDiscoverEvents() : bool
{
return false;
}
2019-05-20 07:37:41 +02:00
}