org.eclipse.aether.transport.http.XChecksumChecksumExtractor Maven / Gradle / Ivy
/*
* 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.
*/
package org.eclipse.aether.transport.http;
import javax.inject.Named;
import javax.inject.Singleton;
import java.util.HashMap;
import java.util.Map;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
/**
* A component extracting {@code x-} non-standard style checksums from response headers.
* Tried headers (in order):
*
* - {@code x-checksum-sha1} - Maven Central and other CDNs
* - {@code x-checksum-md5} - Maven Central and other CDNs
* - {@code x-goog-meta-checksum-sha1} - GCS
* - {@code x-goog-meta-checksum-md5} - GCS
*
*
* @since 1.8.0
*/
@Singleton
@Named(XChecksumChecksumExtractor.NAME)
public class XChecksumChecksumExtractor extends ChecksumExtractor {
public static final String NAME = "x-checksum";
@Override
public Map extractChecksums(HttpResponse response) {
String value;
HashMap result = new HashMap<>();
// Central style: x-checksum-sha1: c74edb60ca2a0b57ef88d9a7da28f591e3d4ce7b
value = extractChecksum(response, "x-checksum-sha1");
if (value != null) {
result.put("SHA-1", value);
}
// Central style: x-checksum-md5: 9ad0d8e3482767c122e85f83567b8ce6
value = extractChecksum(response, "x-checksum-md5");
if (value != null) {
result.put("MD5", value);
}
if (!result.isEmpty()) {
return result;
}
// Google style: x-goog-meta-checksum-sha1: c74edb60ca2a0b57ef88d9a7da28f591e3d4ce7b
value = extractChecksum(response, "x-goog-meta-checksum-sha1");
if (value != null) {
result.put("SHA-1", value);
}
// Central style: x-goog-meta-checksum-sha1: 9ad0d8e3482767c122e85f83567b8ce6
value = extractChecksum(response, "x-goog-meta-checksum-md5");
if (value != null) {
result.put("MD5", value);
}
return result.isEmpty() ? null : result;
}
private String extractChecksum(HttpResponse response, String name) {
Header header = response.getFirstHeader(name);
return header != null ? header.getValue() : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy