$this->appID, 'redirect_uri' => $this->callback, 'scope' => \implode(' ', $this->getScopes()), 'state' => \json_encode($this->state) ]); } /** * @param string $code * * @return array */ protected function getTokens(string $code): array { if (empty($this->tokens)) { $response = $this->request( 'POST', 'https://github.com/login/oauth/access_token', [], \http_build_query([ 'client_id' => $this->appID, 'redirect_uri' => $this->callback, 'client_secret' => $this->appSecret, 'code' => $code ]) ); $output = []; \parse_str($response, $output); $this->tokens = $output; } return $this->tokens; } /** * @param string $refreshToken * * @return array */ public function refreshTokens(string $refreshToken): array { $response = $this->request( 'POST', 'https://github.com/login/oauth/access_token', [], \http_build_query([ 'client_id' => $this->appID, 'client_secret' => $this->appSecret, 'grant_type' => 'refresh_token', 'refresh_token' => $refreshToken ]) ); $output = []; \parse_str($response, $output); $this->tokens = $output; 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); return $user['id'] ?? ''; } /** * @param string $accessToken * * @return string */ public function getUserEmail(string $accessToken): string { $user = $this->getUser($accessToken); return $user['email'] ?? ''; } /** * Check if the OAuth email is verified * * @link https://docs.github.com/en/rest/users/emails#list-email-addresses-for-the-authenticated-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); return $user['name'] ?? ''; } /** * @param string $accessToken * * @return array */ protected function getUser(string $accessToken) { if (empty($this->user)) { $this->user = \json_decode($this->request('GET', 'https://api.github.com/user', ['Authorization: token ' . \urlencode($accessToken)]), true); $emails = $this->request('GET', 'https://api.github.com/user/emails', ['Authorization: token ' . \urlencode($accessToken)]); $emails = \json_decode($emails, true); foreach ($emails as $email) { if (isset($email['verified']) && $email['verified'] === true) { $this->user['email'] = $email['email']; $this->user['verified'] = $email['verified']; break; } } } return $this->user; } }