public inbox for ddns@lists.ipfire.org
 help / color / mirror / Atom feed
From: Kashif Iftikhar <kashif@compulife.com.pk>
To: ddns@lists.ipfire.org
Subject: [PATCH] Fixes freedns.afraid.org ddns provider
Date: Fri, 22 Jan 2021 17:59:04 +0500	[thread overview]
Message-ID: <CAHoP+V_80YMyvMrkfOtCf1e7W8c2WBOAUejOZ+ZvUSTg5f_afQ@mail.gmail.com> (raw)
In-Reply-To: <CAHoP+V9CfCQ3NCK5-Kfxn=OPYEz8ic-t4rC++pWS=erEXzgebA@mail.gmail.com>

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

------------------------BEGIN PATCH---------------------------
>From ed8e4a9e53cbd24e4a0450e3a8aa1c12359cbe2e Mon Sep 17 00:00:00 2001
From: Kashif Iftikhar <kashif(a)compulife.com.pk>
Date: Fri, 22 Jan 2021 17:33:01 +0500
Subject: [PATCH 1/1] fixes freedns.afraid.org provider.

The URL for syncing had changed and now does not require sending the ip
with the request.

Signed-off-by: Kashif Iftikhar <kashif(a)compulife.com.pk>
---
 src/ddns/providers.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 56e6620..6feef33 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -1186,26 +1186,26 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):

     # No information about the request or response could be found on the vendor
     # page. All used values have been collected by testing.
-    url = "https://freedns.afraid.org/dynamic/update.php"
+    url = "https://sync.afraid.org/u/"
     can_remove_records = False
     supports_token_auth = True

     def update_protocol(self, proto):
-        data = {
-            "address" : self.get_address(proto),
-        }
+        # data = {
+        #     "address" : self.get_address(proto),
+        # }

         # Add auth token to the update url.
-        url = "%s?%s" % (self.url, self.token)
+        url = "%s%s/" % (self.url, self.token)

         # Send update to the server.
-        response = self.send_request(url, data=data)
+        response = self.send_request(url)

         # Get the full response message.
         output = response.read().decode()

         # Handle success messages.
-        if output.startswith("Updated") or "has not changed" in output:
+        if output.startswith("Updated") or output.startswith("No IP
change detected"):
             return

         # Handle error codes.
--
2.25.1


------------------------END PATCH---------------------------

Regards.
Kashif Iftikhar
http://kashif.compulife.com.pk

       reply	other threads:[~2021-01-22 12:59 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CAHoP+V9CfCQ3NCK5-Kfxn=OPYEz8ic-t4rC++pWS=erEXzgebA@mail.gmail.com>
2021-01-22 12:59 ` Kashif Iftikhar [this message]
2021-01-22 13:03   ` Michael Tremer
2021-01-22 13:26   ` Fwd: [PATCH] [updated] " Kashif Iftikhar
     [not found] <CAHoP+V8qk=kZoB2MJ1nv1yKiz4oxfuDRFKx4Nvs=QGza07K7SQ@mail.gmail.com>
2021-01-25 18:17 ` [PATCH] " Michael Tremer
2021-01-25 18:49   ` Kashif Iftikhar
2021-01-25 19:18     ` 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=CAHoP+V_80YMyvMrkfOtCf1e7W8c2WBOAUejOZ+ZvUSTg5f_afQ@mail.gmail.com \
    --to=kashif@compulife.com.pk \
    --cc=ddns@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