From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kashif Iftikhar To: ddns@lists.ipfire.org Subject: Fwd: [PATCH] [updated] Fixes freedns.afraid.org ddns provider Date: Fri, 22 Jan 2021 18:26:55 +0500 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4345461776058947486==" List-Id: --===============4345461776058947486== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Updated according to feedback. ------------------------BEGIN PATCH--------------------------- >>From ca4865f02594666fc7e1a4578db3465555aae860 Mon Sep 17 00:00:00 2001 From: Kashif Iftikhar Date: Fri, 22 Jan 2021 18:24:03 +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 --- src/ddns/providers.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 56e6620..98d2747 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -1186,26 +1186,22 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider): # No information about the request or response could be found on the ven= dor # page. All used values have been collected by testing. - url =3D "https://freedns.afraid.org/dynamic/update.php" + url =3D "https://sync.afraid.org/u/" can_remove_records =3D False supports_token_auth =3D True def update_protocol(self, proto): - data =3D { - "address" : self.get_address(proto), - } - # Add auth token to the update url. - url =3D "%s?%s" % (self.url, self.token) + url =3D "%s%s/" % (self.url, self.token) # Send update to the server. - response =3D self.send_request(url, data=3Ddata) + response =3D self.send_request(url) # Get the full response message. output =3D 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. --=20 2.25.1 ------------------------END PATCH--------------------------- Regards. Kashif Iftikhar http://kashif.compulife.com.pk --===============4345461776058947486==--