Class OpenIdAuthenticator
java.lang.Object
org.eclipse.jetty.security.authentication.LoginAuthenticator
org.eclipse.jetty.security.openid.OpenIdAuthenticator
- All Implemented Interfaces:
Authenticator
Implements authentication using OpenId Connect on top of OAuth 2.0.
The OpenIdAuthenticator redirects unauthenticated requests to the OpenID Connect Provider. The End-User is
eventually redirected back with an Authorization Code to the /j_security_check URI within the context.
The Authorization Code is then used to authenticate the user through the OpenIdCredentials and OpenIdLoginService.
Once a user is authenticated the OpenID Claims can be retrieved through an attribute on the session with the key CLAIMS.
The full response containing the OAuth 2.0 Access Token can be obtained with the session attribute RESPONSE.
SessionAuthentication is then used to wrap Authentication results so that they are associated with the session.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static classstatic classThis Authentication represents a just completed OpenId Connect authentication.private static classNested classes/interfaces inherited from interface Authenticator
Authenticator.AuthConfiguration, Authenticator.Factory -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate booleanprivate OpenIdConfigurationprivate Stringprivate Stringprivate Stringprivate final SecureRandomstatic final Stringprivate static final Stringstatic final StringDeprecated.static final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringprivate static final Loggerstatic final StringFields inherited from class LoginAuthenticator
_identityService, _loginService -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate Map<String, OpenIdAuthenticator.UriRedirectInfo> ensureCsrfMap(javax.servlet.http.HttpSession session) protected StringgetChallengeUri(Request request) private StringgetRedirectUri(javax.servlet.http.HttpServletRequest request) booleanDeprecated.booleanisErrorPage(String pathInContext) booleanisJSecurityCheck(String uri) If the UserIdentity is not null after this method callsLoginService.login(String, Object, ServletRequest), it is assumed that the user is fully authenticated and we need to change the session id to prevent session fixation vulnerability.voidlogout(javax.servlet.ServletRequest request) voidprepareRequest(javax.servlet.ServletRequest request) Called prior to validateRequest.removeAndClearCsrfMap(javax.servlet.http.HttpSession session, String csrf) booleansecureResponse(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory, Authentication.User validatedUser) is response secureprivate voidsendError(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String message) Report an error case either by redirecting to the error page if it is defined, otherwise sending a 403 response.voidsetAlwaysSaveUri(boolean alwaysSave) Deprecated.voidsetConfiguration(Authenticator.AuthConfiguration configuration) Configure the Authenticatorprivate voidsetErrorPage(String path) validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) Validate a requestMethods inherited from class LoginAuthenticator
getLoginService, renewSession
-
Field Details
-
LOG
-
CLAIMS
- See Also:
-
RESPONSE
- See Also:
-
ERROR_PAGE
- See Also:
-
J_URI
- See Also:
-
J_POST
- See Also:
-
J_METHOD
- See Also:
-
J_SECURITY_CHECK
- See Also:
-
ERROR_PARAMETER
- See Also:
-
CSRF_MAP
- See Also:
-
CSRF_TOKEN
-
_secureRandom
-
_configuration
-
_errorPage
-
_errorPath
-
_errorQuery
-
_alwaysSaveUri
private boolean _alwaysSaveUri
-
-
Constructor Details
-
OpenIdAuthenticator
public OpenIdAuthenticator() -
OpenIdAuthenticator
-
-
Method Details
-
setConfiguration
Description copied from interface:AuthenticatorConfigure the Authenticator- Specified by:
setConfigurationin interfaceAuthenticator- Overrides:
setConfigurationin classLoginAuthenticator- Parameters:
configuration- the configuration
-
getAuthMethod
- Returns:
- The name of the authentication method
-
setAlwaysSaveUri
Deprecated. -
isAlwaysSaveUri
Deprecated. -
setErrorPage
-
login
public UserIdentity login(String username, Object credentials, javax.servlet.ServletRequest request) Description copied from class:LoginAuthenticatorIf the UserIdentity is not null after this method callsLoginService.login(String, Object, ServletRequest), it is assumed that the user is fully authenticated and we need to change the session id to prevent session fixation vulnerability. If the UserIdentity is not necessarily fully authenticated, then subclasses must override this method and determine when the UserIdentity IS fully authenticated and renew the session id.- Overrides:
loginin classLoginAuthenticator- Parameters:
username- the username of the client to be authenticatedcredentials- the user's credentialrequest- the inbound request that needs authentication
-
logout
public void logout(javax.servlet.ServletRequest request) - Overrides:
logoutin classLoginAuthenticator
-
prepareRequest
public void prepareRequest(javax.servlet.ServletRequest request) Description copied from interface:AuthenticatorCalled prior to validateRequest. The authenticator can manipulate the request to update it with information that can be inspected prior to validateRequest being called. The primary purpose of this method is to satisfy the Servlet Spec 3.1 section 13.6.3 on handling Form authentication where the http method of the original request causing authentication is not the same as the http method resulting from the redirect after authentication.- Specified by:
prepareRequestin interfaceAuthenticator- Overrides:
prepareRequestin classLoginAuthenticator- Parameters:
request- the request to manipulate
-
validateRequest
public Authentication validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) throws ServerAuthException Description copied from interface:AuthenticatorValidate a request- Parameters:
req- The requestres- The responsemandatory- True if authentication is mandatory.- Returns:
- An Authentication. If Authentication is successful, this will be a
Authentication.User. If a response has been sent by the Authenticator (which can be done for both successful and unsuccessful authentications), then the result will implementAuthentication.ResponseSent. If Authentication is not mandatory, then aAuthentication.Deferredmay be returned. - Throws:
ServerAuthException- if unable to validate request
-
sendError
private void sendError(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String message) throws IOException Report an error case either by redirecting to the error page if it is defined, otherwise sending a 403 response. If the message parameter is not null, a query parameter with a key ofERROR_PARAMETERand value of the error message will be logged and added to the error redirect URI if the error page is defined.- Parameters:
request- the request.response- the response.message- the reason for the error or null.- Throws:
IOException- if sending the error fails for any reason.
-
isJSecurityCheck
-
isErrorPage
-
getRedirectUri
-
getChallengeUri
-
secureResponse
public boolean secureResponse(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory, Authentication.User validatedUser) Description copied from interface:Authenticatoris response secure- Parameters:
req- the requestres- the responsemandatory- if security is mandatorvalidatedUser- the user that was validated- Returns:
- true if response is secure
-
removeAndClearCsrfMap
private OpenIdAuthenticator.UriRedirectInfo removeAndClearCsrfMap(javax.servlet.http.HttpSession session, String csrf) -
ensureCsrfMap
private Map<String, OpenIdAuthenticator.UriRedirectInfo> ensureCsrfMap(javax.servlet.http.HttpSession session)
-