Split request and conversion for easier debugging

This commit is contained in:
Leon Grünewald 2024-01-01 21:50:57 +01:00
parent ec2b8f7b0d
commit 0c882667dc
2 changed files with 34 additions and 19 deletions

View file

@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.77"
base64 = "0.21.5"
reqwest = { version = "0.11.23", features = ["json"] }
reqwest = "0.11.23"
serde = { version = "1.0.193", features = ["derive", "std"] }
serde_json = "1.0.108"
thiserror = "1.0.52"

View file

@ -1,8 +1,10 @@
use std::io::Write;
use anyhow::Result;
use base64::Engine;
use base64::engine::{GeneralPurpose};
use crate::post::{Post, Posts};
use reqwest::header::{AUTHORIZATION, HeaderMap, HeaderValue, USER_AGENT};
use reqwest::Response;
#[derive(Clone, Debug)]
pub struct Client<'a> {
@ -38,7 +40,7 @@ impl<'a> Client<'a> {
base64_engine.encode(format!("{username}:{apikey}"))
}
pub async fn list_posts(&mut self, limit: Option<u16>, tags: Option<Vec<String>>, page: Option<u32>) -> Result<Vec<Post>> {
async fn list_posts_raw(&mut self, limit: Option<u16>, tags: Option<Vec<String>>, page: Option<u32>) -> Result<Response> {
let mut url = url::Url::parse(format!("{}/posts.json", self.host).as_str())?;
let mut query_params = Vec::new();
@ -60,9 +62,22 @@ impl<'a> Client<'a> {
Ok(self.http_client.get(url.as_str())
.send()
.await?
.json::<Posts>()
.await?.into())
.await?)
}
pub async fn list_posts(&mut self, limit: Option<u16>, tags: Option<Vec<String>>, page: Option<u32>) -> Result<Vec<Post>> {
let res = self.list_posts_raw(limit, tags, page).await?;
let text = res.text().await?;
/*
let mut debug_file = std::fs::OpenOptions::new()
.write(true)
.create(true)
.open("./debug.json")?;
debug_file.write_all(text.as_bytes())?;
*/
Ok(serde_json::from_str(text.as_str())?)
}
}