]> source.dussan.org Git - archiva.git/blob
ed8c14b462c32c714bdbd575d543c3932ea12307
[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 com.opensymphony.xwork.Preparable;
23
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
27 import org.codehaus.plexus.redback.role.RoleManagerException;
28
29 import java.io.IOException;
30
31 /**
32  * DeleteManagedRepositoryAction 
33  *
34  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
35  * @version $Id$
36  * 
37  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="deleteManagedRepositoryAction"
38  */
39 public class DeleteManagedRepositoryAction
40     extends AbstractManagedRepositoriesAction
41     implements Preparable
42 {
43     private ManagedRepositoryConfiguration repository;
44
45     private String repoid;
46
47     public void prepare()
48     {
49         if ( StringUtils.isNotBlank( repoid ) )
50         {
51             this.repository = archivaConfiguration.getConfiguration().findManagedRepositoryById( repoid );
52         }
53     }
54
55     public String confirmDelete()
56     {
57         if ( StringUtils.isBlank( repoid ) )
58         {
59             addActionError( "Unable to delete managed repository: repository id was blank." );
60             return ERROR;
61         }
62
63         return INPUT;
64     }
65
66     public String deleteEntry()
67     {
68         return deleteRepository( false );
69     }
70
71     public String deleteContents()
72     {
73         return deleteRepository( true );
74     }
75
76     private String deleteRepository( boolean deleteContents )
77     {
78         ManagedRepositoryConfiguration existingRepository = repository;
79         if ( existingRepository == null )
80         {
81             addActionError( "A repository with that id does not exist" );
82             return ERROR;
83         }
84
85         String result = SUCCESS;
86
87         try
88         {
89             Configuration configuration = archivaConfiguration.getConfiguration();
90             removeRepository( repoid, configuration );
91             result = saveConfiguration( configuration );
92
93             if ( result.equals( SUCCESS ) )
94             {
95                 cleanupRepositoryData( existingRepository );
96
97                 if ( deleteContents )
98                 {
99                     removeContents( existingRepository );
100                 }
101             }
102         }
103         catch ( IOException e )
104         {
105             addActionError( "Unable to delete repository: " + e.getMessage() );
106             result = ERROR;
107         }
108         catch ( RoleManagerException e )
109         {
110             addActionError( "Unable to delete repository: " + e.getMessage() );
111             result = ERROR;
112         }
113
114         return result;
115     }
116
117     private void cleanupRepositoryData( ManagedRepositoryConfiguration cleanupRepository )
118         throws RoleManagerException
119     {
120         removeRepositoryRoles( cleanupRepository );
121
122         // TODO: [MRM-382] Remove index from artifacts of deleted managed repositories.
123
124         // TODO: [MRM-265] After removing a managed repository - Browse/Search still see it
125         
126         // TODO: [MRM-520] Proxy Connectors are not deleted with the deletion of a Repository.
127     }
128
129     public ManagedRepositoryConfiguration getRepository()
130     {
131         return repository;
132     }
133
134     public void setRepository( ManagedRepositoryConfiguration repository )
135     {
136         this.repository = repository;
137     }
138
139     public String getRepoid()
140     {
141         return repoid;
142     }
143
144     public void setRepoid( String repoid )
145     {
146         this.repoid = repoid;
147     }
148 }