Add log diagnostic context
[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.slf4j.LoggerFactory
25 import reactor.core.publisher.Mono
26 import reactor.netty.http.client.HttpClient
27
28 /**
29  * @author Jakub Dudycz <jakub.dudycz@nokia.com>
30  * @since May 2018
31  */
32 open class HttpAdapter(private val httpClient: HttpClient) {
33
34     open fun get(url: String, queryParams: Map<String, Any> = emptyMap()): Mono<String> = httpClient
35             .get()
36             .uri(url + createQueryString(queryParams))
37             .responseSingle { response, content ->
38                 if (response.status().codeClass() == HttpStatusClass.SUCCESS)
39                     content.asString()
40                 else {
41                     val errorMessage = "$url ${response.status().code()} ${response.status().reasonPhrase()}"
42                     Mono.error(IllegalStateException(errorMessage))
43                 }
44             }
45             .doOnError {
46                 logger.error { "Failed to get resource on path: $url (${it.localizedMessage})" }
47                 logger.withDebug { log("Nested exception:", it) }
48             }
49
50     private fun createQueryString(params: Map<String, Any>): String {
51         if (params.isEmpty())
52             return ""
53
54         val builder = StringBuilder("?")
55         params.forEach { (key, value) ->
56             builder
57                     .append(key)
58                     .append("=")
59                     .append(value)
60                     .append("&")
61
62         }
63
64         return builder.removeSuffix("&").toString()
65     }
66
67     companion object {
68
69
70         private val logger = Logger(HttpAdapter::class)
71     }
72 }