diff options
Diffstat (limited to 'kvision-modules/kvision-remote/src/main')
-rw-r--r-- | kvision-modules/kvision-remote/src/main/kotlin/pl/treksoft/kvision/remote/Security.kt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kvision-modules/kvision-remote/src/main/kotlin/pl/treksoft/kvision/remote/Security.kt b/kvision-modules/kvision-remote/src/main/kotlin/pl/treksoft/kvision/remote/Security.kt index b485e17d..e96744a9 100644 --- a/kvision-modules/kvision-remote/src/main/kotlin/pl/treksoft/kvision/remote/Security.kt +++ b/kvision-modules/kvision-remote/src/main/kotlin/pl/treksoft/kvision/remote/Security.kt @@ -37,18 +37,18 @@ class SecurityException(message: String) : Exception(message) data class Credentials(val username: String? = null, val password: String? = null) /** - * Pac4j form login dispatcher. + * Form login dispatcher. */ -class LoginService { +class LoginService(val loginEndpoint: String) { val loginAgent = CallAgent() /** - * Login with Pac4j FormClient. + * Login with a form. * @param credentials username and password credentials */ suspend fun login(credentials: Credentials?): Boolean = if (credentials?.username != null) { - loginAgent.remoteCall("callback?client_name=FormClient", obj { + loginAgent.remoteCall(loginEndpoint, obj { this.username = credentials.username this.password = credentials.password }, HttpMethod.POST, "application/x-www-form-urlencoded").then { _: dynamic -> true }.asDeferred().await() @@ -58,7 +58,7 @@ class LoginService { } /** - * Pac4j form login dispatcher. + * Form login dispatcher. */ abstract class SecurityMgr { |