]> source.dussan.org Git - archiva.git/blob
81a558e8b93acbfff43d8756e19ecfd5d5973e9d
[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.repository.ArtifactRepository;
20 import org.apache.maven.artifact.repository.metadata.RepositoryMetadata;
21 import org.apache.maven.archiva.reporting.processor.MetadataReportProcessor;
22 import org.apache.maven.archiva.reporting.database.ReportingDatabase;
23 import org.codehaus.plexus.digest.Digester;
24 import org.codehaus.plexus.digest.DigesterException;
25 import org.codehaus.plexus.util.FileUtils;
26
27 import java.io.File;
28 import java.io.IOException;
29
30 /**
31  * This class reports invalid and mismatched checksums of artifacts and metadata files.
32  * It validates MD5 and SHA-1 checksums.
33  *
34  * @plexus.component role="org.apache.maven.archiva.reporting.processor.MetadataReportProcessor" role-hint="checksum-metadata"
35  */
36 public class ChecksumMetadataReportProcessor
37     implements MetadataReportProcessor
38 {
39     /**
40      * @plexus.requirement role-hint="sha1"
41      */
42     private Digester sha1Digester;
43
44     /**
45      * @plexus.requirement role-hint="md5"
46      */
47     private Digester md5Digester;
48
49     private static final String ROLE_HINT = "checksum-metadata";
50
51     /**
52      * Validate the checksums of the metadata. Get the metadata file from the
53      * repository then validate the checksum.
54      */
55     public void processMetadata( RepositoryMetadata metadata, ArtifactRepository repository,
56                                  ReportingDatabase reporter )
57     {
58         if ( !"file".equals( repository.getProtocol() ) )
59         {
60             // We can't check other types of URLs yet. Need to use Wagon, with an exists() method.
61             throw new UnsupportedOperationException(
62                 "Can't process repository '" + repository.getUrl() + "'. Only file based repositories are supported" );
63         }
64
65         //check if checksum files exist
66         String path = repository.pathOfRemoteRepositoryMetadata( metadata );
67         File file = new File( repository.getBasedir(), path );
68
69         verifyChecksum( repository, path + ".md5", file, md5Digester, reporter, metadata );
70         verifyChecksum( repository, path + ".sha1", file, sha1Digester, reporter, metadata );
71     }
72
73     private void verifyChecksum( ArtifactRepository repository, String path, File file, Digester digester,
74                                  ReportingDatabase reporter, RepositoryMetadata metadata )
75     {
76         File checksumFile = new File( repository.getBasedir(), path );
77         if ( checksumFile.exists() )
78         {
79             try
80             {
81                 digester.verify( file, FileUtils.fileRead( checksumFile ) );
82             }
83             catch ( DigesterException e )
84             {
85                 addFailure( reporter, metadata, "checksum-wrong", e.getMessage() );
86             }
87             catch ( IOException e )
88             {
89                 addFailure( reporter, metadata, "checksum-io-exception", "Read file error: " + e.getMessage() );
90             }
91         }
92         else
93         {
94             addFailure( reporter, metadata, "checksum-missing",
95                         digester.getAlgorithm() + " checksum file does not exist." );
96         }
97     }
98
99     private static void addFailure( ReportingDatabase reporter, RepositoryMetadata metadata, String problem,
100                                     String reason )
101     {
102         // TODO: reason could be an i18n key derived from the processor and the problem ID and the
103         reporter.addFailure( metadata, ROLE_HINT, problem, reason );
104     }
105
106 }