Class FormAuthenticator
- java.lang.Object
-
- org.eclipse.jetty.security.authentication.LoginAuthenticator
-
- org.eclipse.jetty.security.authentication.FormAuthenticator
-
- All Implemented Interfaces:
Authenticator
public class FormAuthenticator extends LoginAuthenticator
FORM Authenticator.This authenticator implements form authentication will use dispatchers to the login page if the
__FORM_DISPATCH
init parameter is set to true. Otherwise it will redirect.The form authenticator redirects unauthenticated requests to a log page which should use a form to gather username/password from the user and send them to the /j_security_check URI within the context. FormAuthentication uses
SessionAuthentication
to wrap Authentication results so that they are associated with the session.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FormAuthenticator.FormAuthentication
This Authentication represents a just completed Form authentication.protected static class
FormAuthenticator.FormRequest
protected static class
FormAuthenticator.FormResponse
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.security.Authenticator
Authenticator.AuthConfiguration, Authenticator.Factory
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
__FORM_DISPATCH
static java.lang.String
__FORM_ERROR_PAGE
static java.lang.String
__FORM_LOGIN_PAGE
static java.lang.String
__J_METHOD
static java.lang.String
__J_PASSWORD
static java.lang.String
__J_POST
static java.lang.String
__J_SECURITY_CHECK
static java.lang.String
__J_URI
static java.lang.String
__J_USERNAME
-
Fields inherited from class org.eclipse.jetty.security.authentication.LoginAuthenticator
_identityService, _loginService
-
-
Constructor Summary
Constructors Constructor Description FormAuthenticator()
FormAuthenticator(java.lang.String login, java.lang.String error, boolean dispatch)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getAlwaysSaveUri()
java.lang.String
getAuthMethod()
boolean
isJSecurityCheck(java.lang.String uri)
boolean
isLoginOrErrorPage(java.lang.String pathInContext)
UserIdentity
login(java.lang.String username, java.lang.Object password, javax.servlet.ServletRequest request)
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.void
logout(javax.servlet.ServletRequest request)
void
prepareRequest(javax.servlet.ServletRequest request)
Called prior to validateRequest.boolean
secureResponse(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory, Authentication.User validatedUser)
is response securevoid
setAlwaysSaveUri(boolean alwaysSave)
If true, uris that cause a redirect to a login page will always be remembered.void
setConfiguration(Authenticator.AuthConfiguration configuration)
Configure the AuthenticatorAuthentication
validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory)
Validate a request-
Methods inherited from class org.eclipse.jetty.security.authentication.LoginAuthenticator
getLoginService, renewSession
-
-
-
-
Field Detail
-
__FORM_LOGIN_PAGE
public static final java.lang.String __FORM_LOGIN_PAGE
- See Also:
- Constant Field Values
-
__FORM_ERROR_PAGE
public static final java.lang.String __FORM_ERROR_PAGE
- See Also:
- Constant Field Values
-
__FORM_DISPATCH
public static final java.lang.String __FORM_DISPATCH
- See Also:
- Constant Field Values
-
__J_URI
public static final java.lang.String __J_URI
- See Also:
- Constant Field Values
-
__J_POST
public static final java.lang.String __J_POST
- See Also:
- Constant Field Values
-
__J_METHOD
public static final java.lang.String __J_METHOD
- See Also:
- Constant Field Values
-
__J_SECURITY_CHECK
public static final java.lang.String __J_SECURITY_CHECK
- See Also:
- Constant Field Values
-
__J_USERNAME
public static final java.lang.String __J_USERNAME
- See Also:
- Constant Field Values
-
__J_PASSWORD
public static final java.lang.String __J_PASSWORD
- See Also:
- Constant Field Values
-
-
Method Detail
-
setAlwaysSaveUri
public void setAlwaysSaveUri(boolean alwaysSave)
If true, uris that cause a redirect to a login page will always be remembered. If false, only the first uri that leads to a login page redirect is remembered. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=379909- Parameters:
alwaysSave
- true to always save the uri
-
getAlwaysSaveUri
public boolean getAlwaysSaveUri()
-
setConfiguration
public void setConfiguration(Authenticator.AuthConfiguration configuration)
Description copied from interface:Authenticator
Configure the Authenticator- Specified by:
setConfiguration
in interfaceAuthenticator
- Overrides:
setConfiguration
in classLoginAuthenticator
- Parameters:
configuration
- the configuration- See Also:
LoginAuthenticator.setConfiguration(org.eclipse.jetty.security.Authenticator.AuthConfiguration)
-
getAuthMethod
public java.lang.String getAuthMethod()
- Returns:
- The name of the authentication method
-
login
public UserIdentity login(java.lang.String username, java.lang.Object password, javax.servlet.ServletRequest request)
Description copied from class:LoginAuthenticator
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. 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:
login
in classLoginAuthenticator
- Parameters:
username
- the username of the client to be authenticatedpassword
- the user's credentialrequest
- the inbound request that needs authentication
-
logout
public void logout(javax.servlet.ServletRequest request)
- Overrides:
logout
in classLoginAuthenticator
-
prepareRequest
public void prepareRequest(javax.servlet.ServletRequest request)
Description copied from interface:Authenticator
Called 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:
prepareRequest
in interfaceAuthenticator
- Overrides:
prepareRequest
in 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:Authenticator
Validate 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.Deferred
may be returned. - Throws:
ServerAuthException
- if unable to validate request
-
isJSecurityCheck
public boolean isJSecurityCheck(java.lang.String uri)
-
isLoginOrErrorPage
public boolean isLoginOrErrorPage(java.lang.String pathInContext)
-
secureResponse
public boolean secureResponse(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory, Authentication.User validatedUser) throws ServerAuthException
Description copied from interface:Authenticator
is response secure- Parameters:
req
- the requestres
- the responsemandatory
- if security is mandatorvalidatedUser
- the user that was validated- Returns:
- true if response is secure
- Throws:
ServerAuthException
- if unable to test response
-
-