summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-api/src/main/java/org/openecomp
stat options
Period:
Authors:

Commits per author per week (path 'openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-api/src/main/java/org/openecomp')

AuthorW29 2024W30 2024W31 2024W32 2024Total
Total00000
id='n52' href='#n52'>52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/**
 *
 *     Copyright (c) 2017 Orange.  All rights reserved.
 *
 *     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 org.onap.nbi.apis.servicecatalog;

import java.util.LinkedHashMap;
import java.util.List;
import org.onap.nbi.apis.servicecatalog.jolt.FindServiceSpecJsonTransformer;
import org.onap.nbi.apis.servicecatalog.jolt.GetServiceSpecJsonTransformer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.MultiValueMap;

@Service
public class ServiceSpecificationService {

    @Autowired
    SdcClient sdcClient;

    @Autowired
    GetServiceSpecJsonTransformer getServiceSpecJsonTransformer;

    @Autowired
    FindServiceSpecJsonTransformer findServiceSpecJsonTransformer;

    @Autowired
    ToscaInfosProcessor toscaInfosProcessor;

    private static final Logger LOGGER = LoggerFactory.getLogger(ServiceSpecificationService.class);


    public LinkedHashMap get(String serviceSpecId) {
        LinkedHashMap sdcResponse = sdcClient.callGet(serviceSpecId);
        LinkedHashMap serviceCatalogResponse = (LinkedHashMap) getServiceSpecJsonTransformer.transform(sdcResponse);
        LinkedHashMap toscaInfosTopologyTemplate = toscaInfosProcessor.getToscaInfos(serviceCatalogResponse);
        if (toscaInfosTopologyTemplate != null) {
            LOGGER.debug("tosca file found, retrieving informations");
            toscaInfosProcessor.buildResponseWithToscaInfos(toscaInfosTopologyTemplate, serviceCatalogResponse);
        } else {
            LOGGER.debug("no tosca file found, partial response");
        }
        return serviceCatalogResponse;
    }


    public List<LinkedHashMap> find(MultiValueMap<String, String> parametersMap) {
        List<LinkedHashMap> sdcResponse = sdcClient.callFind(parametersMap);
        List<LinkedHashMap> serviceCatalogResponse =
                (List<LinkedHashMap>) findServiceSpecJsonTransformer.transform(sdcResponse);
        return serviceCatalogResponse;
    }
}