Currently Compatible with Pocketbase Version 0.10.3
Installation
or add the following to your Cargo.toml
[]
= "0.0.7"
= { = "1", = ["full"] }
= { = "1.0.145", = ["derive"] }
Usage
use
use Client;
use UserTypes;
use ;
async
$ cargo add pocketbase-sdk
or add the following to your Cargo.toml
[dependencies]
pocketbase-sdk = "0.0.7"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.145", features = ["derive"] }
use serde::{Serialize, Deserialize}
use pocketbase_sdk::client::Client;
use pocketbase_sdk::user::UserTypes;
use pocketbase_sdk::records::operations::{
list, view, delete, create
};
#[derive(Serialize, Deserialize, Debug)]
struct Post {
id: String,
title: String,
content: String,
created: String,
updated: String,
author: String,
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
/* new client + authentication */
let mut client = Client::new("http://localhost:8090/api/").unwrap();
let auth = client.auth_via_email(
String::from("sreedev@icloud.com"),
String::from("Admin@123"),
UserTypes::User /* use UserTypes::Admin for admin Authentication */
).await;
assert!(auth.is_ok())
/* create record */
let record = Post {
title: "Sample title".to_string(),
content: "Sample Content".to_string(),
author: client.user.unwrap().token,
created: "".to_string,
updated: "".to_string
};
let repsonse = create::record::<Post>("posts", &post, &client).await.unwrap();
match repsonse {
create::CreateResponse::SuccessResponse(res) => {
assert_eq!(res.title, String::from("Sample title"))
},
create::CreateResponse::FailureResponse(_err) => panic!("Failed!")
}
/* view record */
let repsonse = view::record::<Post>("posts", "9bbl183t7ioqrea", &client).await.unwrap();
match repsonse {
view::ViewResponse::SuccessResponse(res) => assert_eq!(res.id, "9bbl183t7ioqrea"),
view::ViewResponse::ErrorResponse(_err) => panic!("Failed!")
}
/* list paginated records */
let response = list::records::<Post>("posts", &client).await.unwrap();
match response {
list::ListResponse::SuccessResponse(paginated_record_list) => {
assert_ne!(paginated_record_list.total_items, 0)
},
list::ListResponse::ErrorResponse(_e) => panic!("could not retrieve resource.")
}
/* delete a record */
let response = delete::record("posts", "9bbl183t7ioqrea", &client).await;
assert!(response.is_ok());
Ok(())
}