1
0
Fork 0
mirror of synced 2024-09-28 15:31:43 +12:00
appwrite/src/Appwrite/Auth/OAuth2/Spotify.php

153 lines
3.1 KiB
PHP
Raw Normal View History

<?php
namespace Appwrite\Auth\OAuth2;
use Appwrite\Auth\OAuth2;
// Reference Material
// https://dev.twitch.tv/docs/authentication
2020-02-17 00:41:03 +13:00
class Spotify extends OAuth2
{
/**
* @var string
*/
private $endpoint = 'https://accounts.spotify.com/';
/**
* @var string
*/
private $resourceEndpoint = 'https://api.spotify.com/v1/';
/**
* @var array
*/
2020-01-19 09:12:41 +13:00
protected $scopes = [
'user-read-email',
];
/**
* @var array
*/
protected $user = [];
/**
* @return string
*/
public function getName():string
{
return 'spotify';
}
/**
* @return string
*/
public function getLoginURL():string
{
return $this->endpoint . 'authorize?'.
\http_build_query([
'response_type' => 'code',
'client_id' => $this->appID,
'scope' => \implode(' ', $this->getScopes()),
'redirect_uri' => $this->callback,
'state' => \json_encode($this->state)
]);
}
/**
* @param string $code
*
2022-02-01 09:20:17 +13:00
* @return array
*/
2022-02-01 09:20:17 +13:00
public function getTokens(string $code): array
{
2022-02-01 09:20:17 +13:00
// $header = "Authorization: Basic " . \base64_encode($this->appID . ":" . $this->appSecret);
// $result = \json_decode($this->request(
// 'POST',
// $this->endpoint . 'api/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 [
'access' => '',
'refresh' => ''
];
}
/**
* @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
{
$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['display_name'])) {
return $user['display_name'];
}
return '';
}
/**
* @param string $accessToken
*
* @return array
*/
protected function getUser(string $accessToken)
{
if (empty($this->user)) {
2020-06-25 09:05:16 +12:00
$this->user = \json_decode($this->request(
'GET',
$this->resourceEndpoint . "me",
['Authorization: Bearer '.\urlencode($accessToken)]
), true);
}
return $this->user;
}
}