public class OpenIDConnectClient extends OAuth2Client<OpenIDConnectClientConfiguration>
Modifier and Type | Field and Description |
---|---|
static String |
ID_TOKEN
ID Token value associated with the authenticated session.
|
static String |
NONCE
Opaque value used to mitigate replay attacks.
|
static String |
SUB
Subject identifier.
|
ACCESS_TOKEN, addExpireTime, AUTHORIZATION_CODE, AUTHORIZATION_HEADER, BASIC_AUTH, BEARER_TOKEN, CLIENT_ID, CLIENT_SECRET, CODE, DATA, EXPIRE_TIME, EXPIRES_IN, GRANT_TYPE, HTTP_GET, HTTP_POST, httpHandler, LANDING_PAGE, PKCE_CODE_CHALLENGE, PKCE_CODE_CHALLENGE_METHOD, PKCE_CODE_VERIFIER, random, REDIRECT_URI, REFRESH_TOKEN, RESPONSE_TYPE, SCOPE, STATE, timeService
Constructor and Description |
---|
OpenIDConnectClient(Handler httpHandler,
OpenIDConnectClientConfiguration config,
Clock clock,
SecureRandom random)
Constructs an OpenIDConnectClient using a provided
Handler and OpenIDConnectClientConfiguration . |
OpenIDConnectClient(Handler httpHandler,
OpenIDConnectClientConfiguration config,
TimeService timeService,
SecureRandom random)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected Form |
buildQuery(String nonce)
Creates the query that will be passed to the request.
|
protected URI |
createAuthRedirectUri(String state,
String nonce)
Deprecated.
Use
OpenIDConnectClient.createAuthRedirectUri(String, String, String) and specify a PKCE challenge. |
protected URI |
createAuthRedirectUri(String state,
String pkceChallenge,
String nonce)
Creates a
URI that the user agent will be redirected to for authentication and authorization. |
protected String |
createNonce()
Generates a nonce value.
|
protected UserInfo |
createUserInfoFromIdTokenJwtClaims(JwtClaimsSet jwtClaims)
Creates an
OpenIDConnectUserInfo object from id_token jwt Claims. |
Promise<URI,OAuthException> |
getAuthRedirect(DataStore dataStore,
String data,
URI landingPage)
Return the URI that the user agent should be redirected to, to authenticate and authorize access.
|
protected static String |
getIdToken(DataStore dataStore)
Retrieves an id token from the data store.
|
protected JwtClaimsSet |
getJwtClaimsSet(String idToken)
Retrieves the claims associated with an id token while enforcing authenticity.
|
protected static String |
getNonce(JsonValue storedData)
Returns the nonce value store in the data store.
|
Promise<? extends OAuth2SessionInfo,OAuthException> |
getSessionInfo(DataStore dataStore)
Validate whether an Auth Server session is still active and valid.
|
Promise<UserInfo,OAuthException> |
getUserInfo(DataStore dataStore)
Return the authenticated user's info from the external authentication server.
|
Promise<JsonValue,OAuthException> |
handlePostAuth(DataStore dataStore,
Map<String,List<String>> requestParameters)
Handle the data produced by the Auth Server as a result of a successful authentication and return the final
redirect to the landing page specified in the
OAuthClient.getAuthRedirect(DataStore, String, URI) call. |
static SignedJwt |
idTokenAsSignedJwt(String idToken)
Returns the id_token as a
SignedJwt . |
protected static JsonValue |
jwtClaimsAsJsonValue(JwtClaimsSet jwtClaims)
Returns the jwt claims as a
JsonValue . |
protected Function<JsonValue,UserInfo,OAuthException> |
mapToUserInfo(JwtClaimsSet jwtClaims)
Maps a retrieved raw profile from the user info endpoint to an
OpenIDConnectUserInfo object. |
protected Function<JsonValue,JsonValue,OAuthException> |
validateNonce(JsonValue storedData)
Validates the nonce.
|
protected Function<JsonValue,JsonValue,OAuthException> |
validateSub(DataStore dataStore)
Validates the sub Claim in the UserInfo Response is an exact match to the sub Claim in the ID Token.
|
addClientIdAndSecret, createAuthorizationState, createAuthRedirectUri, createPkceVerifier, createPostAuthResponse, createRequestForTokenEndpoint, createRequestForTokenEndpoint, createRequestForTokenRefresh, createRequestForUserInfoEndpoint, getAccessToken, getConfig, getFirstValueOrNull, mapToJsonValue, mapToUserInfo, refresh, storeResponse
public static final String ID_TOKEN
public static final String NONCE
public static final String SUB
@Deprecated public OpenIDConnectClient(Handler httpHandler, OpenIDConnectClientConfiguration config, TimeService timeService, SecureRandom random)
Handler
and OpenIDConnectClientConfiguration
.httpHandler
- Handler used to make Http calls to auth and resource servers.config
- configuration that will be used to drive oauth flow.timeService
- time service.random
- SecureRandom
.public OpenIDConnectClient(Handler httpHandler, OpenIDConnectClientConfiguration config, Clock clock, SecureRandom random)
Handler
and OpenIDConnectClientConfiguration
.httpHandler
- Handler used to make Http calls to auth and resource servers.config
- configuration that will be used to drive oauth flow.clock
- Clock instancerandom
- SecureRandom
.protected static final String getIdToken(DataStore dataStore) throws OAuthException
dataStore
- store where the id token is stored.OAuthException
- if no id token is found in the JsonValue.protected static final JsonValue jwtClaimsAsJsonValue(JwtClaimsSet jwtClaims) throws OAuthException
JsonValue
.jwtClaims
- jwt claims.OAuthException
- when object mapper error converting jwt claims to Map.public static final SignedJwt idTokenAsSignedJwt(String idToken) throws OAuthException
SignedJwt
.idToken
- id_token to reconstruct as a SignedJwt.SignedJwt
.OAuthException
- when error reconstructing jwtToken.protected static final String getNonce(JsonValue storedData)
storedData
- the stored authentication and authorization information.public Promise<URI,OAuthException> getAuthRedirect(DataStore dataStore, String data, URI landingPage)
OAuthClient
getAuthRedirect
in interface OAuthClient
getAuthRedirect
in class OAuth2Client<OpenIDConnectClientConfiguration>
dataStore
- The data store that contains information about the OAuth interaction.data
- A value which will be stored in the data store to be returned as part of the final landing
page redirect response, this MUST be URI safe.landingPage
- The final page a user agent should be sent following successful authentication.Promise
, with a type of URI
, suitable for redirecting the user agent for external
authentication and authorization and an Promise
, with a type of OAuthException
,
when an error occurs.public Promise<JsonValue,OAuthException> handlePostAuth(DataStore dataStore, Map<String,List<String>> requestParameters)
OAuthClient
OAuthClient.getAuthRedirect(DataStore, String, URI)
call.
Validate the request as secure. The returned JsonValue
response will also contain the data passed to
OAuthClient.getAuthRedirect(DataStore, String, URI)
.handlePostAuth
in interface OAuthClient
handlePostAuth
in class OAuth2Client<OpenIDConnectClientConfiguration>
dataStore
- The data store that contains information about the OAuth interaction.requestParameters
- The request parameters containing the data produced by the external
authentication server.Promise
, with a type of JsonValue
, containing the landing page and the data value
that was stored in the data store during the OAuthClient.getAuthRedirect(DataStore, String, URI)
call; Promise
, with a type of OAuthException
, when an error occurs.public Promise<UserInfo,OAuthException> getUserInfo(DataStore dataStore)
OAuthClient
getUserInfo
in interface OAuthClient
getUserInfo
in class OAuth2Client<OpenIDConnectClientConfiguration>
dataStore
- The data store that contains information about the OAuth interaction.Promise
, with a type of UserInfo
, containing the available user info.
Promise
, with a type of OAuthException
, when an error occurs.public Promise<? extends OAuth2SessionInfo,OAuthException> getSessionInfo(DataStore dataStore)
OAuthClient
getSessionInfo
in interface OAuthClient
getSessionInfo
in class OAuth2Client<OpenIDConnectClientConfiguration>
dataStore
- The data store that contains information about the OAuth interaction.Promise
, with a type of SessionInfo
, representing information about the session.
Promise
, with a type of OAuthException
, when an error occurs.protected final Function<JsonValue,JsonValue,OAuthException> validateNonce(JsonValue storedData)
storedData
- the stored authentication and authorization information.protected final Function<JsonValue,JsonValue,OAuthException> validateSub(DataStore dataStore)
dataStore
- data store holding authentication and authorization information.protected final Function<JsonValue,UserInfo,OAuthException> mapToUserInfo(JwtClaimsSet jwtClaims)
OpenIDConnectUserInfo
object.jwtClaims
- jwt claims from an id_token.OpenIDConnectUserInfo
object.protected final UserInfo createUserInfoFromIdTokenJwtClaims(JwtClaimsSet jwtClaims) throws OAuthException
OpenIDConnectUserInfo
object from id_token jwt Claims.jwtClaims
- jwt claims from an id_token.OAuthException
- if error occurs while converting the JwtClaimsSet
to JsonValue
.protected URI createAuthRedirectUri(String state, String pkceChallenge, String nonce)
URI
that the user agent will be redirected to for authentication and authorization.state
- opaque value used to prevent CSRF attacks.pkceChallenge
- opaque value used to prevent code interception/injection attacks.nonce
- opaque value used to mitigate replay attacks of an id_token.protected Form buildQuery(String nonce)
nonce
- opaque value used to mitigate replay attacks of an id_token.@Deprecated protected URI createAuthRedirectUri(String state, String nonce)
OpenIDConnectClient.createAuthRedirectUri(String, String, String)
and specify a PKCE challenge.URI
that the user agent will be redirected to for authentication and authorization.createAuthRedirectUri
in class OAuth2Client<OpenIDConnectClientConfiguration>
state
- opaque value used to prevent CSRF attacks.nonce
- opaque value used to mitigate replay attacks of an id_token.protected String createNonce()
protected JwtClaimsSet getJwtClaimsSet(String idToken) throws OAuthException
idToken
- id_token.OAuthException
- when error occurs while verifying the user identity.Copyright © 2010-2018, ForgeRock All Rights Reserved.