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