diff --git a/app/config/providers.php b/app/config/providers.php index 8525a4216..bb823c9ab 100644 --- a/app/config/providers.php +++ b/app/config/providers.php @@ -231,6 +231,16 @@ return [ // Ordered by ABC. 'beta' => false, 'mock' => false, ], + 'yammer' => [ + 'name' => 'Yammer', + 'developers' => 'https://developer.yammer.com/docs/oauth-2', + 'icon' => 'icon-yammer', + 'enabled' => true, + 'sandbox' => false, + 'form' => false, + 'beta' => false, + 'mock' => false, + ], 'yandex' => [ 'name' => 'Yandex', 'developers' => 'https://tech.yandex.com/oauth/', diff --git a/public/images/users/yammer.png b/public/images/users/yammer.png new file mode 100644 index 000000000..2949d82c1 Binary files /dev/null and b/public/images/users/yammer.png differ diff --git a/src/Appwrite/Auth/OAuth2/Yammer.php b/src/Appwrite/Auth/OAuth2/Yammer.php new file mode 100644 index 000000000..832d886ee --- /dev/null +++ b/src/Appwrite/Auth/OAuth2/Yammer.php @@ -0,0 +1,137 @@ +endpoint . 'oauth2/authorize?'. + \http_build_query([ + 'client_id' => $this->appID, + 'response_type' => 'code', + 'redirect_uri' => $this->callback, + 'state' => \json_encode($this->state) + ]); + } + + /** + * @param string $code + * + * @return string + */ + public function getAccessToken(string $code): string + { + $headers = ['Content-Type: application/x-www-form-urlencoded']; + + $accessToken = $this->request( + 'POST', + $this->endpoint . 'access_token?', + $headers, + \http_build_query([ + 'client_id' => $this->appID, + 'client_secret' => $this->appSecret, + 'code' => $code, + 'grant_type' => 'authorization_code' + ]) + ); + + $accessToken = \json_decode($accessToken, true); + + if (isset($accessToken['access_token']['token'])) { + return $accessToken['access_token']['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['email'])) { + return $user['email']; + } + + return ''; + } + + /** + * @param string $accessToken + * + * @return string + */ + public function getUserName(string $accessToken): string + { + $user = $this->getUser($accessToken); + + if (isset($user['full_name'])) { + return $user['full_name']; + } + + return ''; + } + + /** + * @param string $accessToken + * + * @return array + */ + protected function getUser(string $accessToken): array + { + if (empty($this->user)) { + $headers = ['Authorization: Bearer '. \urlencode($accessToken)]; + $user = $this->request('GET', 'https://www.yammer.com/api/v1/users/current.json', $headers); + $this->user = \json_decode($user, true); + } + + return $this->user; + } +}