]> source.dussan.org Git - archiva.git/blob
c63996b5fc28340f16cd9884ee11b1b37059b80e
[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.ProxyConnectorConfiguration;
27 import org.apache.maven.archiva.configuration.RemoteRepositoryConfiguration;
28
29 import java.util.List;
30
31 /**
32  * DeleteRemoteRepositoryAction 
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="deleteRemoteRepositoryAction"
38  */
39 public class DeleteRemoteRepositoryAction
40     extends AbstractRemoteRepositoriesAction
41     implements Preparable
42 {
43     private RemoteRepositoryConfiguration repository;
44
45     private String repoid;
46
47     public void prepare()
48     {
49         if ( StringUtils.isNotBlank( repoid ) )
50         {
51             this.repository = archivaConfiguration.getConfiguration().findRemoteRepositoryById( repoid );
52         }
53     }
54
55     public String confirmDelete()
56     {
57         if ( StringUtils.isBlank( repoid ) )
58         {
59             addActionError( "Unable to delete remote repository: repository id was blank." );
60             return ERROR;
61         }
62
63         return INPUT;
64     }
65
66     public String delete()
67     {
68         String result = SUCCESS;
69         RemoteRepositoryConfiguration existingRepository = repository;
70         if ( existingRepository == null )
71         {
72             addActionError( "A repository with that id does not exist" );
73             return ERROR;
74         }
75
76         Configuration configuration = archivaConfiguration.getConfiguration();
77         removeRepository( repoid, configuration );
78         result = saveConfiguration( configuration );
79         
80         cleanupRepositoryData( existingRepository );
81
82         return result;
83     }
84
85     private void cleanupRepositoryData( RemoteRepositoryConfiguration existingRepository )
86     {
87         // [MRM-520] Proxy Connectors are not deleted with the deletion of a Repository.
88         
89         List<ProxyConnectorConfiguration> proxyConnectors = getProxyConnectors();
90         for ( ProxyConnectorConfiguration proxyConnector : proxyConnectors )
91         {
92             if ( StringUtils.equals( proxyConnector.getTargetRepoId(), existingRepository.getId() ) )
93             {
94                 archivaConfiguration.getConfiguration().removeProxyConnector( proxyConnector );
95             }
96         }
97     }
98
99     public RemoteRepositoryConfiguration getRepository()
100     {
101         return repository;
102     }
103
104     public void setRepository( RemoteRepositoryConfiguration repository )
105     {
106         this.repository = repository;
107     }
108
109     public String getRepoid()
110     {
111         return repoid;
112     }
113
114     public void setRepoid( String repoid )
115     {
116         this.repoid = repoid;
117     }
118 }