aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt <joakime@apache.org>2008-04-15 04:44:17 +0000
committerJoakim Erdfelt <joakime@apache.org>2008-04-15 04:44:17 +0000
commit92362e9ee3b5d2720dd12880ab7a3589f1f84a8d (patch)
tree21a07bd143c42d35cdfa2dd3f14d2fcd070ceb27
parent11e37d73c422e575be1d6f3fafeaf9658ffd9945 (diff)
downloadarchiva-92362e9ee3b5d2720dd12880ab7a3589f1f84a8d.tar.gz
archiva-92362e9ee3b5d2720dd12880ab7a3589f1f84a8d.zip
Replacing plexus-digest with archiva-checksum
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@648115 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--archiva-modules/archiva-base/archiva-checksum/pom.xml10
-rw-r--r--archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/ChecksummedFile.java44
-rw-r--r--archiva-modules/archiva-base/archiva-checksum/src/test/java/org/apache/archiva/checksum/ChecksummedFileTest.java2
-rw-r--r--archiva-modules/archiva-base/archiva-common/pom.xml10
-rw-r--r--archiva-modules/archiva-base/archiva-common/src/main/java/org/apache/maven/archiva/common/utils/Checksums.java240
-rw-r--r--archiva-modules/archiva-base/archiva-common/src/test/java/org/apache/maven/archiva/common/utils/ChecksumsTest.java291
-rw-r--r--archiva-modules/archiva-base/archiva-policies/pom.xml4
-rw-r--r--archiva-modules/archiva-base/archiva-policies/src/main/java/org/apache/maven/archiva/policies/ChecksumPolicy.java33
-rw-r--r--archiva-modules/archiva-base/archiva-repository-layer/pom.xml4
-rw-r--r--archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/metadata/MetadataTools.java16
-rw-r--r--archiva-modules/archiva-base/pom.xml1
-rw-r--r--archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java14
-rw-r--r--pom.xml5
13 files changed, 73 insertions, 601 deletions
diff --git a/archiva-modules/archiva-base/archiva-checksum/pom.xml b/archiva-modules/archiva-base/archiva-checksum/pom.xml
index fb23cc6bf..a80e3525c 100644
--- a/archiva-modules/archiva-base/archiva-checksum/pom.xml
+++ b/archiva-modules/archiva-base/archiva-checksum/pom.xml
@@ -18,12 +18,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.archiva</groupId>
- <artifactId>archiva-modules</artifactId>
+ <artifactId>archiva-base</artifactId>
<version>1.1-SNAPSHOT</version>
</parent>
<artifactId>archiva-checksum</artifactId>
<name>Archiva Checksum</name>
- <version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
@@ -47,19 +46,12 @@
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
- <version>2.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
</dependencies>
</project>
diff --git a/archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/ChecksummedFile.java b/archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/ChecksummedFile.java
index 4f6b4276a..f1b510497 100644
--- a/archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/ChecksummedFile.java
+++ b/archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/ChecksummedFile.java
@@ -141,11 +141,9 @@ public class ChecksummedFile
* the to the checksum.
*
* @param algorithms the algorithms to check for.
- * @return true if the checksums report that the the reference file is valid.
- * @throws IOException if unable to validate the checksums.
+ * @return true if the checksums report that the the reference file is valid, false if invalid.
*/
public boolean isValidChecksums( ChecksumAlgorithm algorithms[] )
- throws IOException
{
FileInputStream fis = null;
try
@@ -166,30 +164,46 @@ public class ChecksummedFile
// Any checksums?
if ( checksums.isEmpty() )
{
- // No checksum objects, no checksum files, default to is valid.
- return true;
+ // No checksum objects, no checksum files, default to is invalid.
+ return false;
}
// Parse file once, for all checksums.
- fis = new FileInputStream( referenceFile );
- Checksum.update( checksums, fis );
+ try
+ {
+ fis = new FileInputStream( referenceFile );
+ Checksum.update( checksums, fis );
+ }
+ catch ( IOException e )
+ {
+ log.warn( "Unable to update checksum:" + e.getMessage() );
+ return false;
+ }
boolean valid = true;
// check the checksum files
- for ( Checksum checksum : checksums )
+ try
{
- ChecksumAlgorithm checksumAlgorithm = checksum.getAlgorithm();
- File checksumFile = getChecksumFile( checksumAlgorithm );
+ for ( Checksum checksum : checksums )
+ {
+ ChecksumAlgorithm checksumAlgorithm = checksum.getAlgorithm();
+ File checksumFile = getChecksumFile( checksumAlgorithm );
- String rawChecksum = FileUtils.readFileToString( checksumFile );
- String expectedChecksum = parseChecksum( rawChecksum, checksumAlgorithm, referenceFile.getName() );
+ String rawChecksum = FileUtils.readFileToString( checksumFile );
+ String expectedChecksum = parseChecksum( rawChecksum, checksumAlgorithm, referenceFile.getName() );
- if ( StringUtils.equalsIgnoreCase( expectedChecksum, checksum.getChecksum() ) == false )
- {
- valid = false;
+ if ( StringUtils.equalsIgnoreCase( expectedChecksum, checksum.getChecksum() ) == false )
+ {
+ valid = false;
+ }
}
}
+ catch ( IOException e )
+ {
+ log.warn( "Unable to read / parse checksum: " + e.getMessage() );
+ return false;
+ }
return valid;
}
diff --git a/archiva-modules/archiva-base/archiva-checksum/src/test/java/org/apache/archiva/checksum/ChecksummedFileTest.java b/archiva-modules/archiva-base/archiva-checksum/src/test/java/org/apache/archiva/checksum/ChecksummedFileTest.java
index 3b3c93512..733ffb7d3 100644
--- a/archiva-modules/archiva-base/archiva-checksum/src/test/java/org/apache/archiva/checksum/ChecksummedFileTest.java
+++ b/archiva-modules/archiva-base/archiva-checksum/src/test/java/org/apache/archiva/checksum/ChecksummedFileTest.java
@@ -158,7 +158,7 @@ public class ChecksummedFileTest
File jarFile = createTestableJar( "examples/redback-authz-open.jar", false, false );
ChecksummedFile checksummedFile = new ChecksummedFile( jarFile );
- assertTrue( "ChecksummedFile.isValid(SHA1,MD5)", checksummedFile.isValidChecksums( new ChecksumAlgorithm[] {
+ assertFalse( "ChecksummedFile.isValid(SHA1,MD5)", checksummedFile.isValidChecksums( new ChecksumAlgorithm[] {
ChecksumAlgorithm.SHA1,
ChecksumAlgorithm.MD5 } ) );
diff --git a/archiva-modules/archiva-base/archiva-common/pom.xml b/archiva-modules/archiva-base/archiva-common/pom.xml
index 5498bd36e..810f568d1 100644
--- a/archiva-modules/archiva-base/archiva-common/pom.xml
+++ b/archiva-modules/archiva-base/archiva-common/pom.xml
@@ -48,16 +48,6 @@
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-digest</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-container-default</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</dependency>
<dependency>
diff --git a/archiva-modules/archiva-base/archiva-common/src/main/java/org/apache/maven/archiva/common/utils/Checksums.java b/archiva-modules/archiva-base/archiva-common/src/main/java/org/apache/maven/archiva/common/utils/Checksums.java
deleted file mode 100644
index 8abdfb88e..000000000
--- a/archiva-modules/archiva-base/archiva-common/src/main/java/org/apache/maven/archiva/common/utils/Checksums.java
+++ /dev/null
@@ -1,240 +0,0 @@
-package org.apache.maven.archiva.common.utils;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.IOException;
-
-import org.codehaus.plexus.digest.ChecksumFile;
-import org.codehaus.plexus.digest.Digester;
-import org.codehaus.plexus.digest.DigesterException;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * Checksums utility component to validate or update checksums on Files.
- *
- * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
- * @version $Id$
- *
- * @plexus.component role="org.apache.maven.archiva.common.utils.Checksums"
- */
-public class Checksums
-{
- private Logger log = LoggerFactory.getLogger(Checksums.class);
-
- /**
- * @plexus.requirement role-hint="sha1"
- */
- private Digester digestSha1;
-
- /**
- * @plexus.requirement role-hint="md5"
- */
- private Digester digestMd5;
-
- /**
- * @plexus.requirement
- */
- private ChecksumFile checksumFile;
-
- public boolean check( File file )
- {
- boolean checksPass = true;
-
- File sha1File = getSha1File( file );
- File md5File = getMd5File( file );
-
- // Both files missing is a failure.
- if ( !sha1File.exists() && !md5File.exists() )
- {
- log.error( "File " + file.getPath() + " has no checksum files (sha1 or md5)." );
- checksPass = false;
- }
-
- if ( sha1File.exists() )
- {
- // Bad sha1 checksum is a failure.
- if ( !validateChecksum( sha1File, "sha1" ) )
- {
- log.warn( "SHA1 is incorrect for " + file.getPath() );
- checksPass = false;
- }
- }
-
- if ( md5File.exists() )
- {
- // Bad md5 checksum is a failure.
- if ( !validateChecksum( md5File, "md5" ) )
- {
- log.warn( "MD5 is incorrect for " + file.getPath() );
- checksPass = false;
- }
- }
-
- // TODO: eek!
- if ( !checksPass )
- {
- // On failure. delete files.
- if ( sha1File.exists() )
- {
- sha1File.delete();
- }
-
- if ( md5File.exists() )
- {
- md5File.delete();
- }
-
- file.delete();
- }
-
- return checksPass;
- }
-
- public boolean update( File file )
- {
- boolean checksPass = true;
-
- File sha1File = getSha1File( file );
- File md5File = getMd5File( file );
-
- if ( !fixChecksum( file, sha1File, digestSha1 ) )
- {
- checksPass = false;
- }
-
- if ( !fixChecksum( file, md5File, digestMd5 ) )
- {
- checksPass = false;
- }
-
- return checksPass;
- }
-
- private boolean createChecksum( File localFile, Digester digester )
- {
- try
- {
- checksumFile.createChecksum( localFile, digester );
- return true;
- }
- catch ( DigesterException e )
- {
- log.warn( "Unable to create " + digester.getFilenameExtension() + " file: " + e.getMessage(), e );
- return false;
- }
- catch ( IOException e )
- {
- log.warn( "Unable to create " + digester.getFilenameExtension() + " file: " + e.getMessage(), e );
- return false;
- }
- }
-
- private boolean fixChecksum( File localFile, File hashFile, Digester digester )
- {
- String ext = digester.getFilenameExtension();
-
- if ( !hashFile.getPath().endsWith( ext ) )
- {
- throw new IllegalArgumentException( "Cannot fix " + hashFile.getPath() + " using " + ext + " digester." );
- }
-
- // If hashfile doesn't exist, create it.
- if ( !hashFile.exists() )
- {
- return createChecksum( localFile, digester );
- }
-
- // Validate checksum, if bad, recreate it.
- try
- {
- if ( checksumFile.isValidChecksum( hashFile ) )
- {
- log.debug( "Valid checksum: " + hashFile.getPath() );
- return true;
- }
- else
- {
- log.debug( "Not valid checksum: " + hashFile.getPath() );
- return createChecksum( localFile, digester );
- }
- }
- catch ( FileNotFoundException e )
- {
- log.warn( "Unable to find " + ext + " file: " + hashFile.getAbsolutePath(), e );
- return false;
- }
- catch ( DigesterException e )
- {
- log.warn( "Unable to process " + ext + " file: " + hashFile.getAbsolutePath(), e );
- return false;
- }
- catch ( IOException e )
- {
- log.warn( "Unable to process " + ext + " file: " + hashFile.getAbsolutePath(), e );
- return false;
- }
- }
-
- private File getMd5File( File file )
- {
- return new File( file.getAbsolutePath() + ".md5" );
- }
-
- private File getSha1File( File file )
- {
- return new File( file.getAbsolutePath() + ".sha1" );
-
- }
-
- private boolean validateChecksum( File hashFile, String type )
- {
- try
- {
- boolean validity = checksumFile.isValidChecksum( hashFile );
- if ( validity )
- {
- log.debug( "Valid checksum: " + hashFile.getPath() );
- }
- else
- {
- log.debug( "Not valid checksum: " + hashFile.getPath() );
- }
- return validity;
- }
- catch ( FileNotFoundException e )
- {
- log.warn( "Unable to find " + type + " file: " + hashFile.getAbsolutePath(), e );
- return false;
- }
- catch ( DigesterException e )
- {
- log.warn( "Unable to process " + type + " file: " + hashFile.getAbsolutePath(), e );
- return false;
- }
- catch ( IOException e )
- {
- log.warn( "Unable to process " + type + " file: " + hashFile.getAbsolutePath(), e );
- return false;
- }
- }
-}
diff --git a/archiva-modules/archiva-base/archiva-common/src/test/java/org/apache/maven/archiva/common/utils/ChecksumsTest.java b/archiva-modules/archiva-base/archiva-common/src/test/java/org/apache/maven/archiva/common/utils/ChecksumsTest.java
deleted file mode 100644
index 5cbe361aa..000000000
--- a/archiva-modules/archiva-base/archiva-common/src/test/java/org/apache/maven/archiva/common/utils/ChecksumsTest.java
+++ /dev/null
@@ -1,291 +0,0 @@
-package org.apache.maven.archiva.common.utils;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import org.apache.commons.io.FileUtils;
-import org.codehaus.plexus.spring.PlexusInSpringTestCase;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.FileReader;
-
-/**
- * ChecksumsTest
- *
- * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
- * @version $Id$
- */
-public class ChecksumsTest
- extends PlexusInSpringTestCase
-{
- private static final String GOOD = "good";
-
- private static final String BAD = "bad";
-
- public void testCheckOnFileOnly()
- throws Exception
- {
- assertCheck( false, null, null );
- }
-
- public void testCheckOnFileWithBadMd5AndBadSha1()
- throws Exception
- {
- assertCheck( false, BAD, BAD );
- }
-
- public void testCheckOnFileWithBadMd5AndGoodSha1()
- throws Exception
- {
- assertCheck( false, BAD, GOOD );
- }
-
- public void testCheckOnFileWithBadMd5Only()
- throws Exception
- {
- assertCheck( false, BAD, null );
- }
-
- public void testCheckOnFileWithBadSha1Only()
- throws Exception
- {
- assertCheck( false, null, BAD );
- }
-
- public void testCheckOnFileWithGoodMd5AndBadSha1()
- throws Exception
- {
- assertCheck( false, GOOD, BAD );
- }
-
- public void testCheckOnFileWithGoodMd5AndGoodSha1()
- throws Exception
- {
- assertCheck( true, GOOD, GOOD );
- }
-
- public void testCheckOnFileWithGoodMd5Only()
- throws Exception
- {
- assertCheck( true, GOOD, null );
- }
-
- public void testCheckOnFileWithGoodSha1Only()
- throws Exception
- {
- assertCheck( true, null, GOOD );
- }
-
- public void testUpdateOnFileOnly()
- throws Exception
- {
- assertUpdate( true, null, null );
- }
-
- public void testUpdateOnFileWithBadMd5AndBadSha1()
- throws Exception
- {
- assertUpdate( true, BAD, BAD );
- }
-
- public void testUpdateOnFileWithBadMd5AndGoodSha1()
- throws Exception
- {
- assertUpdate( true, BAD, GOOD );
- }
-
- public void testUpdateOnFileWithBadMd5Only()
- throws Exception
- {
- assertUpdate( true, BAD, null );
- }
-
- public void testUpdateOnFileWithBadSha1Only()
- throws Exception
- {
- assertUpdate( true, null, BAD );
- }
-
- public void testUpdateOnFileWithGoodMd5AndBadSha1()
- throws Exception
- {
- assertUpdate( true, GOOD, BAD );
- }
-
- public void testUpdateOnFileWithGoodMd5AndGoodSha1()
- throws Exception
- {
- assertUpdate( true, GOOD, GOOD );
- }
-
- public void testUpdateOnFileWithGoodMd5Only()
- throws Exception
- {
- assertUpdate( true, GOOD, null );
- }
-
- public void testUpdateOnFileWithGoodSha1Only()
- throws Exception
- {
- assertUpdate( true, null, GOOD );
- }
-
- private void assertCheck( boolean expectedResult, String md5State, String sha1State )
- throws Exception
- {
- Checksums checksums = lookupChecksums();
- File localFile = createTestableFiles( md5State, sha1State );
-
- boolean actualResult = checksums.check( localFile );
- String msg = createMessage( "check", md5State, sha1State );
-
- if ( actualResult == false )
- {
- assertFalse( msg + " local file should not exist:", localFile.exists() );
- File md5File = new File( localFile.getAbsolutePath() + ".sha1" );
- File sha1File = new File( localFile.getAbsolutePath() + ".md5" );
- assertFalse( msg + " local md5 file should not exist:", md5File.exists() );
- assertFalse( msg + " local sha1 file should not exist:", sha1File.exists() );
- }
-
- assertEquals( msg, expectedResult, actualResult );
- }
-
- private void assertUpdate( boolean expectedResult, String md5State, String sha1State )
- throws Exception
- {
- Checksums checksums = lookupChecksums();
- File localFile = createTestableFiles( md5State, sha1State );
-
- boolean actualResult = checksums.update( localFile );
- String msg = createMessage( "update", md5State, sha1State );
- assertEquals( msg, expectedResult, actualResult );
-
- // End result should be legitimate SHA1 and MD5 files.
- File md5File = new File( localFile.getAbsolutePath() + ".md5" );
- File sha1File = new File( localFile.getAbsolutePath() + ".sha1" );
-
- assertTrue( "ChecksumPolicy.apply(FIX) md5 should exist.", md5File.exists() && md5File.isFile() );
- assertTrue( "ChecksumPolicy.apply(FIX) sha1 should exist.", sha1File.exists() && sha1File.isFile() );
-
- String actualMd5Contents = readChecksumFile( md5File );
- String actualSha1Contents = readChecksumFile( sha1File );
-
- String expectedMd5Contents = "360ccd01d8a0a2d94b86f9802c2fc548 artifact.jar";
- String expectedSha1Contents = "7dd8929150664f182db60ad15f20359d875f059f artifact.jar";
-
- assertEquals( msg + ": md5 contents:", expectedMd5Contents, actualMd5Contents );
- assertEquals( msg + ": sha1 contents:", expectedSha1Contents, actualSha1Contents );
- }
-
- /**
- * Read the first line from the checksum file, and return it (trimmed).
- */
- private String readChecksumFile( File checksumFile )
- throws Exception
- {
- FileReader freader = null;
- BufferedReader buf = null;
-
- try
- {
- freader = new FileReader( checksumFile );
- buf = new BufferedReader( freader );
- return buf.readLine();
- }
- finally
- {
- if ( buf != null )
- {
- buf.close();
- }
-
- if ( freader != null )
- {
- freader.close();
- }
- }
- }
-
- private String createMessage( String method, String md5State, String sha1State )
- {
- StringBuffer msg = new StringBuffer();
- msg.append( "Expected result of Checksums." ).append( method );
- msg.append( "() when working with " );
- if ( md5State == null )
- {
- msg.append( "NO" );
- }
- else
- {
- msg.append( "a " ).append( md5State.toUpperCase() );
- }
-
- msg.append( " MD5 and " );
-
- if ( sha1State == null )
- {
- msg.append( "NO" );
- }
- else
- {
- msg.append( "a " ).append( sha1State.toUpperCase() );
- }
- msg.append( " SHA1:" );
-
- return msg.toString();
- }
-
- private File createTestableFiles( String md5State, String sha1State )
- throws Exception
- {
-
- File destDir = new File( "target/checksum-tests/" + getName() + "/" );
-
- FileUtils.copyFileToDirectory( ResourceUtils.getResource( "/checksums/artifact.jar" ), destDir );
-
- if ( md5State != null )
- {
- File md5File = ResourceUtils.getResource( "/checksums/artifact.jar.md5-" + md5State );
- assertTrue( "Testable file exists: " + md5File.getName() + ":", md5File.exists() && md5File.isFile() );
- File destFile = new File( destDir, "artifact.jar.md5" );
- FileUtils.copyFile( md5File, destFile );
- }
-
- if ( sha1State != null )
- {
- File sha1File = ResourceUtils.getResource( "/checksums/artifact.jar.sha1-" + sha1State );
- assertTrue( "Testable file exists: " + sha1File.getName() + ":", sha1File.exists() && sha1File.isFile() );
- File destFile = new File( destDir, "artifact.jar.sha1" );
- FileUtils.copyFile( sha1File, destFile );
- }
-
- File localFile = new File( destDir, "artifact.jar" );
- return localFile;
- }
-
- private Checksums lookupChecksums()
- throws Exception
- {
- Checksums checksums = (Checksums) lookup( Checksums.class );
- assertNotNull( checksums );
- return checksums;
- }
-}
diff --git a/archiva-modules/archiva-base/archiva-policies/pom.xml b/archiva-modules/archiva-base/archiva-policies/pom.xml
index 97ccbb8b7..6ec016d73 100644
--- a/archiva-modules/archiva-base/archiva-policies/pom.xml
+++ b/archiva-modules/archiva-base/archiva-policies/pom.xml
@@ -33,6 +33,10 @@
<artifactId>archiva-common</artifactId>
</dependency>
<dependency>
+ <groupId>org.apache.archiva</groupId>
+ <artifactId>archiva-checksum</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-spring</artifactId>
<scope>test</scope>
diff --git a/archiva-modules/archiva-base/archiva-policies/src/main/java/org/apache/maven/archiva/policies/ChecksumPolicy.java b/archiva-modules/archiva-base/archiva-policies/src/main/java/org/apache/maven/archiva/policies/ChecksumPolicy.java
index 99e741e0c..76b5db51d 100644
--- a/archiva-modules/archiva-base/archiva-policies/src/main/java/org/apache/maven/archiva/policies/ChecksumPolicy.java
+++ b/archiva-modules/archiva-base/archiva-policies/src/main/java/org/apache/maven/archiva/policies/ChecksumPolicy.java
@@ -24,8 +24,9 @@ import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
+import org.apache.archiva.checksum.ChecksumAlgorithm;
+import org.apache.archiva.checksum.ChecksummedFile;
import org.apache.commons.lang.StringUtils;
-import org.apache.maven.archiva.common.utils.Checksums;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -65,10 +66,7 @@ public class ChecksumPolicy
*/
public static final String FIX = "fix";
- /**
- * @plexus.requirement
- */
- private Checksums checksums;
+ private ChecksumAlgorithm[] algorithms = new ChecksumAlgorithm[] { ChecksumAlgorithm.SHA1, ChecksumAlgorithm.MD5 };
private List<String> options = new ArrayList<String>();
@@ -105,25 +103,21 @@ public class ChecksumPolicy
if ( FAIL.equals( policySetting ) )
{
- if( checksums.check( localFile ) )
+ ChecksummedFile checksum = new ChecksummedFile( localFile );
+ if ( checksum.isValidChecksums( algorithms ) )
{
return;
}
-
- File sha1File = new File( localFile.getAbsolutePath() + ".sha1" );
- File md5File = new File( localFile.getAbsolutePath() + ".md5" );
-
- // On failure. delete files.
- if ( sha1File.exists() )
- {
- sha1File.delete();
- }
- if ( md5File.exists() )
+ for ( ChecksumAlgorithm algorithm : algorithms )
{
- md5File.delete();
+ File file = new File( localFile.getAbsolutePath() + "." + algorithm.getExt() );
+ if ( file.exists() )
+ {
+ file.delete();
+ }
}
-
+
localFile.delete();
throw new PolicyViolationException( "Checksums do not match, policy set to FAIL, "
+ "deleting checksum files and local file " + localFile.getAbsolutePath() + "." );
@@ -131,7 +125,8 @@ public class ChecksumPolicy
if ( FIX.equals( policySetting ) )
{
- if( checksums.update( localFile ) )
+ ChecksummedFile checksum = new ChecksummedFile( localFile );
+ if( checksum.fixChecksums( algorithms ) )
{
log.debug( "Checksum policy set to FIX, checksum files have been updated." );
return;
diff --git a/archiva-modules/archiva-base/archiva-repository-layer/pom.xml b/archiva-modules/archiva-base/archiva-repository-layer/pom.xml
index 6b0d6c393..d16a83a4d 100644
--- a/archiva-modules/archiva-base/archiva-repository-layer/pom.xml
+++ b/archiva-modules/archiva-base/archiva-repository-layer/pom.xml
@@ -46,6 +46,10 @@
</dependency>
<dependency>
<groupId>org.apache.archiva</groupId>
+ <artifactId>archiva-checksum</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.archiva</groupId>
<artifactId>archiva-configuration</artifactId>
</dependency>
<dependency>
diff --git a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/metadata/MetadataTools.java b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/metadata/MetadataTools.java
index 88c25fc9f..683a26790 100644
--- a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/metadata/MetadataTools.java
+++ b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/metadata/MetadataTools.java
@@ -19,11 +19,12 @@ package org.apache.maven.archiva.repository.metadata;
* under the License.
*/
+import org.apache.archiva.checksum.ChecksumAlgorithm;
+import org.apache.archiva.checksum.ChecksummedFile;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.math.NumberUtils;
import org.apache.commons.lang.time.DateUtils;
-import org.apache.maven.archiva.common.utils.Checksums;
import org.apache.maven.archiva.common.utils.PathUtil;
import org.apache.maven.archiva.common.utils.VersionComparator;
import org.apache.maven.archiva.common.utils.VersionUtil;
@@ -94,11 +95,8 @@ public class MetadataTools
*/
private FileTypes filetypes;
- /**
- * @plexus.requirement
- */
- private Checksums checksums;
-
+ private ChecksumAlgorithm[] algorithms = new ChecksumAlgorithm[] { ChecksumAlgorithm.SHA1, ChecksumAlgorithm.MD5 };
+
private List<String> artifactPatterns;
private Map<String, Set<String>> proxies;
@@ -519,7 +517,8 @@ public class MetadataTools
// Save the metadata model to disk.
RepositoryMetadataWriter.write( metadata, metadataFile );
- checksums.update( metadataFile );
+ ChecksummedFile checksum = new ChecksummedFile( metadataFile );
+ checksum.fixChecksums( algorithms );
}
private Date toLastUpdatedDate( long lastUpdated )
@@ -717,7 +716,8 @@ public class MetadataTools
// Save the metadata model to disk.
RepositoryMetadataWriter.write( metadata, metadataFile );
- checksums.update( metadataFile );
+ ChecksummedFile checksum = new ChecksummedFile( metadataFile );
+ checksum.fixChecksums( algorithms );
}
private void initConfigVariables()
diff --git a/archiva-modules/archiva-base/pom.xml b/archiva-modules/archiva-base/pom.xml
index a75a83083..124a2eefb 100644
--- a/archiva-modules/archiva-base/pom.xml
+++ b/archiva-modules/archiva-base/pom.xml
@@ -29,6 +29,7 @@
<packaging>pom</packaging>
<modules>
+ <module>archiva-checksum</module>
<module>archiva-common</module>
<module>archiva-policies</module>
<module>archiva-configuration</module>
diff --git a/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java b/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java
index 26b7800d8..fbaca57ae 100644
--- a/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java
+++ b/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java
@@ -28,7 +28,8 @@ import java.util.Calendar;
import java.util.Collections;
import java.util.List;
-import org.apache.maven.archiva.common.utils.Checksums;
+import org.apache.archiva.checksum.ChecksumAlgorithm;
+import org.apache.archiva.checksum.ChecksummedFile;
import org.apache.maven.archiva.common.utils.VersionComparator;
import org.apache.maven.archiva.common.utils.VersionUtil;
import org.apache.maven.archiva.configuration.ArchivaConfiguration;
@@ -137,14 +138,11 @@ public class UploadAction
* @plexus.requirement
*/
private RepositoryContentFactory repositoryFactory;
+
+ private ChecksumAlgorithm[] algorithms = new ChecksumAlgorithm[] { ChecksumAlgorithm.SHA1, ChecksumAlgorithm.MD5 };
private ProjectModelWriter pomWriter = new ProjectModel400Writer();
- /**
- * @plexus.requirement
- */
- private Checksums checksums;
-
public void setUpload( File file )
{
this.file = file;
@@ -422,8 +420,8 @@ public class UploadAction
}
RepositoryMetadataWriter.write( metadata, metadataFile );
-
- checksums.update( metadataFile );
+ ChecksummedFile checksum = new ChecksummedFile( metadataFile );
+ checksum.fixChecksums( algorithms );
}
public void validate()
diff --git a/pom.xml b/pom.xml
index ec1d096bc..17f830178 100644
--- a/pom.xml
+++ b/pom.xml
@@ -214,6 +214,11 @@
</dependency>
<dependency>
<groupId>org.apache.archiva</groupId>
+ <artifactId>archiva-checksum</artifactId>
+ <version>1.1-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.archiva</groupId>
<artifactId>archiva-common</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>