Adapting to redback LDAP group mapping change

This commit is contained in:
Martin Stockhammer 2020-07-07 06:52:37 +02:00
parent 12827812ac
commit dcf4c111e5
1 changed files with 29 additions and 0 deletions

View File

@ -36,6 +36,7 @@ import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
/**
* @author Olivier Lamy
@ -151,6 +152,34 @@ public class ArchivaLdapRoleMapperConfiguration
}
}
@Override
public Collection<String> getLdapGroupMapping( final String groupName ) throws MappingException
{
try
{
RedbackRuntimeConfiguration redbackRuntimeConfiguration =
redbackRuntimeConfigurationAdmin.getRedbackRuntimeConfiguration();
List<LdapGroupMapping> ldapGroupMappings = redbackRuntimeConfiguration.getLdapGroupMappings();
if ( ldapGroupMappings == null )
{
return Collections.EMPTY_LIST;
}
Optional<LdapGroupMapping> result = ldapGroupMappings.stream( ).filter( mapping -> mapping.getGroup( ).equals( groupName ) ).findFirst( );
if (result.isPresent()) {
return result.get( ).getRoleNames( );
} else {
throw new MappingException( "Group " + groupName + " not found" );
}
}
catch ( RepositoryAdminException e )
{
throw new MappingException( e.getMessage(), e );
}
}
@Override
public void setLdapGroupMappings( Map<String, List<String>> mappings )
throws MappingException