]> git.ipfire.org Git - oddments/ddns.git/commitdiff
Add desec.io provider support
authorJonas Dittmann <jonas@desec.io>
Mon, 31 Aug 2015 16:11:17 +0000 (18:11 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Sat, 10 Oct 2015 18:21:06 +0000 (20:21 +0200)
Acked-By: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
src/ddns/providers.py

index 6ac556444553fbf0d6e8b23854fe228ad6c81fc5..3845193bcea08d75d2dcd0f61a07962ac05da5ae 100644 (file)
@@ -586,6 +586,33 @@ class DDNSProviderChangeIP(DDNSProvider):
                raise DDNSUpdateError(_("Server response: %s") % output)
 
 
+class DDNSProviderDesecIO(DDNSProtocolDynDNS2, DDNSProvider):
+       handle    = "desec.io"
+       name      = "desec.io"
+       website   = "https://www.desec.io"
+       protocols = ("ipv6", "ipv4",)
+
+       # ipv4 / ipv6 records are automatically removed when the update
+       # request originates from the respectively other protocol and no
+       # address is explicitly provided for the unused protocol.
+
+       url = "https://update.dedyn.io"
+
+       # desec.io sends the IPv6 and IPv4 address in one request
+
+       def update(self):
+               data = DDNSProtocolDynDNS2.prepare_request_data(self, "ipv4")
+
+               # This one supports IPv6
+               myipv6 = self.get_address("ipv6")
+
+               # Add update information if we have an IPv6 address.
+               if myipv6:
+                       data["myipv6"] = myipv6
+
+               self.send_request(data)
+
+
 class DDNSProviderDDNSS(DDNSProvider):
        handle    = "ddnss.de"
        name      = "DDNSS"