1
0
Fork 0
mirror of synced 2024-09-30 01:08:13 +13:00
appwrite/src/Auth/OAuth/Yahoo.php

163 lines
3.2 KiB
PHP
Raw Normal View History

2020-01-18 06:58:00 +13:00
<?php
namespace Auth\OAuth;
use Auth\OAuth;
// Reference Material
2020-01-19 01:32:02 +13:00
// https://developer.yahoo.com/oauth2/guide/
2020-01-18 06:58:00 +13:00
class Yahoo extends OAuth
{
/**
* @var string
*/
private $endpoint = 'https://api.login.yahoo.com/oauth2/';
/**
* @var string
*/
private $resourceEndpoint = 'https://api.login.yahoo.com/openid/v1/userinfo';
/**
* @var array
*/
protected $scope = [
'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 json
*/
public function parseState(string $state)
{
return json_decode(html_entity_decode($state), true);
}
2020-01-18 06:58:00 +13:00
/**
* @return string
*/
public function getLoginURL():string
{
return $this->endpoint . 'request_auth?'.
http_build_query([
'response_type' => 'code',
'client_id' => $this->appID,
'scope' => implode(' ', $this->scope),
'redirect_uri' => $this->callback,
'state' => json_encode($this->state)
]);
}
/**
* @param string $code
*
* @return string
*/
public function getAccessToken(string $code):string
{
$header = [
"Authorization: Basic " . base64_encode($this->appID . ":" . $this->appSecret),
"Content-Type: application/x-www-form-urlencoded",
];
$result = json_decode($this->request(
'POST',
$this->endpoint . 'get_token',
$header,
http_build_query([
"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)) {
$this->user = json_decode($this->request('GET',
2020-01-18 07:48:46 +13:00
$this->resourceEndpoint, ['Authorization: Bearer '.urlencode($accessToken)]), true);
2020-01-18 06:58:00 +13:00
}
return $this->user;
}
}