From 170156cb41e4cfa176e0592a7942fb21c7a26e2e Mon Sep 17 00:00:00 2001 From: Bishwajeet Parhi Date: Thu, 9 Jun 2022 16:10:38 +0530 Subject: [PATCH] initial dailymotion provider --- app/config/providers.php | 60 +++--- src/Appwrite/Auth/OAuth2/DailyMotion.php | 227 +++++++++++++++++++++++ 2 files changed, 262 insertions(+), 25 deletions(-) create mode 100644 src/Appwrite/Auth/OAuth2/DailyMotion.php diff --git a/app/config/providers.php b/app/config/providers.php index c0acceb0f..91728def5 100644 --- a/app/config/providers.php +++ b/app/config/providers.php @@ -61,6 +61,16 @@ return [ // Ordered by ABC. 'beta' => false, 'mock' => false ], + 'dailymotion' => [ + 'name' => 'Dailymotion', + 'developers' => 'https://developers.dailymotion.com/api/', + 'icon' => 'icon-dailymotion', + 'enabled' => true, + 'sandbox' => false, + 'form' => false, + 'beta' => false, + 'mock' => false + ], 'discord' => [ 'name' => 'Discord', 'developers' => 'https://discordapp.com/developers/docs/topics/oauth2', @@ -211,6 +221,16 @@ return [ // Ordered by ABC. 'beta' => false, 'mock' => false, ], + 'stripe' => [ + 'name' => 'Stripe', + 'developers' => 'https://stripe.com/docs/api', + 'icon' => 'icon-stripe', + 'enabled' => true, + 'sandbox' => false, + 'form' => false, + 'beta' => false, + 'mock' => false + ], 'tradeshift' => [ 'name' => 'Tradeshift', 'developers' => 'https://developers.tradeshift.com/docs/api', @@ -241,15 +261,15 @@ return [ // Ordered by ABC. 'beta' => false, 'mock' => false, ], - 'zoom' => [ - 'name' => 'Zoom', - 'developers' => 'https://marketplace.zoom.us/docs/guides/auth/oauth/', - 'icon' => 'icon-zoom', + 'wordpress' => [ + 'name' => 'WordPress', + 'developers' => 'https://developer.wordpress.com/docs/oauth2/', + 'icon' => 'icon-wordpress', 'enabled' => true, 'sandbox' => false, 'form' => false, 'beta' => false, - 'mock' => false, + 'mock' => false ], 'yahoo' => [ 'name' => 'Yahoo', @@ -281,6 +301,16 @@ return [ // Ordered by ABC. 'beta' => false, 'mock' => false, ], + 'zoom' => [ + 'name' => 'Zoom', + 'developers' => 'https://marketplace.zoom.us/docs/guides/auth/oauth/', + 'icon' => 'icon-zoom', + 'enabled' => true, + 'sandbox' => false, + 'form' => false, + 'beta' => false, + 'mock' => false, + ], // 'instagram' => [ // 'name' => 'Instagram', // 'developers' => 'https://www.instagram.com/developer/', @@ -297,26 +327,6 @@ return [ // Ordered by ABC. // 'beta' => false, // 'mock' => false, // ], - 'wordpress' => [ - 'name' => 'WordPress', - 'developers' => 'https://developer.wordpress.com/docs/oauth2/', - 'icon' => 'icon-wordpress', - 'enabled' => true, - 'sandbox' => false, - 'form' => false, - 'beta' => false, - 'mock' => false - ], - 'stripe' => [ - 'name' => 'Stripe', - 'developers' => 'https://stripe.com/docs/api', - 'icon' => 'icon-stripe', - 'enabled' => true, - 'sandbox' => false, - 'form' => false, - 'beta' => false, - 'mock' => false - ], // Keep Last 'mock' => [ 'name' => 'Mock', diff --git a/src/Appwrite/Auth/OAuth2/DailyMotion.php b/src/Appwrite/Auth/OAuth2/DailyMotion.php new file mode 100644 index 000000000..33d69c308 --- /dev/null +++ b/src/Appwrite/Auth/OAuth2/DailyMotion.php @@ -0,0 +1,227 @@ +authEndpoint . '?' . + \http_build_query([ + 'response_type' => 'code', + 'client_id' => $this->appID, + 'state' => \json_encode($this->state), + 'redirect_uri' => $this->callback, + 'scope' => \implode(' ', $this->getScopes()) + ]); + + return $url; + } + + /** + * + * + * @return array + */ + private function getFields(): array { + return $this->fields; + } + + /** + * @param string $code + * + * @return array + */ + protected function getTokens(string $code): array + { + if (empty($this->tokens)) { + $response = $this->request( + 'POST', + $this->endpoint . 'oauth/token', + ["Content-Type: application/x-www-form-urlencoded"], + \http_build_query([ + 'grant_type' => 'authorization_code', + "client_id" => $this->appID, + "client_secret" => $this->appSecret, + "redirect_uri" => $this->callback, + 'scope' => \implode(' ', $this->getScopes()) + ]) + ); + + $output = []; + \parse_str($response, $output); + $this->tokens = $output; + } + + return $this->tokens; + } + + + /** + * @param string $refreshToken + * + * @return array + */ + public function refreshTokens(string $refreshToken):array + { + // TODO: Fire request to oauth API to generate access_token using refresh token + $this->tokens = \json_decode($this->request( + 'POST', + $this->endpoint . '/oauth/token', + ['Content-Type: application/x-www-form-urlencoded'], + \http_build_query([ + 'grant_type' => 'refresh_token', + 'refresh_token' => $refreshToken, + 'client_id' => $this->appID, + 'client_secret' => $this->appSecret, + ]) + ), true); + + if (empty($this->tokens['refresh_token'])) { + $this->tokens['refresh_token'] = $refreshToken; + } + + + return $this->tokens; + } + + /** + * @param string $accessToken + * + * @return string + */ + public function getUserID(string $accessToken): string + { + $user = $this->getUser($accessToken); + + // TODO: Pick user ID from $user response + $userId = $user['id'] ?? ''; + + return $userId; + } + + /** + * @param string $accessToken + * + * @return string + */ + public function getUserEmail(string $accessToken): string + { + $user = $this->getUser($accessToken); + + // TODO: Pick user email from $user response + $userEmail = $user['email'] ?? ''; + + return $userEmail; + } + + /** + * Check if the OAuth email is verified + * + * @link https://discord.com/developers/docs/resources/user + * + * @param string $accessToken + * + * @return bool + */ + public function isEmailVerified(string $accessToken): bool + { + $user = $this->getUser($accessToken); + + if ($user['verified'] ?? false) { + return true; + } + + return false; + } + + /** + * @param string $accessToken + * + * @return string + */ + public function getUserName(string $accessToken): string + { + $user = $this->getUser($accessToken); + + // TODO: Pick username from $user response + $username = $user['username'] ?? ''; + + return $username; + } + + /** + * @param string $accessToken + * + * @return array + */ + protected function getUser(string $accessToken) + { + if (empty($this->user)) { + $user = $this->request( + 'GET', + $this->endpoint . '/user/me?', + ['Authorization: Bearer ' . \urlencode($accessToken)], + \http_build_query([ + 'fields' => \implode(',', $this->getFields())]) + ); + $this->user = \json_decode($user, true); + } + + return $this->user; + } +} \ No newline at end of file