]> source.dussan.org Git - archiva.git/blob
430cc0219a7bc228c61a7d70500bd8f01e17f570
[archiva.git] /
1 package org.apache.archiva.redback.common.ldap.role;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import com.google.common.collect.ArrayListMultimap;
22 import com.google.common.collect.Multimap;
23 import org.apache.archiva.redback.common.ldap.MappingException;
24 import org.apache.archiva.redback.configuration.UserConfiguration;
25 import org.apache.archiva.redback.configuration.UserConfigurationKeys;
26 import org.apache.commons.lang.StringUtils;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.stereotype.Service;
30
31 import javax.inject.Inject;
32 import javax.inject.Named;
33 import java.util.Collection;
34 import java.util.Map;
35
36 /**
37  * @author Olivier Lamy
38  */
39 @Service( "ldapRoleMapperConfiguration#default" )
40 public class DefaultLdapRoleMapperConfiguration
41     implements LdapRoleMapperConfiguration
42 {
43
44     private Logger log = LoggerFactory.getLogger( getClass() );
45
46     @Inject
47     @Named( value = "userConfiguration#default" )
48     private UserConfiguration userConf;
49
50     public void addLdapMapping( String role, String ldapGroup )
51     {
52         log.warn( "addLdapMapping not implemented" );
53     }
54
55     public void removeLdapMapping( String role )
56     {
57         log.warn( "removeLdapMapping not implemented" );
58     }
59
60     public void setLdapGroupMappings( Map<String, Collection<String>> mappings )
61         throws MappingException
62     {
63         log.warn( "setLdapGroupMappings not implemented" );
64     }
65
66     public Map<String, Collection<String>> getLdapGroupMappings()
67     {
68         Multimap<String, String> map = ArrayListMultimap.create();
69
70         Collection<String> keys = userConf.getKeys();
71
72         for ( String key : keys )
73         {
74             if ( key.startsWith( UserConfigurationKeys.LDAP_GROUPS_ROLE_START_KEY ) )
75             {
76                 String val = userConf.getString( key );
77                 String[] roles = StringUtils.split( val, ',' );
78                 for ( String role : roles )
79                 {
80                     map.put( StringUtils.substringAfter( key, UserConfigurationKeys.LDAP_GROUPS_ROLE_START_KEY ),
81                              role );
82                 }
83             }
84         }
85
86         return map.asMap();
87     }
88 }