2023-02-26 00:10:39 +00:00
|
|
|
use reqwest::blocking::get;
|
2023-02-26 00:49:02 +00:00
|
|
|
use serde_derive::{Deserialize, Serialize};
|
2023-02-26 00:14:33 +00:00
|
|
|
use std::{fs, process::exit};
|
2023-02-26 00:10:39 +00:00
|
|
|
mod cloudflare;
|
|
|
|
|
2023-02-26 00:49:02 +00:00
|
|
|
fn default_key() -> String {
|
|
|
|
return "".to_string();
|
|
|
|
}
|
|
|
|
|
2023-02-26 00:10:39 +00:00
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
struct DnsEntry {
|
|
|
|
name: String,
|
|
|
|
type4: bool,
|
|
|
|
type6: bool,
|
2023-02-26 00:49:02 +00:00
|
|
|
interface: Option<String>,
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
struct DnsZone {
|
|
|
|
email: String,
|
|
|
|
name: String,
|
|
|
|
id: String,
|
2023-02-26 00:49:02 +00:00
|
|
|
dns_entries: Vec<DnsEntry>,
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
struct DnsConfig {
|
|
|
|
ipv6_interface: String,
|
2023-02-26 00:49:02 +00:00
|
|
|
#[serde(default = "default_key")]
|
2023-02-26 00:10:39 +00:00
|
|
|
api_key: String,
|
2023-02-26 00:49:02 +00:00
|
|
|
zones: Vec<DnsZone>,
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DnsConfig {
|
|
|
|
fn new() -> DnsConfig {
|
2023-02-26 00:49:02 +00:00
|
|
|
DnsConfig {
|
|
|
|
ipv6_interface: "".to_string(),
|
2023-02-26 00:10:39 +00:00
|
|
|
api_key: "".to_string(),
|
2023-02-26 00:49:02 +00:00
|
|
|
zones: Vec::new(),
|
|
|
|
}
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn load(&mut self) {
|
|
|
|
let file_contents = match fs::read_to_string("config.json") {
|
2023-02-26 00:49:02 +00:00
|
|
|
Ok(data) => data,
|
|
|
|
Err(e) => panic!("{:#?}", e),
|
2023-02-26 00:10:39 +00:00
|
|
|
};
|
2023-02-26 00:49:02 +00:00
|
|
|
let config_parse: DnsConfig = match serde_json::from_str(&file_contents) {
|
|
|
|
Ok(data) => data,
|
|
|
|
Err(e) => panic!("{:#?}", e),
|
2023-02-26 00:10:39 +00:00
|
|
|
};
|
2023-02-26 00:49:02 +00:00
|
|
|
|
|
|
|
let key_file_contents = match fs::read_to_string("api-key.json") {
|
|
|
|
Ok(data) => data,
|
|
|
|
Err(e) => panic!("{:#?}", e),
|
|
|
|
};
|
|
|
|
let api_key_parse: serde_json::Value = match serde_json::from_str(&key_file_contents) {
|
|
|
|
Ok(data) => data,
|
|
|
|
Err(e) => panic!("{:#?}", e),
|
|
|
|
};
|
|
|
|
|
2023-02-26 00:10:39 +00:00
|
|
|
*self = config_parse;
|
2023-02-26 00:49:02 +00:00
|
|
|
self.api_key = api_key_parse["api_key"].as_str().unwrap().to_owned();
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Ips {
|
|
|
|
ipv4: String,
|
2023-02-26 00:49:02 +00:00
|
|
|
ipv6base: String,
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Ips {
|
|
|
|
fn new() -> Ips {
|
2023-02-26 00:49:02 +00:00
|
|
|
Ips {
|
|
|
|
ipv4: "0.0.0.0".to_string(),
|
|
|
|
ipv6base: ":".to_string(),
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get(&mut self, ipv6_interface: &str) {
|
|
|
|
let ipv4uri = "https://am.i.mullvad.net/ip";
|
|
|
|
let ipv6uri = "https://ipv6.am.i.mullvad.net/ip";
|
|
|
|
|
|
|
|
let response = get(ipv4uri);
|
2023-02-26 00:49:02 +00:00
|
|
|
|
2023-02-26 00:10:39 +00:00
|
|
|
match response {
|
|
|
|
Ok(data) => self.ipv4 = data.text().expect("0.0.0.0").trim_end().to_owned(),
|
2023-02-26 00:14:33 +00:00
|
|
|
Err(e) => {
|
|
|
|
println!("Could not fetch IP4, quitting");
|
|
|
|
exit(75);
|
|
|
|
}
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let response = get(ipv6uri);
|
|
|
|
|
|
|
|
match response {
|
|
|
|
Ok(data) => {
|
|
|
|
let ipv6 = data.text().expect(":");
|
|
|
|
let stripped = match ipv6.strip_suffix(ipv6_interface) {
|
2023-02-26 00:49:02 +00:00
|
|
|
Some(string) => string.to_string(),
|
|
|
|
None => ":".to_string(),
|
2023-02-26 00:10:39 +00:00
|
|
|
};
|
|
|
|
self.ipv6base = stripped;
|
2023-02-26 00:49:02 +00:00
|
|
|
}
|
2023-02-26 00:14:33 +00:00
|
|
|
Err(e) => {
|
|
|
|
println!("Could not fetch IP6, quitting");
|
|
|
|
exit(75);
|
|
|
|
}
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut config = DnsConfig::new();
|
|
|
|
config.load();
|
|
|
|
|
2023-02-26 00:49:02 +00:00
|
|
|
/* while (true) {} */
|
|
|
|
|
2023-02-26 00:10:39 +00:00
|
|
|
let mut ips = Ips::new();
|
|
|
|
ips.get(&config.ipv6_interface);
|
|
|
|
|
|
|
|
let mut created4: u16 = 0;
|
|
|
|
let mut updated4: u16 = 0;
|
|
|
|
let mut unchanged4: u16 = 0;
|
|
|
|
let mut error4: u16 = 0;
|
|
|
|
|
|
|
|
let mut created6: u16 = 0;
|
|
|
|
let mut updated6: u16 = 0;
|
|
|
|
let mut unchanged6: u16 = 0;
|
|
|
|
let mut error6: u16 = 0;
|
|
|
|
|
|
|
|
for zone in config.zones {
|
|
|
|
let mut agent = cloudflare::Instance::new(&config.api_key);
|
|
|
|
|
|
|
|
agent.load_entries(&zone.email, &zone.id);
|
|
|
|
|
|
|
|
for entry in zone.dns_entries {
|
|
|
|
let mut found4 = false;
|
|
|
|
let mut found6 = false;
|
|
|
|
|
|
|
|
for cloudflare_entry in &agent.dns_entries {
|
|
|
|
if cloudflare_entry.is_equal(&entry.name) {
|
|
|
|
if cloudflare_entry.r#type == cloudflare::CloudflareDnsType::A && entry.type4 {
|
|
|
|
found4 = true;
|
|
|
|
if cloudflare_entry.is_ip_new(&ips.ipv4) {
|
|
|
|
let success = agent.update_entry(cloudflare_entry, &ips.ipv4);
|
2023-02-26 00:49:02 +00:00
|
|
|
if success {
|
|
|
|
updated4 += 1
|
|
|
|
} else {
|
|
|
|
error4 += 1
|
|
|
|
}
|
|
|
|
} else {
|
2023-02-26 00:10:39 +00:00
|
|
|
unchanged4 += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-26 00:49:02 +00:00
|
|
|
if cloudflare_entry.r#type == cloudflare::CloudflareDnsType::AAAA && entry.type6
|
|
|
|
{
|
2023-02-26 00:10:39 +00:00
|
|
|
found6 = true;
|
|
|
|
let ipv6 = ips.ipv6base.clone() + entry.interface.as_ref().unwrap();
|
|
|
|
|
|
|
|
if cloudflare_entry.is_ip_new(&ipv6) {
|
|
|
|
let success = agent.update_entry(cloudflare_entry, &ipv6);
|
2023-02-26 00:49:02 +00:00
|
|
|
if success {
|
|
|
|
updated6 += 1
|
|
|
|
} else {
|
|
|
|
error6 += 1
|
|
|
|
}
|
|
|
|
} else {
|
2023-02-26 00:10:39 +00:00
|
|
|
unchanged6 += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//println!("{:#?}", entry.subdomain); // DEBUG
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found4 && entry.type4 {
|
|
|
|
let success = agent.create_entry(&zone.id, "A", &entry.name, &ips.ipv4);
|
2023-02-26 00:49:02 +00:00
|
|
|
if success {
|
|
|
|
created4 += 1
|
|
|
|
};
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !found6 && entry.type6 {
|
|
|
|
let ipv6 = ips.ipv6base.clone() + entry.interface.as_ref().unwrap();
|
|
|
|
let success = agent.create_entry(&zone.id, "AAAA", &entry.name, &ipv6);
|
2023-02-26 00:49:02 +00:00
|
|
|
if success {
|
|
|
|
created6 += 1
|
|
|
|
};
|
2023-02-26 00:10:39 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-26 00:49:02 +00:00
|
|
|
|
2023-02-26 00:10:39 +00:00
|
|
|
//println!("{:#?}", zone.domain); // DEBUG
|
|
|
|
}
|
|
|
|
println!("++++A Records+++");
|
|
|
|
println!("{} created", created4);
|
|
|
|
println!("{} updated", updated4);
|
|
|
|
println!("{} unchanged", unchanged4);
|
|
|
|
println!("{} errors", error4);
|
|
|
|
println!("++AAAA Records++");
|
|
|
|
println!("{} created", created6);
|
|
|
|
println!("{} updated", updated6);
|
|
|
|
println!("{} unchanged", unchanged6);
|
|
|
|
println!("{} errors", error6);
|
|
|
|
}
|