mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 17:54:57 +01:00
88 lines
2.3 KiB
PHP
88 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Providers\Socialite;
|
|
|
|
use GuzzleHttp\RequestOptions;
|
|
use Illuminate\Http\Request;
|
|
use Laravel\Socialite\Two\ProviderInterface;
|
|
use SocialiteProviders\Manager\OAuth2\AbstractProvider;
|
|
use SocialiteProviders\Manager\OAuth2\User;
|
|
|
|
class OpenId extends AbstractProvider implements ProviderInterface
|
|
{
|
|
public const IDENTIFIER = 'OPENID';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected $scopes = ['openid profile email'];
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function __construct(Request $request, $clientId, $clientSecret, $redirectUrl, $guzzle = [])
|
|
{
|
|
$guzzle = array_merge([
|
|
'proxy' => config('2fauth.config.outgoingProxy'),
|
|
], $guzzle);
|
|
|
|
parent::__construct($request, $clientId, $clientSecret, $redirectUrl, $guzzle);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function additionalConfigKeys()
|
|
{
|
|
return ['token_url', 'authorize_url', 'userinfo_url'];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getAuthUrl($state)
|
|
{
|
|
return $this->buildAuthUrlFromBase($this->getConfig('authorize_url'), $state);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getTokenUrl()
|
|
{
|
|
return $this->getConfig('token_url');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getUserByToken($token)
|
|
{
|
|
$response = $this->getHttpClient()->get($this->getConfig('userinfo_url'), [
|
|
RequestOptions::HEADERS => [
|
|
'Authorization' => 'Bearer ' . $token,
|
|
],
|
|
]);
|
|
|
|
return json_decode((string) $response->getBody(), true);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function mapUserToObject(array $user)
|
|
{
|
|
return (new User)->setRaw($user)->map([
|
|
'email' => $user['email'] ?? null,
|
|
'email_verified' => $user['email_verified'] ?? null,
|
|
'name' => $user['name'] ?? null,
|
|
'given_name' => $user['given_name'] ?? null,
|
|
'family_name' => $user['family_name'] ?? null,
|
|
'preferred_username' => $user['preferred_username'] ?? null,
|
|
'nickname' => $user['nickname'] ?? null,
|
|
'groups' => $user['groups'] ?? null,
|
|
'id' => $user['sub'],
|
|
]);
|
|
}
|
|
}
|