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