]> source.dussan.org Git - archiva.git/blob
7fc658676075c56f08af18d0edc0b60925b7b762
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.repositories;
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.commons.io.FileUtils;
23 import org.apache.maven.archiva.configuration.Configuration;
24 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
25 import org.apache.maven.archiva.security.ArchivaRoleConstants;
26 import org.codehaus.plexus.redback.role.RoleManager;
27 import org.codehaus.plexus.redback.role.RoleManagerException;
28
29 import java.io.File;
30 import java.io.IOException;
31
32 /**
33  * Abstract ManagedRepositories Action.
34  * 
35  * Place for all generic methods used in Managed Repository Administration.
36  *
37  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
38  * @version $Id$
39  */
40 public abstract class AbstractManagedRepositoriesAction
41     extends AbstractRepositoriesAdminAction
42 {
43     /**
44      * @plexus.requirement role-hint="default"
45      */
46     protected RoleManager roleManager;
47     
48     public static final String CONFIRM = "confirm";
49     
50     public RoleManager getRoleManager()
51     {
52         return roleManager;
53     }
54
55     public void setRoleManager( RoleManager roleManager )
56     {
57         this.roleManager = roleManager;
58     }
59
60     protected void addRepository( ManagedRepositoryConfiguration repository, Configuration configuration )
61         throws IOException
62     {
63         // Normalize the path
64         File file = new File( repository.getLocation() );
65         repository.setLocation( file.getCanonicalPath() );
66         if ( !file.exists() )
67         {
68             file.mkdirs();
69         }
70         if ( !file.exists() || !file.isDirectory() )
71         {
72             throw new IOException( "unable to add repository - can not create the root directory: " + file );
73         }
74
75         configuration.addManagedRepository( repository );
76
77     }
78
79     protected void addRepositoryRoles( ManagedRepositoryConfiguration newRepository ) throws RoleManagerException
80     {
81         String repoId = newRepository.getId();
82         
83         // TODO: double check these are configured on start up
84         // TODO: belongs in the business logic
85         
86         if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId ) )
87         {
88             roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId );
89         }
90
91         if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId ) )
92         {
93             roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId );
94         }
95     }
96
97     protected void removeContents( ManagedRepositoryConfiguration existingRepository )
98         throws IOException
99     {
100         FileUtils.deleteDirectory( new File( existingRepository.getLocation() ) );
101     }
102
103     protected void removeRepository( String repoId, Configuration configuration )
104     {
105         ManagedRepositoryConfiguration toremove = configuration.findManagedRepositoryById( repoId );
106         if ( toremove != null )
107         {
108             configuration.removeManagedRepository( toremove );
109         }
110     }
111
112     protected void removeRepositoryRoles( ManagedRepositoryConfiguration existingRepository )
113         throws RoleManagerException
114     {
115         String repoId = existingRepository.getId();
116         
117         if ( roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId ) )
118         {
119             roleManager.removeTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId );
120         }
121         
122         if ( roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId ) )
123         {
124             roleManager.removeTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId );
125         }
126
127         getLogger().debug( "removed user roles associated with repository " + repoId );
128     }
129 }