Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* @(#)CrowdAuthenticationManager.java
*
* The MIT License
*
* Copyright (C)2011 Thorsten Heit.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package de.theit.hudson.crowd;
import static de.theit.hudson.crowd.ErrorMessages.accountExpired;
import static de.theit.hudson.crowd.ErrorMessages.applicationPermission;
import static de.theit.hudson.crowd.ErrorMessages.expiredCredentials;
import static de.theit.hudson.crowd.ErrorMessages.invalidAuthentication;
import static de.theit.hudson.crowd.ErrorMessages.operationFailed;
import static de.theit.hudson.crowd.ErrorMessages.userGroupNotFound;
import static de.theit.hudson.crowd.ErrorMessages.userNotFound;
import static de.theit.hudson.crowd.ErrorMessages.userNotValid;
import hudson.security.SecurityRealm;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.acegisecurity.AccountExpiredException;
import org.acegisecurity.Authentication;
import org.acegisecurity.AuthenticationException;
import org.acegisecurity.AuthenticationManager;
import org.acegisecurity.AuthenticationServiceException;
import org.acegisecurity.BadCredentialsException;
import org.acegisecurity.CredentialsExpiredException;
import org.acegisecurity.GrantedAuthority;
import org.acegisecurity.InsufficientAuthenticationException;
import com.atlassian.crowd.exception.ApplicationPermissionException;
import com.atlassian.crowd.exception.ExpiredCredentialException;
import com.atlassian.crowd.exception.InactiveAccountException;
import com.atlassian.crowd.exception.InvalidAuthenticationException;
import com.atlassian.crowd.exception.OperationFailedException;
import com.atlassian.crowd.exception.UserNotFoundException;
/**
* This class implements the authentication manager for Hudson / Jenkins.
*
* @author Thorsten Heit ([email protected])
* @since 07.09.2011
* @version $Id$
*/
public class CrowdAuthenticationManager implements AuthenticationManager {
/** Used for logging purposes. */
private static final Logger LOG = Logger
.getLogger(CrowdAuthenticationManager.class.getName());
/**
* The configuration data necessary for accessing the services on the remote
* Crowd server.
*/
private CrowdConfigurationService configuration;
/**
* Creates a new instance of this class.
*
* @param pConfiguration
* The configuration to access the services on the remote Crowd
* server. May not be null.
*/
public CrowdAuthenticationManager(CrowdConfigurationService pConfiguration) {
this.configuration = pConfiguration;
}
/**
* {@inheritDoc}
*
* @see org.acegisecurity.AuthenticationManager#authenticate(org.acegisecurity.Authentication)
*/
@Override
public Authentication authenticate(Authentication authentication)
throws AuthenticationException {
String username = authentication.getPrincipal().toString();
// checking whether there's already a SSO token
if (null == authentication.getCredentials()
&& authentication instanceof CrowdAuthenticationToken
&& null != ((CrowdAuthenticationToken) authentication)
.getSSOToken()) {
// SSO token available => user already authenticated
if (LOG.isLoggable(Level.FINER)) {
LOG.finer("User '" + username + "' already authenticated");
}
return authentication;
}
String password = authentication.getCredentials().toString();
// ensure that the group is available, active and that the user
// is a member of it
if (!this.configuration.isGroupActive()) {
throw new InsufficientAuthenticationException(
userGroupNotFound(username));
}
if (!this.configuration.isGroupMember(username)) {
throw new InsufficientAuthenticationException(userNotValid(
username, this.configuration.groupName));
}
try {
// authenticate user
if (LOG.isLoggable(Level.FINE)) {
LOG.fine("Authenticating user: " + username);
}
this.configuration.crowdClient.authenticateUser(username, password);
} catch (UserNotFoundException ex) {
LOG.info(userNotFound(username));
throw new BadCredentialsException(userNotFound(username), ex);
} catch (ExpiredCredentialException ex) {
LOG.warning(expiredCredentials(username));
throw new CredentialsExpiredException(expiredCredentials(username),
ex);
} catch (InactiveAccountException ex) {
LOG.warning(accountExpired(username));
throw new AccountExpiredException(accountExpired(username), ex);
} catch (ApplicationPermissionException ex) {
LOG.warning(applicationPermission());
throw new AuthenticationServiceException(applicationPermission(),
ex);
} catch (InvalidAuthenticationException ex) {
LOG.warning(invalidAuthentication());
throw new AuthenticationServiceException(invalidAuthentication(),
ex);
} catch (OperationFailedException ex) {
LOG.log(Level.SEVERE, operationFailed(), ex);
throw new AuthenticationServiceException(operationFailed(), ex);
}
// user successfully authenticated
// => retrieve the list of groups the user is a member of
List authorities = new ArrayList();
// add the "authenticated" authority to the list of granted
// authorities...
authorities.add(SecurityRealm.AUTHENTICATED_AUTHORITY);
// ..and finally all authorities retrieved from the Crowd server
authorities.addAll(this.configuration.getAuthoritiesForUser(username));
// user successfully authenticated => create authentication token
if (LOG.isLoggable(Level.FINE)) {
LOG.fine("User successfully authenticated; creating authentication token");
}
return new CrowdAuthenticationToken(username, password, authorities);
}
}