Class SwitchUserFilter
- java.lang.Object
-
- org.springframework.web.filter.GenericFilterBean
-
- org.springframework.security.web.authentication.switchuser.SwitchUserFilter
-
- All Implemented Interfaces:
javax.servlet.Filter,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationEventPublisherAware,org.springframework.context.EnvironmentAware,org.springframework.context.MessageSourceAware,org.springframework.core.env.EnvironmentCapable,org.springframework.web.context.ServletContextAware
public class SwitchUserFilter extends org.springframework.web.filter.GenericFilterBean implements org.springframework.context.ApplicationEventPublisherAware, org.springframework.context.MessageSourceAwareSwitch User processing filter responsible for user context switching.This filter is similar to Unix 'su' however for Spring Security-managed web applications. A common use-case for this feature is the ability to allow higher-authority users (e.g. ROLE_ADMIN) to switch to a regular user (e.g. ROLE_USER).
This filter assumes that the user performing the switch will be required to be logged in as normal (i.e. as a ROLE_ADMIN user). The user will then access a page/controller that enables the administrator to specify who they wish to become (see
switchUserUrl).Note: This URL will be required to have appropriate security constraints configured so that only users of that role can access it (e.g. ROLE_ADMIN).
On a successful switch, the user's
SecurityContextwill be updated to reflect the specified user and will also contain an additionalSwitchUserGrantedAuthoritywhich contains the original user. Before switching, a check will be made on whether the user is already currently switched, and any current switch will be exited to prevent "nested" switches.To 'exit' from a user context, the user needs to access a URL (see
exitUserUrl) that will switch back to the original user as identified by theROLE_PREVIOUS_ADMINISTRATOR.To configure the Switch User Processing Filter, create a bean definition for the Switch User processing filter and add to the filterChainProxy. Note that the filter must come after the FilterSecurityInteceptor in the chain, in order to apply the correct constraints to the switchUserUrl. Example:
<bean id="switchUserProcessingFilter" class="org.springframework.security.web.authentication.switchuser.SwitchUserFilter"> <property name="userDetailsService" ref="userDetailsService" /> <property name="switchUserUrl" value="/login/impersonate" /> <property name="exitUserUrl" value="/logout/impersonate" /> <property name="targetUrl" value="/index.jsp" /> </bean>- See Also:
SwitchUserGrantedAuthority
-
-
Field Summary
Fields Modifier and Type Field Description protected org.springframework.context.support.MessageSourceAccessormessagesstatic java.lang.StringROLE_PREVIOUS_ADMINISTRATORstatic java.lang.StringSPRING_SECURITY_SWITCH_USERNAME_KEY
-
Constructor Summary
Constructors Constructor Description SwitchUserFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()protected org.springframework.security.core.AuthenticationattemptExitUser(javax.servlet.http.HttpServletRequest request)Attempt to exit from an already switched user.protected org.springframework.security.core.AuthenticationattemptSwitchUser(javax.servlet.http.HttpServletRequest request)Attempt to switch to another user.voiddoFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain)protected booleanrequiresExitUser(javax.servlet.http.HttpServletRequest request)Checks the request URI for the presence of exitUserUrl.protected booleanrequiresSwitchUser(javax.servlet.http.HttpServletRequest request)Checks the request URI for the presence of switchUserUrl.voidsetApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher eventPublisher)voidsetAuthenticationDetailsSource(org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource)voidsetExitUserMatcher(RequestMatcher exitUserMatcher)Set the matcher to respond to exit user processing.voidsetExitUserUrl(java.lang.String exitUserUrl)Set the URL to respond to exit user processing.voidsetFailureHandler(AuthenticationFailureHandler failureHandler)Used to define custom behaviour when a switch fails.voidsetMessageSource(org.springframework.context.MessageSource messageSource)voidsetSuccessHandler(AuthenticationSuccessHandler successHandler)Used to define custom behaviour on a successful switch or exit user.voidsetSwitchAuthorityRole(java.lang.String switchAuthorityRole)Allows the role of the switchAuthority to be customized.voidsetSwitchFailureUrl(java.lang.String switchFailureUrl)Sets the URL to which a user should be redirected if the switch fails.voidsetSwitchUserAuthorityChanger(SwitchUserAuthorityChanger switchUserAuthorityChanger)voidsetSwitchUserMatcher(RequestMatcher switchUserMatcher)Set the matcher to respond to switch user processing.voidsetSwitchUserUrl(java.lang.String switchUserUrl)Set the URL to respond to switch user processing.voidsetTargetUrl(java.lang.String targetUrl)Sets the URL to go to after a successful switch / exit user request.voidsetUserDetailsChecker(org.springframework.security.core.userdetails.UserDetailsChecker userDetailsChecker)Sets theUserDetailsCheckerthat is called on the target user whenever the user is switched.voidsetUserDetailsService(org.springframework.security.core.userdetails.UserDetailsService userDetailsService)Sets the authentication data access object.voidsetUsernameParameter(java.lang.String usernameParameter)Allows the parameter containing the username to be customized.
-
-
-
Field Detail
-
SPRING_SECURITY_SWITCH_USERNAME_KEY
public static final java.lang.String SPRING_SECURITY_SWITCH_USERNAME_KEY
- See Also:
- Constant Field Values
-
ROLE_PREVIOUS_ADMINISTRATOR
public static final java.lang.String ROLE_PREVIOUS_ADMINISTRATOR
- See Also:
- Constant Field Values
-
messages
protected org.springframework.context.support.MessageSourceAccessor messages
-
-
Method Detail
-
afterPropertiesSet
public void afterPropertiesSet()
- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Overrides:
afterPropertiesSetin classorg.springframework.web.filter.GenericFilterBean
-
doFilter
public void doFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain) throws java.io.IOException, javax.servlet.ServletException- Specified by:
doFilterin interfacejavax.servlet.Filter- Throws:
java.io.IOExceptionjavax.servlet.ServletException
-
attemptSwitchUser
protected org.springframework.security.core.Authentication attemptSwitchUser(javax.servlet.http.HttpServletRequest request) throws org.springframework.security.core.AuthenticationExceptionAttempt to switch to another user. If the user does not exist or is not active, return null.- Returns:
- The new
Authenticationrequest if successfully switched to another user,nullotherwise. - Throws:
org.springframework.security.core.userdetails.UsernameNotFoundException- If the target user is not found.org.springframework.security.authentication.LockedException- if the account is locked.org.springframework.security.authentication.DisabledException- If the target user is disabled.org.springframework.security.authentication.AccountExpiredException- If the target user account is expired.org.springframework.security.authentication.CredentialsExpiredException- If the target user credentials are expired.org.springframework.security.core.AuthenticationException
-
attemptExitUser
protected org.springframework.security.core.Authentication attemptExitUser(javax.servlet.http.HttpServletRequest request) throws org.springframework.security.authentication.AuthenticationCredentialsNotFoundExceptionAttempt to exit from an already switched user.- Parameters:
request- The http servlet request- Returns:
- The original
Authenticationobject ornullotherwise. - Throws:
org.springframework.security.authentication.AuthenticationCredentialsNotFoundException- If noAuthenticationassociated with this request.
-
requiresExitUser
protected boolean requiresExitUser(javax.servlet.http.HttpServletRequest request)
Checks the request URI for the presence of exitUserUrl.- Parameters:
request- The http servlet request- Returns:
trueif the request requires a exit user,falseotherwise.- See Also:
setExitUserUrl(String)
-
requiresSwitchUser
protected boolean requiresSwitchUser(javax.servlet.http.HttpServletRequest request)
Checks the request URI for the presence of switchUserUrl.- Parameters:
request- The http servlet request- Returns:
trueif the request requires a switch,falseotherwise.- See Also:
setSwitchUserUrl(String)
-
setApplicationEventPublisher
public void setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher eventPublisher) throws org.springframework.beans.BeansException- Specified by:
setApplicationEventPublisherin interfaceorg.springframework.context.ApplicationEventPublisherAware- Throws:
org.springframework.beans.BeansException
-
setAuthenticationDetailsSource
public void setAuthenticationDetailsSource(org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource)
-
setMessageSource
public void setMessageSource(org.springframework.context.MessageSource messageSource)
- Specified by:
setMessageSourcein interfaceorg.springframework.context.MessageSourceAware
-
setUserDetailsService
public void setUserDetailsService(org.springframework.security.core.userdetails.UserDetailsService userDetailsService)
Sets the authentication data access object.- Parameters:
userDetailsService- The UserDetailsService which will be used to load information for the user that is being switched to.
-
setExitUserUrl
public void setExitUserUrl(java.lang.String exitUserUrl)
Set the URL to respond to exit user processing. This is a shortcut forsetExitUserMatcher(RequestMatcher).- Parameters:
exitUserUrl- The exit user URL.
-
setExitUserMatcher
public void setExitUserMatcher(RequestMatcher exitUserMatcher)
Set the matcher to respond to exit user processing.- Parameters:
exitUserMatcher- The exit matcher to use.
-
setSwitchUserUrl
public void setSwitchUserUrl(java.lang.String switchUserUrl)
Set the URL to respond to switch user processing. This is a shortcut forsetSwitchUserMatcher(RequestMatcher)- Parameters:
switchUserUrl- The switch user URL.
-
setSwitchUserMatcher
public void setSwitchUserMatcher(RequestMatcher switchUserMatcher)
Set the matcher to respond to switch user processing.- Parameters:
switchUserMatcher- The switch user matcher.
-
setTargetUrl
public void setTargetUrl(java.lang.String targetUrl)
Sets the URL to go to after a successful switch / exit user request. UsesetSuccessHandlerinstead if you need more customized behaviour.- Parameters:
targetUrl- The target url.
-
setSuccessHandler
public void setSuccessHandler(AuthenticationSuccessHandler successHandler)
Used to define custom behaviour on a successful switch or exit user.Can be used instead of setting targetUrl.
-
setSwitchFailureUrl
public void setSwitchFailureUrl(java.lang.String switchFailureUrl)
Sets the URL to which a user should be redirected if the switch fails. For example, this might happen because the account they are attempting to switch to is invalid (the user doesn't exist, account is locked etc).If not set, an error message will be written to the response.
Use
failureHandlerinstead if you need more customized behaviour.- Parameters:
switchFailureUrl- the url to redirect to.
-
setFailureHandler
public void setFailureHandler(AuthenticationFailureHandler failureHandler)
Used to define custom behaviour when a switch fails.Can be used instead of setting switchFailureUrl.
-
setSwitchUserAuthorityChanger
public void setSwitchUserAuthorityChanger(SwitchUserAuthorityChanger switchUserAuthorityChanger)
- Parameters:
switchUserAuthorityChanger- to use to fine-tune the authorities granted to subclasses (may be null if SwitchUserFilter should not fine-tune the authorities)
-
setUserDetailsChecker
public void setUserDetailsChecker(org.springframework.security.core.userdetails.UserDetailsChecker userDetailsChecker)
Sets theUserDetailsCheckerthat is called on the target user whenever the user is switched.- Parameters:
userDetailsChecker- theUserDetailsCheckerthat checks the status of the user that is being switched to. Defaults toAccountStatusUserDetailsChecker.
-
setUsernameParameter
public void setUsernameParameter(java.lang.String usernameParameter)
Allows the parameter containing the username to be customized.- Parameters:
usernameParameter- the parameter name. Defaults tousername
-
setSwitchAuthorityRole
public void setSwitchAuthorityRole(java.lang.String switchAuthorityRole)
Allows the role of the switchAuthority to be customized.- Parameters:
switchAuthorityRole- the role name. Defaults toROLE_PREVIOUS_ADMINISTRATOR
-
-