1
0
Fork 0
mirror of synced 2024-07-03 13:41:01 +12:00
appwrite/src/Auth/OAuth/Twitch.php

149 lines
3 KiB
PHP
Raw Normal View History

2020-01-16 04:50:22 +13:00
<?php
namespace Auth\OAuth;
use Auth\OAuth;
// Reference Material
// https://dev.twitch.tv/docs/authentication
class Twitch extends OAuth
{
/**
* @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
*/
protected $scope = [
'user:read:email',
];
/**
* @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?'.
2020-01-16 04:50:22 +13:00
http_build_query([
'response_type' => 'code',
'client_id' => $this->appID,
'scope' => implode(' ', $this->scope),
'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
{
2020-01-16 09:57:32 +13:00
$result = json_decode($this->request(
2020-01-16 04:50:22 +13:00
'POST',
2020-01-16 09:57:32 +13:00
$this->endpoint . 'token',
2020-01-16 04:50:22 +13:00
[],
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)) {
2020-01-16 09:57:32 +13:00
$this->user = json_decode($this->request('GET',
2020-01-16 11:02:44 +13:00
$this->resourceEndpoint, ['Authorization: Bearer '.urlencode($accessToken)]), true)['data']['0'];
2020-01-16 04:50:22 +13:00
}
return $this->user;
}
}