]> git.ipfire.org Git - oddments/ddns.git/commitdiff
Add nsupdate.info as new provider.
authorStefan Schantl <stefan.schantl@ipfire.org>
Wed, 9 Jul 2014 18:56:11 +0000 (20:56 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Wed, 9 Jul 2014 18:56:11 +0000 (20:56 +0200)
README
ddns.conf.sample
src/ddns/providers.py

diff --git a/README b/README
index 48c3549a5a46f71bba76c88bc558e4b0111955e1..c071b791f69708aa61b75263f8e09be4c3d2e1f8 100644 (file)
--- a/README
+++ b/README
@@ -59,6 +59,7 @@ SUPPORTED PROVIDERS:
        freedns.afraid.org
        namecheap.com
        no-ip.com
+       nsupdate.info
        ovh.com
        regfish.com
        selfhost.de
index 3dd54c9f5ced184405d639badb6ace40b50c3aa6..ecd4eae21331f18be4cca21a9c19af6212ff3d3b 100644 (file)
 # username = user
 # password = pass
 
+# [test.nsupdate.info]
+# provider = nsupdate.info
+# secret = secret
+# proto = ipv4 OR ipv6
+
 # [test.ovh.com]
 # provider = ovh.com
 # username = user
index bc16c4c849913dfb75b4f709fe6c1b2540ba3d0e..0c735fc6a41c18fe49f487a0e394c87f31c277b1 100644 (file)
@@ -675,6 +675,48 @@ class DDNSProviderNOIP(DDNSProtocolDynDNS2, DDNSProvider):
                return data
 
 
+class DDNSProviderNsupdateINFO(DDNSProtocolDynDNS2, DDNSProvider):
+       handle    = "nsupdate.info"
+       name      = "nsupdate.info"
+       website   = "http://www.nsupdate.info/"
+       protocols = ("ipv6", "ipv4",)
+
+       # Information about the format of the HTTP request can be found
+       # after login on the provider user intrface and here:
+       # http://nsupdateinfo.readthedocs.org/en/latest/user.html
+
+       # Nsupdate.info uses the hostname as user part for the HTTP basic auth,
+       # and for the password a so called secret.
+       @property
+       def username(self):
+               return self.get("hostname")
+
+       @property
+       def password(self):
+               return self.get("secret")
+
+       @property
+       def proto(self):
+               return self.get("proto")
+
+       @property
+       def url(self):
+               # The update URL is different by the used protocol.
+               if self.proto == "ipv4":
+                       return "https://ipv4.nsupdate.info/nic/update"
+               elif self.proto == "ipv6":
+                       return "https://ipv6.nsupdate.info/nic/update"
+               else:
+                       raise DDNSUpdateError(_("Invalid protocol has been given"))
+
+       def _prepare_request_data(self):
+               data = {
+                       "myip" : self.get_address(self.proto),
+               }
+
+               return data
+
+
 class DDNSProviderOVH(DDNSProtocolDynDNS2, DDNSProvider):
        handle    = "ovh.com"
        name      = "OVH"