78 lines
2.5 KiB
PHP
78 lines
2.5 KiB
PHP
<?php
|
|
|
|
use App\Models\OauthSetting;
|
|
use Laravel\Socialite\Facades\Socialite;
|
|
|
|
function get_socialite_provider(string $provider)
|
|
{
|
|
$oauth_setting = OauthSetting::firstWhere('provider', $provider);
|
|
|
|
if (! filled($oauth_setting->redirect_uri)) {
|
|
$oauth_setting->update(['redirect_uri' => route('auth.callback', $provider)]);
|
|
}
|
|
|
|
if ($provider === 'azure') {
|
|
$azure_config = new \SocialiteProviders\Manager\Config(
|
|
$oauth_setting->client_id,
|
|
$oauth_setting->client_secret,
|
|
$oauth_setting->redirect_uri,
|
|
['tenant' => $oauth_setting->tenant],
|
|
);
|
|
|
|
return Socialite::driver('azure')->setConfig($azure_config);
|
|
}
|
|
|
|
if ($provider == 'authentik' || $provider == 'clerk') {
|
|
$authentik_clerk_config = new \SocialiteProviders\Manager\Config(
|
|
$oauth_setting->client_id,
|
|
$oauth_setting->client_secret,
|
|
$oauth_setting->redirect_uri,
|
|
['base_url' => $oauth_setting->base_url],
|
|
);
|
|
|
|
return Socialite::driver($provider)->setConfig($authentik_clerk_config);
|
|
}
|
|
|
|
if ($provider == 'zitadel') {
|
|
$zitadel_config = new \SocialiteProviders\Manager\Config(
|
|
$oauth_setting->client_id,
|
|
$oauth_setting->client_secret,
|
|
$oauth_setting->redirect_uri,
|
|
['base_url' => $oauth_setting->base_url],
|
|
);
|
|
|
|
return Socialite::driver('zitadel')->setConfig($zitadel_config);
|
|
}
|
|
|
|
if ($provider == 'google') {
|
|
$google_config = new \SocialiteProviders\Manager\Config(
|
|
$oauth_setting->client_id,
|
|
$oauth_setting->client_secret,
|
|
$oauth_setting->redirect_uri
|
|
);
|
|
|
|
return Socialite::driver('google')
|
|
->setConfig($google_config)
|
|
->with(['hd' => $oauth_setting->tenant]);
|
|
}
|
|
|
|
$config = [
|
|
'client_id' => $oauth_setting->client_id,
|
|
'client_secret' => $oauth_setting->client_secret,
|
|
'redirect' => $oauth_setting->redirect_uri,
|
|
];
|
|
|
|
$provider_class_map = [
|
|
'bitbucket' => \Laravel\Socialite\Two\BitbucketProvider::class,
|
|
'discord' => \SocialiteProviders\Discord\Provider::class,
|
|
'github' => \Laravel\Socialite\Two\GithubProvider::class,
|
|
'gitlab' => \Laravel\Socialite\Two\GitlabProvider::class,
|
|
'infomaniak' => \SocialiteProviders\Infomaniak\Provider::class,
|
|
];
|
|
|
|
return Socialite::buildProvider(
|
|
$provider_class_map[$provider],
|
|
$config
|
|
);
|
|
}
|