com.argosnotary.argos.argos4j.internal.RemoteArtifactCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of argos4j Show documentation
Show all versions of argos4j Show documentation
Java client for Argos Supply Chain Notary
The newest version!
/*
* Copyright (C) 2020 Argos Notary Coöperatie UA
*
* 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 com.argosnotary.argos.argos4j.internal;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.argosnotary.argos.argos4j.Argos4jError;
import com.argosnotary.argos.argos4j.RemoteCollector;
import com.argosnotary.argos.argos4j.RemoteCollectorCollector;
import com.argosnotary.argos.argos4j.RemoteFileCollector;
import com.argosnotary.argos.argos4j.RemoteZipFileCollector;
import com.argosnotary.argos.domain.crypto.HashUtil;
import com.argosnotary.argos.domain.link.Artifact;
import feign.Client;
import feign.Request;
import feign.RequestTemplate;
import feign.Response;
import feign.auth.BasicAuthRequestInterceptor;
import lombok.extern.slf4j.Slf4j;
import java.io.BufferedReader;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.charset.Charset;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.stream.Collectors;
import static java.nio.charset.StandardCharsets.UTF_8;
@Slf4j
public class RemoteArtifactCollector implements ArtifactCollector {
private final RemoteCollector remoteCollector;
public RemoteArtifactCollector(RemoteFileCollector remoteCollector) {
this.remoteCollector = remoteCollector;
}
public RemoteArtifactCollector(RemoteZipFileCollector remoteCollector) {
this.remoteCollector = remoteCollector;
}
public RemoteArtifactCollector(RemoteCollectorCollector remoteCollector) {
this.remoteCollector = remoteCollector;
}
@Override
public List collect() {
RequestTemplate requestTemplate;
try {
requestTemplate = createRequest();
} catch (URISyntaxException e) {
throw new Argos4jError("Creation of request returned error: "+e.getMessage());
}
Client client = new Client.Default(null, null);
Request request = requestTemplate.resolve(new HashMap<>()).request();
log.info("execute request: {}", request.url());
try (Response response = client.execute(request, new Request.Options())) {
if (response.status() == 200) {
return getArtifactsFromResponse(response);
} else {
String bodyAsString = Optional.ofNullable(response.body()).map(this::convert).filter(body -> !body.isEmpty()).map(body -> " with body : " + body).orElse("");
throw new Argos4jError("call to " + request.url() + " returned " + response.status() + bodyAsString);
}
} catch (IOException e) {
throw new Argos4jError(request.url() + " got error " + e.getMessage(), e);
}
}
public String convert(Response.Body body) {
try (BufferedReader br = new BufferedReader(body.asReader(UTF_8))) {
return br.lines().collect(Collectors.joining("\n"));
} catch (IOException e) {
return e.getMessage();
}
}
private List getArtifactsFromResponse(Response response) throws IOException {
if (remoteCollector.getClass() == RemoteZipFileCollector.class) {
return new ZipStreamArtifactCollector(remoteCollector).collect(response.body().asInputStream());
} else if (remoteCollector.getClass() == RemoteFileCollector.class) {
String fileName = Optional.ofNullable(((RemoteFileCollector) remoteCollector).getArtifactUri())
.orElseGet(() -> remoteCollector.getUrl().getPath().substring(remoteCollector.getUrl().getPath().lastIndexOf('/') + 1));
String hash = HashUtil.createHash(response.body().asInputStream(), fileName, remoteCollector.isNormalizeLineEndings());
return Collections.singletonList(Artifact.builder().hash(hash).uri(fileName).build());
} else if (remoteCollector.getClass() == RemoteCollectorCollector.class) {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.readValue(response.body().asInputStream(), new TypeReference>(){});
} else {
throw new Argos4jError("not implemented");
}
}
private RequestTemplate createRequest() throws URISyntaxException {
RequestTemplate requestTemplate = new RequestTemplate();
String url = remoteCollector.getUrl().toString();
if (remoteCollector.getClass() == RemoteCollectorCollector.class) {
requestTemplate.method(Request.HttpMethod.POST);
try {
requestTemplate.body(
Request.Body.bodyTemplate((new ObjectMapper()
.writeValueAsString(
((RemoteCollectorCollector) remoteCollector).getParameterMap())),
Charset.defaultCharset()));
} catch (JsonProcessingException e) {
throw new Argos4jError(e.getMessage());
}
} else {
requestTemplate.method(Request.HttpMethod.GET);
url = appendToUrl(url, remoteCollector.getParameterMap());
}
requestTemplate.target(url);
addAuthorization(requestTemplate);
return requestTemplate;
}
private void addAuthorization(RequestTemplate requestTemplate) {
Optional.ofNullable(remoteCollector.getUsername())
.ifPresent(userInfo -> new BasicAuthRequestInterceptor(remoteCollector.getUsername(),
new String(remoteCollector.getPassword())).apply(requestTemplate));
}
private String appendToUrl(String url, Map parameters) throws URISyntaxException {
URI uri = new URI(url);
String query = uri.getQuery();
StringBuilder builder = new StringBuilder();
if (query != null)
builder.append(query);
if (parameters != null) {
parameters.forEach((key, value) -> {
String keyValueParam = key + "=" + value;
if (!builder.toString().isEmpty())
builder.append("&");
builder.append(keyValueParam);
});
}
URI newUri = new URI(uri.getScheme(), uri.getAuthority(), uri.getPath(), builder.toString(), uri.getFragment());
return newUri.toString();
}
}