com.synopsys.integration.blackduck.service.dataservice.ProjectBomService 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) 2020 Synopsys, Inc.
*
* 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 com.synopsys.integration.blackduck.service.dataservice;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import org.apache.commons.lang3.StringUtils;
import com.synopsys.integration.bdio.model.externalid.ExternalId;
import com.synopsys.integration.blackduck.api.generated.response.ComponentsView;
import com.synopsys.integration.blackduck.api.generated.view.ComponentMatchedFilesView;
import com.synopsys.integration.blackduck.api.generated.view.ComponentVersionView;
import com.synopsys.integration.blackduck.api.generated.view.ProjectVersionComponentView;
import com.synopsys.integration.blackduck.api.generated.view.ProjectVersionPolicyStatusView;
import com.synopsys.integration.blackduck.api.generated.view.ProjectVersionView;
import com.synopsys.integration.blackduck.api.generated.view.ProjectVersionVulnerableBomComponentsView;
import com.synopsys.integration.blackduck.http.BlackDuckRequestFactory;
import com.synopsys.integration.blackduck.service.BlackDuckApiClient;
import com.synopsys.integration.blackduck.service.DataService;
import com.synopsys.integration.blackduck.service.model.ComponentVersionVulnerabilities;
import com.synopsys.integration.blackduck.service.model.VersionBomComponentModel;
import com.synopsys.integration.exception.IntegrationException;
import com.synopsys.integration.log.IntLogger;
import com.synopsys.integration.rest.HttpUrl;
import com.synopsys.integration.rest.request.Request;
import com.synopsys.integration.rest.response.Response;
public class ProjectBomService extends DataService {
private final ComponentService componentService;
public ProjectBomService(BlackDuckApiClient blackDuckApiClient, BlackDuckRequestFactory blackDuckRequestFactory, IntLogger logger, ComponentService componentService) {
super(blackDuckApiClient, blackDuckRequestFactory, logger);
this.componentService = componentService;
}
public List getComponentsForProjectVersion(ProjectVersionView projectVersionView) throws IntegrationException {
List ProjectVersionComponentViews = blackDuckApiClient.getAllResponses(projectVersionView, ProjectVersionView.COMPONENTS_LINK_RESPONSE);
return ProjectVersionComponentViews;
}
public List getVulnerableComponentsForProjectVersion(ProjectVersionView projectVersionView) throws IntegrationException {
List vulnerableBomComponentViews = blackDuckApiClient.getAllResponses(projectVersionView, ProjectVersionView.VULNERABLE_COMPONENTS_LINK_RESPONSE);
return vulnerableBomComponentViews;
}
public List getComponentVersionVulnerabilities(ProjectVersionView projectVersionView) throws IntegrationException {
List ProjectVersionComponentViews = getComponentsForProjectVersion(projectVersionView);
List componentVersionViews = new ArrayList<>();
for (ProjectVersionComponentView projectVersionComponentView : ProjectVersionComponentViews) {
if (StringUtils.isNotBlank(projectVersionComponentView.getComponentVersion())) {
HttpUrl projectVersionComponentUrl = new HttpUrl(projectVersionComponentView.getComponentVersion());
ComponentVersionView componentVersionView = blackDuckApiClient.getResponse(projectVersionComponentUrl, ComponentVersionView.class);
componentVersionViews.add(componentVersionView);
}
}
List componentVersionVulnerabilitiesList = new ArrayList<>();
for (ComponentVersionView componentVersionView : componentVersionViews) {
ComponentVersionVulnerabilities componentVersionVulnerabilities = componentService.getComponentVersionVulnerabilities(componentVersionView);
componentVersionVulnerabilitiesList.add(componentVersionVulnerabilities);
}
return componentVersionVulnerabilitiesList;
}
public List getComponentsWithMatchedFilesForProjectVersion(ProjectVersionView version) throws IntegrationException {
List bomComponents = blackDuckApiClient.getAllResponses(version, ProjectVersionView.COMPONENTS_LINK_RESPONSE);
List modelBomComponents = new ArrayList<>(bomComponents.size());
for (ProjectVersionComponentView component : bomComponents) {
modelBomComponents.add(new VersionBomComponentModel(component, getMatchedFiles(component)));
}
return modelBomComponents;
}
public Optional getPolicyStatusForVersion(ProjectVersionView version) throws IntegrationException {
return blackDuckApiClient.getResponse(version, ProjectVersionView.POLICY_STATUS_LINK_RESPONSE);
}
//TODO investigate what variant is
public Optional addComponentToProjectVersion(ExternalId componentExternalId, ProjectVersionView projectVersionView) throws IntegrationException {
HttpUrl projectVersionComponentsUrl = projectVersionView.getFirstLink(ProjectVersionView.COMPONENTS_LINK);
Optional componentSearchResultView = componentService.getFirstOrEmptyResult(componentExternalId);
String componentVersionUrl = null;
if (componentSearchResultView.isPresent()) {
if (StringUtils.isNotBlank(componentSearchResultView.get().getVariant())) {
componentVersionUrl = componentSearchResultView.get().getVariant();
} else {
componentVersionUrl = componentSearchResultView.get().getVersion();
}
addComponentToProjectVersion(new HttpUrl(componentVersionUrl), projectVersionComponentsUrl);
}
return Optional.ofNullable(componentVersionUrl);
}
public void addProjectVersionToProjectVersion(ProjectVersionView projectVersionViewToAdd, ProjectVersionView targetProjectVersionView) throws IntegrationException {
HttpUrl toAddUrl = projectVersionViewToAdd.getHref();
HttpUrl targetUrl = targetProjectVersionView.getFirstLink(ProjectVersionView.COMPONENTS_LINK);
addComponentToProjectVersion(toAddUrl, targetUrl);
}
public void addComponentToProjectVersion(ComponentVersionView componentVersionView, ProjectVersionView projectVersionView) throws IntegrationException {
HttpUrl componentVersionUrl = componentVersionView.getHref();
HttpUrl projectVersionComponentsUrl = projectVersionView.getFirstLink(ProjectVersionView.COMPONENTS_LINK);
addComponentToProjectVersion(componentVersionUrl, projectVersionComponentsUrl);
}
public void addComponentToProjectVersion(HttpUrl componentVersionUrl, HttpUrl projectVersionComponentsUrl) throws IntegrationException {
Request request = blackDuckRequestFactory.createCommonPostRequestBuilder(projectVersionComponentsUrl, "{\"component\": \"" + componentVersionUrl.string() + "\"}").build();
try (Response response = blackDuckApiClient.execute(request)) {
} catch (IOException e) {
throw new IntegrationException(e.getMessage(), e);
}
}
private List getMatchedFiles(ProjectVersionComponentView component) throws IntegrationException {
List matchedFiles = new ArrayList<>(0);
List tempMatchedFiles = blackDuckApiClient.getAllResponses(component, ProjectVersionComponentView.MATCHED_FILES_LINK_RESPONSE);
if (tempMatchedFiles != null && !tempMatchedFiles.isEmpty()) {
matchedFiles = tempMatchedFiles;
}
return matchedFiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy