use crate::{DnsRecord, DnsRecordType, Error, IntoFqdn, http::HttpClientBuilder};
use std::{borrow::Cow, time::Duration};
const DEFAULT_API_ENDPOINT: &str = "https://ddnss.de/upd.php";
#[derive(Clone)]
pub struct DdnssProvider {
client: HttpClientBuilder,
key: String,
endpoint: Cow<'static, str>,
}
impl DdnssProvider {
pub(crate) fn new(key: impl AsRef<str>, timeout: Option<Duration>) -> crate::Result<Self> {
let key = key.as_ref();
if key.is_empty() {
return Err(Error::Api("DDNSS key is empty".to_string()));
}
Ok(Self {
client: HttpClientBuilder::default().with_timeout(timeout),
key: key.to_string(),
endpoint: Cow::Borrowed(DEFAULT_API_ENDPOINT),
})
}
#[cfg(test)]
pub(crate) fn with_endpoint(self, endpoint: impl Into<Cow<'static, str>>) -> Self {
Self {
endpoint: endpoint.into(),
..self
}
}
pub(crate) async fn create(
&self,
name: impl IntoFqdn<'_>,
record: DnsRecord,
_ttl: u32,
_origin: impl IntoFqdn<'_>,
) -> crate::Result<()> {
let host = name.into_name().into_owned();
match record {
DnsRecord::TXT(value) => self.send_update(&host, Some(value.as_str()), "1").await,
_ => Err(Error::Api(
"Only TXT records are supported by DDNSS".to_string(),
)),
}
}
pub(crate) async fn update(
&self,
name: impl IntoFqdn<'_>,
record: DnsRecord,
ttl: u32,
origin: impl IntoFqdn<'_>,
) -> crate::Result<()> {
self.create(name, record, ttl, origin).await
}
pub(crate) async fn delete(
&self,
name: impl IntoFqdn<'_>,
_origin: impl IntoFqdn<'_>,
record_type: DnsRecordType,
) -> crate::Result<()> {
if record_type != DnsRecordType::TXT {
return Err(Error::Api(
"Only TXT records are supported by DDNSS".to_string(),
));
}
let host = name.into_name().into_owned();
self.send_update(&host, None, "2").await
}
async fn send_update(
&self,
host: &str,
txt: Option<&str>,
txtm: &str,
) -> crate::Result<()> {
let mut params: Vec<(&str, &str)> = vec![
("key", self.key.as_str()),
("host", host),
("txtm", txtm),
];
if let Some(value) = txt {
params.push(("txt", value));
}
let query = serde_urlencoded::to_string(¶ms)
.map_err(|err| Error::Serialize(format!("Failed to encode query: {err}")))?;
let response = self
.client
.get(format!("{}?{}", self.endpoint, query))
.send_raw()
.await?;
if response.to_ascii_lowercase().contains("updated 1 hostname") {
Ok(())
} else {
Err(Error::Api(format!(
"DDNSS update returned unexpected body: {response}"
)))
}
}
}