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