licenses, publish fields in toml, version handling

This commit is contained in:
aaron-jack-manning
2022-07-10 11:32:41 +10:00
parent ca2c349e4a
commit 134dd74c31
13 changed files with 274 additions and 46 deletions

47
src/v1/utilities.rs Normal file
View File

@@ -0,0 +1,47 @@
use crate::v1::{Client, error, BASE_URL};
use serde::Deserialize;
#[derive(Deserialize, Debug)]
pub struct PingResponse {
pub meta : Meta,
}
#[derive(Deserialize, Debug)]
pub struct Meta {
/// The unique identifier of the authenticated customer.
pub id : String,
#[serde(rename = "statusEmoji")]
/// A cute emoji that represents the response status.
pub status_emoji : String,
}
impl Client {
/// Make a basic ping request to the API. This is useful to verify that authentication is functioning correctly.
pub async fn ping(&self) -> Result<PingResponse, error::Error> {
let url = reqwest::Url::parse(&format!("{}/util/ping", BASE_URL)).map_err(error::Error::UrlParse)?;
let res = reqwest::Client::new()
.get(url)
.header("Authorization", self.auth_header())
.send()
.await
.map_err(error::Error::Request)?;
match res.status() {
reqwest::StatusCode::OK => {
let body = res.text().await.map_err(error::Error::BodyRead)?;
println!("{}", body);
let ping_response : PingResponse = serde_json::from_str(&body).map_err(error::Error::Json)?;
Ok(ping_response)
},
_ => {
let body = res.text().await.map_err(error::Error::BodyRead)?;
let error : error::ErrorResponse = serde_json::from_str(&body).map_err(error::Error::Json)?;
Err(error::Error::Api(error))
}
}
}
}