org.apache.pekko.management.javadsl.ManagementRouteProviderSettings.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pekko-management_2.12 Show documentation
Show all versions of pekko-management_2.12 Show documentation
Apache Pekko Management is a suite of tools for operating Apache Pekko Clusters.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* This file is part of the Apache Pekko project, which was derived from Akka.
*/
/*
* Copyright (C) 2017-2021 Lightbend Inc.
*/
package org.apache.pekko.management.javadsl
import java.util.Optional
import java.util.concurrent.CompletionStage
import java.util.function.{ Function => JFunction }
import org.apache.pekko
import pekko.annotation.DoNotInherit
import pekko.annotation.InternalApi
import pekko.http.javadsl.HttpsConnectionContext
import pekko.http.javadsl.model.Uri
import pekko.http.javadsl.server.directives.SecurityDirectives.ProvidedCredentials
import pekko.management.scaladsl
import pekko.http.scaladsl.server.Directives.AsyncAuthenticator
object ManagementRouteProviderSettings {
def create(selfBaseUri: Uri): ManagementRouteProviderSettings = {
ManagementRouteProviderSettingsImpl(selfBaseUri, None, None, Optional.empty(), readOnly = true)
}
}
/**
* Settings object used to pass through information about the environment the routes will be running in,
* from the component starting the actual HTTP server, to the [[ManagementRouteProvider]].
*
* Not for user extension.
*/
@DoNotInherit
sealed abstract class ManagementRouteProviderSettings {
/**
* The "self" base Uri which points to the root of the HTTP server running the route provided by the Provider.
* Can be used to introduce some self-awareness and/or links to "self" in the routes created by the Provider.
*/
def selfBaseUri: Uri
/**
* The async authenticator to be used for management routes.
*/
def withAuth(newAuth: JFunction[Optional[ProvidedCredentials], CompletionStage[Optional[String]]])
: ManagementRouteProviderSettings
def httpsConnectionContext: Optional[HttpsConnectionContext]
/**
* The HTTPS context that should be used when binding the management HTTP server.
*
* Refer to the Pekko HTTP documentation for details about configuring HTTPS for it.
*/
def withHttpsConnectionContext(newHttpsConnectionContext: HttpsConnectionContext): ManagementRouteProviderSettings
def readOnly: Boolean
/**
* Should only readOnly routes be provided. It is up to each provider to define what readOnly means.
*/
def withReadOnly(readOnly: Boolean): ManagementRouteProviderSettings
}
/**
* INTERNAL API
*/
@InternalApi private[pekko] final case class ManagementRouteProviderSettingsImpl(
override val selfBaseUri: Uri,
javadslAuth: Option[JFunction[Optional[ProvidedCredentials], CompletionStage[Optional[String]]]],
scaladslAuth: Option[AsyncAuthenticator[String]],
override val httpsConnectionContext: Optional[HttpsConnectionContext],
override val readOnly: Boolean) extends ManagementRouteProviderSettings {
// There is no public API for defining both so it should not be possible
require(!(javadslAuth.isDefined && scaladslAuth.isDefined), "Defining both javadsl and scaladsl auth is not allowed")
override def withAuth(newAuth: JFunction[Optional[ProvidedCredentials], CompletionStage[Optional[String]]])
: ManagementRouteProviderSettings =
copy(javadslAuth = Option(newAuth))
override def withHttpsConnectionContext(
newHttpsConnectionContext: HttpsConnectionContext): ManagementRouteProviderSettings =
copy(
selfBaseUri = selfBaseUri.scheme("https"),
httpsConnectionContext = Optional.ofNullable(newHttpsConnectionContext))
def scaladslHttpsConnectionContext: Option[pekko.http.scaladsl.HttpsConnectionContext] = {
if (httpsConnectionContext.isPresent) {
httpsConnectionContext.get match {
case ctx: pekko.http.scaladsl.HttpsConnectionContext => Option(ctx)
case other =>
throw new IllegalStateException(
"org.apache.pekko.http.javadsl.HttpsConnectionContext should be a " +
s"org.apache.pekko.http.scaladsl.HttpsConnectionContext, but was [${other.getClass.getName}]")
}
} else {
None
}
}
override def withReadOnly(readOnly: Boolean): ManagementRouteProviderSettings = copy(readOnly = readOnly)
def asScala: scaladsl.ManagementRouteProviderSettingsImpl =
scaladsl.ManagementRouteProviderSettingsImpl(
selfBaseUri = selfBaseUri.asScala,
scaladslAuth,
javadslAuth,
scaladslHttpsConnectionContext,
readOnly)
}