X-Git-Url: http://git.ipfire.org/?p=oddments%2Fddns.git;a=blobdiff_plain;f=src%2Fddns%2Fproviders.py;h=b7ddee42dfe2824db368c721058f916d93f21996;hp=124cf2f8280e7618759725d733b0d3573492025a;hb=5f402f36f5e53f80dd6430c2c9778c523a4d2b86;hpb=dc11f1ea84d1f1200ea2442cb3010254841ca115 diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 124cf2f..b7ddee4 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -105,6 +105,9 @@ class DDNSProvider(object): return self.get("password") def __call__(self): + self.update() + + def update(self): raise NotImplementedError def send_request(self, *args, **kwargs): @@ -121,6 +124,172 @@ class DDNSProvider(object): return self.core.system.get_address(proto) +class DDNSProviderDHS(DDNSProvider): + INFO = { + "handle" : "dhs.org", + "name" : "DHS International", + "website" : "http://dhs.org/", + "protocols" : ["ipv4",] + } + + # No information about the used update api provided on webpage, + # grabed from source code of ez-ipudate. + 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"), + "hostcmd" : "edit", + "hostcmdstage" : "2", + "type" : "4", + } + + # Send update to the server. + response = self.send_request(url, username=self.username, password=self.password, + data=data) + + # Handle success messages. + if response.code == 200: + return + + # Handle error codes. + elif response.code == "401": + raise DDNSAuthenticationError + + # If we got here, some other update error happened. + 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 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, + 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", + "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 update(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", @@ -135,7 +304,7 @@ class DDNSProviderNOIP(DDNSProvider): url = "http://%(username)s:%(password)s@dynupdate.no-ip.com/nic/update" - def __call__(self): + def update(self): url = self.url % { "username" : self.username, "password" : self.password, @@ -178,7 +347,7 @@ class DDNSProviderSelfhost(DDNSProvider): url = "https://carol.selfhost.de/update" - def __call__(self): + def update(self): data = { "username" : self.username, "password" : self.password,