public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Christof Weniger <ChristofWeniger@gmx.at>
To: development@lists.ipfire.org
Subject: DDNS: add new Provider key-sytems.net (domaindiscount24)
Date: Thu, 28 Nov 2019 11:45:08 +0100	[thread overview]
Message-ID: <81dc1ed3-1179-42c6-784a-15f64a79508c@gmx.at> (raw)

[-- Attachment #1: Type: text/plain, Size: 416 bytes --]

Hi,

I hope this is the correct way to submit this patch.

https://www.domaindiscount24.com/ has its own ddns service runnning,
which (for me) gets rid of the necessity of having to use an extra
service for that.

I tested the following patch on my system at home, and attached it to
this mail.

I started my quest at the community forum:
https://community.ipfire.org/t/adding-new-ddns-provider/428/2

Christof






[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: add_key_systems_ddns.patch --]
[-- Type: text/x-patch, Size: 2017 bytes --]

diff --git a/README b/README
index c75c448..b6decb3 100644
--- a/README
+++ b/README
@@ -72,6 +72,7 @@ SUPPORTED PROVIDERS:
 	inwx.com|de|at|ch|es
 	itsdns.de
 	joker.com
+	key-systems.net
 	loopia.se
 	myonlineportal.net
 	namecheap.com
diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 661fbcc..ccbf5e5 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -1204,6 +1204,40 @@ class DDNSProviderJoker(DDNSProtocolDynDNS2, DDNSProvider):
 		url = "https://svc.joker.com/nic/update"


+class DDNSProviderKEYSYSTEMS(DDNSProvider):
+        handle    = "dynamicdns.key-systems.net"
+        name      = "dynamicdns.key-systems.net"
+        website   = "https://domaindiscount24.com/"
+        protocols = ("ipv4",)
+
+        # There are only information provided by the domaindiscount24 how to
+        # perform an update with HTTP APIs
+        # https://www.domaindiscount24.com/faq/dynamic-dns
+        # examples: https://dynamicdns.key-systems.net/update.php?hostname=hostname&password=password&ip=auto
+        #           https://dynamicdns.key-systems.net/update.php?hostname=hostname&password=password&ip=213.x.x.x&mx=213.x.x.x
+
+        url = "https://dynamicdns.key-systems.net/update.php"
+        can_remove_records = False
+
+        def update_protocol(self, proto):
+                data = {
+                        "hostname"      : self.hostname,
+                        "password"      : self.password,
+                        "ip"            : "auto",
+                }
+
+                # Send update to the server.
+                response = self.send_request(self.url, data=data)
+
+                # Handle success messages.
+                if response.code == 200:
+                        return
+
+                # If we got here, some other update error happened.
+                raise DDNSUpdateError
+
+
+
 class DDNSProviderGoogle(DDNSProtocolDynDNS2, DDNSProvider):
         handle    = "domains.google.com"
         name      = "Google Domains"


             reply	other threads:[~2019-11-28 10:45 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-28 10:45 Christof Weniger [this message]
2019-11-28 11:20 ` Michael Tremer
     [not found] <23d7d16f-1098-13d0-152a-651c4ff6d50a@gmx.at>
2019-11-28 13:35 ` Michael Tremer
     [not found] <97e435c3-36ba-0468-34a4-68081f4c4520@gmx.at>
2019-11-28 15:17 ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=81dc1ed3-1179-42c6-784a-15f64a79508c@gmx.at \
    --to=christofweniger@gmx.at \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox