1
0
Fork 0
mirror of synced 2024-07-02 13:10:38 +12:00
appwrite/src/Auth/OAuth/Dropbox.php

131 lines
2.9 KiB
PHP
Raw Normal View History

2019-10-03 02:39:40 +13:00
<?php
namespace Auth\OAuth;
use Auth\OAuth;
// Reference Material
// https://www.dropbox.com/developers/reference/oauth-guide
// https://www.dropbox.com/developers/documentation/http/documentation#users-get_current_account
class Dropbox extends OAuth
{
/**
* @var array
*/
protected $user = [];
/**
* @return string
*/
public function getName(): string
{
return 'dropbox';
}
/**
* @return string
*/
public function getLoginURL(): string
{
2019-10-03 02:57:52 +13:00
return 'https://www.dropbox.com/oauth2/authorize?'.
2019-10-03 02:39:40 +13:00
'client_id='.urlencode($this->appID).
'&redirect_uri='.urlencode($this->callback).
'&state='.urlencode(json_encode($this->state)).
2019-10-03 02:57:52 +13:00
'&response_type=code';
2019-10-03 02:39:40 +13:00
}
/**
* @param string $code
*
* @return string
*/
public function getAccessToken(string $code): string
{
2019-10-03 02:57:52 +13:00
2019-10-03 02:39:40 +13:00
$headers[] = 'Content-Type: application/x-www-form-urlencoded';
$accessToken = $this->request(
'POST',
2019-10-03 02:57:52 +13:00
'https://api.dropboxapi.com/oauth2/token',
2019-10-03 02:39:40 +13:00
$headers,
'code='.urlencode($code).
'&client_id='.urlencode($this->appID).
'&client_secret='.urlencode($this->appSecret).
'&redirect_uri='.urlencode($this->callback).
'&grant_type=authorization_code'
);
$accessToken = json_decode($accessToken, true);
if (isset($accessToken['access_token'])) {
return $accessToken['access_token'];
}
return '';
}
/**
* @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);
2019-10-03 02:39:40 +13:00
$this->user = json_decode($user, true);
2019-10-03 03:05:02 +13:00
2019-10-03 02:39:40 +13:00
}
return $this->user;
}
}