Configuration

class Configuration : AuthenticationProvider.Configuration

OAuth provider configuration

Functions

Link copied to clipboard
fun skipWhen(predicate: (ApplicationCall) -> Boolean)

Adds an authentication filter to the list. For every application call the specified predicate is applied and if it returns true then the authentication provider is skipped (no auth required for this call with this provider).

Properties

Link copied to clipboard
lateinit var client: HttpClient

HTTP client instance used by this provider to make HTTP calls to OAuth server

Link copied to clipboard
val name: String?

is the name of the provider, or null for a default provider.

Link copied to clipboard
val pipeline: AuthenticationPipeline

Authentication pipeline for this provider.

Link copied to clipboard
lateinit var providerLookup: ApplicationCall.() -> OAuthServerSettings?

Lookup function to find OAuth server settings for the particular call

Link copied to clipboard
lateinit var urlProvider: ApplicationCall.(OAuthServerSettings) -> String

URL provider that should produce login url for the particular call