]> source.dussan.org Git - archiva.git/blob
c504ad0ce215442d405263a8cc84494a1dacadc7
[archiva.git] /
1 package org.apache.archiva.consumers.core.repository;
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 org.apache.archiva.admin.model.RepositoryAdminException;
23 import org.apache.archiva.admin.model.beans.ManagedRepository;
24 import org.apache.archiva.admin.model.managed.ManagedRepositoryAdmin;
25 import org.apache.archiva.metadata.repository.MetadataRepository;
26 import org.apache.archiva.metadata.repository.RepositorySession;
27 import org.apache.archiva.repository.events.RepositoryListener;
28 import org.apache.archiva.common.utils.VersionComparator;
29 import org.apache.archiva.common.utils.VersionUtil;
30 import org.apache.archiva.model.ArchivaArtifact;
31 import org.apache.archiva.model.ArtifactReference;
32 import org.apache.archiva.model.ProjectReference;
33 import org.apache.archiva.model.VersionedReference;
34 import org.apache.archiva.repository.ContentNotFoundException;
35 import org.apache.archiva.repository.ManagedRepositoryContent;
36 import org.apache.archiva.repository.RepositoryContentFactory;
37 import org.apache.archiva.repository.RepositoryException;
38 import org.apache.archiva.repository.RepositoryNotFoundException;
39 import org.apache.archiva.repository.layout.LayoutException;
40 import org.apache.archiva.repository.metadata.MetadataTools;
41 import org.apache.archiva.repository.metadata.RepositoryMetadataException;
42
43 import java.io.File;
44 import java.io.IOException;
45 import java.util.ArrayList;
46 import java.util.Collections;
47 import java.util.List;
48
49 /**
50  * <p>
51  * This will look in a single managed repository, and purge any snapshots that are present
52  * that have a corresponding released version on the same repository.
53  * </p>
54  * <p/>
55  * <p>
56  * So, if you have the following (presented in the m2/default layout form) ...
57  * <pre>
58  *   /com/foo/foo-tool/1.0-SNAPSHOT/foo-tool-1.0-SNAPSHOT.jar
59  *   /com/foo/foo-tool/1.1-SNAPSHOT/foo-tool-1.1-SNAPSHOT.jar
60  *   /com/foo/foo-tool/1.2.1-SNAPSHOT/foo-tool-1.2.1-SNAPSHOT.jar
61  *   /com/foo/foo-tool/1.2.1/foo-tool-1.2.1.jar
62  *   /com/foo/foo-tool/2.0-SNAPSHOT/foo-tool-2.0-SNAPSHOT.jar
63  *   /com/foo/foo-tool/2.0/foo-tool-2.0.jar
64  *   /com/foo/foo-tool/2.1-SNAPSHOT/foo-tool-2.1-SNAPSHOT.jar
65  * </pre>
66  * then the current highest ranked released (non-snapshot) version is 2.0, which means
67  * the snapshots from 1.0-SNAPSHOT, 1.1-SNAPSHOT, 1.2.1-SNAPSHOT, and 2.0-SNAPSHOT can
68  * be purged.  Leaving 2.1-SNAPSHOT in alone.
69  * </p>
70  *
71  * @version $Id$
72  */
73 public class CleanupReleasedSnapshotsRepositoryPurge
74     extends AbstractRepositoryPurge
75 {
76     private MetadataTools metadataTools;
77
78     private ManagedRepositoryAdmin managedRepositoryAdmin;
79
80     private RepositoryContentFactory repoContentFactory;
81
82     public CleanupReleasedSnapshotsRepositoryPurge( ManagedRepositoryContent repository, MetadataTools metadataTools,
83                                                     ManagedRepositoryAdmin managedRepositoryAdmin,
84                                                     RepositoryContentFactory repoContentFactory,
85                                                     RepositorySession repositorySession,
86                                                     List<RepositoryListener> listeners )
87     {
88         super( repository, repositorySession, listeners );
89         this.metadataTools = metadataTools;
90         this.managedRepositoryAdmin = managedRepositoryAdmin;
91         this.repoContentFactory = repoContentFactory;
92     }
93
94     public void process( String path )
95         throws RepositoryPurgeException
96     {
97         try
98         {
99             File artifactFile = new File( repository.getRepoRoot(), path );
100
101             if ( !artifactFile.exists() )
102             {
103                 // Nothing to do here, file doesn't exist, skip it.
104                 return;
105             }
106
107             ArtifactReference artifactRef = repository.toArtifactReference( path );
108
109             if ( !VersionUtil.isSnapshot( artifactRef.getVersion() ) )
110             {
111                 // Nothing to do here, not a snapshot, skip it.
112                 return;
113             }
114
115             ProjectReference reference = new ProjectReference();
116             reference.setGroupId( artifactRef.getGroupId() );
117             reference.setArtifactId( artifactRef.getArtifactId() );
118
119             // Gather up all of the versions.
120             List<String> allVersions = new ArrayList<String>( repository.getVersions( reference ) );
121
122             List<ManagedRepository> repos = managedRepositoryAdmin.getManagedRepositories();
123             for ( ManagedRepository repo : repos )
124             {
125                 if ( repo.isReleases() && !repo.getId().equals( repository.getId() ) )
126                 {
127                     try
128                     {
129                         ManagedRepositoryContent repoContent =
130                             repoContentFactory.getManagedRepositoryContent( repo.getId() );
131                         allVersions.addAll( repoContent.getVersions( reference ) );
132                     }
133                     catch ( RepositoryNotFoundException e )
134                     {
135                         // swallow
136                     }
137                     catch ( RepositoryException e )
138                     {
139                         // swallow
140                     }
141                 }
142             }
143
144             // Split the versions into released and snapshots.
145             List<String> releasedVersions = new ArrayList<String>();
146             List<String> snapshotVersions = new ArrayList<String>();
147
148             for ( String version : allVersions )
149             {
150                 if ( VersionUtil.isSnapshot( version ) )
151                 {
152                     snapshotVersions.add( version );
153                 }
154                 else
155                 {
156                     releasedVersions.add( version );
157                 }
158             }
159
160             Collections.sort( allVersions, VersionComparator.getInstance() );
161             Collections.sort( releasedVersions, VersionComparator.getInstance() );
162             Collections.sort( snapshotVersions, VersionComparator.getInstance() );
163
164             // Now clean out any version that is earlier than the highest released version.
165             boolean needsMetadataUpdate = false;
166
167             VersionedReference versionRef = new VersionedReference();
168             versionRef.setGroupId( artifactRef.getGroupId() );
169             versionRef.setArtifactId( artifactRef.getArtifactId() );
170
171             ArchivaArtifact artifact =
172                 new ArchivaArtifact( artifactRef.getGroupId(), artifactRef.getArtifactId(), artifactRef.getVersion(),
173                                      artifactRef.getClassifier(), artifactRef.getType(), repository.getId() );
174
175             MetadataRepository metadataRepository = repositorySession.getRepository();
176             for ( String version : snapshotVersions )
177             {
178                 if ( releasedVersions.contains( VersionUtil.getReleaseVersion( version ) ) )
179                 {
180                     versionRef.setVersion( version );
181                     repository.deleteVersion( versionRef );
182
183                     // FIXME: looks incomplete, might not delete related metadata?
184                     for ( RepositoryListener listener : listeners )
185                     {
186                         listener.deleteArtifact( metadataRepository, repository.getId(), artifact.getGroupId(),
187                                                  artifact.getArtifactId(), artifact.getVersion(),
188                                                  artifactFile.getName() );
189                     }
190
191                     needsMetadataUpdate = true;
192                 }
193             }
194
195             if ( needsMetadataUpdate )
196             {
197                 updateMetadata( artifactRef );
198             }
199         } catch ( RepositoryAdminException e )
200         {
201             throw new RepositoryPurgeException( e.getMessage(), e );
202         }
203         catch ( LayoutException e )
204         {
205             log.debug( "Not processing file that is not an artifact: {}", e.getMessage() );
206         }
207         catch ( ContentNotFoundException e )
208         {
209             throw new RepositoryPurgeException( e.getMessage(), e );
210         }
211     }
212
213     private void updateMetadata( ArtifactReference artifact )
214     {
215         VersionedReference versionRef = new VersionedReference();
216         versionRef.setGroupId( artifact.getGroupId() );
217         versionRef.setArtifactId( artifact.getArtifactId() );
218         versionRef.setVersion( artifact.getVersion() );
219
220         ProjectReference projectRef = new ProjectReference();
221         projectRef.setGroupId( artifact.getGroupId() );
222         projectRef.setArtifactId( artifact.getArtifactId() );
223
224         try
225         {
226             metadataTools.updateMetadata( repository, versionRef );
227         }
228         catch ( ContentNotFoundException e )
229         {
230             // Ignore. (Just means we have no snapshot versions left to reference).
231         }
232         catch ( RepositoryMetadataException e )
233         {
234             // Ignore. 
235         }
236         catch ( IOException e )
237         {
238             // Ignore. 
239         }
240         catch ( LayoutException e )
241         {
242             // Ignore.
243         }
244
245         try
246         {
247             metadataTools.updateMetadata( repository, projectRef );
248         }
249         catch ( ContentNotFoundException e )
250         {
251             // Ignore. (Just means we have no snapshot versions left to reference).
252         }
253         catch ( RepositoryMetadataException e )
254         {
255             // Ignore. 
256         }
257         catch ( IOException e )
258         {
259             // Ignore. 
260         }
261         catch ( LayoutException e )
262         {
263             // Ignore.
264         }
265     }
266 }