X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=src%2Fmain.rs;h=fa7584ecbb8f9234ed082a4ee59ed53788bbc1c5;hb=81a586e4cbc435651174131d75f05cf33094678c;hp=84306f6adb8631034e52bd6e29513b480889614a;hpb=4d545d80471a5c59f21c3b530a40274b2760c9be;p=gandi_dns_update.git diff --git a/src/main.rs b/src/main.rs index 84306f6..fa7584e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,34 +1,42 @@ /* * API Reference: https://api.gandi.net/docs/livedns/ - * Some inspiration: https://github.com/rmarchant/gandi-ddns/blob/master/gandi_ddns.py + * Some similar implementations: + * - https://github.com/rmarchant/gandi-ddns/blob/master/gandi_ddns.py + * - https://github.com/brianhp2/gandi-automatic-dns */ -use std::{ thread, time, fs::File, net::{ IpAddr, Ipv4Addr } }; +#![cfg_attr(debug_assertions, allow(unused_variables, unused_imports, dead_code))] + +use std::{ fmt::format, fs::File, net::{ IpAddr, Ipv4Addr }, thread, time }; use ron::{ de::from_reader, ser::to_writer }; use serde::{ Deserialize, Serialize }; +use serde_json::Value; type Result = std::result::Result>; #[derive(Debug)] -struct GetRealIpError; +struct Error { + message: String +} -impl std::fmt::Display for GetRealIpError { +impl std::fmt::Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!(f, "SuperErrorSideKick is here!") + f.write_str(&self.message) } } -impl std::error::Error for GetRealIpError {} +impl std::error::Error for Error { } #[derive(Debug, Deserialize, Serialize)] struct Config { delay_between_check: time::Duration, api_key: String, + domains: Vec, } impl Config { fn default() -> Self { - Config { delay_between_check: time::Duration::from_secs(60), api_key: String::from("") } + Config { delay_between_check: time::Duration::from_secs(60), api_key: String::from(""), domains: Vec::new() } } fn read(file_path: &str) -> Result { @@ -71,22 +79,10 @@ fn main() -> Result<()> { fn check_and_update_dns(api_key: &str) { /* - let url = "https://api.gandi.net/v5/livedns/domains"; - let client = reqwest::blocking::Client::new(); - - match client.get(url).header("Authorization", format!("Apikey {}", api_key)).send() { - Ok(resp) => - if resp.status().is_success() { - let content = resp.text().unwrap(); - println!("Content:\n{:?}", content); - } else { - println!("Request unsuccessful:\n{:#?}", resp); - }, - Err(error) => - println!("Error during request: {:?}", error) - } */ - dbg!(get_real_ip()); + //dbg!(get_real_ip()); + + get_current_record_ip(api_key); } fn get_real_ip() -> Result { @@ -100,25 +96,73 @@ fn get_real_ip() -> Result { let content = resp.text().unwrap(); match content.parse::() { Ok(IpAddr::V4(ip_v4)) => Ok(ip_v4), - /*Err(_)*/ _ => Err(Box::new(GetRealIpError)) + /*Err(_)*/ _ => Err(Box::new(Error { message: String::from("Can't parse IPv4 from ipify") })) } //println!("Content:\n{:?}", content); } else { - println!("Request unsuccessful:\n{:#?}", resp); - Err(Box::new(GetRealIpError)) + //println!("Request unsuccessful:\n{:#?}", resp); + Err(Box::new(Error { message: format!("Request unsuccessful: {:#?}", resp) })) }, Err(error) => { - println!("Error during request: {:?}", error); - Err(Box::new(GetRealIpError)) + //println!("Error during request: {:?}", error); + Err(Box::new(Error { message: format!("Error during request: {:?}", error) })) } } } -fn get_current_record_ip() { +fn request_livedns_gandi(api_key: &str, url_fragment: &str) -> Result { + let url = format!("https://api.gandi.net/v5/livedns/{}", url_fragment); + let client = reqwest::blocking::Client::new(); + + match client.get(&url).header("Authorization", format!("Apikey {}", api_key)).send() { + Ok(resp) => + if resp.status().is_success() { + let content = resp.text().unwrap(); + Ok(serde_json::from_str(&content).unwrap()) + } else { + Err(Box::new(Error { message: format!("Request unsuccessful: {:#?}", resp) })) + }, + Err(error) => + Err(Box::new(Error { message: format!("Error during request: {:?}", error) })) + } +} + +fn get_current_record_ip(api_key: &str) -> Result { + + request_livedns_gandi(api_key, "domains/euphorik.ch/records/home/A")?; // TODO... + // .map() + //.map(|json_value| json_value["rrset_values"][0].as_str().unwrap()) + + Result::Err(Box::new(Error { message: String::new() })) + + + //let url = "https://api.gandi.net/v5/livedns/domains/euphorik.ch/records"; + //let url = "https://api.gandi.net/v5/livedns/domains"; // ?sharing_id=" + //let url = "https://api.gandi.net/v5/organization/organizations"; + //let url = "https://api.gandi.net/v5/livedns/domains/euphorik.ch/records/home/A"; + + /* + let client = reqwest::blocking::Client::new(); + + match client.get(url).header("Authorization", format!("Apikey {}", api_key)).send() { + Ok(resp) => + if resp.status().is_success() { + let content = resp.text().unwrap(); + + let json: Value = serde_json::from_str(&content).unwrap(); + let prout = json["rrset_values"][0].as_str().unwrap(); + println!("IP: {}", prout); + println!("Content:\n{}", serde_json::to_string_pretty(&json).unwrap()); + } else { + println!("Request unsuccessful:\n{:#?}", resp); + }, + Err(error) => + println!("Error during request: {:?}", error) + } + */ } fn update_record_ip() { - }