1
0
Fork 0
mirror of synced 2024-06-07 05:14:43 +12:00

Initial commit

This commit is contained in:
Armino Popp 2020-01-17 19:58:00 +02:00
parent 4a31e5d675
commit 7d89b02f6e
3 changed files with 157 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

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

@ -0,0 +1,151 @@
<?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';
}
/**
* @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)['data']['0'];
}
return $this->user;
}
}