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