com.synopsys.integration.blackduck.bdio2.Bdio2FileUploadService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blackduck-common Show documentation
Show all versions of blackduck-common Show documentation
A library for using various capabilities of Black Duck, notably the REST API and signature scanning.
/*
* blackduck-common
*
* Copyright (c) 2021 Synopsys, Inc.
*
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
*/
package com.synopsys.integration.blackduck.bdio2;
import java.util.List;
import java.util.stream.Collectors;
import com.synopsys.integration.blackduck.api.generated.discovery.ApiDiscovery;
import com.synopsys.integration.blackduck.bdio2.model.BdioFileContent;
import com.synopsys.integration.blackduck.bdio2.util.Bdio2ContentExtractor;
import com.synopsys.integration.blackduck.codelocation.upload.UploadTarget;
import com.synopsys.integration.blackduck.exception.BlackDuckIntegrationException;
import com.synopsys.integration.blackduck.service.BlackDuckApiClient;
import com.synopsys.integration.blackduck.service.DataService;
import com.synopsys.integration.exception.IntegrationException;
import com.synopsys.integration.log.IntLogger;
import com.synopsys.integration.rest.HttpUrl;
public class Bdio2FileUploadService extends DataService {
private static final String FILE_NAME_BDIO_HEADER_JSONLD = "bdio-header.jsonld";
private final Bdio2ContentExtractor bdio2Extractor;
private final Bdio2StreamUploader bdio2Uploader;
public Bdio2FileUploadService(BlackDuckApiClient blackDuckApiClient, ApiDiscovery apiDiscovery,
IntLogger logger, Bdio2ContentExtractor bdio2Extractor, Bdio2StreamUploader bdio2Uploader) {
super(blackDuckApiClient, apiDiscovery, logger);
this.bdio2Extractor = bdio2Extractor;
this.bdio2Uploader = bdio2Uploader;
}
public HttpUrl uploadFile(UploadTarget uploadTarget) throws IntegrationException {
logger.debug(String.format("Uploading BDIO file %s", uploadTarget.getUploadFile()));
List bdioFileContentList = bdio2Extractor.extractContent(uploadTarget.getUploadFile());
return uploadFiles(bdioFileContentList);
}
private HttpUrl uploadFiles(List bdioFiles) throws IntegrationException {
if (bdioFiles.isEmpty()) {
throw new IllegalArgumentException("BDIO files cannot be empty.");
}
BdioFileContent header = bdioFiles.stream()
.filter(content -> content.getFileName().equals(FILE_NAME_BDIO_HEADER_JSONLD))
.findFirst()
.orElseThrow(() -> new BlackDuckIntegrationException("Cannot find BDIO header file" + FILE_NAME_BDIO_HEADER_JSONLD + "."));
List remainingFiles = bdioFiles.stream()
.filter(content -> !content.getFileName().equals(FILE_NAME_BDIO_HEADER_JSONLD))
.collect(Collectors.toList());
int count = remainingFiles.size();
logger.debug("BDIO upload file count = " + count);
HttpUrl url = bdio2Uploader.start(header);
for (BdioFileContent content : remainingFiles) {
bdio2Uploader.append(url, count, content);
}
bdio2Uploader.finish(url, count);
return url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy