use super::{configuration, ContentType, Error};
use crate::{apis::ResponseContent, models};
use reqwest;
use serde::{de::Error as _, Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum AddAggregationError {
Status401(serde_json::Value),
Status500(serde_json::Value),
UnknownValue(serde_json::Value),
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum DeleteAggregationError {
Status401(serde_json::Value),
Status500(serde_json::Value),
UnknownValue(serde_json::Value),
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum SubmitLargeAggregationError {
Status401(serde_json::Value),
Status500(serde_json::Value),
UnknownValue(serde_json::Value),
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum UseAggregationError {
Status401(serde_json::Value),
Status500(serde_json::Value),
UnknownValue(serde_json::Value),
}
pub async fn add_aggregation(
configuration: &configuration::Configuration,
db: &str,
collection: &str,
aggregation: &str,
body: Option<serde_json::Value>,
) -> Result<(), Error<AddAggregationError>> {
let p_path_db = db;
let p_path_collection = collection;
let p_path_aggregation = aggregation;
let p_body_body = body;
let uri_str = format!(
"{}/meta/{db}/{collection}/_aggr/{aggregation}",
configuration.base_path,
db = crate::apis::urlencode(p_path_db),
collection = crate::apis::urlencode(p_path_collection),
aggregation = crate::apis::urlencode(p_path_aggregation)
);
let mut req_builder = configuration.client.request(reqwest::Method::PUT, &uri_str);
if let Some(ref user_agent) = configuration.user_agent {
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
}
if let Some(ref apikey) = configuration.api_key {
let key = apikey.key.clone();
let value = match apikey.prefix {
Some(ref prefix) => format!("{} {}", prefix, key),
None => key,
};
req_builder = req_builder.header("X-Tapis-Token", value);
};
req_builder = req_builder.json(&p_body_body);
let req = req_builder.build()?;
let resp = configuration.client.execute(req).await?;
let status = resp.status();
if !status.is_client_error() && !status.is_server_error() {
Ok(())
} else {
let content = resp.text().await?;
let entity: Option<AddAggregationError> = serde_json::from_str(&content).ok();
Err(Error::ResponseError(ResponseContent {
status,
content,
entity,
}))
}
}
pub async fn delete_aggregation(
configuration: &configuration::Configuration,
db: &str,
collection: &str,
aggregation: &str,
) -> Result<(), Error<DeleteAggregationError>> {
let p_path_db = db;
let p_path_collection = collection;
let p_path_aggregation = aggregation;
let uri_str = format!(
"{}/meta/{db}/{collection}/_aggr/{aggregation}",
configuration.base_path,
db = crate::apis::urlencode(p_path_db),
collection = crate::apis::urlencode(p_path_collection),
aggregation = crate::apis::urlencode(p_path_aggregation)
);
let mut req_builder = configuration
.client
.request(reqwest::Method::DELETE, &uri_str);
if let Some(ref user_agent) = configuration.user_agent {
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
}
if let Some(ref apikey) = configuration.api_key {
let key = apikey.key.clone();
let value = match apikey.prefix {
Some(ref prefix) => format!("{} {}", prefix, key),
None => key,
};
req_builder = req_builder.header("X-Tapis-Token", value);
};
let req = req_builder.build()?;
let resp = configuration.client.execute(req).await?;
let status = resp.status();
if !status.is_client_error() && !status.is_server_error() {
Ok(())
} else {
let content = resp.text().await?;
let entity: Option<DeleteAggregationError> = serde_json::from_str(&content).ok();
Err(Error::ResponseError(ResponseContent {
status,
content,
entity,
}))
}
}
pub async fn submit_large_aggregation(
configuration: &configuration::Configuration,
db: &str,
collection: &str,
aggregation: &str,
page: Option<i32>,
pagesize: Option<i32>,
keys: Option<Vec<String>>,
body: Option<serde_json::Value>,
) -> Result<serde_json::Value, Error<SubmitLargeAggregationError>> {
let p_path_db = db;
let p_path_collection = collection;
let p_path_aggregation = aggregation;
let p_query_page = page;
let p_query_pagesize = pagesize;
let p_query_keys = keys;
let p_body_body = body;
let uri_str = format!(
"{}/meta/{db}/{collection}/_aggr/{aggregation}",
configuration.base_path,
db = crate::apis::urlencode(p_path_db),
collection = crate::apis::urlencode(p_path_collection),
aggregation = crate::apis::urlencode(p_path_aggregation)
);
let mut req_builder = configuration
.client
.request(reqwest::Method::POST, &uri_str);
if let Some(ref param_value) = p_query_page {
req_builder = req_builder.query(&[("page", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_pagesize {
req_builder = req_builder.query(&[("pagesize", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_keys {
req_builder = match "multi" {
"multi" => req_builder.query(
¶m_value
.iter()
.map(|p| ("keys".to_owned(), p.to_string()))
.collect::<Vec<(std::string::String, std::string::String)>>(),
),
_ => req_builder.query(&[(
"keys",
¶m_value
.iter()
.map(|p| p.to_string())
.collect::<Vec<String>>()
.join(",")
.to_string(),
)]),
};
}
if let Some(ref user_agent) = configuration.user_agent {
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
}
if let Some(ref apikey) = configuration.api_key {
let key = apikey.key.clone();
let value = match apikey.prefix {
Some(ref prefix) => format!("{} {}", prefix, key),
None => key,
};
req_builder = req_builder.header("X-Tapis-Token", value);
};
req_builder = req_builder.json(&p_body_body);
let req = req_builder.build()?;
let resp = configuration.client.execute(req).await?;
let status = resp.status();
let content_type = resp
.headers()
.get("content-type")
.and_then(|v| v.to_str().ok())
.unwrap_or("application/octet-stream");
let content_type = super::ContentType::from(content_type);
if !status.is_client_error() && !status.is_server_error() {
let content = resp.text().await?;
match content_type {
ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
ContentType::Text => Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `serde_json::Value`"))),
ContentType::Unsupported(unknown_type) => Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `serde_json::Value`")))),
}
} else {
let content = resp.text().await?;
let entity: Option<SubmitLargeAggregationError> = serde_json::from_str(&content).ok();
Err(Error::ResponseError(ResponseContent {
status,
content,
entity,
}))
}
}
pub async fn use_aggregation(
configuration: &configuration::Configuration,
db: &str,
collection: &str,
aggregation: &str,
) -> Result<(), Error<UseAggregationError>> {
let p_path_db = db;
let p_path_collection = collection;
let p_path_aggregation = aggregation;
let uri_str = format!(
"{}/meta/{db}/{collection}/_aggr/{aggregation}",
configuration.base_path,
db = crate::apis::urlencode(p_path_db),
collection = crate::apis::urlencode(p_path_collection),
aggregation = crate::apis::urlencode(p_path_aggregation)
);
let mut req_builder = configuration.client.request(reqwest::Method::GET, &uri_str);
if let Some(ref user_agent) = configuration.user_agent {
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
}
if let Some(ref apikey) = configuration.api_key {
let key = apikey.key.clone();
let value = match apikey.prefix {
Some(ref prefix) => format!("{} {}", prefix, key),
None => key,
};
req_builder = req_builder.header("X-Tapis-Token", value);
};
let req = req_builder.build()?;
let resp = configuration.client.execute(req).await?;
let status = resp.status();
if !status.is_client_error() && !status.is_server_error() {
Ok(())
} else {
let content = resp.text().await?;
let entity: Option<UseAggregationError> = serde_json::from_str(&content).ok();
Err(Error::ResponseError(ResponseContent {
status,
content,
entity,
}))
}
}