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