mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Merge pull request #290 from armino-dev/add-bitly-auth-provider
Added Bitly OAuth provider
This commit is contained in:
commit
a6d40d81c3
3 changed files with 157 additions and 0 deletions
|
|
@ -133,6 +133,12 @@ return [
|
||||||
'enabled' => true,
|
'enabled' => true,
|
||||||
'mock' => false
|
'mock' => false
|
||||||
],
|
],
|
||||||
|
'bitly' => [
|
||||||
|
'developers' => 'https://dev.bitly.com/v4_documentation.html',
|
||||||
|
'icon' => 'icon-bitly',
|
||||||
|
'enabled' => true,
|
||||||
|
'mock' => false
|
||||||
|
],
|
||||||
// Keep Last
|
// Keep Last
|
||||||
'mock' => [
|
'mock' => [
|
||||||
'developers' => 'https://appwrite.io',
|
'developers' => 'https://appwrite.io',
|
||||||
|
|
|
||||||
BIN
public/images/oauth/bitly.png
Normal file
BIN
public/images/oauth/bitly.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
151
src/Auth/OAuth/Bitly.php
Normal file
151
src/Auth/OAuth/Bitly.php
Normal file
|
|
@ -0,0 +1,151 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Auth\OAuth;
|
||||||
|
|
||||||
|
use Auth\OAuth;
|
||||||
|
|
||||||
|
// Reference Material
|
||||||
|
// https://dev.bitly.com/v4_documentation.html
|
||||||
|
//
|
||||||
|
class Bitly extends OAuth
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $endpoint = 'https://bitly.com/oauth/';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $resourceEndpoint = 'https://api-ssl.bitly.com/';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $scopes = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $user = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getName():string
|
||||||
|
{
|
||||||
|
return 'bitly';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getLoginURL():string
|
||||||
|
{
|
||||||
|
return $this->endpoint . 'authorize?'.
|
||||||
|
http_build_query([
|
||||||
|
'client_id' => $this->appID,
|
||||||
|
'redirect_uri' => $this->callback,
|
||||||
|
'state' => json_encode($this->state)
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $code
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getAccessToken(string $code):string
|
||||||
|
{
|
||||||
|
$response = $this->request(
|
||||||
|
'POST',
|
||||||
|
$this->resourceEndpoint . 'oauth/access_token',
|
||||||
|
["Content-Type: application/x-www-form-urlencoded"],
|
||||||
|
http_build_query([
|
||||||
|
"client_id" => $this->appID,
|
||||||
|
"client_secret" => $this->appSecret,
|
||||||
|
"code" => $code,
|
||||||
|
"redirect_uri" => $this->callback,
|
||||||
|
"state" => json_encode($this->state)
|
||||||
|
])
|
||||||
|
);
|
||||||
|
|
||||||
|
$result = null;
|
||||||
|
|
||||||
|
if ($response) {
|
||||||
|
parse_str($response, $result);
|
||||||
|
return $result['access_token'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $accessToken
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getUserID(string $accessToken):string
|
||||||
|
{
|
||||||
|
$user = $this->getUser($accessToken);
|
||||||
|
|
||||||
|
if (isset($user['login'])) {
|
||||||
|
return $user['login'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $accessToken
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getUserEmail(string $accessToken):string
|
||||||
|
{
|
||||||
|
$user = $this->getUser($accessToken);
|
||||||
|
|
||||||
|
if (isset($user['emails'])) {
|
||||||
|
return $user['emails'][0]['email'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $accessToken
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getUserName(string $accessToken):string
|
||||||
|
{
|
||||||
|
$user = $this->getUser($accessToken);
|
||||||
|
|
||||||
|
if (isset($user['name'])) {
|
||||||
|
return $user['name'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $accessToken
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getUser(string $accessToken)
|
||||||
|
{
|
||||||
|
$headers = [
|
||||||
|
'Authorization: Bearer '. urlencode($accessToken),
|
||||||
|
"Accept: application/json"
|
||||||
|
];
|
||||||
|
|
||||||
|
if (empty($this->user)) {
|
||||||
|
$this->user = json_decode($this->request('GET', $this->resourceEndpoint . "v4/user", $headers), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return $this->user;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue