From 7972d750820c9e725fbd7894f288afdbe44660c6 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Wed, 11 Jun 2014 02:44:41 +1000 Subject: [PATCH] [MRM-1846] Regression in 2.0.1 : uniqueVersion false not supported --- .../webdav/ArchivaDavResourceFactory.java | 5 +++- .../maven2/Maven2RepositoryStorage.java | 29 ++++++++++--------- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/archiva/webdav/ArchivaDavResourceFactory.java b/archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/archiva/webdav/ArchivaDavResourceFactory.java index 21865cafa..65aeae274 100644 --- a/archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/archiva/webdav/ArchivaDavResourceFactory.java +++ b/archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/archiva/webdav/ArchivaDavResourceFactory.java @@ -586,8 +586,11 @@ public class ArchivaDavResourceFactory DavResource resource = null; if ( isAuthorized( request, managedRepositoryContent.getId() ) ) { + boolean readMethod = WebdavMethodUtil.isReadMethod( request.getMethod() ); // Maven Centric part ask evaluation if -SNAPSHOT - String path = evaluatePathWithVersion( archivaLocator, managedRepositoryContent, request.getContextPath() ); + String path = readMethod ? + evaluatePathWithVersion( archivaLocator, managedRepositoryContent, request.getContextPath() ) + : getLogicalResource( archivaLocator, managedRepository, false ); if ( path.startsWith( "/" ) ) { path = path.substring( 1 ); diff --git a/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryStorage.java b/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryStorage.java index 6db2b79ab..f1027f255 100644 --- a/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryStorage.java +++ b/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryStorage.java @@ -102,12 +102,12 @@ import java.util.Map; * Maven 2 repository format storage implementation. This class currently takes parameters to indicate the repository to * deal with rather than being instantiated per-repository. * FIXME: instantiate one per repository and allocate permanently from a factory (which can be obtained within the session). - *

+ *

* The session is passed in as an argument to obtain any necessary resources, rather than the class being instantiated * within the session in the context of a single managed repository's resolution needs. - *

+ *

*/ -@Service( "repositoryStorage#maven2" ) +@Service("repositoryStorage#maven2") public class Maven2RepositoryStorage implements RepositoryStorage { @@ -129,7 +129,7 @@ public class Maven2RepositoryStorage private NetworkProxyAdmin networkProxyAdmin; @Inject - @Named( "repositoryPathTranslator#maven2" ) + @Named("repositoryPathTranslator#maven2") private RepositoryPathTranslator pathTranslator; @Inject @@ -139,7 +139,7 @@ public class Maven2RepositoryStorage private ApplicationContext applicationContext; @Inject - @Named( "pathParser#default" ) + @Named("pathParser#default") private PathParser pathParser; private static final String METADATA_FILENAME_START = "maven-metadata"; @@ -402,8 +402,7 @@ public class Maven2RepositoryStorage private List convertDependencies( List dependencies ) { - List l = - new ArrayList<>(); + List l = new ArrayList<>(); for ( Dependency dependency : dependencies ) { org.apache.archiva.metadata.model.Dependency newDependency = @@ -461,8 +460,7 @@ public class Maven2RepositoryStorage private List convertMailingLists( List mailingLists ) { - List l = - new ArrayList<>(); + List l = new ArrayList<>(); for ( MailingList mailingList : mailingLists ) { org.apache.archiva.metadata.model.MailingList newMailingList = @@ -810,11 +808,14 @@ public class Maven2RepositoryStorage // org/apache/archiva/archiva-checksum/1.4-M4-SNAPSHOT/archiva-checksum-1.4-M4-SNAPSHOT.jar // -> archiva-checksum-1.4-M4-20130425.081822-1.jar - filePath = - StringUtils.replace( filePath, artifactReference.getArtifactId() + "-" + artifactReference.getVersion(), - artifactReference.getArtifactId() + "-" + StringUtils.remove( - artifactReference.getVersion(), "-" + VersionUtil.SNAPSHOT ) + "-" + timestamp - + "-" + buildNumber ); + filePath = StringUtils.replace( filePath, // + artifactReference.getArtifactId() // + + "-" + artifactReference.getVersion(), // + artifactReference.getArtifactId() // + + "-" + StringUtils.remove( artifactReference.getVersion(), + "-" + VersionUtil.SNAPSHOT ) // + + "-" + timestamp // + + "-" + buildNumber ); throw new RelocationException( "/repository/" + managedRepositoryContent.getRepository().getId() + ( StringUtils.startsWith( filePath, "/" ) ? "" : "/" ) + filePath, -- 2.39.5