]> source.dussan.org Git - archiva.git/blob
896fd35bdfb24ffd63abf79d6719e41dbf0fca45
[archiva.git] /
1 package org.apache.maven.archiva.reporting;
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.archiva.digest.Digester;
20 import org.apache.maven.archiva.digest.DigesterException;
21 import org.apache.maven.artifact.Artifact;
22 import org.apache.maven.artifact.repository.ArtifactRepository;
23 import org.apache.maven.model.Model;
24 import org.codehaus.plexus.util.FileUtils;
25
26 import java.io.File;
27 import java.io.IOException;
28
29 /**
30  * This class reports invalid and mismatched checksums of artifacts and metadata files.
31  * It validates MD5 and SHA-1 checksums.
32  *
33  * @plexus.component role="org.apache.maven.archiva.reporting.ArtifactReportProcessor" role-hint="checksum"
34  */
35 public class ChecksumArtifactReportProcessor
36     implements ArtifactReportProcessor
37 {
38     /**
39      * @plexus.requirement role-hint="sha1"
40      */
41     private Digester sha1Digester;
42
43     /**
44      * @plexus.requirement role-hint="md5"
45      */
46     private Digester md5Digester;
47
48     public void processArtifact( Model model, Artifact artifact, ArtifactReporter reporter,
49                                  ArtifactRepository repository )
50     {
51         if ( !"file".equals( repository.getProtocol() ) )
52         {
53             // We can't check other types of URLs yet. Need to use Wagon, with an exists() method.
54             throw new UnsupportedOperationException(
55                 "Can't process repository '" + repository.getUrl() + "'. Only file based repositories are supported" );
56         }
57
58         //check if checksum files exist
59         String path = repository.pathOf( artifact );
60         File file = new File( repository.getBasedir(), path );
61
62         verifyChecksum( repository, path + ".md5", file, md5Digester, reporter, artifact );
63         verifyChecksum( repository, path + ".sha1", file, sha1Digester, reporter, artifact );
64     }
65
66     private void verifyChecksum( ArtifactRepository repository, String path, File file, Digester digester,
67                                  ArtifactReporter reporter, Artifact artifact )
68     {
69         File checksumFile = new File( repository.getBasedir(), path );
70         if ( checksumFile.exists() )
71         {
72             try
73             {
74                 digester.verify( file, FileUtils.fileRead( checksumFile ) );
75
76                 reporter.addSuccess( artifact );
77             }
78             catch ( DigesterException e )
79             {
80                 reporter.addFailure( artifact, e.getMessage() );
81             }
82             catch ( IOException e )
83             {
84                 reporter.addFailure( artifact, "Read file error: " + e.getMessage() );
85             }
86         }
87         else
88         {
89             reporter.addFailure( artifact, digester.getAlgorithm() + " checksum file does not exist." );
90         }
91     }
92 }