]> git.ipfire.org Git - ddns.git/commitdiff
add ddns Provider key-systems.net
authorChristof Weniger <christofweniger@gmx.at>
Tue, 7 Jan 2020 16:35:37 +0000 (17:35 +0100)
committerStefan Schantl <stefan.schantl@ipfire.org>
Thu, 23 Jan 2020 10:31:20 +0000 (11:31 +0100)
Hi,

sorry for the long delay. It's the time of the year,  where I think it might be easier to just move in with the childrens doctor instead of daily vists :-(

Michael thank you for your pointers and reviews.
Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
README
src/ddns/providers.py

diff --git a/README b/README
index c75c448f58ee96b856f495ab34fd1d2b5f1ac289..b6decb35c33878989bbc1ec4d14a4d3fdc57a905 100644 (file)
--- a/README
+++ b/README
@@ -72,6 +72,7 @@ SUPPORTED PROVIDERS:
        inwx.com|de|at|ch|es
        itsdns.de
        joker.com
+       key-systems.net
        loopia.se
        myonlineportal.net
        namecheap.com
index 7a1d97cf5195b2e7bd3dfec587134cab2f1c5d55..1263a80a3e4a70ea2ff55fff0666f1f1d992dd94 100644 (file)
@@ -1188,6 +1188,51 @@ class DDNSProviderJoker(DDNSProtocolDynDNS2, DDNSProvider):
                url = "https://svc.joker.com/nic/update"
 
 
+class DDNSProviderKEYSYSTEMS(DDNSProvider):
+       handle    = "key-systems.net"
+       name      = "dynamicdns.key-systems.net"
+       website   = "https://domaindiscount24.com/"
+       protocols = ("ipv4",)
+
+       # There are only information provided by the domaindiscount24 how to
+       # perform an update with HTTP APIs
+       # https://www.domaindiscount24.com/faq/dynamic-dns
+       # examples: https://dynamicdns.key-systems.net/update.php?hostname=hostname&password=password&ip=auto
+       #           https://dynamicdns.key-systems.net/update.php?hostname=hostname&password=password&ip=213.x.x.x&mx=213.x.x.x
+
+       url = "https://dynamicdns.key-systems.net/update.php"
+       can_remove_records = False
+
+       def update_protocol(self, proto):
+               address = self.get_address(proto)
+               data = {
+                       "hostname"      : self.hostname,
+                       "password"      : self.password,
+                       "ip"            : address,
+               }
+
+               # Send update to the server.
+               response = self.send_request(self.url, data=data)
+
+               # Get the full response message.
+               output = response.read().decode()
+
+               # Handle success messages.
+               if "code = 200" in output:
+                       return
+
+               # Handle error messages.
+               if "abuse prevention triggered" in output:
+                       raise DDNSAbuseError
+               elif "invalid password" in output:
+                       raise DDNSAuthenticationError
+               elif "Authorization failed" in output:
+                       raise DDNSRequestError(_("Invalid hostname specified"))
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+
 class DDNSProviderGoogle(DDNSProtocolDynDNS2, DDNSProvider):
         handle    = "domains.google.com"
         name      = "Google Domains"