Class OpenIDAuthenticationFilter

java.lang.Object
org.springframework.web.filter.GenericFilterBean
org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter
org.springframework.security.openid.OpenIDAuthenticationFilter
All Implemented Interfaces:
jakarta.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

@Deprecated public class OpenIDAuthenticationFilter extends AbstractAuthenticationProcessingFilter
Deprecated.
The OpenID 1.0 and 2.0 protocols have been deprecated and users are encouraged to migrate to OpenID Connect, which is supported by spring-security-oauth2.
Filter which processes OpenID authentication requests.

The OpenID authentication involves two stages.

Submission of OpenID identity

The user's OpenID identity is submitted via a login form, just as it would be for a normal form login. At this stage the filter will extract the identity from the submitted request (by default, the parameter is called openid_identifier, as recommended by the OpenID 2.0 Specification). It then passes the identity to the configured OpenIDConsumer, which returns the URL to which the request should be redirected for authentication. A "return_to" URL is also supplied, which matches the URL processed by this filter, to allow the filter to handle the request once the user has been successfully authenticated. The OpenID server will then authenticate the user and redirect back to the application.

Processing the Redirect from the OpenID Server

Once the user has been authenticated externally, the redirected request will be passed to the OpenIDConsumer again for validation. The returned OpenIDAuthentication will be passed to the AuthenticationManager where it should (normally) be processed by an OpenIDAuthenticationProvider in order to load the authorities for the user.
Since:
2.0
See Also:
  • Field Details

    • DEFAULT_CLAIMED_IDENTITY_FIELD

      public static final String DEFAULT_CLAIMED_IDENTITY_FIELD
      Deprecated.
      See Also:
  • Constructor Details

    • OpenIDAuthenticationFilter

      public OpenIDAuthenticationFilter()
      Deprecated.
  • Method Details

    • afterPropertiesSet

      public void afterPropertiesSet()
      Deprecated.
      Specified by:
      afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
      Overrides:
      afterPropertiesSet in class AbstractAuthenticationProcessingFilter
    • attemptAuthentication

      public Authentication attemptAuthentication(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws AuthenticationException, IOException
      Deprecated.
      Authentication has two phases.
      1. The initial submission of the claimed OpenID. A redirect to the URL returned from the consumer will be performed and null will be returned.
      2. The redirection from the OpenID server to the return_to URL, once it has authenticated the user
      Specified by:
      attemptAuthentication in class AbstractAuthenticationProcessingFilter
      Parameters:
      request - from which to extract parameters and perform the authentication
      response - the response, which may be needed if the implementation has to do a redirect as part of a multi-stage authentication process (such as OpenID).
      Returns:
      the authenticated user token, or null if authentication is incomplete.
      Throws:
      AuthenticationException - if authentication fails.
      IOException
    • lookupRealm

      protected String lookupRealm(String returnToUrl)
      Deprecated.
    • buildReturnToUrl

      protected String buildReturnToUrl(jakarta.servlet.http.HttpServletRequest request)
      Deprecated.
      Builds the return_to URL that will be sent to the OpenID service provider. By default returns the URL of the current request.
      Parameters:
      request - the current request which is being processed by this filter
      Returns:
      The return_to URL.
    • obtainUsername

      protected String obtainUsername(jakarta.servlet.http.HttpServletRequest req)
      Deprecated.
      Reads the claimedIdentityFieldName from the submitted request.
    • setRealmMapping

      public void setRealmMapping(Map<String,String> realmMapping)
      Deprecated.
      Maps the return_to url to a realm, for example:
       https://www.example.com/login/openid -> https://www.example.com/realm
       
      If no mapping is provided then the returnToUrl will be parsed to extract the protocol, hostname and port followed by a trailing slash. This means that https://foo.example.com/login/openid will automatically become http://foo.example.com:80/
      Parameters:
      realmMapping - containing returnToUrl -> realm mappings
    • setClaimedIdentityFieldName

      public void setClaimedIdentityFieldName(String claimedIdentityFieldName)
      Deprecated.
      The name of the request parameter containing the OpenID identity, as submitted from the initial login form.
      Parameters:
      claimedIdentityFieldName - defaults to "openid_identifier"
    • setConsumer

      public void setConsumer(OpenIDConsumer consumer)
      Deprecated.
    • setReturnToUrlParameters

      public void setReturnToUrlParameters(Set<String> returnToUrlParameters)
      Deprecated.
      Specifies any extra parameters submitted along with the identity field which should be appended to the return_to URL which is assembled by buildReturnToUrl(jakarta.servlet.http.HttpServletRequest).
      Parameters:
      returnToUrlParameters - the set of parameter names. If not set, it will default to the parameter name used by the RememberMeServices obtained from the parent class (if one is set).