org.eclipse.edc.plugins.autodoc.tasks.DownloadManifestTask Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 Microsoft Corporation
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Microsoft Corporation - initial API and implementation
*
*/
package org.eclipse.edc.plugins.autodoc.tasks;
import org.gradle.api.artifacts.Dependency;
import org.gradle.api.artifacts.repositories.MavenArtifactRepository;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.file.Files;
import java.time.Duration;
import java.time.Instant;
import java.util.Objects;
import java.util.Optional;
import static java.lang.String.format;
public class DownloadManifestTask extends AbstractManifestResolveTask {
public static final String NAME = "downloadManifests";
private static final Duration MAX_MANIFEST_AGE = Duration.ofHours(24);
private final HttpClient httpClient;
public DownloadManifestTask() {
httpClient = HttpClient.newHttpClient();
}
@Override
protected InputStream resolveManifest(DependencySource autodocManifest) {
var request = HttpRequest.newBuilder().uri(autodocManifest.uri()).GET().build();
HttpResponse response;
try {
response = httpClient.send(request, HttpResponse.BodyHandlers.ofInputStream());
} catch (IOException | InterruptedException e) {
throw new RuntimeException(e);
}
if (response.statusCode() != 200) {
getLogger().warn("Could not download {}, HTTP response: {}", autodocManifest.dependency(), response);
return null;
}
return response.body();
}
/**
* Creates a download request for a given dependency, classifier, and type. A download request is successfully created if:
*
* - the file does not exist locally, e.g. from a previous run
* - the file exists locally, but is too old (older than 24hrs)
* - the file exists locally, but is not readable
* - the file is found in at least one Maven repository. MavenLocal is ignored.
*
*
* @param dependency the dependency to download
* @return an optional DownloadRequest if the artifact can be downloaded, otherwise an empty optional
*/
@Override
protected Optional createSource(Dependency dependency) {
if (isLocalFileValid(dependency)) {
getLogger().debug("Local file {} was deemed to be viable, will not download", new DependencySource(dependency, null, MANIFEST_CLASSIFIER, MANIFEST_TYPE).filename());
return Optional.empty();
}
var repos = getProject().getRepositories().stream().toList();
return repos.stream()
.filter(repo -> repo instanceof MavenArtifactRepository)
.map(repo -> (MavenArtifactRepository) repo)
.map(repo -> {
var repoUrl = createArtifactUrl(dependency, repo);
try {
// we use a HEAD request, because we only want to see whether that module has a `-manifest.json`
var uri = URI.create(repoUrl);
var headRequest = HttpRequest.newBuilder()
.uri(uri)
.method("HEAD", HttpRequest.BodyPublishers.noBody())
.build();
var response = httpClient.send(headRequest, HttpResponse.BodyHandlers.discarding());
if (response.statusCode() == 200) {
return new DependencySource(dependency, uri, MANIFEST_CLASSIFIER, MANIFEST_TYPE);
}
return null;
} catch (IOException | InterruptedException | IllegalArgumentException e) {
return null;
}
})
.filter(Objects::nonNull)
.findFirst();
}
private String createArtifactUrl(Dependency dep, MavenArtifactRepository repo) {
return format("%s%s/%s/%s/%s-%s-%s.%s", repo.getUrl(), dep.getGroup().replace(".", "/"), dep.getName(), dep.getVersion(),
dep.getName(), dep.getVersion(), MANIFEST_CLASSIFIER, MANIFEST_TYPE);
}
/**
* Checks if the manifest for a dependency exists locally. A local file is considered valid if:
*
* - The output directory exists
* - The file exists locally and is readable
* - The file is not older than 24 hours
*
*
* @param dep the dependency to check
* @return true if the local file is valid, false otherwise
*/
private boolean isLocalFileValid(Dependency dep) {
if (!downloadDirectory.toFile().exists()) return false;
var filePath = downloadDirectory.resolve(new DependencySource(dep, null, MANIFEST_CLASSIFIER, MANIFEST_TYPE).filename());
var file = filePath.toFile();
if (!file.exists() || !file.canRead()) return false;
try {
var date = Files.getLastModifiedTime(filePath).toInstant();
return Duration.between(date, Instant.now()).compareTo(MAX_MANIFEST_AGE) <= 0;
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}