Ktor authentication provider for Firebase Auth module.
repositories {
mavenCentral()
}
dependencies {
implementation("com.kborowy:firebase-auth-provider:VERSION")
}
You need to setup Firebase project with Authentication module enabled. See sample project to learn more.
install(Authentication) {
firebase("my-auth") {
adminFile = File("path/to/admin/file.json")
realm = "Sample Server"
/**
* A decoded and verified Firebase token.
* Can be used to get the uid and other user attributes available in the token.
*/
validate { token ->
UserIdPrincipal(token.uid)
}
}
}
Param | Required | Description |
---|---|---|
adminFile | Required | File instance, pointing to your Service account for your Firebase project. See sample project to learn more. |
validate | Required | Lambda receiving decoded and verified FirebaseToken, expected to return Principal, if user is authorized or null otherwise. |
realm | Optional | String describing the protected area or the scope of protection. This could be a message like "Access to the staging site" or similar, so that the user knows to which space they are trying to get access to. Defaults to "Ktor Server" |
Copyright 2023 Krzysztof Borowy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.