Add all required and reasonable MDCs
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-core / src / main / kotlin / org / onap / dcae / collectors / veshv / impl / adapters / HttpAdapter.kt
1 /*
2  * ============LICENSE_START=======================================================
3  * dcaegen2-collectors-veshv
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.dcae.collectors.veshv.impl.adapters
21
22 import io.netty.handler.codec.http.HttpStatusClass
23 import org.onap.dcae.collectors.veshv.utils.logging.Logger
24 import org.onap.dcae.collectors.veshv.utils.logging.OnapMdc
25 import org.slf4j.LoggerFactory
26 import reactor.core.publisher.Mono
27 import reactor.netty.http.client.HttpClient
28 import java.util.*
29
30 /**
31  * @author Jakub Dudycz <jakub.dudycz@nokia.com>
32  * @since May 2018
33  */
34 open class HttpAdapter(private val httpClient: HttpClient) {
35
36     open fun get(url: String, invocationId: UUID, queryParams: Map<String, Any> = emptyMap()): Mono<String> =
37             httpClient
38                     .headers { it[INVOCATION_ID_HEADER] = invocationId.toString() }
39                     .get()
40                     .uri(url + createQueryString(queryParams))
41                     .responseSingle { response, content ->
42                         if (response.status().codeClass() == HttpStatusClass.SUCCESS)
43                             content.asString()
44                         else {
45                             val errorMessage = "$url ${response.status().code()} ${response.status().reasonPhrase()}"
46                             Mono.error(IllegalStateException(errorMessage))
47                         }
48                     }
49                     .doOnError {
50                         logger.error { "Failed to get resource on path: $url (${it.localizedMessage})" }
51                         logger.withDebug { log("Nested exception:", it) }
52                     }
53
54     private fun createQueryString(params: Map<String, Any>): String {
55         if (params.isEmpty())
56             return ""
57
58         val builder = StringBuilder("?")
59         params.forEach { (key, value) ->
60             builder
61                     .append(key)
62                     .append("=")
63                     .append(value)
64                     .append("&")
65
66         }
67
68         return builder.removeSuffix("&").toString()
69     }
70
71     companion object {
72         private val logger = Logger(HttpAdapter::class)
73         const val INVOCATION_ID_HEADER = "X-${OnapMdc.INVOCATION_ID}"
74     }
75 }