12f0a368d560e4d6c8682a9d7419151e5dee2545
[appc.git] / appc-inbound / appc-design-services / provider / src / main / java / org / onap / appc / design / services / util / ArtifactHandlerClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * ================================================================================
9  * Modifications Copyright (C) 2019 Ericsson
10  * =============================================================================
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  * 
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  * 
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * 
23  * ============LICENSE_END=========================================================
24  */
25
26 package org.onap.appc.design.services.util;
27
28 import com.att.eelf.configuration.EELFLogger;
29 import com.att.eelf.configuration.EELFManager;
30 import com.fasterxml.jackson.databind.JsonNode;
31 import com.fasterxml.jackson.databind.ObjectMapper;
32 import com.fasterxml.jackson.databind.node.ObjectNode;
33
34 import javax.ws.rs.client.Client;
35 import javax.ws.rs.client.ClientBuilder;
36 import javax.ws.rs.client.Entity;
37 import javax.ws.rs.client.WebTarget;
38 import javax.ws.rs.core.Response;
39 import javax.ws.rs.core.Feature;
40 import org.glassfish.jersey.client.authentication.HttpAuthenticationFeature;
41
42 import java.io.FileInputStream;
43 import java.io.IOException;
44 import java.io.InputStream;
45 import java.net.URI;
46 import java.util.HashMap;
47 import java.util.Map;
48 import java.util.Properties;
49 import javax.net.ssl.HostnameVerifier;
50 import javax.net.ssl.SSLContext;
51 import javax.ws.rs.HttpMethod;
52 import javax.ws.rs.core.MediaType;
53
54
55 public class ArtifactHandlerClient {
56
57     private static final EELFLogger log = EELFManager.getInstance().getLogger(ArtifactHandlerClient.class);
58     static final String SDNC_CONFIG_DIR_VAR = "SDNC_CONFIG_DIR";
59     private Properties props = new Properties();
60
61     public ArtifactHandlerClient() throws IOException {
62         String propDir = DesignServiceConstants.getEnvironmentVariable(SDNC_CONFIG_DIR_VAR);
63         if (propDir == null) {
64             throw new IOException(" Cannot find Property file -" + SDNC_CONFIG_DIR_VAR);
65         }
66         String propFile = propDir + "/" + DesignServiceConstants.DESIGN_SERVICE_PROPERTIES;
67         InputStream propStream = new FileInputStream(propFile);
68         try {
69             props.load(propStream);
70         } catch (Exception e) {
71             throw new IOException("Could not load properties file " + propFile, e);
72         } finally {
73             try {
74                 propStream.close();
75             } catch (Exception e) {
76                 log.warn("Could not close FileInputStream", e);
77             }
78         }
79     }
80
81     public String createArtifactData(String payload, String requestID) throws IOException {
82
83         ObjectMapper objectMapper = new ObjectMapper();
84         JsonNode payloadObject = objectMapper.readTree(payload);
85
86         ObjectNode json = objectMapper.createObjectNode();
87         String artifactName = payloadObject.get(DesignServiceConstants.ARTIFACT_NAME).textValue();
88         String artifactVersion = payloadObject.get(DesignServiceConstants.ARTIFACT_VERSOIN).textValue();
89         String artifactContents = payloadObject.get(DesignServiceConstants.ARTIFACT_CONTENTS).textValue();
90
91         ObjectNode requestInfo = objectMapper.createObjectNode();
92         requestInfo.put(DesignServiceConstants.REQUETS_ID, requestID);
93         requestInfo.put(DesignServiceConstants.REQUEST_ACTION, "StoreSdcDocumentRequest");
94         requestInfo.put(DesignServiceConstants.SOURCE, DesignServiceConstants.DESIGN_TOOL);
95
96         ObjectNode docParams = objectMapper.createObjectNode();
97         docParams.put(DesignServiceConstants.ARTIFACT_VERSOIN, artifactVersion);
98         docParams.put(DesignServiceConstants.ARTIFACT_NAME, artifactName);
99         docParams.put(DesignServiceConstants.ARTIFACT_CONTENTS, artifactContents);
100
101         json.put(DesignServiceConstants.REQUEST_INFORMATION, requestInfo);
102         json.put(DesignServiceConstants.DOCUMENT_PARAMETERS, docParams);
103         log.info("Final data =" + json.toString());
104         return String.format("{\"input\": %s}", json.toString());
105     }
106
107     public Map<String, String> execute(String payload, String rpc) throws IOException {
108         log.info("Configuring Rest Operation for Payload " + payload + " RPC : " + rpc);
109         Map<String, String> outputMessage = new HashMap<>();
110         Client client = null;
111         WebTarget webResource;
112         Response clientResponse = null;
113         EncryptionTool et = EncryptionTool.getInstance();
114         String responseDataType = MediaType.APPLICATION_JSON;
115         String requestDataType = MediaType.APPLICATION_JSON;
116
117         try {
118
119             System.setProperty("jsse.enableSNIExtension", "false");
120             SSLContext sslContext;
121             SecureRestClientTrustManager secureRestClientTrustManager = new SecureRestClientTrustManager();
122             sslContext = SSLContext.getInstance("SSL");
123             sslContext.init(null, new javax.net.ssl.TrustManager[]{secureRestClientTrustManager}, null);
124
125
126             client = ClientBuilder.newBuilder().sslContext(sslContext).hostnameVerifier(getHostnameVerifier()).build();
127
128             String password = et.decrypt(props.getProperty("appc.upload.pass"));
129             client.register(HttpAuthenticationFeature.basic(props.getProperty("appc.upload.user"), password));
130             webResource = client.target(new URI(props.getProperty("appc.upload.provider.url")));
131             webResource.property("Content-Type", "application/json;charset=UTF-8");
132             log.info("Starting Rest Operation.....");
133             if (HttpMethod.GET.equalsIgnoreCase(rpc)) {
134                 clientResponse = webResource.request(responseDataType).get(Response.class);
135             } else if (HttpMethod.POST.equalsIgnoreCase(rpc)) {
136                 clientResponse = webResource.request(requestDataType).post(Entity.json(payload),Response.class);
137             } else if (HttpMethod.PUT.equalsIgnoreCase(rpc)) {
138                 clientResponse = webResource.request(requestDataType).put(Entity.json(payload),Response.class);
139             } else if (HttpMethod.DELETE.equalsIgnoreCase(rpc)) {
140                 clientResponse = webResource.request().delete(Response.class);
141             }
142             validateClientResponse(clientResponse);
143             log.info("Completed Rest Operation.....");
144
145         } catch (Exception e) {
146             log.debug("failed in RESTCONT Action", e);
147             throw new IOException("Error While Sending Rest Request" + e.getMessage(), e);
148         } finally {
149             // clean up.
150             if (client != null) {
151                 client.close();
152             }
153         }
154         return outputMessage;
155     }
156
157     private void validateClientResponse(Response clientResponse) throws ArtifactHandlerInternalException {
158         if (clientResponse == null) {
159             throw new ArtifactHandlerInternalException("Failed to create client response");
160         }
161         if (clientResponse.getStatus() != 200) {
162             throw new ArtifactHandlerInternalException("HTTP error code : " + clientResponse.getStatus());
163         }
164     }
165
166     private HostnameVerifier getHostnameVerifier() {
167         return (hostname, sslSession) -> true;
168     }
169 }