diff --git a/app/config/providers.php b/app/config/providers.php index 505c2898c4..c65e7a80cd 100644 --- a/app/config/providers.php +++ b/app/config/providers.php @@ -33,6 +33,14 @@ return [ // Ordered by ABC. 'beta' => false, 'mock' => false ], + 'box' => [ + 'developers' => 'https://developer.box.com/reference/', + 'icon' => 'icon-box', + 'enabled' => true, + 'form' => false, + 'beta' => false, + 'mock' => false + ], 'discord' => [ 'developers' => 'https://discordapp.com/developers/docs/topics/oauth2', 'icon' => 'icon-discord', diff --git a/public/images/oauth2/box.png b/public/images/oauth2/box.png new file mode 100644 index 0000000000..e2c5249b98 Binary files /dev/null and b/public/images/oauth2/box.png differ diff --git a/src/Appwrite/Auth/OAuth2/Box.php b/src/Appwrite/Auth/OAuth2/Box.php new file mode 100644 index 0000000000..48e2a387a6 --- /dev/null +++ b/src/Appwrite/Auth/OAuth2/Box.php @@ -0,0 +1,152 @@ +endpoint . 'authorize?'. + \http_build_query([ + 'response_type' => 'code', + 'client_id' => $this->appID, + 'scope' => \implode(',', $this->getScopes()), + 'redirect_uri' => $this->callback, + 'state' => \json_encode($this->state), + ]); + + return $url; + } + + /** + * @param string $code + * + * @return string + */ + public function getAccessToken(string $code): string + { + $header = "Content-Type: application/x-www-form-urlencoded"; + $accessToken = $this->request( + 'POST', + $this->endpoint . 'token', + [$header], + \http_build_query([ + "client_id" => $this->appID, + "client_secret" => $this->appSecret, + "code" => $code, + "grant_type" => "authorization_code", + "scope" => \implode(',', $this->getScopes()), + "redirect_uri" => $this->callback + ]) + ); + + $accessToken = \json_decode($accessToken, true); + + if (array_key_exists('access_token', $accessToken)) { + 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['login'])) { + return $user['login']; + } + + return ''; + } + + /** + * @param string $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): array + { + $header = [ + 'Authorization: Bearer '.\urlencode($accessToken), + ]; + if (empty($this->user)) { + $user = $this->request( + 'GET', + $this->resourceEndpoint . 'me', + $header + ); + $this->user = \json_decode($user, true); + } + + return $this->user; + } + +} \ No newline at end of file