use crate::util::parsers::hostname_parser;
use crate::CommandGlobalOpts;
use miette::{miette, Context, IntoDiagnostic};
use ockam_api::cli_state::{EnrollmentTicket, ExportedEnrollmentTicket, LegacyEnrollmentTicket};
use serde::Deserialize;
use std::str::FromStr;
use tracing::trace;
use url::Url;
pub fn parse_key_val<T, U>(s: &str) -> miette::Result<(T, U)>
where
T: FromStr,
T::Err: std::error::Error + Send + Sync + 'static,
U: FromStr,
U::Err: std::error::Error + Send + Sync + 'static,
{
let pos = s
.find('=')
.ok_or_else(|| miette!("invalid key=value pair: no `=` found in `{s}`"))?;
Ok((
s[..pos].parse().into_diagnostic()?,
s[pos + 1..].parse().into_diagnostic()?,
))
}
pub async fn parse_enrollment_ticket(
_opts: &CommandGlobalOpts,
value: &str,
) -> miette::Result<EnrollmentTicket> {
trace!(%value, "parsing enrollment ticket");
let contents = parse_string_or_path_or_url(value).await?;
if let Ok(ticket) = LegacyEnrollmentTicket::from_str(&contents) {
return Ok(EnrollmentTicket::new_from_legacy(ticket).await?);
}
Ok(ExportedEnrollmentTicket::from_str(&contents)?
.import()
.await?)
}
pub(crate) async fn parse_config_or_path_or_url<'de, T: Deserialize<'de>>(
value: &'de str,
) -> miette::Result<String> {
match parse_path_or_url(value).await {
Ok(contents) => Ok(contents),
Err(_) => {
if serde_yaml::from_str::<T>(value).is_ok() {
Ok(value.to_string())
} else {
Err(miette!(
"Failed to parse value {} as a path, URL or configuration",
value
))
}
}
}
}
pub(crate) async fn parse_string_or_path_or_url(value: &str) -> miette::Result<String> {
parse_path_or_url(value)
.await
.or_else(|_| Ok(value.to_string()))
}
pub(crate) async fn parse_path_or_url(value: &str) -> miette::Result<String> {
if let Some(url) = is_url(value) {
reqwest::get(url)
.await
.into_diagnostic()
.context(format!("Failed to download file from {value}"))?
.text()
.await
.into_diagnostic()
.context("Failed to read contents from downloaded file")
}
else if tokio::fs::metadata(value).await.is_ok() {
tokio::fs::read_to_string(value)
.await
.into_diagnostic()
.context("Failed to read contents from file")
} else {
Err(miette!("Failed to parse value {} as a path or URL", value))
}
}
pub fn is_url(value: &str) -> Option<Url> {
if let Ok(url) = Url::parse(value) {
return Some(url);
}
if let Some(socket_addr) = value.split('/').next() {
if socket_addr.contains(':') && hostname_parser(socket_addr).is_ok() {
let uri = format!("http://{value}");
return Url::parse(&uri).ok();
}
}
None
}