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