getOktaDomain() . '/oauth2/' . $this->getAuthorizationServerId() . '/v1/authorize?' . \http_build_query([ 'client_id' => $this->appID, 'redirect_uri' => $this->callback, 'state' => \json_encode($this->state), 'scope' => \implode(' ', $this->getScopes()), 'response_type' => 'code' ]); } /** * @param string $code * * @return array */ protected function getTokens(string $code): array { if (empty($this->tokens)) { $headers = ['Content-Type: application/x-www-form-urlencoded']; $this->tokens = \json_decode($this->request( 'POST', 'https://' . $this->getOktaDomain() . '/oauth2/' . $this->getAuthorizationServerId() . '/v1/token', $headers, \http_build_query([ 'code' => $code, 'client_id' => $this->appID, 'client_secret' => $this->getClientSecret(), 'redirect_uri' => $this->callback, 'scope' => \implode(' ', $this->getScopes()), 'grant_type' => 'authorization_code' ]) ), true); } return $this->tokens; } /** * @param string $refreshToken * * @return array */ public function refreshTokens(string $refreshToken): array { $headers = ['Content-Type: application/x-www-form-urlencoded']; $this->tokens = \json_decode($this->request( 'POST', 'https://' . $this->getOktaDomain() . '/oauth2/' . $this->getAuthorizationServerId() . '/v1/token', $headers, \http_build_query([ 'refresh_token' => $refreshToken, 'client_id' => $this->appID, 'client_secret' => $this->getClientSecret(), 'grant_type' => 'refresh_token' ]) ), 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); return $user['sub'] ?? ''; } /** * @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://developer.okta.com/docs/reference/api/oidc/#userinfo * * @param string $accessToken * * @return bool */ public function isEmailVerified(string $accessToken): bool { $user = $this->getUser($accessToken); if ($user['email_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): array { if (empty($this->user)) { $headers = ['Authorization: Bearer ' . \urlencode($accessToken)]; $user = $this->request('GET', 'https://' . $this->getOktaDomain() . '/oauth2/' . $this->getAuthorizationServerId() . '/v1/userinfo', $headers); $this->user = \json_decode($user, true); } return $this->user; } /** * Extracts the Client Secret from the JSON stored in appSecret * * @return string */ protected function getClientSecret(): string { $secret = $this->getAppSecret(); return $secret['clientSecret'] ?? ''; } /** * Extracts the Okta Domain from the JSON stored in appSecret * * @return string */ protected function getOktaDomain(): string { $secret = $this->getAppSecret(); return $secret['oktaDomain'] ?? ''; } /** * Extracts the Okta Authorization Server ID from the JSON stored in appSecret * * @return string */ protected function getAuthorizationServerId(): string { $secret = $this->getAppSecret(); return $secret['authorizationServerId'] ?? 'default'; } /** * Decode the JSON stored in appSecret * * @return array */ protected function getAppSecret(): array { try { $secret = \json_decode($this->appSecret, true, 512, JSON_THROW_ON_ERROR); } catch (\Throwable $th) { throw new \Exception('Invalid secret'); } return $secret; } }