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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
20 package org.onap.dcae.collectors.veshv.healthcheck.factory
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.ipc.netty.http.server.HttpServer
31 import reactor.ipc.netty.http.server.HttpServerRequest
32 import reactor.ipc.netty.http.server.HttpServerResponse
33 import java.util.concurrent.atomic.AtomicReference
36 * @author Jakub Dudycz <jakub.dudycz@nokia.com>
39 class HealthCheckApiServer(private val healthState: HealthState, private val port: Int) {
41 private val healthDescription: AtomicReference<HealthDescription> = AtomicReference(HealthDescription.STARTING)
43 fun start(): IO<ServerHandle> = IO {
44 healthState().subscribe(healthDescription::set)
45 val ctx = HttpServer.create(port).startRouter { routes ->
46 routes.get("/health/ready", ::readinessHandler)
47 routes.get("/health/alive", ::livenessHandler)
49 NettyServerHandle(ctx)
52 private fun readinessHandler(req: HttpServerRequest, resp: HttpServerResponse) =
53 healthDescription.get().run {
54 resp.status(status.httpResponseStatus).sendString(Flux.just(status.toString(), "\n", message))
57 private fun livenessHandler(req: HttpServerRequest, resp: HttpServerResponse) =
58 resp.status(HttpResponseStatus.NOT_IMPLEMENTED).sendString(Mono.just("Not implemented yet"))