]> git.ipfire.org Git - ddns.git/commitdiff
Add DNS Park as new provider.
authorStefan Schantl <stefan.schantl@ipfire.org>
Tue, 10 Jun 2014 15:10:20 +0000 (17:10 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Tue, 10 Jun 2014 20:39:09 +0000 (22:39 +0200)
ddns.conf
src/ddns/__init__.py
src/ddns/providers.py

index 83ac1dcd35e92da519d5a4e9b09a4ddb35d6dc4e..095c72e99a0bc3b255185615f7c6eea22cdb9adc 100644 (file)
--- a/ddns.conf
+++ b/ddns.conf
 # username = user
 # password = pass
 
+# [test.dnspark.com]
+# provider = dnspark.com
+# username = user
+# password = pass
+
 # [test.no-ip.org]
 # provider = no-ip.com
 # username = user
index 74989f3f7fb2e1f1dabd75fa21382da5d56a5b04..673ba27684d38da4dd62ba6d608f2aab3be866b7 100644 (file)
@@ -87,6 +87,7 @@ class DDNSCore(object):
                """
                for provider in (
                        DDNSProviderDHS,
+                       DDNSProviderDNSpark,
                        DDNSProviderNOIP,
                        DDNSProviderLightningWireLabs,
                        DDNSProviderSelfhost,
index 9ffd67d302597562024ec689bfc600ada7f34d29..5ff0631daeba8fcae6bf9a681b74fc1ab851ac7d 100644 (file)
@@ -163,6 +163,60 @@ class DDNSProviderDHS(DDNSProvider):
                raise DDNSUpdateError
 
 
+class DDNSProviderDNSpark(DDNSProvider):
+       INFO = {
+               "handle"    : "dnspark.com",
+               "name"      : "DNS Park",
+               "website"   : "http://dnspark.com/",
+               "protocols" : ["ipv4",]
+       }
+
+       # Informations to the used api can be found here:
+       # https://dnspark.zendesk.com/entries/31229348-Dynamic-DNS-API-Documentation
+       url = "https://control.dnspark.com/api/dynamic/update.php"
+
+       def __call__(self):
+               url = self.url % {
+                       "username" : self.username,
+                       "password" : self.password,
+               }
+
+               data = {
+                       "domain" : self.hostname,
+                       "ip"     : self.get_address("ipv4"),
+               }
+
+               # Send update to the server.
+               response = self.send_request(url, username=self.username, password=self.password,
+                       data=data)
+
+               # Get the full response message.
+               output = response.read()
+
+               # Handle success messages.
+               if output.startswith("ok") or output.startswith("nochange"):
+                       return
+
+               # Handle error codes.
+               if output == "unauth":
+                       raise DDNSAuthenticationError
+               elif output == "abuse":
+                       raise DDNSAbuseError
+               elif output == "blocked":
+                       raise DDNSBlockedError
+               elif output == "nofqdn":
+                       raise DDNSRequestError(_("No valid FQDN was given."))
+               elif output == "nohost":
+                       raise DDNSRequestError(_("Invalid hostname specified."))
+               elif output == "notdyn":
+                       raise DDNSRequestError(_("Hostname not marked as a dynamic host."))
+               elif output == "invalid":
+                       raise DDNSRequestError(_("Invalid IP address has been sent."))
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+               
 class DDNSProviderLightningWireLabs(DDNSProvider):
        INFO = {
                "handle"    : "dns.lightningwirelabs.com",