aboutsummaryrefslogtreecommitdiffstats
path: root/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/consulextend/HealthClient.java
blob: 85c9b7884bd6c69be09e6bc27076a16073b7af2c (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
/*******************************************************************************
 * Copyright 2016-2017 ZTE, Inc. and others.
 * 
 * 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.
 ******************************************************************************/
package org.onap.msb.apiroute.wrapper.consulextend;

import java.util.List;

import org.apache.http.HttpHost;
import org.onap.msb.apiroute.wrapper.consulextend.async.ConsulResponseCallback;
import org.onap.msb.apiroute.wrapper.consulextend.model.health.ServiceHealth;
import org.onap.msb.apiroute.wrapper.consulextend.util.Http;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.fasterxml.jackson.core.type.TypeReference;
import com.orbitz.consul.option.CatalogOptions;
import com.orbitz.consul.option.QueryOptions;

/**
 * HTTP Client for /v1/health/ endpoints.
 */
public class HealthClient {
	private final static Logger LOGGER = LoggerFactory
			.getLogger(HealthClient.class);

	private static final TypeReference<List<ServiceHealth>> TYPE_SERVICE_HEALTH_LIST = new TypeReference<List<ServiceHealth>>() {
	};

	private static final String HEALTH_URI_10081 = "/api/health/v1";
	private static final String HEALTH_URI_8500 = "/v1/health";
	private static final String GET_HEALTH_SERVICE_URI = "/service";
	
//	private static final String GET_HEALTH_SERVICE_URI = "/v1/health/service";
	
//	private static final String GET_HEALTH_SERVICE_URI = "/api/health/v1/service";

	private final static Http httpClient = Http.getInstance();

	private HttpHost targetHost = null;
	private String healthUri = HEALTH_URI_10081;

	HealthClient(final HttpHost targetHost) {
		this.targetHost = targetHost;
		
		if(targetHost.getPort() == 8500)
		{
			healthUri = HEALTH_URI_8500;
		}
	}

	/**
	 * Asynchronously retrieves the healthchecks for all healthy service
	 * instances in a given datacenter with
	 * {@link com.orbitz.consul.option.QueryOptions}.
	 * 
	 * GET /v1/health/service/{service}?dc={datacenter}&amp;passing
	 * 
	 * Experimental.
	 * 
	 * @param service
	 *            The service to query.
	 * @param catalogOptions
	 *            The catalog specific options to use.
	 * @param queryOptions
	 *            The Query Options to use.
	 * @param callback
	 *            Callback implemented by callee to handle results.
	 */
	public void getHealthyServiceInstances(String service,
			CatalogOptions catalogOptions, QueryOptions queryOptions,
			ConsulResponseCallback<List<ServiceHealth>> callback) {
		// prepare access path
		String path = targetHost.toString() + healthUri + GET_HEALTH_SERVICE_URI + "/"+ service;
		
		String params = Http.optionsFrom(catalogOptions, queryOptions);
		path = (params != null && !params.isEmpty()) ? path += "?"
				+ params : path;  //query all nodes without filter for health

		// async watch
//		LOGGER.info("get health paasing service:" + path);
		httpClient.asyncGetDelayHandle(path, TYPE_SERVICE_HEALTH_LIST, callback);
	}

	/**
	 * Asynchronously retrieves the healthchecks for all nodes in a given
	 * datacenter with {@link com.orbitz.consul.option.QueryOptions}.
	 * 
	 * GET /v1/health/service/{service}?dc={datacenter}
	 * 
	 * Experimental.
	 * 
	 * @param service
	 *            The service to query.
	 * @param catalogOptions
	 *            The catalog specific options to use.
	 * @param queryOptions
	 *            The Query Options to use.
	 * @param callback
	 *            Callback implemented by callee to handle results.
	 */
	public void getAllServiceInstances(String service,
			CatalogOptions catalogOptions, QueryOptions queryOptions,
			ConsulResponseCallback<List<ServiceHealth>> callback) {

		// prepare access path
		String path = targetHost.toString() + healthUri + GET_HEALTH_SERVICE_URI + "/"+ service;
		String params = Http.optionsFrom(catalogOptions, queryOptions);
		path = (params != null && !params.isEmpty()) ? path += "?" + params
				: path;

		// async watch
//		LOGGER.debug("get service:" + path);
		httpClient.asyncGetDelayHandle(path, TYPE_SERVICE_HEALTH_LIST, callback);
	}
}