1
0
Fork 0
mirror of synced 2024-09-29 17:01:37 +13:00
appwrite/src/Appwrite/Auth/OAuth2/Yahoo.php

166 lines
3.3 KiB
PHP
Raw Normal View History

2020-01-18 06:58:00 +13:00
<?php
namespace Appwrite\Auth\OAuth2;
2020-01-18 06:58:00 +13:00
use Appwrite\Auth\OAuth2;
2020-01-18 06:58:00 +13:00
// Reference Material
2020-01-19 01:32:02 +13:00
// https://developer.yahoo.com/oauth2/guide/
2020-01-18 06:58:00 +13:00
2020-02-17 00:41:03 +13:00
class Yahoo extends OAuth2
2020-01-18 06:58:00 +13:00
{
/**
* @var string
*/
private $endpoint = 'https://api.login.yahoo.com/oauth2/';
/**
* @var string
*/
private $resourceEndpoint = 'https://api.login.yahoo.com/openid/v1/userinfo';
/**
* @var array
*/
2020-01-19 09:12:41 +13:00
protected $scopes = [
2020-01-18 06:58:00 +13:00
'sdct-r',
'sdpp-w',
];
/**
* @var array
*/
protected $user = [];
/**
* @return string
*/
public function getName():string
{
return 'yahoo';
}
2020-01-18 07:48:46 +13:00
/**
* @param $state
*
* @return array
2020-01-18 07:48:46 +13:00
*/
public function parseState(string $state)
{
return \json_decode(\html_entity_decode($state), true);
2020-01-18 07:48:46 +13:00
}
2020-01-18 06:58:00 +13:00
/**
* @return string
*/
public function getLoginURL():string
{
return $this->endpoint . 'request_auth?'.
\http_build_query([
2020-01-18 06:58:00 +13:00
'response_type' => 'code',
'client_id' => $this->appID,
'scope' => \implode(' ', $this->getScopes()),
2020-01-18 06:58:00 +13:00
'redirect_uri' => $this->callback,
'state' => \json_encode($this->state)
2020-01-18 06:58:00 +13:00
]);
}
/**
* @param string $code
*
* @return string
*/
public function getAccessToken(string $code):string
{
$header = [
"Authorization: Basic " . \base64_encode($this->appID . ":" . $this->appSecret),
2020-01-18 06:58:00 +13:00
"Content-Type: application/x-www-form-urlencoded",
];
$result = \json_decode($this->request(
2020-01-18 06:58:00 +13:00
'POST',
$this->endpoint . 'get_token',
$header,
\http_build_query([
2020-01-18 06:58:00 +13:00
"code" => $code,
"grant_type" => "authorization_code",
"redirect_uri" => $this->callback
])
), true);
if (isset($result['access_token'])) {
return $result['access_token'];
}
return '';
}
/**
* @param $accessToken
*
* @return string
*/
public function getUserID(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['sub'])) {
return $user['sub'];
}
return '';
}
/**
* @param $accessToken
*
* @return string
*/
public function getUserEmail(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['email'])) {
return $user['email'];
}
return '';
}
/**
* @param $accessToken
*
* @return string
*/
public function getUserName(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['name'])) {
return $user['name'];
}
return '';
}
/**
* @param string $accessToken
*
* @return array
*/
protected function getUser(string $accessToken)
{
if (empty($this->user)) {
2020-06-25 09:05:16 +12:00
$this->user = \json_decode($this->request(
'GET',
$this->resourceEndpoint,
['Authorization: Bearer '.\urlencode($accessToken)]
), true);
2020-01-18 06:58:00 +13:00
}
return $this->user;
}
}