pub mod types;
use serde_json::Value;
use crate::{
bos::template::http_client::v2::types::BosSessionTemplate, error::Error,
};
pub async fn get(
shasta_token: &str,
shasta_base_url: &str,
shasta_root_cert: &[u8],
socks5_proxy: Option<&str>,
bos_session_template_id_opt: Option<&str>,
) -> Result<Vec<BosSessionTemplate>, Error> {
log::info!("Get BOS sessiontemplate {:?}", bos_session_template_id_opt);
let client_builder = reqwest::Client::builder()
.add_root_certificate(reqwest::Certificate::from_pem(shasta_root_cert)?);
let client = match socks5_proxy {
Some(proxy) => client_builder.proxy(reqwest::Proxy::all(proxy)?).build()?,
None => client_builder.build()?,
};
let api_url =
if let Some(bos_session_template_id) = bos_session_template_id_opt {
shasta_base_url.to_owned()
+ "/bos/v2/sessiontemplates/"
+ bos_session_template_id
} else {
shasta_base_url.to_owned() + "/bos/v2/sessiontemplates"
};
let response = client
.get(api_url)
.bearer_auth(shasta_token)
.send()
.await
.map_err(|error| Error::NetError(error))?;
if response.status().is_success() {
if bos_session_template_id_opt.is_none() {
response
.json()
.await
.map_err(|error| Error::NetError(error))
} else {
response
.json::<BosSessionTemplate>()
.await
.map(|cfs_configuration| vec![cfs_configuration])
.map_err(|error| Error::NetError(error))
}
} else {
let payload = response
.json::<Value>()
.await
.map_err(|error| Error::NetError(error))?;
Err(Error::CsmError(payload))
}
}
pub async fn get_all(
shasta_token: &str,
shasta_base_url: &str,
shasta_root_cert: &[u8],
socks5_proxy: Option<&str>,
) -> Result<Vec<BosSessionTemplate>, Error> {
get(shasta_token, shasta_base_url, shasta_root_cert, socks5_proxy, None).await
}
pub async fn put(
shasta_token: &str,
shasta_base_url: &str,
shasta_root_cert: &[u8],
socks5_proxy: Option<&str>,
bos_template: &BosSessionTemplate,
bos_template_name: &str,
) -> Result<BosSessionTemplate, Error> {
log::info!("Create BOS sessiontemplte '{}'", bos_template_name);
log::debug!(
"Create BOS sessiontemplate request payload:\n{}",
serde_json::to_string_pretty(bos_template).unwrap()
);
let client_builder = reqwest::Client::builder()
.add_root_certificate(reqwest::Certificate::from_pem(shasta_root_cert)?);
let client = match socks5_proxy {
Some(proxy) => client_builder.proxy(reqwest::Proxy::all(proxy)?).build()?,
None => client_builder.build()?,
};
let api_url = format!(
"{}/bos/v2/sessiontemplates/{}",
shasta_base_url, bos_template_name
);
let response = client
.put(api_url)
.json(&bos_template)
.bearer_auth(shasta_token)
.send()
.await?;
if response.status().is_success() {
response.json().await.map_err(Error::NetError)
} else {
let payload = response.json::<Value>().await.map_err(Error::NetError)?;
Err(Error::CsmError(payload))
}
}
pub async fn delete(
shasta_token: &str,
shasta_base_url: &str,
shasta_root_cert: &[u8],
socks5_proxy: Option<&str>,
bos_template_id: &str,
) -> Result<(), Error> {
let client_builder = reqwest::Client::builder()
.add_root_certificate(reqwest::Certificate::from_pem(shasta_root_cert)?);
let client = match socks5_proxy {
Some(proxy) => client_builder.proxy(reqwest::Proxy::all(proxy)?).build()?,
None => client_builder.build()?,
};
let api_url =
shasta_base_url.to_owned() + "/bos/v2/sessiontemplates/" + bos_template_id;
let _ = client
.delete(api_url)
.bearer_auth(shasta_token)
.send()
.await?
.error_for_status();
Ok(())
}