X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=src%2Fmain.rs;h=f9d8f4ed2a37bf33f46c53f74a35b4a56d75ad22;hb=e45d8f67336160ae61a9dc24f899752f5199a01b;hp=cd54e9d977ee7956fde96d218d982ac835a9dcd2;hpb=df818a0cc2eb8f7dfc492d29d3cc0397eefefd4c;p=gandi_dns_update.git diff --git a/src/main.rs b/src/main.rs index cd54e9d..f9d8f4e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,8 +30,8 @@ fn main() -> Result<()> { loop { let time_beginning_loop = time::Instant::now(); - if let Err(err) = check_and_update_dns(&config.api_key, &config.fqdn, &config.domains, config.ttl) { - println!("!! Error: {}", err); + if let Err(err) = check_and_update_dns(&config.api_key, &config.domains, config.ttl) { + println!("!! {}", err); } let elapsed = time::Instant::now() - time_beginning_loop; @@ -43,15 +43,15 @@ fn main() -> Result<()> { } } -fn check_and_update_dns(api_key: &str, fqdn: &str, domains: &Vec, ttl: i32) -> Result<()> { +fn check_and_update_dns(api_key: &str, domains: &Vec<(String, String)>, ttl: i32) -> Result<()> { let real_ip = get_real_ip()?; - for domain in domains { - let current_ip = get_current_record_ip(api_key, domain, fqdn)?; + for (hostname, domain) in domains { + let current_ip = get_current_record_ip(api_key, hostname, domain)?; if real_ip != current_ip { println!("IP addresses don't match for domain {}: real = {}, dns = {}. Renewing DNS...", domain, real_ip, current_ip); - update_record_ip(api_key, domain, fqdn, real_ip, ttl)?; + update_record_ip(api_key, hostname, domain, real_ip, ttl)?; println!("Renewing of {} successfully", domain); } } @@ -72,11 +72,11 @@ fn get_real_ip() -> Result { _ => Err(Box::new(Error { message: String::from("Can't parse IPv4 from ipify") })) } } else { - Err(Box::new(Error { message: format!("Request unsuccessful: {:#?}", resp) })) + Err(Box::new(Error { message: format!("Request unsuccessful to {}: {:#?}", url, resp) })) }, Err(error) => { - Err(Box::new(Error { message: format!("Error during request: {:?}", error) })) + Err(Box::new(Error { message: format!("Error during request to {}: {:?}", url, error) })) } } } @@ -119,8 +119,8 @@ fn request_livedns_gandi(api_key: &str, url_fragment: &str, method: Method) -> R let request_builder = match method { - Method::Put(body) => client.put(url).body(body), - Method::Get => client.get(url) + Method::Put(body) => client.put(&url).body(body), + Method::Get => client.get(&url) }; match request_builder.header("Authorization", format!("Apikey {}", api_key)).send() { @@ -129,9 +129,9 @@ fn request_livedns_gandi(api_key: &str, url_fragment: &str, method: Method) -> R let content = resp.text().unwrap(); Ok(serde_json::from_str(&content).unwrap()) } else { - Err(Box::new(Error { message: format!("Request unsuccessful: {:#?}", resp) })) + Err(Box::new(Error { message: format!("Request unsuccessful to {}: {:#?}", &url, resp) })) }, Err(error) => - Err(Box::new(Error { message: format!("Error during request: {:?}", error) })) + Err(Box::new(Error { message: format!("Error during request to {}: {:?}", &url, error) })) } }