/*
* R Service Bus
*
* Copyright (c) Copyright of Open Analytics NV, 2010-2015
*
* ===========================================================================
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package eu.openanalytics.rsb.security;
import java.util.HashSet;
import java.util.Set;
import javax.annotation.PostConstruct;
import org.apache.commons.lang3.StringUtils;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import eu.openanalytics.rsb.Util;
/**
* A {@link UserDetailsService} that accepts any user presented to it, which makes it
* usable in scenarios where it is enough to merely identify a user.
*
* @author "OpenAnalytics <rsb.development@openanalytics.eu>"
*/
public class IdentifiedUserDetailsService implements UserDetailsService
{
private static final String NO_PASSWORD = StringUtils.EMPTY;
private String configuredAuthorities;
private Set<GrantedAuthority> grantedAuthorities;
@PostConstruct
public void initializeGrantedAuthorities()
{
grantedAuthorities = new HashSet<GrantedAuthority>();
if (StringUtils.isBlank(configuredAuthorities))
{
return;
}
for (final String configuredAuthority : StringUtils.split(configuredAuthorities, ", "))
{
final String strippedAuthority = StringUtils.stripToEmpty(configuredAuthority);
if (StringUtils.isNotEmpty(strippedAuthority))
{
grantedAuthorities.add(new SimpleGrantedAuthority(strippedAuthority));
}
}
}
public UserDetails loadUserByUsername(final String username) throws UsernameNotFoundException
{
return new User(Util.replaceNonWordChars(username, "_"), NO_PASSWORD, grantedAuthorities);
}
public void setConfiguredAuthorities(final String configuredAuthorities)
{
this.configuredAuthorities = configuredAuthorities;
}
public String getConfiguredAuthorities()
{
return configuredAuthorities;
}
}