aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openecomp/dmaapbc/aaf/AafConnection.java
blob: 421e9483cf4b375fad03c84a983609d377caba19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*-
 * ============LICENSE_START=======================================================
 * OpenECOMP - org.openecomp.dmaapbc
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. 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.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.dmaapbc.aaf;





import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.ProtocolException;
import java.net.URL;
import java.net.UnknownHostException;

import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLHandshakeException;

import org.apache.commons.codec.binary.Base64;
import org.apache.log4j.Logger;
import org.openecomp.dmaapbc.service.DmaapService;


public class AafConnection {

	static final Logger logger = Logger.getLogger(AafConnection.class);
	   
   
	private String dmaapName;
	private String aafCred;

	
	private HttpsURLConnection uc;


	public AafConnection( String cred ) {
		dmaapName = new DmaapService().getDmaap().getDmaapName();
		if ( dmaapName.length() < 1 ) {
			logger.fatal( "Attempting to access AAF before dmaap object is set");
		}
		aafCred = cred;
	}
	

	private boolean makeConnection( String pURL ) {
	
		try {
			URL u = new URL( pURL );
			uc = (HttpsURLConnection) u.openConnection();
			uc.setInstanceFollowRedirects(false);
			logger.info( "successful connect to " + pURL );
			return(true);
		} catch (Exception e) {
            logger.error("Unexpected error during openConnection of " + pURL );
            e.printStackTrace();
            return(false);
        }

	}
	
	static String bodyToString( InputStream is ) {
		StringBuilder sb = new StringBuilder();
		BufferedReader br = new BufferedReader( new InputStreamReader(is));
		String line;
		try {
			while ((line = br.readLine()) != null ) {
				sb.append( line );
			}
		} catch (IOException ex ) {
			logger.error( "IOexception:" + ex);
		}
			
		return sb.toString();
	}
	


	public int postAaf( AafObject obj, String pURL ) {

		String auth =  "Basic " + Base64.encodeBase64String(aafCred.getBytes());
		int rc = -1;
		// TODO Auto-generated method stub
		logger.info( "entry: setPerm() "  );
		
		if ( ! makeConnection( pURL ) ) {
			return rc;
		};
		

		byte[] postData = obj.getBytes();
		//logger.info( "post fields=" + postData );  //byte isn't very readable
		String responsemessage = null;
		String responseBody = null;

		try {
			if (auth != null) {
				uc.setRequestProperty("Authorization", auth);
	        }
			uc.setRequestMethod("POST");
			uc.setRequestProperty("Content-Type", "application/json");
			uc.setRequestProperty( "charset", "utf-8");
			uc.setRequestProperty( "Content-Length", Integer.toString( postData.length ));
			uc.setUseCaches(false);
			uc.setDoOutput(true);
			OutputStream os = null;

			
			try {
                 uc.connect();
                 os = uc.getOutputStream();
                 os.write( postData );

            } catch (ProtocolException pe) {
                 // Rcvd error instead of 100-Continue
                 try {
                     // work around glitch in Java 1.7.0.21 and likely others
                     // without this, Java will connect multiple times to the server to run the same request
                     uc.setDoOutput(false);
                 } catch (Exception e) {
                 }
            } catch ( SSLHandshakeException she ) {
            	logger.error( "SSLHandshakeException from AAF URL " + pURL);
            } catch ( UnknownHostException uhe ) {    	
            	logger.error( "UnknownHostException from AAF for URL " + pURL );
            	rc = 500;
            	return rc;
            }
			try {
				rc = uc.getResponseCode();
			} catch ( SSLHandshakeException she ) {
            	logger.error( "SSLHandshakeException from AAF URL " + pURL);
            	rc = 500;
            	return rc;
            }
			logger.info( "http response code:" + rc );
            responsemessage = uc.getResponseMessage();
            logger.info( "responsemessage=" + responsemessage );

            if (responsemessage == null) {
                 // work around for glitch in Java 1.7.0.21 and likely others
                 // When Expect: 100 is set and a non-100 response is received, the response message is not set but the response code is
                 String h0 = uc.getHeaderField(0);
                 if (h0 != null) {
                     int i = h0.indexOf(' ');
                     int j = h0.indexOf(' ', i + 1);
                     if (i != -1 && j != -1) {
                         responsemessage = h0.substring(j + 1);
                     }
                 }
            }
            if ( rc >= 200 && rc < 300 ) {
            	responseBody = bodyToString( uc.getInputStream() );
            	logger.info( "responseBody=" + responseBody );
            } else {
            		logger.warn( "Unsuccessful response: " + responsemessage );
            } 
            
		} catch (Exception e) {
            System.err.println("Unable to read response  " );
            e.printStackTrace();
        }
		finally {
			try {
				uc.disconnect();
			} catch ( Exception e ) {}
		}
		//return responseBody;
	
		return rc;
		
	}
	

}