org.openrewrite.gradle.util.DistributionInfos Maven / Gradle / Ivy
Show all versions of rewrite-gradle Show documentation
/*
* Copyright 2022 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
*
* https://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.openrewrite.gradle.util;
import lombok.Value;
import org.jspecify.annotations.Nullable;
import org.openrewrite.Checksum;
import org.openrewrite.ipc.http.HttpSender;
import java.io.IOException;
import java.net.URI;
@Value
public class DistributionInfos {
String downloadUrl;
@Nullable
Checksum checksum;
@Nullable
Checksum wrapperJarChecksum;
static DistributionInfos fetch(HttpSender httpSender, GradleWrapper.DistributionType distributionType,
GradleWrapper.GradleVersion gradleVersion) throws IOException {
String downloadUrl = toDistTypeUrl(distributionType, gradleVersion.getDownloadUrl());
Checksum checksum = fetchChecksum(httpSender, toDistTypeUrl(distributionType, gradleVersion.getChecksumUrl()));
Checksum jarChecksum = fetchChecksum(httpSender, gradleVersion.getWrapperChecksumUrl());
return new DistributionInfos(downloadUrl, checksum, jarChecksum);
}
private static String toDistTypeUrl(GradleWrapper.DistributionType distributionType, String binUrl) {
if (distributionType == GradleWrapper.DistributionType.All) {
return binUrl.replace("-bin.zip", "-all.zip");
}
return binUrl;
}
private static Checksum fetchChecksum(HttpSender httpSender, String checksumUrl) {
return Checksum.fromUri(httpSender, URI.create(checksumUrl));
}
}