coolify/app/Providers/EventServiceProvider.php

49 lines
1.6 KiB
PHP
Raw Normal View History

2023-03-17 14:33:48 +00:00
<?php
namespace App\Providers;
use App\Listeners\MaintenanceModeDisabledNotification;
use App\Listeners\MaintenanceModeEnabledNotification;
use Illuminate\Foundation\Events\MaintenanceModeDisabled;
use Illuminate\Foundation\Events\MaintenanceModeEnabled;
2023-03-17 14:33:48 +00:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
2024-12-11 16:09:21 +00:00
use SocialiteProviders\Authentik\AuthentikExtendSocialite;
use SocialiteProviders\Azure\AzureExtendSocialite;
use SocialiteProviders\Clerk\ClerkExtendSocialite;
use SocialiteProviders\Discord\DiscordExtendSocialite;
use SocialiteProviders\Google\GoogleExtendSocialite;
2024-12-12 18:39:11 +00:00
use SocialiteProviders\Infomaniak\InfomaniakExtendSocialite;
2024-12-11 16:09:21 +00:00
use SocialiteProviders\Manager\SocialiteWasCalled;
use SocialiteProviders\Zitadel\ZitadelExtendSocialite;
2023-03-17 14:33:48 +00:00
class EventServiceProvider extends ServiceProvider
{
protected $listen = [
MaintenanceModeEnabled::class => [
MaintenanceModeEnabledNotification::class,
],
MaintenanceModeDisabled::class => [
MaintenanceModeDisabledNotification::class,
],
2024-12-11 16:09:21 +00:00
SocialiteWasCalled::class => [
AzureExtendSocialite::class.'@handle',
AuthentikExtendSocialite::class.'@handle',
ClerkExtendSocialite::class.'@handle',
DiscordExtendSocialite::class.'@handle',
GoogleExtendSocialite::class.'@handle',
2024-12-12 18:39:11 +00:00
InfomaniakExtendSocialite::class.'@handle',
ZitadelExtendSocialite::class.'@handle',
],
2023-03-17 14:33:48 +00:00
];
2024-06-10 20:43:34 +00:00
2023-03-17 14:33:48 +00:00
public function boot(): void
{
//
}
2024-06-10 20:43:34 +00:00
2023-03-17 14:33:48 +00:00
public function shouldDiscoverEvents(): bool
{
return true;
2023-03-17 14:33:48 +00:00
}
}