use of org.gluu.oxauth.client.auth.principal.OpenIdCredentials in project oxTrust by GluuFederation.
the class ClientAction method getClientCrendentials.
/**
* Build client credenatils from incomming request
*
* @param context The current webflow context
* @param webContext The current web context
* @return client credentials
*/
private ClientCredential getClientCrendentials(final RequestContext context, final WebContext webContext) {
final OpenIdCredentials openIdCredentials = client.getCredentials(webContext);
final ClientCredential credentials = new ClientCredential(openIdCredentials);
// Retrieve parameters from web session
final Service service = (Service) webContext.getSessionAttribute(SERVICE);
if (service != null) {
webContext.setRequestAttribute(SERVICE, service.getId());
}
context.getFlowScope().put(SERVICE, service);
restoreRequestAttribute(webContext, THEME);
restoreRequestAttribute(webContext, LOCALE);
restoreRequestAttribute(webContext, METHOD);
return credentials;
}
use of org.gluu.oxauth.client.auth.principal.OpenIdCredentials in project oxTrust by GluuFederation.
the class OpenIdClient method getCredentials.
/**
* {@InheritDoc}
*/
@Override
public final OpenIdCredentials getCredentials(final WebContext context) {
final String authorizationCode = context.getRequestParameter(ResponseType.CODE.getValue());
final OpenIdCredentials clientCredential = new OpenIdCredentials(authorizationCode);
clientCredential.setClientName(getName());
logger.debug("Client credential: '{}'", clientCredential);
return clientCredential;
}
use of org.gluu.oxauth.client.auth.principal.OpenIdCredentials in project oxTrust by GluuFederation.
the class ClientAuthenticationHandler method doAuthentication.
/**
* {@InheritDoc}
*/
@Override
protected HandlerResult doAuthentication(final Credential credential) throws GeneralSecurityException, PreventedException {
final ClientCredential clientCredentials = (ClientCredential) credential;
final OpenIdCredentials openIdCredentials = clientCredentials.getOpenIdCredentials();
logger.debug("Client credentials : '{}'", clientCredentials);
final String clientName = openIdCredentials.getClientName();
logger.debug("Client name : '{}'", clientName);
// Web context
final ServletExternalContext servletExternalContext = (ServletExternalContext) ExternalContextHolder.getExternalContext();
final HttpServletRequest request = (HttpServletRequest) servletExternalContext.getNativeRequest();
final HttpServletResponse response = (HttpServletResponse) servletExternalContext.getNativeResponse();
final WebContext webContext = new J2EContext(request, response);
// Get user profile
final UserProfile userProfile = this.client.getUserProfile(openIdCredentials, webContext);
logger.debug("userProfile : {}", userProfile);
if (userProfile != null) {
final String id = userProfile.getId();
if (StringHelper.isNotEmpty(id)) {
openIdCredentials.setUserProfile(userProfile);
return new HandlerResult(this, clientCredentials, new SimplePrincipal(id, userProfile.getAttributes()));
}
}
throw new FailedLoginException("Provider did not produce profile for " + clientCredentials);
}
Aggregations