Firestore client library for Rust.
If you use Cloud Run, please use https://github.com/gkkachi/firestore-grpc-cloudrun instead, which provides some useful functions such as get_client()
, get_project_id()
.
This example is experimental. In a real situation, you need to implement features such as token updates.
shell
export PROJECT_ID=YOUR_PROJECT_ID
export TOKEN=`gcloud auth print-access-token`
Cargo.toml
toml
[dependencies]
firestore_grpc = "0.109"
tokio = {version = "1.0", features = ["full"]}
main.rs
```rust use firestoregrpc::tonic::{ codegen::InterceptedService, metadata::MetadataValue, transport::{Channel, ClientTlsConfig}, Request, Status, }; use firestoregrpc::v1::{ firestore_client::FirestoreClient, value::ValueType, CreateDocumentRequest, Document, Value, }; use std::env;
const URL: &'static str = "https://firestore.googleapis.com"; const DOMAIN: &'static str = "firestore.googleapis.com";
pub type BoxError = Box
fn get_token() -> String { env::var("TOKEN").unwrap() }
fn getprojectid() -> String { env::var("PROJECT_ID").unwrap() }
async fn getclient() -> Result
let bearer_token = format!("Bearer {}", get_token());
let header_value = MetadataValue::from_str(&bearer_token)?;
let channel = endpoint?.connect().await?;
let service = FirestoreClient::with_interceptor(channel, move |mut req: Request<()>| {
req.metadata_mut()
.insert("authorization", header_value.clone());
Ok(req)
});
Ok(service)
}
async fn createdocument() -> Result
async fn main() { create_document().await.unwrap(); }
```