diff --git a/app/config/providers.php b/app/config/providers.php index 3b5661790..c6bc9b203 100644 --- a/app/config/providers.php +++ b/app/config/providers.php @@ -115,6 +115,12 @@ return [ 'enabled' => true, 'mock' => false, ], + 'yandex' => [ + 'developers' => 'https://tech.yandex.com/oauth/', + 'icon' => 'icon-yandex', + 'enabled' => true, + 'mock' => false, + ], 'twitter' => [ 'developers' => 'https://developer.twitter.com/', 'icon' => 'icon-twitter', diff --git a/src/Auth/OAuth/Yandex.php b/src/Auth/OAuth/Yandex.php new file mode 100644 index 000000000..bcd7ec1a8 --- /dev/null +++ b/src/Auth/OAuth/Yandex.php @@ -0,0 +1,150 @@ + 'code', + 'client_id' => $this->appID, + 'scope'=> implode(' ', $this->getScopes()), + 'state' => json_encode($this->state) + ]); + } + + /** + * @param string $code + * + * @return string + */ + public function getAccessToken(string $code): string + { + $headers = [ + "Authorization: Basic " . base64_encode($this->appID . ":" . $this->appSecret), + "Content-Type: application/x-www-form-urlencoded", + ]; + + $accessToken = $this->request( + 'POST', + 'https://oauth.yandex.com/token', + $headers, + http_build_query([ + 'code' => $code, + 'grant_type' => 'authorization_code' + ]) + ); + $accessToken = json_decode($accessToken, true); + + 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['default_email'])) { + return $user['default_email']; + } + + return ''; + } + + /** + * @param string $accessToken + * + * @return string + */ + public function getUserName(string $accessToken): string + { + $user = $this->getUser($accessToken); + + if (isset($user['display_name'])) { + return $user['display_name']; + } + + return ''; + } + + /** + * @param string $accessToken + * + * @return array + */ + protected function getUser(string $accessToken): array + { + if (empty($this->user)) { + $user = $this->request('GET', 'https://login.yandex.ru/info?'.http_build_query([ + 'format' => 'json', + 'oauth_token' => $accessToken + ])); + $this->user = json_decode($user, true); + } + return $this->user; + } +}