use std::collections::HashMap;
use std::fmt;
use async_trait::async_trait;
use serde_json::Value;
pub type Headers = HashMap<String, String>;
pub type Query = HashMap<String, String>;
pub type Form = HashMap<String, String>;
pub fn build_query<T: Into<String>>(params: impl IntoIterator<Item = (T, T)>) -> Query {
params
.into_iter()
.map(|(k, v)| (k.into(), v.into()))
.collect()
}
#[async_trait]
pub trait BaseHttpClient: Send + Default + Clone + fmt::Debug {
type Error;
async fn get(
&self,
url: &str,
headers: Option<&Headers>,
query_params: &Query,
) -> Result<String, Self::Error>;
async fn post(
&self,
url: &str,
headers: Option<&Headers>,
query_params: &Query,
payload: &Value,
) -> Result<String, Self::Error>;
async fn post_form(
&self,
url: &str,
headers: Option<&Headers>,
payload: &Form,
) -> Result<String, Self::Error>;
async fn put(
&self,
url: &str,
headers: Option<&Headers>,
payload: &Value,
) -> Result<String, Self::Error>;
async fn delete(
&self,
url: &str,
headers: Option<&Headers>,
) -> Result<String, Self::Error>;
}