Custom detekt rule for logger usage check
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-health-check / src / main / kotlin / org / onap / dcae / collectors / veshv / healthcheck / factory / HealthCheckApiServer.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.healthcheck.factory
21
22 import arrow.effects.IO
23 import io.netty.handler.codec.http.HttpResponseStatus
24 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthDescription
25 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthState
26 import org.onap.dcae.collectors.veshv.utils.NettyServerHandle
27 import org.onap.dcae.collectors.veshv.utils.ServerHandle
28 import reactor.core.publisher.Flux
29 import reactor.core.publisher.Mono
30 import reactor.netty.http.server.HttpServer
31 import reactor.netty.http.server.HttpServerRequest
32 import reactor.netty.http.server.HttpServerResponse
33 import java.net.SocketAddress
34 import java.util.concurrent.atomic.AtomicReference
35
36 /**
37  * @author Jakub Dudycz <jakub.dudycz@nokia.com>
38  * @since August 2018
39  */
40 class HealthCheckApiServer(private val healthState: HealthState,
41                            private val listenAddress: SocketAddress) {
42
43     private val healthDescription: AtomicReference<HealthDescription> = AtomicReference(HealthDescription.STARTING)
44
45     fun start(): IO<ServerHandle> = IO {
46         healthState().subscribe(healthDescription::set)
47         val ctx = HttpServer.create()
48                 .tcpConfiguration { it.addressSupplier { listenAddress } }
49                 .route { routes ->
50                     routes.get("/health/ready", ::readinessHandler)
51                     routes.get("/health/alive", ::livenessHandler)
52                 }
53         NettyServerHandle(ctx.bindNow())
54     }
55
56     private fun readinessHandler(_req: HttpServerRequest, resp: HttpServerResponse) =
57             healthDescription.get().run {
58                 resp.status(status.httpResponseStatus.number).sendString(Flux.just(status.toString(), "\n", message))
59             }
60
61     private fun livenessHandler(_req: HttpServerRequest, resp: HttpServerResponse) =
62             resp.status(HttpResponseStatus.NOT_IMPLEMENTED).sendString(Mono.just("Not implemented yet"))
63 }