]> source.dussan.org Git - archiva.git/blob
d03612ca1e5ebfbae45f0bc18961e95e7e04193c
[archiva.git] /
1 package org.apache.maven.archiva.web.startup;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import java.util.ArrayList;
23 import java.util.List;
24 import java.util.Map;
25 import java.util.Map.Entry;
26
27 import org.apache.commons.collections.CollectionUtils;
28 import org.apache.maven.archiva.common.ArchivaException;
29 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
30 import org.apache.maven.archiva.configuration.ConfigurationNames;
31 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
32 import org.apache.maven.archiva.security.ArchivaRoleConstants;
33 import org.codehaus.plexus.redback.rbac.RBACManager;
34 import org.codehaus.plexus.redback.rbac.RbacManagerException;
35 import org.codehaus.plexus.redback.rbac.UserAssignment;
36 import org.codehaus.plexus.redback.role.RoleManager;
37 import org.codehaus.plexus.redback.role.RoleManagerException;
38 import org.codehaus.plexus.redback.system.check.EnvironmentCheck;
39 import org.codehaus.plexus.registry.Registry;
40 import org.codehaus.plexus.registry.RegistryListener;
41 import org.slf4j.Logger;
42 import org.slf4j.LoggerFactory;
43
44 /**
45  * ConfigurationSynchronization
46  *
47  * @version $Id$
48  * 
49  * @plexus.component role="org.apache.maven.archiva.web.startup.SecuritySynchronization"
50  * role-hint="default"
51  */
52 public class SecuritySynchronization
53     implements RegistryListener
54 {
55     private Logger log = LoggerFactory.getLogger( SecuritySynchronization.class );
56     
57     /**
58      * @plexus.requirement role-hint="default"
59      */
60     private RoleManager roleManager;
61
62     /**
63      * @plexus.requirement role-hint="cached"
64      */
65     private RBACManager rbacManager;
66
67     /**
68      * @plexus.requirement role="org.codehaus.plexus.redback.system.check.EnvironmentCheck"
69      */
70     private Map<String, EnvironmentCheck> checkers;
71
72     /**
73      * @plexus.requirement
74      */
75     private ArchivaConfiguration archivaConfiguration;
76
77     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
78     {
79         if ( ConfigurationNames.isManagedRepositories( propertyName ) )
80         {
81             synchConfiguration( archivaConfiguration.getConfiguration().getManagedRepositories() );
82         }
83     }
84
85     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
86     {
87         /* do nothing */
88     }
89
90     private void synchConfiguration( List<ManagedRepositoryConfiguration> repos )
91     {
92         // NOTE: Remote Repositories do not have roles or security placed around them.
93
94         for ( ManagedRepositoryConfiguration repoConfig : repos )
95         {
96             // manage roles for repositories
97             try
98             {
99                 if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoConfig
100                     .getId() ) )
101                 {
102                     roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoConfig
103                         .getId() );
104                 }
105
106                 if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoConfig
107                     .getId() ) )
108                 {
109                     roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoConfig
110                         .getId() );
111                 }
112             }
113             catch ( RoleManagerException e )
114             {
115                 // Log error.
116                 log.error( "Unable to create roles for configured repositories: " + e.getMessage(), e );
117             }
118         }
119     }
120
121     public void startup()
122         throws ArchivaException
123     {
124         executeEnvironmentChecks();
125
126         synchConfiguration( archivaConfiguration.getConfiguration().getManagedRepositories() );
127         archivaConfiguration.addChangeListener( this );
128
129         if ( archivaConfiguration.isDefaulted() )
130         {
131             assignRepositoryObserverToGuestUser( archivaConfiguration.getConfiguration().getManagedRepositories() );
132         }
133     }
134
135     private void executeEnvironmentChecks()
136         throws ArchivaException
137     {
138         if ( ( checkers == null ) || CollectionUtils.isEmpty( checkers.values() ) )
139         {
140             throw new ArchivaException( "Unable to initialize the Redback Security Environment, "
141                 + "no Environment Check components found." );
142         }
143
144         List<String> violations = new ArrayList<String>();
145
146         for ( Entry<String, EnvironmentCheck> entry : checkers.entrySet() )
147         {
148             EnvironmentCheck check = entry.getValue();
149             log.info( "Running Environment Check: " + entry.getKey() );
150             check.validateEnvironment( violations );
151         }
152
153         if ( CollectionUtils.isNotEmpty( violations ) )
154         {
155             StringBuffer msg = new StringBuffer();
156             msg.append( "EnvironmentCheck Failure.\n" );
157             msg.append( "======================================================================\n" );
158             msg.append( " ENVIRONMENT FAILURE !! \n" );
159             msg.append( "\n" );
160
161             for ( String violation : violations )
162             {
163                 msg.append( violation ).append( "\n" );
164             }
165
166             msg.append( "\n" );
167             msg.append( "======================================================================" );
168             log.error( msg.toString() );
169
170             throw new ArchivaException( "Unable to initialize Redback Security Environment, [" + violations.size()
171                 + "] violation(s) encountered, See log for details." );
172         }
173     }
174
175     private void assignRepositoryObserverToGuestUser( List<ManagedRepositoryConfiguration> repos )
176     {
177         for ( ManagedRepositoryConfiguration repoConfig : repos )
178         {
179             String repoId = repoConfig.getId();
180             
181             // TODO: Use the Redback / UserConfiguration..getString( "redback.default.guest" ) to get the right name.
182             String principal = "guest";
183             
184             try
185             {
186                 UserAssignment ua;
187
188                 if ( rbacManager.userAssignmentExists( principal ) )
189                 {
190                     ua = rbacManager.getUserAssignment( principal );
191                 }
192                 else
193                 {
194                     ua = rbacManager.createUserAssignment( principal );
195                 }
196
197                 ua.addRoleName( ArchivaRoleConstants.toRepositoryObserverRoleName( repoId ) );
198                 rbacManager.saveUserAssignment( ua );
199             }
200             catch ( RbacManagerException e )
201             {
202                 log.warn( "Unable to add role [" + ArchivaRoleConstants.toRepositoryObserverRoleName( repoId )
203                                       + "] to " + principal + " user.", e );
204             }
205         }
206     }
207 }