]> git.ipfire.org Git - oddments/ddns.git/blobdiff - src/ddns/providers.py
Merge remote-tracking branch 'stevee/variomedia.de'
[oddments/ddns.git] / src / ddns / providers.py
index cbbeeea2c74f9f8ce1783a14f0b989f4e62ab900..c831b440256ca4c6189abcc341c7d2d34e83c49a 100644 (file)
@@ -180,11 +180,6 @@ class DDNSProviderDHS(DDNSProvider):
        url = "http://members.dhs.org/nic/hosts"
 
        def update(self):
-               url = self.url % {
-                       "username" : self.username,
-                       "password" : self.password,
-               }
-
                data = {
                        "domain"       : self.hostname,
                        "ip"           : self.get_address("ipv4"),
@@ -194,7 +189,7 @@ class DDNSProviderDHS(DDNSProvider):
                }
 
                # Send update to the server.
-               response = self.send_request(url, username=self.username, password=self.password,
+               response = self.send_request(self.url, username=self.username, password=self.password,
                        data=data)
 
                # Handle success messages.
@@ -222,18 +217,13 @@ class DDNSProviderDNSpark(DDNSProvider):
        url = "https://control.dnspark.com/api/dynamic/update.php"
 
        def update(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,
+               response = self.send_request(self.url, username=self.username, password=self.password,
                        data=data)
 
                # Get the full response message.
@@ -275,7 +265,6 @@ class DDNSProviderDtDNS(DDNSProvider):
        # http://www.dtdns.com/dtsite/updatespec
        url = "https://www.dtdns.com/api/autodns.cfm"
 
-
        def update(self):
                data = {
                        "ip" : self.get_address("ipv4"),
@@ -319,6 +308,54 @@ class DDNSProviderDtDNS(DDNSProvider):
                raise DDNSUpdateError
 
 
+class DDNSProviderDynDNS(DDNSProvider):
+       INFO = {
+               "handle"    : "dyndns.org",
+               "name"      : "Dyn",
+               "website"   : "http://dyn.com/dns/",
+               "protocols" : ["ipv4",]
+       }
+
+       # Information about the format of the request is to be found
+       # http://http://dyn.com/support/developers/api/perform-update/
+       # http://dyn.com/support/developers/api/return-codes/
+       url = "https://members.dyndns.org/nic/update"
+
+       def update(self):
+               data = {
+                       "hostname" : self.hostname,
+                       "myip"     : self.get_address("ipv4"),
+               }
+
+               # Send update to the server.
+               response = self.send_request(self.url, username=self.username, password=self.password,
+                       data=data)
+
+               # Get the full response message.
+               output = response.read()
+
+               # Handle success messages.
+               if output.startswith("good") or output.startswith("nochg"):
+                       return
+
+               # Handle error codes.
+               if output == "badauth":
+                       raise DDNSAuthenticationError
+               elif output == "aduse":
+                       raise DDNSAbuseError
+               elif output == "notfqdn":
+                       raise DDNSRequestError(_("No valid FQDN was given."))
+               elif output == "nohost":
+                       raise DDNSRequestError(_("Specified host does not exist."))
+               elif output == "911":
+                       raise DDNSInternalServerError
+               elif output == "dnserr":
+                       raise DDNSInternalServerError(_("DNS error encountered."))
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+
 class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
        INFO = {
                "handle"    : "freedns.afraid.org",
@@ -348,10 +385,6 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
                # Send update to the server.
                response = self.send_request(url, data=data)
 
-               # Get the full response message.
-               output = response.read()
-
-               # Handle success messages.
                if output.startswith("Updated") or "has not changed" in output:
                        return
 
@@ -361,9 +394,6 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
                elif "is an invalid IP address" in output:
                        raise DDNSRequestError(_("Invalid IP address has been sent."))
 
-               # If we got here, some other update error happened.
-               raise DDNSUpdateError
-
 
 class DDNSProviderLightningWireLabs(DDNSProvider):
        INFO = {
@@ -497,3 +527,45 @@ class DDNSProviderSelfhost(DDNSProvider):
                match = re.search("status=20(0|4)", response.read())
                if not match:
                        raise DDNSUpdateError
+
+
+class DDNSProviderSPDNS(DDNSProviderDynDNS):
+       INFO = {
+               "handle"    : "spdns.org",
+               "name"      : "SPDNS",
+               "website"   : "http://spdns.org/",
+               "protocols" : ["ipv4",]
+       }
+
+       # Detailed information about request and response codes are provided
+       # by the vendor. They are using almost the same mechanism and status
+       # codes as dyndns.org so we can inherit all those stuff.
+       #
+       # http://wiki.securepoint.de/index.php/SPDNS_FAQ
+       # http://wiki.securepoint.de/index.php/SPDNS_Update-Tokens
+
+       url = "https://update.spdns.de/nic/update"
+
+
+class DDNSProviderVariomedia(DDNSProviderDynDNS):
+       INFO = {
+               "handle"   : "variomedia.de",
+               "name"     : "Variomedia",
+               "website"  : "http://www.variomedia.de/",
+               "protocols" : ["ipv6", "ipv4",]
+       }
+
+       # Detailed information about the request can be found here
+       # https://dyndns.variomedia.de/
+
+       url = "https://dyndns.variomedia.de/nic/update"
+
+       @property
+       def proto(self):
+               return self.get("proto")
+
+       def _prepare_request_data(self):
+               data = {
+                       "hostname" : self.hostname,
+                       "myip"     : self.get_address(self.proto)
+               }