From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dirk Wagner To: ddns@lists.ipfire.org Subject: [PATCH] ddns: Added new provider Domain-Offensive (http://do.de) Date: Thu, 23 Feb 2017 18:17:52 +0100 Message-ID: <1487870272-31233-1-git-send-email-dirk.wagner@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2641258282965818436==" List-Id: --===============2641258282965818436== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Dirk Wagner --- README | 1 + src/ddns/errors.py | 8 +++++++- src/ddns/providers.py | 15 ++++++++++++++- src/ddns/system.py | 4 ++++ 4 files changed, 26 insertions(+), 2 deletions(-) mode change 100644 =3D> 100755 README mode change 100644 =3D> 100755 src/ddns/errors.py mode change 100644 =3D> 100755 src/ddns/providers.py mode change 100644 =3D> 100755 src/ddns/system.py diff --git a/README b/README old mode 100644 new mode 100755 index 40f1e7f..5f1911d --- a/README +++ b/README @@ -55,6 +55,7 @@ SUPPORTED PROVIDERS: dns.lightningwirelabs.com dnsmadeeasy.com dnspark.com + do.de domains.google.com domopoli.de dtdns.com diff --git a/src/ddns/errors.py b/src/ddns/errors.py old mode 100644 new mode 100755 index 58a5ba9..e5383dc --- a/src/ddns/errors.py +++ b/src/ddns/errors.py @@ -2,7 +2,7 @@ ############################################################################= ### # = # # ddns - A dynamic DNS client for IPFire = # -# Copyright (C) 2012 IPFire development team = # +# Copyright (C) 2012-2017 IPFire development team = # # = # # This program is free software: you can redistribute it and/or modify = # # it under the terms of the GNU General Public License as published by = # @@ -160,6 +160,12 @@ class DDNSServiceUnavailableError(DDNSNetworkError): """ reason =3D N_("Service unavailable") =20 +=09 +class DDNSTooManyRequests(DDNSError): + """ + Raised when too many requests occured. + """ + reason =3D N_("Too many requests") =20 class DDNSUpdateError(DDNSError): """ diff --git a/src/ddns/providers.py b/src/ddns/providers.py old mode 100644 new mode 100755 index 2c30d42..2a74511 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -2,7 +2,7 @@ ############################################################################= ### # = # # ddns - A dynamic DNS client for IPFire = # -# Copyright (C) 2012 IPFire development team = # +# Copyright (C) 2012-2017 IPFire development team = # # = # # This program is free software: you can redistribute it and/or modify = # # it under the terms of the GNU General Public License as published by = # @@ -840,7 +840,20 @@ class DDNSProviderDynDNS(DDNSProtocolDynDNS2, DDNSProvid= er): =20 url =3D "https://members.dyndns.org/nic/update" =20 +=09 +class DDNSProviderDomainOffensive(DDNSProtocolDynDNS2, DDNSProvider): + handle =3D "do.de" + name =3D "Domain-Offensive" + website =3D "http://dyn.com/dns/" + protocols =3D ("ipv4",) + + # Detailed information about the request and response codes + # are available on the providers webpage. + # https://www.do.de/wiki/FlexDNS_-_Entwickler +=09 + url =3D "https://ddns.do.de/" =20 +=09 class DDNSProviderDynU(DDNSProtocolDynDNS2, DDNSProvider): handle =3D "dynu.com" name =3D "Dynu" diff --git a/src/ddns/system.py b/src/ddns/system.py old mode 100644 new mode 100755 index c268ba5..67ea553 --- a/src/ddns/system.py +++ b/src/ddns/system.py @@ -194,6 +194,10 @@ class DDNSSystem(object): elif e.code =3D=3D 404: raise DDNSNotFound(e.reason) =20 + # 429 - Too Many Requests + elif e.code =3D=3D 429: + raise DDNSTooManyRequests(e.reason) + # 500 - Internal Server Error elif e.code =3D=3D 500: raise DDNSInternalServerError(e.reason) --=20 2.1.4 --===============2641258282965818436==--