]> source.dussan.org Git - archiva.git/blob
cea01ef7c7fcac287432809b14791723c12d93b0
[archiva.git] /
1 package org.apache.maven.archiva.consumers.core;
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.common.plexusbridge.DigesterUtils;
23 import org.apache.archiva.common.plexusbridge.PlexusSisuBridge;
24 import org.apache.archiva.common.plexusbridge.PlexusSisuBridgeException;
25 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
26 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
27 import org.apache.maven.archiva.consumers.ConsumerException;
28 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
29 import org.codehaus.plexus.digest.ChecksumFile;
30 import org.codehaus.plexus.digest.Digester;
31 import org.codehaus.plexus.digest.DigesterException;
32 import org.springframework.context.annotation.Scope;
33 import org.springframework.stereotype.Service;
34
35 import javax.annotation.PostConstruct;
36 import javax.inject.Inject;
37 import java.io.File;
38 import java.io.FileNotFoundException;
39 import java.io.IOException;
40 import java.util.ArrayList;
41 import java.util.Date;
42 import java.util.Iterator;
43 import java.util.List;
44
45 /**
46  * ValidateChecksumConsumer - validate the provided checksum against the file it represents.
47  *
48  * @version $Id$
49  */
50 @Service( "knownRepositoryContentConsumer#validate-checksum" )
51 @Scope( "prototype" )
52 public class ValidateChecksumConsumer
53     extends AbstractMonitoredConsumer
54     implements KnownRepositoryContentConsumer
55 {
56     private static final String NOT_VALID_CHECKSUM = "checksum-not-valid";
57
58     private static final String CHECKSUM_NOT_FOUND = "checksum-not-found";
59
60     private static final String CHECKSUM_DIGESTER_FAILURE = "checksum-digester-failure";
61
62     private static final String CHECKSUM_IO_ERROR = "checksum-io-error";
63
64     /**
65      * plexus.configuration default-value="validate-checksums"
66      */
67     private String id = "validate-checksums";
68
69     /**
70      * plexus.configuration default-value="Validate checksums against file."
71      */
72     private String description = "Validate checksums against file.";
73
74     /**
75      * plexus.requirement
76      */
77     private ChecksumFile checksum;
78
79     /**
80      * plexus.requirement role="org.codehaus.plexus.digest.Digester"
81      */
82     private List<Digester> allDigesters;
83
84     @Inject
85     private PlexusSisuBridge plexusSisuBridge;
86
87     @Inject
88     private DigesterUtils digesterUtils;
89
90     private File repositoryDir;
91
92     private List<String> includes = new ArrayList<String>();
93
94     public String getId()
95     {
96         return this.id;
97     }
98
99     public String getDescription()
100     {
101         return this.description;
102     }
103
104     public boolean isPermanent()
105     {
106         return false;
107     }
108
109     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered )
110         throws ConsumerException
111     {
112         this.repositoryDir = new File( repository.getLocation() );
113     }
114
115     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered, boolean executeOnEntireRepo )
116         throws ConsumerException
117     {
118         beginScan( repository, whenGathered );
119     }
120
121     public void completeScan()
122     {
123         /* nothing to do */
124     }
125
126     public void completeScan( boolean executeOnEntireRepo )
127     {
128         completeScan();
129     }
130
131     public List<String> getExcludes()
132     {
133         return null;
134     }
135
136     public List<String> getIncludes()
137     {
138         return this.includes;
139     }
140
141     public void processFile( String path )
142         throws ConsumerException
143     {
144         File checksumFile = new File( this.repositoryDir, path );
145         try
146         {
147             if ( !checksum.isValidChecksum( checksumFile ) )
148             {
149                 triggerConsumerWarning( NOT_VALID_CHECKSUM, "The checksum for " + checksumFile + " is invalid." );
150             }
151         }
152         catch ( FileNotFoundException e )
153         {
154             triggerConsumerError( CHECKSUM_NOT_FOUND, "File not found during checksum validation: " + e.getMessage() );
155         }
156         catch ( DigesterException e )
157         {
158             triggerConsumerError( CHECKSUM_DIGESTER_FAILURE,
159                                   "Digester failure during checksum validation on " + checksumFile );
160         }
161         catch ( IOException e )
162         {
163             triggerConsumerError( CHECKSUM_IO_ERROR, "Checksum I/O error during validation on " + checksumFile );
164         }
165     }
166
167     public void processFile( String path, boolean executeOnEntireReDpo )
168         throws Exception
169     {
170         processFile( path );
171     }
172
173     @PostConstruct
174     public void initialize()
175         throws PlexusSisuBridgeException
176     {
177         checksum = plexusSisuBridge.lookup( ChecksumFile.class );
178         List<Digester> allDigesters = new ArrayList<Digester>( digesterUtils.getAllDigesters() );
179         for ( Digester digester : allDigesters )
180         {
181             includes.add( "**/*" + digester.getFilenameExtension() );
182         }
183     }
184 }