]> source.dussan.org Git - archiva.git/blob
8df0f706e1d350e2d049a7580efdace160c79631
[archiva.git] /
1 package org.apache.maven.archiva.reporting.processor;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import org.apache.maven.artifact.Artifact;
20 import org.apache.maven.artifact.handler.DefaultArtifactHandler;
21 import org.apache.maven.artifact.repository.ArtifactRepository;
22 import org.apache.maven.model.Model;
23 import org.apache.maven.archiva.reporting.processor.ArtifactReportProcessor;
24 import org.apache.maven.archiva.reporting.database.ReportingDatabase;
25
26 import java.io.File;
27
28 /**
29  * Find artifacts in the repository that are considered old.
30  *
31  * @plexus.component role="org.apache.maven.archiva.reporting.processor.ArtifactReportProcessor" role-hint="old-artifact"
32  * @todo make this configurable from the web interface
33  */
34 public class OldArtifactReportProcessor
35     implements ArtifactReportProcessor
36 {
37     private static final String ROLE_HINT = "old-artifact";
38
39     /**
40      * The maximum age of an artifact before it is reported old, specified in seconds. The default is 1 year.
41      *
42      * @plexus.configuration default-value="31536000"
43      */
44     private int maxAge;
45
46     public void processArtifact( Artifact artifact, Model model, ReportingDatabase reporter )
47     {
48         ArtifactRepository repository = artifact.getRepository();
49
50         if ( !"file".equals( repository.getProtocol() ) )
51         {
52             // We can't check other types of URLs yet. Need to use Wagon, with an exists() method.
53             throw new UnsupportedOperationException(
54                 "Can't process repository '" + repository.getUrl() + "'. Only file based repositories are supported" );
55         }
56
57         adjustDistributionArtifactHandler( artifact );
58
59         String artifactPath = repository.pathOf( artifact );
60
61         //get the location of the artifact itself
62         File file = new File( repository.getBasedir(), artifactPath );
63
64         if ( file.exists() )
65         {
66             if ( System.currentTimeMillis() - file.lastModified() > maxAge * 1000 )
67             {
68                 // TODO: reason could be an i18n key derived from the processor and the problem ID and the
69                 reporter.addNotice( artifact, ROLE_HINT, "old-artifact",
70                                     "The artifact is older than the maximum age of " + maxAge + " seconds." );
71             }
72         }
73         else
74         {
75             throw new IllegalStateException( "Couldn't find artifact " + file );
76         }
77     }
78
79     private static void adjustDistributionArtifactHandler( Artifact artifact )
80     {
81         // need to tweak these as they aren't currently in the known type converters. TODO - add them in Maven
82         if ( "distribution-zip".equals( artifact.getType() ) )
83         {
84             artifact.setArtifactHandler( new DefaultArtifactHandler( "zip" ) );
85         }
86         else if ( "distribution-tgz".equals( artifact.getType() ) )
87         {
88             artifact.setArtifactHandler( new DefaultArtifactHandler( "tar.gz" ) );
89         }
90     }
91 }