a0f63df60c16e560525936740cd87fa62dacbdf8
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / servicecatalog / jolt / GetServiceSpecJsonTransformer.java
1 /**
2  *
3  *     Copyright (c) 2017 Orange.  All rights reserved.
4  *
5  *     Licensed under the Apache License, Version 2.0 (the "License");
6  *     you may not use this file except in compliance with the License.
7  *     You may obtain a copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *     Unless required by applicable law or agreed to in writing, software
12  *     distributed under the License is distributed on an "AS IS" BASIS,
13  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *     See the License for the specific language governing permissions and
15  *     limitations under the License.
16  */
17 package org.onap.nbi.apis.servicecatalog.jolt;
18
19 import com.bazaarvoice.jolt.Chainr;
20 import com.bazaarvoice.jolt.JsonUtils;
21 import com.bazaarvoice.jolt.exception.JoltException;
22 import org.onap.nbi.exceptions.TechnicalException;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.springframework.stereotype.Service;
26 import java.util.List;
27
28 @Service
29 public class GetServiceSpecJsonTransformer {
30
31     private Chainr chainr;
32
33     private static final Logger LOGGER = LoggerFactory.getLogger(GetServiceSpecJsonTransformer.class);
34
35
36     public GetServiceSpecJsonTransformer() {
37         List<Object> specs = JsonUtils.classpathToList("/jolt/getServiceCatalog.json");
38         this.chainr = Chainr.fromSpec(specs);
39     }
40
41     public Object transform(Object serviceSpec) {
42         Object output = null;
43         try {
44             output = chainr.transform(serviceSpec);
45         } catch (JoltException joE) {
46             LOGGER.error("Unable to transform SDC response with JOLT Transformer : " + joE.getMessage());
47             throw new TechnicalException("Error while parsing ONAP response");
48         }
49         return output;
50     }
51
52 }