aboutsummaryrefslogtreecommitdiffstats
path: root/aai/src/main/java/org/openecomp/policy/aai/AAINQF199/AAINQF199Manager.java
blob: 00110e8ca00b36d8055057da5d7e38112afb67ba (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
/*-
 * ============LICENSE_START=======================================================
 * aai
 * ================================================================================
 * 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.policy.aai.AAINQF199;

import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

import org.openecomp.policy.aai.AAIGETResponse;
import org.openecomp.policy.aai.util.Serialization;
import org.openecomp.policy.rest.RESTManager;
import org.openecomp.policy.rest.RESTManager.Pair;

import com.google.gson.JsonSyntaxException;

public final class AAINQF199Manager {
	
	public static AAINQF199Response	postQuery(String url, String username, String password, AAINQF199Request request, UUID requestID) {
		
		Map<String, String> headers = new HashMap<String, String>();
		headers.put("X-FromAppId", "POLICY");
		headers.put("X-TransactionId", requestID.toString());
		headers.put("Accept", "application/json");
		
		url = url + "/aai/search/named-query";

		Pair<Integer, String> httpDetails = RESTManager.post(url, username, password, headers, "application/json", Serialization.gsonPretty.toJson(request));

		if (httpDetails == null) {
			System.out.println("AAI POST Null Response to " + url);
			return null;
		}
		
		System.out.println(url);
		System.out.println(httpDetails.a);
		System.out.println(httpDetails.b);
		if (httpDetails.a == 200) {
			try {
				AAINQF199Response response = Serialization.gsonPretty.fromJson(httpDetails.b, AAINQF199Response.class);
				return response;
			} catch (JsonSyntaxException e) {
				System.err.println("Failed to deserialize into AAIResponse" + e.getLocalizedMessage());
			}
		}

		return null;
	}
	
	public static AAIGETResponse getQuery(String urlGet, String username, String password, UUID requestID, String vnfId) {
		
		Map<String, String> headers = new HashMap<String, String>();
		headers.put("X-FromAppId", "POLICY");
		headers.put("X-TransactionId", requestID.toString());
		headers.put("Accept", "application/json");
		
		urlGet = urlGet + "/aai/v8/network/generic-vnfs/generic-vnf/" + vnfId;
		
		int attemptsLeft = 3;
		AAIGETResponse responseGet = null;
		
		while(attemptsLeft-- > 0){
		
			Pair<Integer, String> httpDetailsGet = RESTManager.get(urlGet, username, password, headers);
			if (httpDetailsGet == null) {
				System.out.println("AAI GET Null Response to " + urlGet);
				return null;
			}
			
			System.out.println(urlGet);
			System.out.println(httpDetailsGet.a);
			System.out.println(httpDetailsGet.b);
			
			if (httpDetailsGet.a == 200) {
				try {
					responseGet = Serialization.gsonPretty.fromJson(httpDetailsGet.b, AAIGETResponse.class);
					return responseGet;
				} catch (JsonSyntaxException e) {
					System.err.println("Failed to deserialize into AAIResponse" + e.getLocalizedMessage());
				}
			}
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {}

		}
		
		return null;
	}

}