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

145 lines
3.3 KiB
PHP
Raw Normal View History

2019-10-02 20:00:59 +13:00
<?php
namespace Appwrite\Auth\OAuth2;
2019-10-02 20:00:59 +13:00
use Appwrite\Auth\OAuth2;
2019-10-02 20:00:59 +13:00
// Reference Material
// https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow
// https://docs.microsoft.com/en-us/graph/auth-v2-user
2020-02-17 00:41:03 +13:00
class Microsoft extends OAuth2
2019-10-02 20:00:59 +13:00
{
/**
* @var array
*/
protected $user = [];
2020-01-19 08:39:37 +13:00
/**
* @var array
*/
2020-01-19 09:12:41 +13:00
protected $scopes = [
2020-06-25 09:05:16 +12:00
'offline_access',
2020-01-19 09:12:41 +13:00
'user.read'
];
2020-01-19 08:39:37 +13:00
2019-10-02 20:00:59 +13:00
/**
* @return string
*/
public function getName(): string
{
return 'microsoft';
}
2019-10-02 20:28:59 +13:00
2019-10-02 20:00:59 +13:00
/**
* @return string
*/
public function getLoginURL(): string
{
return 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize?'.\http_build_query([
2020-01-19 08:39:37 +13:00
'client_id' => $this->appID,
'redirect_uri' => $this->callback,
'state'=> \json_encode($this->state),
'scope'=> \implode(' ', $this->getScopes()),
2020-01-19 08:39:37 +13:00
'response_type' => 'code',
'response_mode' => 'query'
]);
2019-10-02 20:00:59 +13:00
}
/**
* @param string $code
*
* @return string
*/
public function getAccessToken(string $code): string
{
$headers[] = 'Content-Type: application/x-www-form-urlencoded';
$accessToken = $this->request(
'POST',
'https://login.microsoftonline.com/common/oauth2/v2.0/token',
$headers,
\http_build_query([
2020-01-19 08:39:37 +13:00
'code' => $code,
'client_id' => $this->appID,
'client_secret' => $this->appSecret,
'redirect_uri' => $this->callback,
'scope' => \implode(' ', $this->getScopes()),
2020-01-19 08:39:37 +13:00
'grant_type' => 'authorization_code'
])
2019-10-02 20:00:59 +13:00
);
$accessToken = \json_decode($accessToken, true);
2019-10-02 20:00:59 +13:00
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);
if (isset($user['id'])) {
return $user['id'];
}
return '';
}
/**
* @param string $accessToken
*
* @return string
*/
public function getUserEmail(string $accessToken): string
{
$user = $this->getUser($accessToken);
if (isset($user['userPrincipalName'])) {
return $user['userPrincipalName'];
}
return '';
}
/**
* @param string $accessToken
*
* @return string
*/
public function getUserName(string $accessToken): string
{
$user = $this->getUser($accessToken);
if (isset($user['displayName'])) {
return $user['displayName'];
}
return '';
}
/**
* @param string $accessToken
*
* @return array
*/
protected function getUser(string $accessToken): array
{
if (empty($this->user)) {
$headers[] = 'Authorization: Bearer '. \urlencode($accessToken);
2019-10-02 20:00:59 +13:00
$user = $this->request('GET', 'https://graph.microsoft.com/v1.0/me', $headers);
$this->user = \json_decode($user, true);
2019-10-02 20:00:59 +13:00
}
return $this->user;
}
}