Moving all files to root directory
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / openecomp / appc / listener / CL1607 / impl / ProviderOperations.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.listener.CL1607.impl;
23
24 import java.io.IOException;
25 import java.io.UnsupportedEncodingException;
26 import java.net.MalformedURLException;
27 import java.net.Socket;
28 import java.net.URL;
29 import java.net.UnknownHostException;
30 import java.security.KeyManagementException;
31 import java.security.KeyStore;
32 import java.security.KeyStoreException;
33 import java.security.NoSuchAlgorithmException;
34 import java.security.UnrecoverableKeyException;
35 import java.security.cert.CertificateException;
36 import java.security.cert.X509Certificate;
37
38 import javax.net.ssl.SSLContext;
39 import javax.net.ssl.TrustManager;
40 import javax.net.ssl.X509TrustManager;
41
42 import org.apache.commons.codec.binary.Base64;
43 import org.apache.commons.io.IOUtils;
44 import org.apache.http.HttpResponse;
45 import org.apache.http.HttpVersion;
46 import org.apache.http.client.HttpClient;
47 import org.apache.http.client.methods.HttpPost;
48 import org.apache.http.conn.ClientConnectionManager;
49 import org.apache.http.conn.scheme.PlainSocketFactory;
50 import org.apache.http.conn.scheme.Scheme;
51 import org.apache.http.conn.scheme.SchemeRegistry;
52 import org.apache.http.conn.ssl.SSLSocketFactory;
53 import org.apache.http.entity.StringEntity;
54 import org.apache.http.impl.client.DefaultHttpClient;
55 import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
56 import org.apache.http.params.BasicHttpParams;
57 import org.apache.http.params.HttpParams;
58 import org.apache.http.params.HttpProtocolParams;
59 import org.apache.http.protocol.HTTP;
60 import org.json.JSONObject;
61 import org.openecomp.appc.exceptions.APPCException;
62 import org.openecomp.appc.listener.CL1607.model.IncomingMessage;
63 import org.openecomp.appc.listener.util.Mapper;
64
65 import com.att.eelf.configuration.EELFLogger;
66 import com.att.eelf.configuration.EELFManager;
67
68 public class ProviderOperations {
69
70     private static final EELFLogger LOG = EELFManager.getInstance().getLogger(ProviderOperations.class);
71
72     private static URL url;
73
74     private static String basic_auth;
75
76     //@formatter:off
77     @SuppressWarnings("nls")
78     private final static String TEMPLATE = "{\"input\": {\"common-request-header\": {\"service-request-id\": \"%s\"},\"config-payload\": {\"config-url\": \"%s\",\"config-json\":\"%s\"}}}";
79     //@formatter:on 
80
81     /**
82      * Calls the AppcProvider to run a topology directed graph
83      * 
84      * @param msg
85      *            The incoming message to be run
86      * @return True if the result is success. Never returns false and throws an exception instead.
87      * @throws UnsupportedEncodingException
88      * @throws Exception
89      *             if there was a failure processing the request. The exception message is the failure reason.
90      */
91     @SuppressWarnings("nls")
92     public static boolean topologyDG(IncomingMessage msg) throws APPCException {
93         if (msg == null) {
94             throw new APPCException("Provided message was null");
95         }
96
97         HttpPost post = null;
98         try {
99             // Concatenate the "action" on the end of the URL
100             String path = url.getPath() + ":" + msg.getAction().getValue();
101             URL serviceUrl = new URL(url.getProtocol(), url.getHost(), url.getPort(), path);
102
103             post = new HttpPost(serviceUrl.toExternalForm());
104             post.setHeader("Content-Type", "application/json");
105             post.setHeader("Accept", "application/json");
106
107             // Set Auth
108             if (basic_auth != null) {
109                 post.setHeader("Authorization", "Basic " + basic_auth);
110             }
111
112             //String body = buildReqest(msg.getId(), msg.getUrl(), msg.getIdentityUrl());
113             String body = buildReqest(msg.getHeader().getRequestID(), msg.getPayload().getGenericVnfId(), msg.getPayload().getPgStreams());
114             StringEntity entity = new StringEntity(body);
115             entity.setContentType("application/json");
116             post.setEntity(new StringEntity(body));
117         } catch (UnsupportedEncodingException | MalformedURLException e) {
118             throw new APPCException(e);
119         }
120
121         HttpClient client = getHttpClient();
122
123         int httpCode = 0;
124         String respBody = null;
125         try {
126             HttpResponse response = client.execute(post);
127             httpCode = response.getStatusLine().getStatusCode();
128             respBody = IOUtils.toString(response.getEntity().getContent());
129         } catch (IOException e) {
130             throw new APPCException(e);
131         }
132
133         if (httpCode == 200 && respBody != null) {
134             JSONObject json;
135             try {
136                 json = Mapper.toJsonObject(respBody);
137             } catch (Exception e) {
138                 LOG.error("Error prcoessing response from provider. Could not map response to json", e);
139                 throw new APPCException("APPC has an unknown RPC error");
140             }
141             boolean success;
142             String reason;
143             try {
144                 JSONObject header = json.getJSONObject("output").getJSONObject("common-response-header");
145                 success = header.getBoolean("success");
146                 reason = header.getString("reason");
147             } catch (Exception e) {
148                 LOG.error("Unknown error prcoessing failed response from provider. Json not in expected format", e);
149                 throw new APPCException("APPC has an unknown RPC error");
150             }
151             if (success) {
152                 return true;
153             }
154             String reasonStr = reason == null ? "Unknown" : reason;
155             LOG.warn(String.format("Topology Operation [%s] failed. Reason: %s", msg.getHeader().getRequestID(), reasonStr));
156             throw new APPCException(reasonStr);
157
158         }
159         throw new APPCException(String.format("Unexpected response from endpoint: [%d] - %s ", httpCode, respBody));
160     }
161
162     /**
163      * Updates the static var URL and returns the value;
164      * 
165      * @return The new value of URL
166      */
167     public static String getUrl() {
168         return url.toExternalForm();
169     }
170
171     public static void setUrl(String newUrl) {
172         try {
173             url = new URL(newUrl);
174         } catch (MalformedURLException e) {
175             e.printStackTrace();
176         }
177     }
178
179     /**
180      * Sets the basic authentication header for the given user and password. If either entry is null then set basic auth
181      * to null
182      *
183      * @param user
184      *            The user with optional domain name
185      * @param password
186      *            The password for the user
187      * @return The new value of the basic auth string that will be used in the request headers
188      */
189     public static String setAuthentication(String user, String password) {
190         if (user != null && password != null) {
191             String authStr = user + ":" + password;
192             basic_auth = new String(Base64.encodeBase64(authStr.getBytes()));
193         } else {
194             basic_auth = null;
195         }
196         return basic_auth;
197     }
198
199     /**
200      * Builds the request body for a topology operation
201      * 
202      * @param id
203      *            The request id
204      * @param url
205      *            The vm's url
206      *            
207      * @param pgstreams 
208      *           The streams to send to the traffic generator
209      *
210      * @return A String containing the request body
211      */
212     private static String buildReqest(String id, String url, String pgstreams) {
213
214         return String.format(TEMPLATE, id, url, pgstreams);
215     }
216
217     @SuppressWarnings("deprecation")
218     private static HttpClient getHttpClient() throws APPCException {
219         HttpClient client;
220         if (url.getProtocol().equals("https")) {
221             try {
222                 KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
223                 trustStore.load(null, null);
224                 MySSLSocketFactory sf = new MySSLSocketFactory(trustStore);
225                 sf.setHostnameVerifier(MySSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
226
227                 HttpParams params = new BasicHttpParams();
228                 HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
229                 HttpProtocolParams.setContentCharset(params, HTTP.UTF_8);
230
231                 SchemeRegistry registry = new SchemeRegistry();
232                 registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
233                 registry.register(new Scheme("https", sf, 443));
234                 registry.register(new Scheme("https", sf, 8443));
235                 registry.register(new Scheme("http", sf, 8181));
236
237                 ClientConnectionManager ccm = new ThreadSafeClientConnManager(params, registry);
238                 client = new DefaultHttpClient(ccm, params);
239             } catch (Exception e) {
240                 client = new DefaultHttpClient();
241             }
242         } else if (url.getProtocol().equals("http")) {
243             client = new DefaultHttpClient();
244         } else {
245             throw new APPCException(
246                 "The provider.topology.url property is invalid. The url did not start with http[s]");
247         }
248         return client;
249     }
250
251     @SuppressWarnings("deprecation")
252     public static class MySSLSocketFactory extends SSLSocketFactory {
253         private SSLContext sslContext = SSLContext.getInstance("TLS");
254
255         public MySSLSocketFactory(KeyStore truststore) throws NoSuchAlgorithmException, KeyManagementException,
256                         KeyStoreException, UnrecoverableKeyException {
257             super(truststore);
258
259             TrustManager tm = new X509TrustManager() {
260                 @Override
261                 public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
262                 }
263
264                 @Override
265                 public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
266                 }
267
268                 @Override
269                 public X509Certificate[] getAcceptedIssuers() {
270                     return null;
271                 }
272             };
273
274             sslContext.init(null, new TrustManager[] {
275                 tm
276             }, null);
277         }
278
279         @Override
280         public Socket createSocket(Socket socket, String host, int port, boolean autoClose)
281             throws IOException, UnknownHostException {
282             return sslContext.getSocketFactory().createSocket(socket, host, port, autoClose);
283         }
284
285         @Override
286         public Socket createSocket() throws IOException {
287             return sslContext.getSocketFactory().createSocket();
288         }
289     }
290
291 }