]> source.dussan.org Git - archiva.git/blob
245ccfd60996c7b8795c525ca3b85d45477e564f
[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.artifact.Artifact;
20 import org.apache.maven.artifact.repository.ArtifactRepository;
21 import org.apache.maven.model.Model;
22 import org.codehaus.plexus.digest.Digester;
23 import org.codehaus.plexus.digest.DigesterException;
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     private static final String ROLE_HINT = "checksum";
49
50     public void processArtifact( Artifact artifact, Model model, ReportingDatabase reporter )
51     {
52         ArtifactRepository repository = artifact.getRepository();
53
54         if ( !"file".equals( repository.getProtocol() ) )
55         {
56             // We can't check other types of URLs yet. Need to use Wagon, with an exists() method.
57             throw new UnsupportedOperationException(
58                 "Can't process repository '" + repository.getUrl() + "'. Only file based repositories are supported" );
59         }
60
61         //check if checksum files exist
62         String path = repository.pathOf( artifact );
63         File file = new File( repository.getBasedir(), path );
64
65         // TODO: make md5 configurable
66 //        verifyChecksum( repository, path + ".md5", file, md5Digester, reporter, artifact );
67         verifyChecksum( repository, path + ".sha1", file, sha1Digester, reporter, artifact );
68     }
69
70     private void verifyChecksum( ArtifactRepository repository, String path, File file, Digester digester,
71                                  ReportingDatabase reporter, Artifact artifact )
72     {
73         File checksumFile = new File( repository.getBasedir(), path );
74         if ( checksumFile.exists() )
75         {
76             try
77             {
78                 digester.verify( file, FileUtils.fileRead( checksumFile ) );
79             }
80             catch ( DigesterException e )
81             {
82                 addFailure( reporter, artifact, "checksum-wrong", e.getMessage() );
83             }
84             catch ( IOException e )
85             {
86                 addFailure( reporter, artifact, "checksum-io-exception", "Read file error: " + e.getMessage() );
87             }
88         }
89         else
90         {
91             addFailure( reporter, artifact, "checksum-missing",
92                         digester.getAlgorithm() + " checksum file does not exist." );
93         }
94     }
95
96     private static void addFailure( ReportingDatabase reporter, Artifact artifact, String problem, String reason )
97     {
98         // TODO: reason could be an i18n key derived from the processor and the problem ID and the
99         reporter.addFailure( artifact, ROLE_HINT, problem, reason );
100     }
101 }