]> source.dussan.org Git - archiva.git/blob
1bcba9577129e98bda0880d11d126d797fd6d3af
[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  * @version $Id$
38  */
39 public abstract class AbstractManagedRepositoriesAction
40     extends AbstractRepositoriesAdminAction
41 {
42     /**
43      * @plexus.requirement role-hint="default"
44      */
45     protected RoleManager roleManager;
46     
47     public static final String CONFIRM = "confirm";
48     
49     public RoleManager getRoleManager()
50     {
51         return roleManager;
52     }
53
54     public void setRoleManager( RoleManager roleManager )
55     {
56         this.roleManager = roleManager;
57     }
58
59     protected void addRepository( ManagedRepositoryConfiguration repository, Configuration configuration )
60         throws IOException
61     {
62         // Normalize the path
63         File file = new File( repository.getLocation() );
64         repository.setLocation( file.getCanonicalPath() );
65         if ( !file.exists() )
66         {
67             file.mkdirs();
68         }
69         if ( !file.exists() || !file.isDirectory() )
70         {
71             throw new IOException( "Unable to add repository - no write access, can not create the root directory: " + file );
72         }
73
74         configuration.addManagedRepository( repository );
75
76     }
77
78     protected void addRepositoryRoles( ManagedRepositoryConfiguration newRepository ) throws RoleManagerException
79     {
80         String repoId = newRepository.getId();
81         
82         // TODO: double check these are configured on start up
83         // TODO: belongs in the business logic
84         
85         if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId ) )
86         {
87             roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId );
88         }
89
90         if ( !roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId ) )
91         {
92             roleManager.createTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId );
93         }
94     }
95
96     protected void removeContents( ManagedRepositoryConfiguration existingRepository )
97         throws IOException
98     {
99         FileUtils.deleteDirectory( new File( existingRepository.getLocation() ) );
100     }
101
102     protected void removeRepository( String repoId, Configuration configuration )
103     {
104         ManagedRepositoryConfiguration toremove = configuration.findManagedRepositoryById( repoId );
105         if ( toremove != null )
106         {
107             configuration.removeManagedRepository( toremove );
108         }
109     }
110
111     protected void removeRepositoryRoles( ManagedRepositoryConfiguration existingRepository )
112         throws RoleManagerException
113     {
114         String repoId = existingRepository.getId();
115         
116         if ( roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId ) )
117         {
118             roleManager.removeTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_MANAGER, repoId );
119         }
120         
121         if ( roleManager.templatedRoleExists( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId ) )
122         {
123             roleManager.removeTemplatedRole( ArchivaRoleConstants.TEMPLATE_REPOSITORY_OBSERVER, repoId );
124         }
125
126         getLogger().debug( "removed user roles associated with repository " + repoId );
127     }
128 }