mapguesser/src/OAuth/GoogleOAuth.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2020-06-21 01:31:36 +02:00
<?php namespace MapGuesser\OAuth;
use MapGuesser\Interfaces\Http\IRequest;
2020-06-21 01:31:36 +02:00
class GoogleOAuth
{
2020-07-05 21:47:32 +02:00
private static string $dialogUrlBase = 'https://accounts.google.com/o/oauth2/v2/auth';
2020-06-21 01:31:36 +02:00
2020-07-05 21:47:32 +02:00
private static string $tokenUrlBase = 'https://oauth2.googleapis.com/token';
2020-06-21 01:31:36 +02:00
private IRequest $request;
public function __construct(IRequest $request)
{
$this->request = $request;
}
public function getDialogUrl(string $state, string $redirectUrl, ?string $nonce = null, ?string $loginHint = null): string
2020-06-21 01:31:36 +02:00
{
$oauthParams = [
'response_type' => 'code',
'client_id' => $_ENV['GOOGLE_OAUTH_CLIENT_ID'],
'scope' => 'openid email',
'redirect_uri' => $redirectUrl,
'state' => $state,
];
if ($nonce !== null) {
$oauthParams['nonce'] = $nonce;
}
if ($loginHint !== null) {
$oauthParams['login_hint'] = $loginHint;
}
2020-06-21 01:31:36 +02:00
return self::$dialogUrlBase . '?' . http_build_query($oauthParams);
}
2020-07-05 21:47:32 +02:00
public function getToken(string $code, string $redirectUrl): array
2020-06-21 01:31:36 +02:00
{
$tokenParams = [
'code' => $code,
'client_id' => $_ENV['GOOGLE_OAUTH_CLIENT_ID'],
'client_secret' => $_ENV['GOOGLE_OAUTH_CLIENT_SECRET'],
'redirect_uri' => $redirectUrl,
'grant_type' => 'authorization_code',
];
$this->request->setUrl(self::$tokenUrlBase);
$this->request->setMethod(IRequest::HTTP_POST);
$this->request->setQuery($tokenParams);
$response = $this->request->send();
2020-06-21 01:31:36 +02:00
return json_decode($response->getBody(), true);
}
}