coolify/app/Providers/EventServiceProvider.php

46 lines
1.4 KiB
PHP
Raw Normal View History

2023-03-17 14:33:48 +00:00
<?php
namespace App\Providers;
use App\Events\ProxyStarted;
use App\Listeners\MaintenanceModeDisabledNotification;
use App\Listeners\MaintenanceModeEnabledNotification;
use App\Listeners\ProxyStartedNotification;
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;
2024-12-12 18:39:11 +00:00
use SocialiteProviders\Infomaniak\InfomaniakExtendSocialite;
2024-12-11 16:09:21 +00:00
use SocialiteProviders\Manager\SocialiteWasCalled;
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',
2024-12-12 18:39:11 +00:00
InfomaniakExtendSocialite::class.'@handle',
],
ProxyStarted::class => [
ProxyStartedNotification::class,
],
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 false;
}
}