All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.convergencelabs.convergence.server.api.rest.ServerStatusService.scala Maven / Gradle / Ivy

/*
 * Copyright (c) 2019 - Convergence Labs, Inc.
 *
 * This file is part of the Convergence Server, which is released under
 * the terms of the GNU General Public License version 3 (GPLv3). A copy
 * of the GPLv3 should have been provided along with this file, typically
 * located in the "LICENSE" file, which is part of this source code package.
 * Alternatively, see  for the
 * full text of the GPLv3 license, if it was not provided.
 */

package com.convergencelabs.convergence.server.api.rest

import akka.actor.typed.scaladsl.AskPattern._
import akka.actor.typed.{ActorRef, Scheduler}
import akka.http.scaladsl.marshalling.ToResponseMarshallable.apply
import akka.http.scaladsl.server.Directive.addByNameNullaryApply
import akka.http.scaladsl.server.Directives.{_segmentStringToPathMatcher, complete, get, pathEnd, pathPrefix}
import akka.http.scaladsl.server.Route
import akka.util.Timeout
import com.convergencelabs.convergence.server.backend.services.server.ServerStatusActor._
import com.convergencelabs.convergence.server.security.AuthorizationProfile
import grizzled.slf4j.Logging

import scala.concurrent.{ExecutionContext, Future}

private[rest] final class ServerStatusService(statusActor: ActorRef[Message],
                                        scheduler: Scheduler,
                                        executionContext: ExecutionContext,
                                        defaultTimeout: Timeout)
  extends JsonSupport with Logging {

  import ServerStatusService._

  private[this] implicit val ec: ExecutionContext = executionContext
  private[this] implicit val t: Timeout = defaultTimeout
  private[this] implicit val s: Scheduler = scheduler


  val route: AuthorizationProfile => Route = { _ =>
    pathPrefix("status") {
      pathEnd {
        get {
          complete(getServerStatus())
        }
      }
    }
  }

  private[this] def getServerStatus(): Future[RestResponse] = {
    statusActor.ask[GetStatusResponse](GetStatusRequest)
      .map(_.status.fold(
        {
          case UnknownError() =>
            InternalServerError
        },
        {
          case ServerStatusResponse(version, schemaVersion, serverStatus, namespaces, domains) =>
            okResponse(ServerStatus(version, schemaVersion, serverStatus, namespaces, domains))
        })
      )
  }
}

private[rest] object ServerStatusService {

  final case class ServerStatus(version: String, schemaVersion: Option[String], status: String, namespaces: Long, domains: Long)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy