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