org.gradle.test.fixtures.server.http.MavenHttpRepository.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2012 the original author or authors.
*
* Licensed 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.
*/
package org.gradle.test.fixtures.server.http
import org.gradle.test.fixtures.HttpRepository
import org.gradle.test.fixtures.maven.MavenFileRepository
import org.gradle.test.fixtures.maven.MavenRepository
/**
* A fixture for dealing with remote HTTP Maven repositories.
*/
class MavenHttpRepository implements MavenRepository, HttpRepository {
final HttpServer server
private final MavenFileRepository backingRepository
private final String contextPath
private final HttpRepository.MetadataType metadataType
MavenHttpRepository(HttpServer server, String contextPath = "/repo", HttpRepository.MetadataType metadataType = HttpRepository.MetadataType.DEFAULT, MavenFileRepository backingRepository) {
if (!contextPath.startsWith("/")) {
throw new IllegalArgumentException("Context path must start with '/'")
}
this.contextPath = contextPath
this.server = server
this.metadataType = metadataType
this.backingRepository = backingRepository
}
URI getUri() {
return new URI("${server.uri}${contextPath}")
}
HttpResource getModuleMetaData(String groupId, String artifactId) {
return module(groupId, artifactId).rootMetaData
}
@Override
HttpDirectoryResource directoryList(String organisation, String module) {
return directory(organisation, module)
}
HttpDirectoryResource directory(String groupId, String artifactId) {
def path = "${groupId.replace('.', '/')}/$artifactId/"
return new HttpDirectoryResource(server, "$contextPath/$path", backingRepository.getRootDir().file(path))
}
MavenHttpModule module(String groupId, String artifactId) {
return module(groupId, artifactId, "1.0")
}
MavenHttpModule module(String groupId, String artifactId, String version) {
def backingModule = backingRepository.module(groupId, artifactId, version)
return new MavenHttpModule(server, contextPath, backingModule)
}
@Override
HttpRepository.MetadataType getProvidesMetadata() {
return metadataType
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy