com.synopsys.integration.blackduck.service.dataservice.LicenseService 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) 2023 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.service.dataservice;
import java.io.IOException;
import java.util.List;
import java.util.Optional;
import com.synopsys.integration.bdio.model.externalid.ExternalId;
import com.synopsys.integration.blackduck.api.core.response.UrlMultipleResponses;
import com.synopsys.integration.blackduck.api.generated.discovery.ApiDiscovery;
import com.synopsys.integration.blackduck.api.generated.response.ComponentsView;
import com.synopsys.integration.blackduck.api.generated.view.ComponentVersionLicenseLicensesView;
import com.synopsys.integration.blackduck.api.generated.view.ComponentVersionLicenseView;
import com.synopsys.integration.blackduck.api.generated.view.ComponentVersionView;
import com.synopsys.integration.blackduck.api.generated.view.LicenseView;
import com.synopsys.integration.blackduck.api.manual.temporary.component.VersionBomLicenseView;
import com.synopsys.integration.blackduck.http.BlackDuckQuery;
import com.synopsys.integration.blackduck.http.BlackDuckRequestBuilder;
import com.synopsys.integration.blackduck.service.BlackDuckApiClient;
import com.synopsys.integration.blackduck.service.DataService;
import com.synopsys.integration.blackduck.service.request.BlackDuckRequest;
import com.synopsys.integration.exception.IntegrationException;
import com.synopsys.integration.log.IntLogger;
import com.synopsys.integration.rest.HttpUrl;
import com.synopsys.integration.rest.response.Response;
public class LicenseService extends DataService {
private final ComponentService componentDataService;
public LicenseService(BlackDuckApiClient blackDuckApiClient, ApiDiscovery apiDiscovery, IntLogger logger, ComponentService componentDataService) {
super(blackDuckApiClient, apiDiscovery, logger);
this.componentDataService = componentDataService;
}
public Optional getComplexLicenseItemFromComponent(ExternalId externalId) throws IntegrationException {
Optional componentSearchView = componentDataService.getFirstOrEmptyResult(externalId);
if (!componentSearchView.isPresent()) {
return Optional.empty();
}
HttpUrl componentVersionUrl = new HttpUrl(componentSearchView.get().getVersion());
ComponentVersionView componentVersion = blackDuckApiClient.getResponse(componentVersionUrl, ComponentVersionView.class);
return Optional.ofNullable(componentVersion.getLicense());
}
public LicenseView getLicenseView(VersionBomLicenseView versionBomLicenseView) throws IntegrationException {
HttpUrl url = new HttpUrl(versionBomLicenseView.getLicense());
return getLicenseView(url);
}
public LicenseView getLicenseView(ComponentVersionLicenseLicensesView componentVersionLicenseLicensesView) throws IntegrationException {
HttpUrl url = new HttpUrl(componentVersionLicenseLicensesView.getLicense());
return getLicenseView(url);
}
public LicenseView getLicenseView(HttpUrl licenseUrl) throws IntegrationException {
if (licenseUrl == null) {
return null;
}
LicenseView licenseView = blackDuckApiClient.getResponse(licenseUrl, LicenseView.class);
return licenseView;
}
public String getLicenseText(LicenseView licenseView) throws IntegrationException {
HttpUrl licenseTextUrl = licenseView.getFirstLink(LicenseView.TEXT_LINK);
try (Response response = blackDuckApiClient.get(licenseTextUrl)) {
return response.getContentString();
} catch (IOException e) {
throw new IntegrationException(e.getMessage(), e);
}
}
public List searchLicensesByName(String licenseName) throws IntegrationException {
BlackDuckQuery nameQuery = new BlackDuckQuery("name:" + licenseName);
BlackDuckRequest> requestMultiple = new BlackDuckRequest<>(new BlackDuckRequestBuilder().commonGet().addBlackDuckQuery(nameQuery), apiDiscovery.metaLicensesLink());
return blackDuckApiClient.getAllResponses(requestMultiple);
}
public Optional getLicenseUrlByLicenseName(String licenseName) {
try {
return blackDuckApiClient.getAllResponses(apiDiscovery.metaLicensesLink()).stream()
.filter(license -> license.getName().equals(licenseName))
.findFirst()
.map(LicenseView::getHref);
} catch (IntegrationException e) {
return Optional.empty();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy