1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/src/Appwrite/Auth/OAuth2/Facebook.php

137 lines
2.8 KiB
PHP
Raw Normal View History

2019-05-09 18:54:39 +12:00
<?php
namespace Appwrite\Auth\OAuth2;
2019-05-09 18:54:39 +12:00
use Appwrite\Auth\OAuth2;
2019-05-09 18:54:39 +12:00
2020-02-17 00:41:03 +13:00
class Facebook extends OAuth2
2019-05-09 18:54:39 +12:00
{
/**
* @var string
*/
protected $version = 'v2.8';
/**
* @var array
*/
protected $user = [];
2020-01-19 03:33:39 +13:00
/**
* @var array
*/
2020-01-19 09:12:41 +13:00
protected $scopes = [
'email'
];
2020-01-19 03:33:39 +13:00
2019-05-09 18:54:39 +12:00
/**
* @return string
*/
public function getName():string
{
return 'facebook';
}
/**
* @return string
*/
public function getLoginURL():string
{
return 'https://www.facebook.com/'.$this->version.'/dialog/oauth?'.\http_build_query([
2020-01-19 03:33:39 +13:00
'client_id'=> $this->appID,
'redirect_uri' => $this->callback,
'scope' => \implode(' ', $this->getScopes()),
'state' => \json_encode($this->state)
2020-01-19 03:33:39 +13:00
]);
2019-05-09 18:54:39 +12:00
}
/**
* @param string $code
*
2019-05-09 18:54:39 +12:00
* @return string
*/
public function getAccessToken(string $code):string
{
$accessToken = $this->request(
'GET',
'https://graph.facebook.com/'.$this->version.'/oauth/access_token?'.\http_build_query([
2020-01-19 03:33:39 +13:00
'client_id' => $this->appID,
'redirect_uri' => $this->callback,
'client_secret' => $this->appSecret,
'code' => $code
2020-06-25 09:05:16 +12:00
])
2019-05-09 18:54:39 +12:00
);
$accessToken = \json_decode($accessToken, true);
2019-05-09 18:54:39 +12:00
if (isset($accessToken['access_token'])) {
2019-05-09 18:54:39 +12:00
return $accessToken['access_token'];
}
2020-01-19 03:33:39 +13:00
2019-05-09 18:54:39 +12:00
return '';
}
/**
* @param string $accessToken
*
2019-05-09 18:54:39 +12:00
* @return string
*/
public function getUserID(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['id'])) {
2019-05-09 18:54:39 +12:00
return $user['id'];
}
return '';
}
/**
* @param string $accessToken
*
2019-05-09 18:54:39 +12:00
* @return string
*/
public function getUserEmail(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['email'])) {
2019-05-09 18:54:39 +12:00
return $user['email'];
}
return '';
}
/**
* @param string $accessToken
*
2019-05-09 18:54:39 +12:00
* @return string
*/
public function getUserName(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['name'])) {
2019-05-09 18:54:39 +12:00
return $user['name'];
}
return '';
}
/**
* @param string $accessToken
*
2019-05-09 18:54:39 +12:00
* @return array
*/
protected function getUser(string $accessToken):array
{
if (empty($this->user)) {
$user = $this->request('GET', 'https://graph.facebook.com/'.$this->version.'/me?fields=email,name&access_token='.\urlencode($accessToken));
2019-05-09 18:54:39 +12:00
$this->user = \json_decode($user, true);
2019-05-09 18:54:39 +12:00
}
return $this->user;
}
}