2012-05-08 23:52:13 +00:00
# OpenID Connect Client
## Overview
2012-05-21 19:28:55 +00:00
This is the Client, a Spring Security AuthenticationFilter, to the OpenID Connect Java Spring Server following the [OpenID Connect Standard] described protocol.
2012-05-08 23:52:13 +00:00
2012-05-15 22:43:45 +00:00
## Configuration of OIDCAuthenticationFilter
2012-05-08 23:52:13 +00:00
2012-05-21 19:28:55 +00:00
Configure the OIDCAuthenticationFilter by adding the XML to your application context security like so making changes where necessary for your deployment:
2012-05-08 23:52:13 +00:00
< security:http auto-config = "false"
use-expressions="true"
disable-url-rewriting="true"
entry-point-ref="authenticationEntryPoint"
pattern="/**">
< security:intercept-url
pattern="/somepath/**"
access="denyAll" />
< security:custom-filter
before="PRE_AUTH_FILTER
ref="openIdConnectAuthenticationFilter" />
< security:intercept-url
pattern="/**"
access="hasAnyRole('ROLE_USER','ROLE_ADMIN')" />
< security:logout / >
< securityLremember-me user-service-ref = "myUserDetailsService"
< / security:http >
< bean id = "authenticationEntryPoint"
class="org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint">
< property name = "loginFormUrl"
value="/openid_connect_login"/>
< / bean >
< security:authentication-manager alias = "authenticationManager" / >
< bean id = "openIdConnectAuthenticationProvider"
2012-05-15 22:43:45 +00:00
class='org.mitre.openid.connect.client.OIDCAuthenticationProvider">
2012-05-08 23:52:13 +00:00
< property name = "userDetaulsService" ref = "myUserDetailsService" / >
< / bean >
< bean id = "openIdConnectAuthenticationFilter"
class="org.mitre.openid.connect.client.OpenIdConnectAuthenticationFilter">
< property name = "authenticationManager"
ref="authenticationManager" />
< property name = "errorRedirectURI"
value="/login.jsp?authfail=openid" />
< property name = "authorizationEndpointURI"
2012-05-09 00:04:51 +00:00
value="http://sever.example.com:8080/openid-connect-server/oauth/authorize" />
2012-05-08 23:52:13 +00:00
< property name = "tokenEndpointURI"
2012-05-09 00:04:51 +00:00
value="http://sever.example.com:8080/openid-connect-server/oauth/token" />
2012-05-08 23:52:13 +00:00
< property name = "checkIDEndpointURI"
value="http://sever.example.com:8080/openid-connect-server/checkid" />
< property name = "clientId"
value="someClientId" />
< property name = "clientSecret" value = "someClientSecret" / >
< / bean >
You will need to implement your own UserDetailsService and configure as the above does with the reference to *myUserDetailsService* .
2012-05-15 22:43:45 +00:00
## Configuration of OIDCAuthenticationUsingChooserFilter
2012-05-08 23:52:13 +00:00
2012-05-15 22:43:45 +00:00
The OIDCAuthenticationUsingChooserFilter was written in response to [Issue #39 ].
2012-05-08 23:52:13 +00:00
2012-05-21 19:28:55 +00:00
The Authentication Filter uses the *oidcServerConfigs* property, a map of OIDC servers; an *accountChooserURI* property to denote the URI of the Account Chooser; and an *accountChooserClient* property to identify the Client to the Account Chooser UI application like so with modifications specific to your deployment:
2012-05-08 23:52:13 +00:00
< bean id = "openIdConnectAuthenticationFilter"
2012-05-15 22:43:45 +00:00
class="org.mitre.openid.connect.client.OIDCAuthenticationUsingChooserFilter">
2012-05-08 23:52:13 +00:00
< property name = "errorRedirectURI" value = "/login.jsp?authfail=openid" / >
< property name = "authenticationManager" ref = "authenticationManager" / >
2012-05-15 22:43:45 +00:00
< property name = "accountChooserURI"
2012-05-08 23:52:13 +00:00
value="http://sever.example.com:8080/account-chooser" />
2012-05-15 22:43:45 +00:00
< property name = "accountChooserClientID" value = "FGWEUIASJK" / >
2012-05-08 23:52:13 +00:00
< property name = "oidcServerConfigs" >
< map >
2012-05-15 22:43:45 +00:00
< entry key = "http://sever.example.com:8080/Fopenid-connect-server" >
2012-05-08 23:52:13 +00:00
< bean class = "org.mitre.openid.connect.client.OIDCServerConfiguration" >
< property name = "authorizationEndpointURI"
2012-05-09 00:04:51 +00:00
value="http://sever.example.com:8080/openid-connect-server/oauth/authorize" />
2012-05-08 23:52:13 +00:00
< property name = "tokenEndpointURI"
2012-05-09 00:04:51 +00:00
value="http://sever.example.com:8080/openid-connect-server/oauth/token" />
2012-05-08 23:52:13 +00:00
< property name = "checkIDEndpointURI"
value="http://sever.example.com:8080/openid-connect-server/checkid" />
< property name = "clientId"
value="someClientId" />
< property name = "clientSecret" value = "someClientSecret" / >
< / bean >
< / entry >
2012-05-15 22:43:45 +00:00
< entry key = ". . .
2012-05-08 23:52:13 +00:00
< / map >
< / property >
< / bean >
2012-05-15 22:43:45 +00:00
Again, you will need to implement your own UserDetailsService and configure as the above does with the reference to *myUserDetailsService* .
2012-05-08 23:52:13 +00:00
2012-05-21 20:02:28 +00:00
## Implementing your own UserDetailsService
An example UserDetailsService for the Rave Portal follows:
package org.mitre.mpn.service.impl;
import org.apache.rave.portal.model.NewUser;
import org.apache.rave.portal.model.User;
import org.apache.rave.portal.service.NewAccountService;
import org.apache.rave.portal.service.UserService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.AuthenticationUserDetailsService;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.mitre.openid.connect.client.OpenIdConnectAuthenticationToken;
import org.springframework.stereotype.Service;
import java.util.UUID;
@Service (value = "myUserDetailsService")
public class MyUserDetailsService implements UserDetailsService,
AuthenticationUserDetailsService< OpenIdConnectAuthenticationToken > {
private static final Logger log = LoggerFactory.getLogger(MpnUserDetailsService.class);
private final UserService userService;
private final NewAccountService newAccountService;
//TODO: This is temporarily hard-coded while we wait for the concept of Page Templates to be implemented in Rave
private static final String DEFAULT_LAYOUT_CODE = "columns_3";
@Autowired
public MyUserDetailsService(UserService userService, NewAccountService newAccountService) {
this.userService = userService;
this.newAccountService = newAccountService;
}
/* (non-Javadoc)
* @see org.springframework.security.core.userdetails.UserDetailsService#loadUserByUsername(java.lang.String)
*/
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
log.debug("loadUserByUsername called with: {}", username);
User user = userService.getUserByUsername(username);
if (user == null) {
throw new UsernameNotFoundException("User with username '" + username + "' was not found!");
}
return user;
}
/* (non-Javadoc)
* @see org.springframework.security.core.userdetails.AuthenticationUserDetailsService#loadUserDetails(org.springframework.security.core.Authentication)
*/
public UserDetails loadUserDetails(OpenIdConnectAuthenticationToken token) throws UsernameNotFoundException {
log.debug("loadUserDetails called with: {}", token);
User user = userService.getUserByUsername(token.getUserId());
if (user == null) {
NewUser newUser = new NewUser();
newUser.setUsername(token.getUserId());
newUser.setEmail(token.getUserId() + "@example.com");
newUser.setPageLayout(DEFAULT_LAYOUT_CODE);
newUser.setPassword(UUID.randomUUID().toString());
try {
newAccountService.createNewAccount(newUser);
} catch (Exception e) {
throw new RuntimeException(e);
}
user = userService.getUserByUsername(token.getName());
}
return user;
}
}
2012-05-08 23:52:13 +00:00
[OpenID Connect Standard]: http://openid.net/specs/openid-connect-standard-1_0.html "OpenID Connect Standard 1.0"
[OpenID Connect Standard]: http://openid.net/specs/openid-connect-standard-1_0.html#code_flow "Authorization Code Flow, OpenID Connect Standard"
2012-05-15 22:43:45 +00:00
[Issuer Identifier]: http://openid.net/specs/openid-connect-messages-1_0.html#issuer_identifier "Issuer Identifier"
2012-05-21 19:28:55 +00:00
[Issue #39 ]: http://github.com/jricher/OpenID-Connect-Java-Spring-Server/issues/39 "Issue #39 -- Multiple Point Client"