1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00
appwrite/src/Appwrite/Auth/OAuth2/Dropbox.php

151 lines
3.3 KiB
PHP
Raw Normal View History

2019-10-03 02:39:40 +13:00
<?php
namespace Appwrite\Auth\OAuth2;
2019-10-03 02:39:40 +13:00
use Appwrite\Auth\OAuth2;
2019-10-03 02:39:40 +13:00
// Reference Material
// https://www.dropbox.com/developers/reference/oauth-guide
2019-10-03 03:07:52 +13:00
// https://www.dropbox.com/developers/documentation/http/documentation#users-get_current_account
2020-02-17 00:41:03 +13:00
class Dropbox extends OAuth2
2019-10-03 02:39:40 +13:00
{
/**
* @var array
*/
protected $user = [];
2022-02-01 23:42:11 +13:00
/**
* @var array
*/
protected $tokens = [];
2019-10-03 02:39:40 +13:00
2020-01-19 02:59:35 +13:00
/**
* @var array
*/
protected $scopes = [];
2019-10-03 02:39:40 +13:00
/**
* @return string
*/
public function getName(): string
{
return 'dropbox';
}
/**
* @return string
*/
public function getLoginURL(): string
{
return 'https://www.dropbox.com/oauth2/authorize?'.\http_build_query([
2020-01-19 03:33:39 +13:00
'client_id' => $this->appID,
'redirect_uri' => $this->callback,
'state' => \json_encode($this->state),
2020-01-19 03:33:39 +13:00
'response_type' => 'code'
2020-01-19 02:59:35 +13:00
]);
2019-10-03 02:39:40 +13:00
}
/**
* @param string $code
*
2022-02-01 09:20:17 +13:00
* @return array
2019-10-03 02:39:40 +13:00
*/
2022-02-02 05:47:19 +13:00
protected function getTokens(string $code): array
2019-10-03 02:39:40 +13:00
{
2022-02-01 23:42:11 +13:00
if(empty($this->tokens)) {
$headers = ['Content-Type: application/x-www-form-urlencoded'];
$this->tokens = \json_decode($this->request(
'POST',
'https://api.dropboxapi.com/oauth2/token',
$headers,
\http_build_query([
'code' => $code,
'client_id' => $this->appID,
'client_secret' => $this->appSecret,
'redirect_uri' => $this->callback,
'grant_type' => 'authorization_code'
])
), true);
}
2019-10-03 02:39:40 +13:00
2022-02-01 23:42:11 +13:00
return $this->tokens;
2019-10-03 02:39:40 +13:00
}
2022-02-02 04:54:20 +13:00
/**
* @param string $refreshToken
*
* @return array
*/
public function refreshTokens(string $refreshToken):array
{
// TODO: Implement (Twitch as example)
return $this->tokens;
}
2019-10-03 02:39:40 +13:00
/**
* @param string $accessToken
*
* @return string
*/
public function getUserID(string $accessToken): string
{
$user = $this->getUser($accessToken);
2019-10-03 03:05:02 +13:00
if (isset($user['account_id'])) {
return $user['account_id'];
2019-10-03 02:39:40 +13:00
}
return '';
}
/**
* @param string $accessToken
*
* @return string
*/
public function getUserEmail(string $accessToken): string
{
$user = $this->getUser($accessToken);
2019-10-03 03:05:02 +13:00
if (isset($user['email'])) {
return $user['email'];
2019-10-03 02:39:40 +13:00
}
return '';
}
/**
* @param string $accessToken
*
* @return string
*/
public function getUserName(string $accessToken): string
{
$user = $this->getUser($accessToken);
2019-10-03 03:05:02 +13:00
if (isset($user['name'])) {
return $user['name']['display_name'];
2019-10-03 02:39:40 +13:00
}
return '';
}
/**
* @param string $accessToken
*
* @return array
*/
protected function getUser(string $accessToken): array
{
if (empty($this->user)) {
$headers = ['Authorization: Bearer '. \urlencode($accessToken)];
2019-10-03 03:05:02 +13:00
$user = $this->request('POST', 'https://api.dropboxapi.com/2/users/get_current_account', $headers);
$this->user = \json_decode($user, true);
2019-10-03 02:39:40 +13:00
}
return $this->user;
}
}