use std::net::SocketAddr;
use url::Url;
use crate::engine::remote::http::{Client, Http, Https};
use crate::opt::endpoint::into_endpoint;
use crate::opt::{Config, IntoEndpoint};
use crate::{Endpoint, Error, Result};
macro_rules! endpoints {
($($name:ty),*) => {
$(
impl IntoEndpoint<Http> for $name {}
impl into_endpoint::Sealed<Http> for $name {
type Client = Client;
fn into_endpoint(self) -> Result<Endpoint> {
let url = format!("http://{self}");
Ok(Endpoint::new(Url::parse(&url).map_err(|_| Error::internal(format!("Invalid URL: {url}")))?))
}
}
impl IntoEndpoint<Http> for ($name, Config) {}
impl into_endpoint::Sealed<Http> for ($name, Config) {
type Client = Client;
fn into_endpoint(self) -> Result<Endpoint> {
let mut endpoint = into_endpoint::Sealed::<Http>::into_endpoint(self.0)?;
endpoint.config = self.1;
Ok(endpoint)
}
}
impl IntoEndpoint<Https> for $name {}
impl into_endpoint::Sealed<Https> for $name {
type Client = Client;
fn into_endpoint(self) -> Result<Endpoint> {
let url = format!("https://{self}");
Ok(Endpoint::new(Url::parse(&url).map_err(|_| Error::internal(format!("Invalid URL: {url}")))?))
}
}
impl IntoEndpoint<Https> for ($name, Config) {}
impl into_endpoint::Sealed<Https> for ($name, Config) {
type Client = Client;
fn into_endpoint(self) -> Result<Endpoint> {
let mut endpoint = into_endpoint::Sealed::<Https>::into_endpoint(self.0)?;
endpoint.config = self.1;
Ok(endpoint)
}
}
)*
}
}
endpoints!(&str, &String, String, SocketAddr);