]> source.dussan.org Git - archiva.git/blob
4380313209a00b680974f4a15347ae87aeb45c9b
[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
28 import org.apache.maven.archiva.database.ArchivaDAO;
29 import org.apache.maven.archiva.database.ArchivaDatabaseException;
30 import org.apache.maven.archiva.database.Constraint;
31 import org.apache.maven.archiva.database.ObjectNotFoundException;
32 import org.apache.maven.archiva.database.constraints.ArtifactsByRepositoryConstraint;
33 import org.apache.maven.archiva.database.constraints.RepositoryContentStatisticsByRepositoryConstraint;
34 import org.apache.maven.archiva.model.ArchivaArtifact;
35 import org.apache.maven.archiva.model.ArchivaProjectModel;
36 import org.apache.maven.archiva.model.RepositoryContentStatistics;
37
38 import org.apache.maven.archiva.configuration.ProxyConnectorConfiguration;
39
40 import org.codehaus.plexus.redback.role.RoleManagerException;
41
42 import java.io.IOException;
43 import java.util.List;
44 import java.util.Map;
45
46 /**
47  * DeleteManagedRepositoryAction
48  * 
49  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
50  * @version $Id$
51  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="deleteManagedRepositoryAction"
52  */
53 public class DeleteManagedRepositoryAction
54     extends AbstractManagedRepositoriesAction
55     implements Preparable
56 {
57     private ManagedRepositoryConfiguration repository;
58
59     private String repoid;
60
61     /**
62      * @plexus.requirement role-hint="jdo"
63      */
64     private ArchivaDAO archivaDAO;
65
66     public void prepare()
67     {
68         if ( StringUtils.isNotBlank( repoid ) )
69         {
70             this.repository = archivaConfiguration.getConfiguration().findManagedRepositoryById( repoid );
71         }
72     }
73
74     public String confirmDelete()
75     {
76         if ( StringUtils.isBlank( repoid ) )
77         {
78             addActionError( "Unable to delete managed repository: repository id was blank." );
79             return ERROR;
80         }
81
82         return INPUT;
83     }
84
85     public String deleteEntry()
86     {
87         return deleteRepository( false );
88     }
89
90     public String deleteContents()
91     {
92         return deleteRepository( true );
93     }
94
95     private String deleteRepository( boolean deleteContents )
96     {
97         ManagedRepositoryConfiguration existingRepository = repository;
98         if ( existingRepository == null )
99         {
100             addActionError( "A repository with that id does not exist" );
101             return ERROR;
102         }
103
104         String result = SUCCESS;
105
106         try
107         {
108             Configuration configuration = archivaConfiguration.getConfiguration();
109             cleanupRepositoryData( existingRepository );
110             removeRepository( repoid, configuration );
111             result = saveConfiguration( configuration );
112
113             if ( result.equals( SUCCESS ) )
114             {
115                 if ( deleteContents )
116                 {
117                     removeContents( existingRepository );
118                 }
119             }
120         }
121         catch ( IOException e )
122         {
123             addActionError( "Unable to delete repository: " + e.getMessage() );
124             result = ERROR;
125         }
126         catch ( RoleManagerException e )
127         {
128             addActionError( "Unable to delete repository: " + e.getMessage() );
129             result = ERROR;
130         }
131         catch ( ArchivaDatabaseException e )
132         {
133             addActionError( "Unable to delete repositoy: " + e.getMessage() );
134             result = ERROR;
135         }
136
137         return result;
138     }
139
140     private void cleanupRepositoryData( ManagedRepositoryConfiguration cleanupRepository )
141         throws RoleManagerException, ArchivaDatabaseException
142     {
143         removeRepositoryRoles( cleanupRepository );
144         cleanupDatabase( cleanupRepository.getId() );
145         cleanupScanStats( cleanupRepository.getId() );
146         
147         List<ProxyConnectorConfiguration> proxyConnectors = getProxyConnectors();
148         for ( ProxyConnectorConfiguration proxyConnector : proxyConnectors )
149         {
150             if ( StringUtils.equals( proxyConnector.getSourceRepoId(), cleanupRepository.getId() ) )
151             {
152                 archivaConfiguration.getConfiguration().removeProxyConnector( proxyConnector );
153             }
154         }
155
156         Map<String, List<String>> repoToGroupMap = archivaConfiguration.getConfiguration().getRepositoryToGroupMap();
157         if( repoToGroupMap != null )
158         {
159             if( repoToGroupMap.containsKey( cleanupRepository.getId() ) )
160             {
161                 List<String> repoGroups = repoToGroupMap.get( cleanupRepository.getId() );
162                 for( String repoGroup : repoGroups )
163                 {
164                     archivaConfiguration.getConfiguration().findRepositoryGroupById( repoGroup ).removeRepository( cleanupRepository.getId() );
165                 }
166             }            
167         }
168     }
169
170     private void cleanupDatabase( String repoId )
171         throws ArchivaDatabaseException
172     {
173         Constraint constraint = new ArtifactsByRepositoryConstraint( repoId );
174
175         List<ArchivaArtifact> artifacts = archivaDAO.getArtifactDAO().queryArtifacts( constraint );
176
177         for ( ArchivaArtifact artifact : artifacts )
178         {
179             getLogger().info( "Removing artifact " + artifact + " from the database." );
180             try
181             {
182                 archivaDAO.getArtifactDAO().deleteArtifact( artifact );
183
184                 ArchivaProjectModel projectModel =
185                     archivaDAO.getProjectModelDAO().getProjectModel( artifact.getGroupId(), artifact.getArtifactId(),
186                                                                      artifact.getVersion() );
187
188                 archivaDAO.getProjectModelDAO().deleteProjectModel( projectModel );
189             }
190             catch ( ObjectNotFoundException oe )
191             {
192                 getLogger().info( "Project model of artifact " + artifact + " does not exist in the database. " +
193                                       "Moving on to the next artifact." );
194             }
195             catch ( ArchivaDatabaseException ae )
196             {
197                 getLogger().info( "Unable to delete artifact " + artifact + " from the database. " +
198                                       "Moving on to the next artifact." );
199             }
200         }
201     }
202
203     private void cleanupScanStats( String repoId )
204         throws ArchivaDatabaseException
205     {
206         List<RepositoryContentStatistics> results =
207             archivaDAO.getRepositoryContentStatisticsDAO().queryRepositoryContentStatistics(
208             new RepositoryContentStatisticsByRepositoryConstraint( repoId ) );
209
210         for ( RepositoryContentStatistics stats : results )
211         {
212             archivaDAO.getRepositoryContentStatisticsDAO().deleteRepositoryContentStatistics( stats );
213         }
214     }
215
216     public ManagedRepositoryConfiguration getRepository()
217     {
218         return repository;
219     }
220
221     public void setRepository( ManagedRepositoryConfiguration repository )
222     {
223         this.repository = repository;
224     }
225
226     public String getRepoid()
227     {
228         return repoid;
229     }
230
231     public void setRepoid( String repoid )
232     {
233         this.repoid = repoid;
234     }
235
236     public void setArchivaDAO( ArchivaDAO archivaDAO )
237     {
238         this.archivaDAO = archivaDAO;
239     }
240
241     public ArchivaDAO getArchivaDAO()
242     {
243         return archivaDAO;
244     }
245 }