From 5664b661c4924037ce3c049b729df1815c6e1e47 Mon Sep 17 00:00:00 2001 From: Tsanie Lily Date: Fri, 28 Jan 2022 08:58:13 +0800 Subject: [PATCH] update variable --- DynamicDnsService/DDnsService.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/DynamicDnsService/DDnsService.cs b/DynamicDnsService/DDnsService.cs index 8b7483f..8caee69 100644 --- a/DynamicDnsService/DDnsService.cs +++ b/DynamicDnsService/DDnsService.cs @@ -10,6 +10,8 @@ public class DDnsService private readonly HttpClient _httpClient; private const string API_BASE = "https://api.cloudflare.com/client/v4"; + private const string ZONE = "example.com"; + private const string DNS_RECORD = "test.example.com"; public DDnsService(HttpClient client) => _httpClient = client; @@ -34,14 +36,14 @@ public class DDnsService return new[] { new ErrorInfo(-1, "Cannot get the IPv6 address.") }; } - Result? zone = await _httpClient.GetFromJsonAsync($"{API_BASE}/zones?name=tsanie.org"); + Result? zone = await _httpClient.GetFromJsonAsync($"{API_BASE}/zones?name={ZONE}"); if (zone == null || !zone.success) { return zone?.errors; } var zoneId = zone.result[0].id; - Result? record = await _httpClient.GetFromJsonAsync($"{API_BASE}/zones/{zoneId}/dns_records?name=home.tsanie.org&type=AAAA"); + Result? record = await _httpClient.GetFromJsonAsync($"{API_BASE}/zones/{zoneId}/dns_records?name={DNS_RECORD}&type=AAAA"); if (record == null || !record.success) { return zone?.errors; @@ -51,7 +53,7 @@ public class DDnsService if (ip != ipv6) { - var post = "{\"type\":\"AAAA\",\"name\":\"home.tsanie.org\",\"content\":\"" + ip + "\",\"ttl\":1,\"proxied\":false}"; + var post = "{\"type\":\"AAAA\",\"name\":\"" + DNS_RECORD + "\",\"content\":\"" + ip + "\",\"ttl\":1,\"proxied\":false}"; var response = await _httpClient.PutAsync($"{API_BASE}/zones/{zoneId}/dns_records/{recordId}", new StringContent(post, Encoding.UTF8, "application/json")); if (response == null || !response.IsSuccessStatusCode) { @@ -64,7 +66,9 @@ public class DDnsService } #pragma warning disable IDE1006 // Naming Styles + public record ContentInfo(string id, string content); public record ErrorInfo(int code, string message, ErrorInfo[]? error_chain = null); public record Result(ContentInfo[] result, bool success, ErrorInfo[] errors); + #pragma warning restore IDE1006 // Naming Styles