2024-10-19 20:36:08 +02:00
|
|
|
use std::{collections::HashMap, str::FromStr};
|
2024-10-19 03:28:16 +02:00
|
|
|
|
2024-10-19 05:28:44 +02:00
|
|
|
use base64::{prelude::BASE64_STANDARD, Engine};
|
2024-10-19 18:02:04 +02:00
|
|
|
use http::{HeaderMap, HeaderName, HeaderValue};
|
2024-10-19 04:14:31 +02:00
|
|
|
|
2024-10-19 18:02:04 +02:00
|
|
|
use crate::{PostWomanError, APP_USER_AGENT};
|
2024-10-19 03:28:16 +02:00
|
|
|
|
2024-10-19 18:02:04 +02:00
|
|
|
use super::{Extractor, PostWomanClient, StringOr};
|
2024-10-19 03:28:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Default, Clone, serde::Serialize, serde::Deserialize)]
|
|
|
|
pub struct Endpoint {
|
|
|
|
/// endpoint url, required
|
|
|
|
pub url: String,
|
|
|
|
/// http method for request, default GET
|
|
|
|
pub method: Option<String>,
|
|
|
|
/// query parameters, appended to base url
|
|
|
|
pub query: Option<Vec<String>>,
|
|
|
|
/// headers for request, array of "key: value" pairs
|
|
|
|
pub headers: Option<Vec<String>>,
|
|
|
|
/// body, optional string
|
|
|
|
pub body: Option<StringOr<toml::Table>>,
|
|
|
|
/// response extractor
|
|
|
|
pub extract: Option<StringOr<Extractor>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn replace_recursive(element: toml::Value, from: &str, to: &str) -> toml::Value {
|
|
|
|
match element {
|
|
|
|
toml::Value::Float(x) => toml::Value::Float(x),
|
|
|
|
toml::Value::Integer(x) => toml::Value::Integer(x),
|
|
|
|
toml::Value::Boolean(x) => toml::Value::Boolean(x),
|
|
|
|
toml::Value::Datetime(x) => toml::Value::Datetime(x),
|
|
|
|
toml::Value::String(x) => toml::Value::String(x.replace(from, to)),
|
|
|
|
toml::Value::Array(x) => toml::Value::Array(
|
|
|
|
x.into_iter().map(|x| replace_recursive(x, from, to)).collect()
|
|
|
|
),
|
|
|
|
toml::Value::Table(map) => {
|
|
|
|
let mut out = toml::map::Map::new();
|
|
|
|
for (k, v) in map {
|
|
|
|
let new_v = replace_recursive(v.clone(), from, to);
|
|
|
|
if k.contains(from) {
|
|
|
|
out.insert(k.replace(from, to), new_v);
|
|
|
|
} else {
|
|
|
|
out.insert(k.to_string(), new_v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
toml::Value::Table(out)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-19 20:36:08 +02:00
|
|
|
fn stringify(v: &toml::Value) -> String {
|
|
|
|
match v {
|
|
|
|
toml::Value::Boolean(x) => x.to_string(),
|
|
|
|
toml::Value::Integer(x) => x.to_string(),
|
|
|
|
toml::Value::Float(x) => x.to_string(),
|
|
|
|
toml::Value::String(x) => x.clone(),
|
|
|
|
toml::Value::Datetime(x) => x.to_string(),
|
|
|
|
toml::Value::Array(x) => serde_json::to_string(&x).unwrap_or_default(),
|
|
|
|
toml::Value::Table(x) => serde_json::to_string(&x).unwrap_or_default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-19 03:28:16 +02:00
|
|
|
impl Endpoint {
|
2024-10-19 20:36:08 +02:00
|
|
|
pub fn fill(mut self, env: &toml::Table) -> Self {
|
|
|
|
let mut vars: HashMap<String, String> = env.into_iter()
|
|
|
|
.map(|(k, v)| (k.clone(), stringify(v)))
|
|
|
|
.collect();
|
|
|
|
|
2024-10-19 03:28:16 +02:00
|
|
|
for (k, v) in std::env::vars() {
|
2024-10-19 20:36:08 +02:00
|
|
|
vars.insert(k, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (k, v) in vars {
|
2024-10-19 03:58:43 +02:00
|
|
|
let k_var = format!("${{{k}}}");
|
2024-10-19 03:28:16 +02:00
|
|
|
self.url = self.url.replace(&k_var, &v);
|
|
|
|
if let Some(method) = self.method {
|
|
|
|
self.method = Some(method.replace(&k_var, &v));
|
|
|
|
}
|
|
|
|
if let Some(b) = self.body {
|
|
|
|
match b {
|
|
|
|
StringOr::Str(body) => {
|
|
|
|
self.body = Some(StringOr::Str(body.replace(&k_var, &v)));
|
|
|
|
},
|
|
|
|
StringOr::T(json) => {
|
|
|
|
let wrap = toml::Value::Table(json.clone());
|
|
|
|
let toml::Value::Table(out) = replace_recursive(wrap, &k_var, &v)
|
|
|
|
else { unreachable!("we put in a table, we get out a table") };
|
|
|
|
self.body = Some(StringOr::T(out));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2024-10-19 19:24:12 +02:00
|
|
|
if let Some(query) = self.query {
|
|
|
|
self.query = Some(
|
|
|
|
query.into_iter()
|
|
|
|
.map(|x| x.replace(&k_var, &v))
|
|
|
|
.collect()
|
|
|
|
);
|
|
|
|
}
|
2024-10-19 03:28:16 +02:00
|
|
|
if let Some(headers) = self.headers {
|
|
|
|
self.headers = Some(
|
|
|
|
headers.into_iter()
|
|
|
|
.map(|x| x.replace(&k_var, &v))
|
|
|
|
.collect()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2024-10-19 04:14:31 +02:00
|
|
|
pub async fn execute(self, opts: &PostWomanClient) -> Result<String, PostWomanError> {
|
2024-10-19 03:28:16 +02:00
|
|
|
let method = match self.method {
|
|
|
|
Some(m) => reqwest::Method::from_str(&m)?,
|
|
|
|
None => reqwest::Method::GET,
|
|
|
|
};
|
|
|
|
let mut headers = HeaderMap::default();
|
|
|
|
for header in self.headers.unwrap_or_default() {
|
|
|
|
let (k, v) = header.split_once(':')
|
|
|
|
.ok_or_else(|| PostWomanError::InvalidHeader(header.clone()))?;
|
|
|
|
headers.insert(
|
|
|
|
HeaderName::from_str(k)?,
|
|
|
|
HeaderValue::from_str(v)?
|
|
|
|
);
|
|
|
|
}
|
|
|
|
let body = match self.body.unwrap_or_default() {
|
|
|
|
StringOr::Str(x) => x,
|
|
|
|
StringOr::T(json) => serde_json::to_string(&json)?,
|
|
|
|
};
|
2024-10-19 04:14:31 +02:00
|
|
|
|
2024-10-19 19:24:12 +02:00
|
|
|
let mut url = self.url;
|
|
|
|
if let Some(query) = self.query {
|
|
|
|
url = format!("{url}?{}", query.join("&"));
|
|
|
|
}
|
|
|
|
|
2024-10-19 04:14:31 +02:00
|
|
|
let client = reqwest::Client::builder()
|
|
|
|
.user_agent(opts.user_agent.as_deref().unwrap_or(APP_USER_AGENT))
|
|
|
|
.build()?;
|
|
|
|
|
|
|
|
let res = client
|
2024-10-19 19:24:12 +02:00
|
|
|
.request(method, url)
|
2024-10-19 03:28:16 +02:00
|
|
|
.headers(headers)
|
|
|
|
.body(body)
|
|
|
|
.send()
|
|
|
|
.await?
|
|
|
|
.error_for_status()?;
|
|
|
|
|
|
|
|
Ok(match self.extract.unwrap_or_default() {
|
2024-10-19 04:55:20 +02:00
|
|
|
StringOr::T(Extractor::Discard) => "".to_string(),
|
2024-10-19 05:28:44 +02:00
|
|
|
StringOr::T(Extractor::Body) => format_body(res).await?,
|
2024-10-19 20:18:34 +02:00
|
|
|
StringOr::T(Extractor::Debug) => {
|
|
|
|
// TODO needless double format
|
|
|
|
let res_dbg = format!("{res:#?}");
|
|
|
|
let body = format_body(res).await?;
|
|
|
|
format!("{res_dbg}\nBody: {body}\n")
|
|
|
|
},
|
2024-10-19 03:28:16 +02:00
|
|
|
StringOr::T(Extractor::Header { key }) => res
|
|
|
|
.headers()
|
|
|
|
.get(&key)
|
|
|
|
.ok_or(PostWomanError::HeaderNotFound(key))?
|
|
|
|
.to_str()?
|
2024-10-19 05:02:18 +02:00
|
|
|
.to_string()
|
|
|
|
+ "\n",
|
2024-10-19 20:18:34 +02:00
|
|
|
StringOr::T(Extractor::Regex { pattern }) => {
|
|
|
|
let pattern = regex::Regex::new(&pattern)?;
|
|
|
|
let body = format_body(res).await?;
|
|
|
|
pattern.find(&body)
|
|
|
|
.ok_or_else(|| PostWomanError::NoMatch(body.clone()))?
|
|
|
|
.as_str()
|
|
|
|
.to_string()
|
|
|
|
},
|
2024-10-19 20:19:34 +02:00
|
|
|
// bare string defaults to JQL query
|
|
|
|
StringOr::T(Extractor::Jql { query }) | StringOr::Str(query) => {
|
|
|
|
let json: serde_json::Value = res.json().await?;
|
|
|
|
let selection = jql_runner::runner::raw(&query, &json)?;
|
|
|
|
serde_json::to_string_pretty(&selection)?
|
|
|
|
},
|
2024-10-19 03:28:16 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-19 05:28:44 +02:00
|
|
|
async fn format_body(res: reqwest::Response) -> Result<String, PostWomanError> {
|
|
|
|
match res.headers().get("Content-Type") {
|
|
|
|
None => Ok(res.text().await? + "\n"),
|
|
|
|
Some(v) => match v.to_str()? {
|
|
|
|
"application/json" => Ok(serde_json::to_string_pretty(&res.json::<serde_json::Value>().await?)? + "\n"),
|
|
|
|
"text/plain" => Ok(res.text().await? + "\n"),
|
|
|
|
_ => Ok(format!("base64({})\n", BASE64_STANDARD.encode(res.bytes().await?))),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|