]> git.ipfire.org Git - ddns.git/commitdiff
Merge remote-tracking branch 'stevee/namecheap.com'
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 21 Jun 2014 15:56:48 +0000 (15:56 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 21 Jun 2014 15:56:48 +0000 (15:56 +0000)
Conflicts:
src/ddns/providers.py

ddns.conf.sample
src/ddns/__init__.py
src/ddns/providers.py

index 895b537e8692558f63202625bba5fc7a5fe6314d..3e73842058acf7910845c04b9096c691e19766b9 100644 (file)
 # token = token
 # proto = ipv4 OR ipv6
 
+# [test.namecheap.com]
+# provider = namecheap.com
+# password = pass
+
 # [test.no-ip.org]
 # provider = no-ip.com
 # username = user
index 5ed463651e01a56519786ea1be558246083efb0e..a764c2ce4804bb9b29c20fb436c79fe02526f51a 100644 (file)
@@ -99,6 +99,7 @@ class DDNSCore(object):
                        DDNSProviderDynU,
                        DDNSProviderEasyDNS,
                        DDNSProviderFreeDNSAfraidOrg,
+                       DDNSProviderNamecheap,
                        DDNSProviderNOIP,
                        DDNSProviderLightningWireLabs,
                        DDNSProviderOVH,
index f4944be255e808712ce239f5ccbe212567e6231d..acd0253170cacef460799ba39289c7c0bbeb9a41 100644 (file)
@@ -21,6 +21,7 @@
 
 import logging
 import urllib2
+import xml.dom.minidom
 
 from i18n import _
 
@@ -546,6 +547,77 @@ class DDNSProviderLightningWireLabs(DDNSProvider):
                raise DDNSUpdateError
 
 
+class DDNSProviderNamecheap(DDNSProvider):
+       INFO = {
+               "handle"    : "namecheap.com",
+               "name"      : "Namecheap",
+               "website"   : "http://namecheap.com",
+               "protocols" : ["ipv4",]
+       }
+
+       # Information about the format of the HTTP request is to be found
+       # https://www.namecheap.com/support/knowledgebase/article.aspx/9249/0/nc-dynamic-dns-to-dyndns-adapter
+       # https://community.namecheap.com/forums/viewtopic.php?f=6&t=6772
+
+       url = "https://dynamicdns.park-your-domain.com/update"
+
+       def parse_xml(self, document, content):
+               # Send input to the parser.
+               xmldoc = xml.dom.minidom.parseString(document)
+
+               # Get XML elements by the given content.
+               element = xmldoc.getElementsByTagName(content)
+
+               # If no element has been found, we directly can return None.
+               if not element:
+                       return None
+
+               # Only get the first child from an element, even there are more than one.
+               firstchild = element[0].firstChild
+
+               # Get the value of the child.
+               value = firstchild.nodeValue
+
+               # Return the value.
+               return value
+               
+       def update(self):
+               # Namecheap requires the hostname splitted into a host and domain part.
+               host, domain = self.hostname.split(".", 1)
+
+               data = {
+                       "ip"       : self.get_address("ipv4"),
+                       "password" : self.password,
+                       "host"     : host,
+                       "domain"   : domain
+               }
+
+               # Send update to the server.
+               response = self.send_request(self.url, data=data)
+
+               # Get the full response message.
+               output = response.read()
+
+               # Handle success messages.
+               if self.parse_xml(output, "IP") == self.get_address("ipv4"):
+                       return
+
+               # Handle error codes.
+               errorcode = self.parse_xml(output, "ResponseNumber")
+
+               if errorcode == "304156":
+                       raise DDNSAuthenticationError
+               elif errorcode == "316153":
+                       raise DDNSRequestError(_("Domain not found."))
+               elif errorcode == "316154":
+                       raise DDNSRequestError(_("Domain not active."))
+               elif errorcode in ("380098", "380099"):
+                       raise DDNSInternalServerError
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+
 class DDNSProviderNOIP(DDNSProviderDynDNS):
        INFO = {
                "handle"    : "no-ip.com",