2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
namespace BookStack\App\Providers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
2023-09-11 10:26:04 -04:00
|
|
|
use SocialiteProviders\Azure\AzureExtendSocialite;
|
|
|
|
use SocialiteProviders\Discord\DiscordExtendSocialite;
|
|
|
|
use SocialiteProviders\GitLab\GitLabExtendSocialite;
|
2017-02-04 06:01:49 -05:00
|
|
|
use SocialiteProviders\Manager\SocialiteWasCalled;
|
2023-09-11 10:26:04 -04:00
|
|
|
use SocialiteProviders\Okta\OktaExtendSocialite;
|
|
|
|
use SocialiteProviders\Twitch\TwitchExtendSocialite;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The event listener mappings for the application.
|
|
|
|
*
|
2022-09-26 21:48:05 -04:00
|
|
|
* @var array<class-string, array<int, class-string>>
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
|
|
|
protected $listen = [
|
2017-02-04 06:01:49 -05:00
|
|
|
SocialiteWasCalled::class => [
|
2023-09-11 10:26:04 -04:00
|
|
|
AzureExtendSocialite::class . '@handle',
|
|
|
|
OktaExtendSocialite::class . '@handle',
|
|
|
|
GitLabExtendSocialite::class . '@handle',
|
|
|
|
TwitchExtendSocialite::class . '@handle',
|
|
|
|
DiscordExtendSocialite::class . '@handle',
|
2015-07-12 15:01:42 -04:00
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
2023-02-06 11:58:29 -05:00
|
|
|
* Register any events for your application.
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2024-03-16 11:12:14 -04:00
|
|
|
public function boot(): void
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2023-02-06 11:58:29 -05:00
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if events and listeners should be automatically discovered.
|
|
|
|
*/
|
2024-03-16 11:12:14 -04:00
|
|
|
public function shouldDiscoverEvents(): bool
|
2023-02-06 11:58:29 -05:00
|
|
|
{
|
|
|
|
return false;
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|