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 ScoresGetByIdError {
Status400(serde_json::Value),
Status401(serde_json::Value),
Status403(serde_json::Value),
Status404(serde_json::Value),
Status405(serde_json::Value),
UnknownValue(serde_json::Value),
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ScoresGetManyError {
Status400(serde_json::Value),
Status401(serde_json::Value),
Status403(serde_json::Value),
Status404(serde_json::Value),
Status405(serde_json::Value),
UnknownValue(serde_json::Value),
}
#[bon::builder]
pub async fn scores_get_by_id(
configuration: &configuration::Configuration,
score_id: &str,
) -> Result<models::Score, Error<ScoresGetByIdError>> {
let p_path_score_id = score_id;
let uri_str = format!(
"{}/api/public/v2/scores/{scoreId}",
configuration.base_path,
scoreId = crate::apis::urlencode(p_path_score_id)
);
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 auth_conf) = configuration.basic_auth {
req_builder = req_builder.basic_auth(auth_conf.0.to_owned(), auth_conf.1.to_owned());
};
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 => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::Score`"))),
ContentType::Unsupported(unknown_type) => return Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `models::Score`")))),
}
} else {
let content = resp.text().await?;
let entity: Option<ScoresGetByIdError> = serde_json::from_str(&content).ok();
Err(Error::ResponseError(ResponseContent {
status,
content,
entity,
}))
}
}
#[bon::builder]
pub async fn scores_get_many(
configuration: &configuration::Configuration,
page: Option<i32>,
limit: Option<i32>,
user_id: Option<&str>,
name: Option<&str>,
from_timestamp: Option<String>,
to_timestamp: Option<String>,
environment: Option<Vec<String>>,
source: Option<models::ScoreSource>,
operator: Option<&str>,
value: Option<f64>,
score_ids: Option<&str>,
config_id: Option<&str>,
session_id: Option<&str>,
dataset_run_id: Option<&str>,
trace_id: Option<&str>,
observation_id: Option<&str>,
queue_id: Option<&str>,
data_type: Option<models::ScoreDataType>,
trace_tags: Option<Vec<String>>,
fields: Option<&str>,
filter: Option<&str>,
) -> Result<models::GetScoresResponse, Error<ScoresGetManyError>> {
let p_query_page = page;
let p_query_limit = limit;
let p_query_user_id = user_id;
let p_query_name = name;
let p_query_from_timestamp = from_timestamp;
let p_query_to_timestamp = to_timestamp;
let p_query_environment = environment;
let p_query_source = source;
let p_query_operator = operator;
let p_query_value = value;
let p_query_score_ids = score_ids;
let p_query_config_id = config_id;
let p_query_session_id = session_id;
let p_query_dataset_run_id = dataset_run_id;
let p_query_trace_id = trace_id;
let p_query_observation_id = observation_id;
let p_query_queue_id = queue_id;
let p_query_data_type = data_type;
let p_query_trace_tags = trace_tags;
let p_query_fields = fields;
let p_query_filter = filter;
let uri_str = format!("{}/api/public/v2/scores", configuration.base_path);
let mut req_builder = configuration.client.request(reqwest::Method::GET, &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_limit {
req_builder = req_builder.query(&[("limit", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_user_id {
req_builder = req_builder.query(&[("userId", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_name {
req_builder = req_builder.query(&[("name", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_from_timestamp {
req_builder = req_builder.query(&[("fromTimestamp", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_to_timestamp {
req_builder = req_builder.query(&[("toTimestamp", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_environment {
req_builder = match "multi" {
"multi" => req_builder.query(
¶m_value
.into_iter()
.map(|p| ("environment".to_owned(), p.to_string()))
.collect::<Vec<(std::string::String, std::string::String)>>(),
),
_ => req_builder.query(&[(
"environment",
¶m_value
.into_iter()
.map(|p| p.to_string())
.collect::<Vec<String>>()
.join(",")
.to_string(),
)]),
};
}
if let Some(ref param_value) = p_query_source {
req_builder = req_builder.query(&[("source", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_operator {
req_builder = req_builder.query(&[("operator", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_value {
req_builder = req_builder.query(&[("value", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_score_ids {
req_builder = req_builder.query(&[("scoreIds", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_config_id {
req_builder = req_builder.query(&[("configId", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_session_id {
req_builder = req_builder.query(&[("sessionId", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_dataset_run_id {
req_builder = req_builder.query(&[("datasetRunId", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_trace_id {
req_builder = req_builder.query(&[("traceId", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_observation_id {
req_builder = req_builder.query(&[("observationId", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_queue_id {
req_builder = req_builder.query(&[("queueId", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_data_type {
req_builder = req_builder.query(&[("dataType", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_trace_tags {
req_builder = match "multi" {
"multi" => req_builder.query(
¶m_value
.into_iter()
.map(|p| ("traceTags".to_owned(), p.to_string()))
.collect::<Vec<(std::string::String, std::string::String)>>(),
),
_ => req_builder.query(&[(
"traceTags",
¶m_value
.into_iter()
.map(|p| p.to_string())
.collect::<Vec<String>>()
.join(",")
.to_string(),
)]),
};
}
if let Some(ref param_value) = p_query_fields {
req_builder = req_builder.query(&[("fields", ¶m_value.to_string())]);
}
if let Some(ref param_value) = p_query_filter {
req_builder = req_builder.query(&[("filter", ¶m_value.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 auth_conf) = configuration.basic_auth {
req_builder = req_builder.basic_auth(auth_conf.0.to_owned(), auth_conf.1.to_owned());
};
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 => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::GetScoresResponse`"))),
ContentType::Unsupported(unknown_type) => return Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `models::GetScoresResponse`")))),
}
} else {
let content = resp.text().await?;
let entity: Option<ScoresGetManyError> = serde_json::from_str(&content).ok();
Err(Error::ResponseError(ResponseContent {
status,
content,
entity,
}))
}
}