1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Merge pull request #284 from armino-dev/add-yahoo-oauth-provider

Added Yahoo OAuth provider
This commit is contained in:
Eldad A. Fux 2020-01-17 21:01:31 +02:00 committed by GitHub
commit e9d4141aec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 168 additions and 0 deletions

View file

@ -103,6 +103,12 @@ return [
'enabled' => true,
'mock' => false,
],
'yahoo' => [
'developers' => 'https://developer.yahoo.com/oauth2/guide/flows_authcode/',
'icon' => 'icon-yahoo',
'enabled' => true,
'mock' => false,
],
// Keep Last
'mock' => [
'developers' => 'https://appwrite.io',

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

162
src/Auth/OAuth/Yahoo.php Normal file
View file

@ -0,0 +1,162 @@
<?php
namespace Auth\OAuth;
use Auth\OAuth;
// Reference Material
// https://dev.twitch.tv/docs/authentication
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';
}
/**
* @param $state
*
* @return json
*/
public function parseState(string $state)
{
return json_decode(html_entity_decode($state), true);
}
/**
* @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',
$this->resourceEndpoint, ['Authorization: Bearer '.urlencode($accessToken)]), true);
}
return $this->user;
}
}