]> git.ipfire.org Git - oddments/ddns.git/blobdiff - src/ddns/providers.py
Add all-inkl.com as new provider.
[oddments/ddns.git] / src / ddns / providers.py
index 3422cd074cd45f501f7d72aa3ab776cd84df1f1e..f4944be255e808712ce239f5ccbe212567e6231d 100644 (file)
@@ -20,6 +20,7 @@
 ###############################################################################
 
 import logging
+import urllib2
 
 from i18n import _
 
@@ -167,6 +168,47 @@ class DDNSProvider(object):
                return self.core.system.get_address(proto)
 
 
+class DDNSProviderAllInkl(DDNSProvider):
+       INFO = {
+               "handle"    : "all-inkl.com",
+               "name"      : "All-inkl.com",
+               "website"   : "http://all-inkl.com/",
+               "protocols" : ["ipv4",]
+       }
+
+       # There are only information provided by the vendor how to
+       # perform an update on a FRITZ Box. Grab requried informations
+       # from the net.
+       # http://all-inkl.goetze.it/v01/ddns-mit-einfachen-mitteln/
+
+       url = "http://dyndns.kasserver.com"
+
+       def update(self):
+
+               # There is no additional data required so we directly can
+               # send our request.
+               try:
+                       # Send request to the server.
+                       response = self.send_request(self.url, username=self.username, password=self.password)
+
+                       # Handle 401 HTTP Header (Authentication Error)
+               except urllib2.HTTPError, e:
+                       if e.code == 401:
+                               raise DDNSAuthenticationError
+
+                       raise
+
+               # Get the full response message.
+               output = response.read()
+
+               # Handle success messages.
+               if output.startswith("good") or output.startswith("nochg"):
+                       return
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+
 class DDNSProviderDHS(DDNSProvider):
        INFO = {
                "handle"    : "dhs.org",
@@ -321,15 +363,20 @@ class DDNSProviderDynDNS(DDNSProvider):
        # http://dyn.com/support/developers/api/return-codes/
        url = "https://members.dyndns.org/nic/update"
 
-       def update(self):
+       def _prepare_request_data(self):
                data = {
                        "hostname" : self.hostname,
                        "myip"     : self.get_address("ipv4"),
                }
 
+               return data
+
+       def update(self):
+               data = self._prepare_request_data()
+
                # Send update to the server.
-               response = self.send_request(self.url, username=self.username, password=self.password,
-                       data=data)
+               response = self.send_request(self.url, data=data,
+                       username=self.username, password=self.password)
 
                # Get the full response message.
                output = response.read()
@@ -356,6 +403,47 @@ class DDNSProviderDynDNS(DDNSProvider):
                raise DDNSUpdateError
 
 
+class DDNSProviderDynU(DDNSProviderDynDNS):
+       INFO = {
+               "handle"    : "dynu.com",
+               "name"      : "Dynu",
+               "website"   : "http://dynu.com/",
+               "protocols" : ["ipv6", "ipv4",]
+       }
+
+
+       # Detailed information about the request and response codes
+       # are available on the providers webpage.
+       # http://dynu.com/Default.aspx?page=dnsapi
+
+       url = "https://api.dynu.com/nic/update"
+
+       def _prepare_request_data(self):
+               data = DDNSProviderDynDNS._prepare_request_data(self)
+
+               # This one supports IPv6
+               data.update({
+                       "myipv6"   : self.get_address("ipv6"),
+               })
+
+               return data
+
+
+class DDNSProviderEasyDNS(DDNSProviderDynDNS):
+       INFO = {
+               "handle"    : "easydns.com",
+               "name"      : "EasyDNS",
+               "website"   : "http://www.easydns.com/",
+               "protocols" : ["ipv4",]
+       }
+
+       # There is only some basic documentation provided by the vendor,
+       # also searching the web gain very poor results.
+       # http://mediawiki.easydns.com/index.php/Dynamic_DNS
+
+       url = "http://api.cp.easydns.com/dyn/tomato.php"
+
+
 class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
        INFO = {
                "handle"    : "freedns.afraid.org",
@@ -458,7 +546,7 @@ class DDNSProviderLightningWireLabs(DDNSProvider):
                raise DDNSUpdateError
 
 
-class DDNSProviderNOIP(DDNSProvider):
+class DDNSProviderNOIP(DDNSProviderDynDNS):
        INFO = {
                "handle"    : "no-ip.com",
                "name"      : "No-IP",
@@ -470,35 +558,110 @@ class DDNSProviderNOIP(DDNSProvider):
        # here: http://www.no-ip.com/integrate/request and
        # here: http://www.no-ip.com/integrate/response
 
-       url = "http://%(username)s:%(password)s@dynupdate.no-ip.com/nic/update"
-
-       def update(self):
-               url = self.url % {
-                       "username" : self.username,
-                       "password" : self.password,
-               }
+       url = "http://dynupdate.no-ip.com/nic/update"
 
+       def _prepare_request_data(self):
                data = {
                        "hostname" : self.hostname,
                        "address"  : self.get_address("ipv4"),
                }
 
-               # Send update to the server.
-               response = self.send_request(url, data=data)
+               return data
+
+
+class DDNSProviderOVH(DDNSProviderDynDNS):
+       INFO = {
+               "handle"    : "ovh.com",
+               "name"      : "OVH",
+               "website"   : "http://www.ovh.com/",
+               "protocols" : ["ipv4",]
+       }
+
+       # OVH only provides very limited information about how to
+       # update a DynDNS host. They only provide the update url
+       # on the their german subpage.
+       #
+       # http://hilfe.ovh.de/DomainDynHost
+
+       url = "https://www.ovh.com/nic/update"
+
+       def _prepare_request_data(self):
+               data = DDNSProviderDynDNS._prepare_request_data(self)
+               data.update({
+                       "system" : "dyndns",
+               })
+
+               return data
+
+
+class DDNSProviderRegfish(DDNSProvider):
+       INFO = {
+               "handle"    : "regfish.com",
+               "name"      : "Regfish GmbH",
+               "website"   : "http://www.regfish.com/",
+               "protocols" : ["ipv6", "ipv4",]
+       }
+
+       # A full documentation to the providers api can be found here
+       # but is only available in german.
+       # https://www.regfish.de/domains/dyndns/dokumentation
+
+       url = "https://dyndns.regfish.de/"
+
+       def update(self):
+               data = {
+                       "fqdn" : self.hostname,
+               }
+
+               # Check if we update an IPv6 address.
+               address6 = self.get_address("ipv6")
+               if address6:
+                       data["ipv6"] = address6
+
+               # Check if we update an IPv4 address.
+               address4 = self.get_address("ipv4")
+               if address4:
+                       data["ipv4"] = address4
+
+               # Raise an error if none address is given.
+               if not data.has_key("ipv6") and not data.has_key("ipv4"):
+                       raise DDNSConfigurationError
+
+               # Check if a token has been set.
+               if self.token:
+                       data["token"] = self.token
+
+               # Raise an error if no token and no useranem and password
+               # are given.
+               elif not self.username and not self.password:
+                       raise DDNSConfigurationError(_("No Auth details specified."))
+
+               # HTTP Basic Auth is only allowed if no token is used.
+               if self.token:
+                       # Send update to the server.
+                       response = self.send_request(self.url, data=data)
+               else:
+                       # 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"):
+               if "100" in output or "101" in output:
                        return
 
                # Handle error codes.
-               if output == "badauth":
+               if "401" or "402" in output:
                        raise DDNSAuthenticationError
-               elif output == "aduse":
-                       raise DDNSAbuseError
-               elif output == "911":
+               elif "408" in output:
+                       raise DDNSRequestError(_("Invalid IPv4 address has been sent."))
+               elif "409" in output:
+                       raise DDNSRequestError(_("Invalid IPv6 address has been sent."))
+               elif "412" in output:
+                       raise DDNSRequestError(_("No valid FQDN was given."))
+               elif "414" in output:
                        raise DDNSInternalServerError
 
                # If we got here, some other update error happened.
@@ -545,3 +708,29 @@ class DDNSProviderSPDNS(DDNSProviderDynDNS):
        # 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)
+               }
+
+               return data