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