]> source.dussan.org Git - archiva.git/blob
b2e37ec0df72a28f70991966b1bcd8d0fdbae565
[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 org.apache.maven.archiva.common.ArchivaException;
23 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
24 import org.apache.maven.archiva.configuration.ConfigurationNames;
25 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
26 import org.apache.maven.archiva.security.ArchivaRoleConstants;
27 import org.codehaus.plexus.logging.AbstractLogEnabled;
28 import org.codehaus.plexus.redback.role.RoleManager;
29 import org.codehaus.plexus.redback.role.RoleManagerException;
30 import org.codehaus.plexus.registry.Registry;
31 import org.codehaus.plexus.registry.RegistryListener;
32
33 import java.util.List;
34
35 /**
36  * ConfigurationSynchronization
37  *
38  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
39  * @version $Id$
40  * 
41  * @plexus.component role="org.apache.maven.archiva.web.startup.SecuritySynchronization"
42  * role-hint="default"
43  */
44 public class SecuritySynchronization
45     extends AbstractLogEnabled
46     implements RegistryListener
47 {
48     /**
49      * @plexus.requirement role-hint="default"
50      */
51     private RoleManager roleManager;
52
53     /**
54      * @plexus.requirement
55      */
56     private ArchivaConfiguration archivaConfiguration;
57
58     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
59     {
60         if ( ConfigurationNames.isManagedRepositories( propertyName ) )
61         {
62             synchConfiguration( archivaConfiguration.getConfiguration().getManagedRepositories() );
63         }
64     }
65
66     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
67     {
68         /* do nothing */
69     }
70
71     private void synchConfiguration( List<ManagedRepositoryConfiguration> repos )
72     {
73         // NOTE: Remote Repositories do not have roles or security placed around them.
74         
75         for ( ManagedRepositoryConfiguration repoConfig : repos )
76         {
77             // manage roles for repositories
78             try
79             {
80                 if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, 
81                                                        repoConfig.getId() ) )
82                 {
83                     roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, 
84                                                      repoConfig.getId() );
85                 }
86
87                 if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, 
88                                                        repoConfig.getId() ) )
89                 {
90                     roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, 
91                                                      repoConfig.getId() );
92                 }
93             }
94             catch ( RoleManagerException e )
95             {
96                 // Log error.
97                 getLogger().error( "Unable to create roles for configured repositories: " + e.getMessage(), e );
98             }
99         }
100     }
101
102     public void startup()
103         throws ArchivaException
104     {
105         synchConfiguration( archivaConfiguration.getConfiguration().getManagedRepositories() );
106         archivaConfiguration.addChangeListener( this );
107     }
108 }