]> git.ipfire.org Git - ddns.git/commitdiff
Merge remote-tracking branch 'stevee/dtdns.com'
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 13 Jun 2014 15:49:46 +0000 (15:49 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 13 Jun 2014 15:49:46 +0000 (15:49 +0000)
ddns.conf.sample
src/ddns/__init__.py
src/ddns/providers.py

index 095c72e99a0bc3b255185615f7c6eea22cdb9adc..9ac67e47419b695e1ba56244bff88d31e7c616ad 100644 (file)
 # username = user
 # password = pass
 
+# [test.dtdns.org]
+# provider = dtdns.org
+# password = pass
+
 # [test.no-ip.org]
 # provider = no-ip.com
 # username = user
index 8d6d16c44c764ec32877abc362fd11cea6d73f49..e728c3752bbdb88d559ae4b59f5ff123d92f46c5 100644 (file)
@@ -93,6 +93,7 @@ class DDNSCore(object):
                for provider in (
                        DDNSProviderDHS,
                        DDNSProviderDNSpark,
+                       DDNSProviderDtDNS,
                        DDNSProviderNOIP,
                        DDNSProviderLightningWireLabs,
                        DDNSProviderSelfhost,
index 8576c9bccae0838c991478c83b406d079adc56d3..2788c9722ae86aa1ac89d8aab32e72129e0a0209 100644 (file)
@@ -255,7 +255,63 @@ class DDNSProviderDNSpark(DDNSProvider):
                # If we got here, some other update error happened.
                raise DDNSUpdateError
 
-               
+
+class DDNSProviderDtDNS(DDNSProvider):
+       INFO = {
+               "handle"    : "dtdns.com",
+               "name"      : "DtDNS",
+               "website"   : "http://dtdns.com/",
+               "protocols" : ["ipv4",]
+               }
+
+       # Information about the format of the HTTPS request is to be found
+       # http://www.dtdns.com/dtsite/updatespec
+       url = "https://www.dtdns.com/api/autodns.cfm"
+
+
+       def update(self):
+               data = {
+                       "ip" : self.get_address("ipv4"),
+                       "id" : self.hostname,
+                       "pw" : self.password
+               }
+
+               # Send update to the server.
+               response = self.send_request(self.url, data=data)
+
+               # Get the full response message.
+               output = response.read()
+
+               # Remove all leading and trailing whitespace.
+               output = output.strip()
+
+               # Handle success messages.
+               if "now points to" in output:
+                       return
+
+               # Handle error codes.
+               if output == "No hostname to update was supplied.":
+                       raise DDNSRequestError(_("No hostname specified."))
+
+               elif output == "The hostname you supplied is not valid.":
+                       raise DDNSRequestError(_("Invalid hostname specified."))
+
+               elif output == "The password you supplied is not valid.":
+                       raise DDNSAuthenticationError
+
+               elif output == "Administration has disabled this account.":
+                       raise DDNSRequestError(_("Account has been disabled."))
+
+               elif output == "Illegal character in IP.":
+                       raise DDNSRequestError(_("Invalid IP address has been sent."))
+
+               elif output == "Too many failed requests.":
+                       raise DDNSRequestError(_("Too many failed requests."))
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+
 class DDNSProviderLightningWireLabs(DDNSProvider):
        INFO = {
                "handle"    : "dns.lightningwirelabs.com",