1
0
Fork 0
mirror of synced 2024-07-01 12:40:34 +12:00
appwrite/src/Appwrite/Auth/OAuth2/Twitch.php

154 lines
3.1 KiB
PHP
Raw Normal View History

2020-01-16 04:50:22 +13:00
<?php
namespace Appwrite\Auth\OAuth2;
2020-01-16 04:50:22 +13:00
use Appwrite\Auth\OAuth2;
2020-01-16 04:50:22 +13:00
// Reference Material
// https://dev.twitch.tv/docs/authentication
2020-02-17 00:41:03 +13:00
class Twitch extends OAuth2
2020-01-16 04:50:22 +13:00
{
/**
* @var string
*/
2020-01-16 09:57:32 +13:00
private $endpoint = 'https://id.twitch.tv/oauth2/';
/**
* @var string
*/
private $resourceEndpoint = 'https://api.twitch.tv/helix/users';
2020-01-16 04:50:22 +13:00
/**
* @var array
*/
2020-01-19 09:12:41 +13:00
protected $scopes = [
2021-05-28 20:23:46 +12:00
'user:read:email',
2020-01-16 04:50:22 +13:00
];
/**
* @var array
*/
protected $user = [];
/**
* @return string
*/
public function getName():string
{
return 'twitch';
}
/**
* @return string
*/
public function getLoginURL():string
{
2020-01-16 09:57:32 +13:00
return $this->endpoint . 'authorize?'.
\http_build_query([
2020-01-16 04:50:22 +13:00
'response_type' => 'code',
'client_id' => $this->appID,
'scope' => \implode(' ', $this->getScopes()),
2020-01-16 04:50:22 +13:00
'redirect_uri' => $this->callback,
2020-01-16 09:57:32 +13:00
'force_verify' => true,
'state' => \json_encode($this->state)
2020-01-16 04:50:22 +13:00
]);
}
/**
* @param string $code
*
* @return string
*/
public function getAccessToken(string $code):string
{
$result = \json_decode($this->request(
2020-01-16 04:50:22 +13:00
'POST',
2021-05-28 20:23:46 +12:00
$this->endpoint . 'token?'. \http_build_query([
2020-01-16 09:57:32 +13:00
"client_id" => $this->appID,
"client_secret" => $this->appSecret,
"code" => $code,
"grant_type" => "authorization_code",
"redirect_uri" => $this->callback
2020-01-16 04:50:22 +13:00
])
2020-01-16 09:57:32 +13:00
), true);
2020-01-16 04:50:22 +13:00
2020-01-16 09:57:32 +13:00
if (isset($result['access_token'])) {
return $result['access_token'];
2020-01-16 04:50:22 +13:00
}
return '';
}
/**
* @param $accessToken
*
* @return string
*/
public function getUserID(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['id'])) {
return $user['id'];
}
return '';
}
/**
* @param $accessToken
*
* @return string
*/
public function getUserEmail(string $accessToken):string
{
2020-01-16 09:57:32 +13:00
$user = $this->getUser($accessToken);
2020-01-16 04:50:22 +13:00
2020-01-16 09:57:32 +13:00
if (isset($user['email'])) {
return $user['email'];
2020-01-16 04:50:22 +13:00
}
return '';
}
/**
* @param $accessToken
*
* @return string
*/
public function getUserName(string $accessToken):string
{
$user = $this->getUser($accessToken);
2020-01-16 09:57:32 +13:00
if (isset($user['display_name'])) {
return $user['display_name'];
2020-01-16 04:50:22 +13:00
}
return '';
}
/**
* @param string $accessToken
*
* @return array
*/
protected function getUser(string $accessToken)
{
if (empty($this->user)) {
2021-05-28 20:23:46 +12:00
$response = \json_decode($this->request(
2020-06-25 09:05:16 +12:00
'GET',
2021-05-28 20:23:46 +12:00
$this->resourceEndpoint , [
'Authorization: Bearer '.\urlencode($accessToken),
'Client-Id: '. \urlencode($this->appID)
]
), true);
$this->user = $response['data']['0'];
2020-01-16 04:50:22 +13:00
}
return $this->user;
}
}