From: Stefan Schantl Date: Sun, 8 Jun 2014 16:03:46 +0000 (+0200) Subject: Add support for the Lightning Wire Labs DNS Service. X-Git-Tag: 001~77^2 X-Git-Url: http://git.ipfire.org/?p=ddns.git;a=commitdiff_plain;h=a08c1b72be35cb10b0f705c06cc5fcd706436301 Add support for the Lightning Wire Labs DNS Service. --- diff --git a/ddns.conf b/ddns.conf index a40f567..b54f8ef 100644 --- a/ddns.conf +++ b/ddns.conf @@ -24,3 +24,11 @@ # provider = selfhost.de # username = user # password = pass + +# [test.lightningwirelabs.com] +# provider = dns.lightningwirelabs.com + +# Only use one of these two auth options. +# token = token +# username = user +# password = pass diff --git a/ddns/__init__.py b/ddns/__init__.py index ee91a60..e146720 100644 --- a/ddns/__init__.py +++ b/ddns/__init__.py @@ -87,6 +87,7 @@ class DDNSCore(object): """ for provider in ( DDNSProviderNOIP, + DDNSProviderLightningwirelabs, DDNSProviderSelfhost, ): self.register_provider(provider) diff --git a/ddns/providers.py b/ddns/providers.py index f764001..3f91dd9 100644 --- a/ddns/providers.py +++ b/ddns/providers.py @@ -121,6 +121,76 @@ class DDNSProvider(object): return self.core.system.get_address(proto) +class DDNSProviderLightningWireLabs(DDNSProvider): + INFO = { + "handle" : "dns.lightningwirelabs.com", + "name" : "Lightning Wire Labs", + "website" : "http://dns.lightningwirelabs.com/", + "protocols" : ["ipv6", "ipv4",] + } + + # Information about the format of the HTTPS request is to be found + # https://dns.lightningwirelabs.com/knowledge-base/api/ddns + url = "https://dns.lightningwirelabs.com/update" + + @property + def token(self): + """ + Fast access to the token. + """ + return self.get("token") + + def __call__(self): + data = { + "hostname" : self.hostname, + } + + # Check if we update an IPv6 address. + address6 = self.get_address("ipv6") + if address6: + data["address6"] = address6 + + # Check if we update an IPv4 address. + address4 = self.get_address("ipv4") + if address4: + data["address4"] = address4 + + # Raise an error if none address is given. + if not data.has_key("address6") and not data.has_key("address4"): + raise DDNSConfigurationError + + # Check if a token has been set. + if self.token: + data["token"] = self.token + + # Check for username and password. + elif self.username and self.password: + data.update({ + "username" : self.username, + "password" : self.password, + }) + + # Raise an error if no auth details are given. + else: + raise DDNSConfigurationError + + # Send update to the server. + response = self.send_request(url, data=data) + + # Handle success messages. + if response.code == 200: + return + + # Handle error codes. + if response.code == "403": + raise DDNSAuthenticationError + elif response.code == "400": + raise DDNSRequestError + + # If we got here, some other update error happened. + raise DDNSUpdateError + + class DDNSProviderNOIP(DDNSProvider): INFO = { "handle" : "no-ip.com",