A simple and small Rust library for handling Firebase Authorization.
Supports the two most popular frameworks: Tokio's Axum and Actix-web.
Actix
toml
[dependencies]
firebase-auth = { version = "0.1", features = ["actix"] }
actix-web = "4"
Axum
toml
firebase-auth = { version = "0.1", features = ["axum"] }
axum = "0.6"
https://github.com/trchopan/firebase-auth/tree/main/examples/actix_basic.rs
```rust use actixweb::{get, middleware::Logger, web::Data, App, HttpServer, Responder}; use firebaseauth::{FirebaseAuth, FirebaseUser};
// Use FirebaseUser
extractor to verify the user token and decode the claims
async fn greet(user: FirebaseUser) -> impl Responder { let email = user.email.unwrapor("empty email".tostring()); format!("Hello {}!", email) }
async fn main() -> std::io::Result<()> {
// Create Application State for the FirebaseAuth
it will refresh the public keys
// automatically.
// Change projectid to your Firebase Project ID
// We put this in blocking because the first time it run, it will try to get the public keys
// from Google endpoint, if it failed it will panic.
let firebaseauth = tokio::task::spawn_blocking(|| FirebaseAuth::new("my-project-id"))
.await
.expect("panic init FirebaseAuth");
let app_data = Data::new(firebase_auth);
HttpServer::new(move || {
App::new()
.wrap(Logger::default())
.app_data(app_data.clone())
.service(greet)
})
.bind(("127.0.0.1", 8080))?
.run()
.await
} ```
https://github.com/trchopan/firebase-auth/tree/main/examples/axum_basic.rs
```rust use axum::{routing::get, Router}; use firebase_auth::{FirebaseAuth, FirebaseAuthState, FirebaseUser};
async fn greeting(currentuser: FirebaseUser) -> String { let email = currentuser.email.unwrapor("empty email".tostring()); format!("hello {}", email) }
async fn public() -> &'static str{ "ok" }
async fn main() { let firebaseauth = tokio::task::spawnblocking(|| FirebaseAuth::new("my-project-id")) .await .expect("panic init FirebaseAuth");
let app = Router::new()
.route("/hello", get(greeting))
.route("/", get(public))
.with_state(FirebaseAuthState { firebase_auth });
let addr = &"127.0.0.1:8080".parse().expect("Cannot parse the addr");
axum::Server::bind(addr)
.serve(app.into_make_service())
.await
.unwrap()
} ```
Use firebase sdk to get the User Token.
For example: getIdToken()
Make the request using the User's token. Note that it will expire so you will need to get it again if expired.
```
TOKEN="
curl --header 'Authorization: Bearer $TOKEN' http://127.0.0.1:8080/hello ```
Copyright (c) 2022-, Quang Tran.