public inbox for ddns@lists.ipfire.org
 help / color / mirror / Atom feed
From: Stefan Schantl <stefan.schantl@ipfire.org>
To: ddns@lists.ipfire.org
Subject: Re: [PATCH] ddns: Added new provider Domain-Offensive (http://do.de)
Date: Fri, 24 Feb 2017 11:51:06 +0100	[thread overview]
Message-ID: <1487933466.8575.0.camel@ipfire.org> (raw)
In-Reply-To: <1487870272-31233-1-git-send-email-dirk.wagner@ipfire.org>

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

Hello Dirk,

thanks for sending the patch. I've divided your changes into two
patches and merged them.

Best regards,

-Stefan
> Signed-off-by: Dirk Wagner <dirk.wagner(a)ipfire.org>
> ---
>  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 => 100755 README
>  mode change 100644 => 100755 src/ddns/errors.py
>  mode change 100644 => 100755 src/ddns/providers.py
>  mode change 100644 => 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 = N_("Service unavailable")
>  
> +	
> +class DDNSTooManyRequests(DDNSError):
> +	"""
> +		Raised when too many requests occured.
> +	"""
> +	reason = N_("Too many requests")
>  
>  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,
> DDNSProvider):
>  
>  	url = "https://members.dyndns.org/nic/update"
>  
> +	
> +class DDNSProviderDomainOffensive(DDNSProtocolDynDNS2,
> DDNSProvider):
> +	handle    = "do.de"
> +	name      = "Domain-Offensive"
> +	website   = "http://dyn.com/dns/"
> +	protocols = ("ipv4",)
> +
> +	# Detailed information about the request and response codes
> +	# are available on the providers webpage.
> +	# https://www.do.de/wiki/FlexDNS_-_Entwickler
> +	
> +	url = "https://ddns.do.de/"
>  
> +	
>  class DDNSProviderDynU(DDNSProtocolDynDNS2, DDNSProvider):
>  	handle    = "dynu.com"
>  	name      = "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 == 404:
>  				raise DDNSNotFound(e.reason)
>  
> +			# 429 - Too Many Requests
> +			elif e.code == 429:
> +				raise DDNSTooManyRequests(e.reason)
> +
>  			# 500 - Internal Server Error
>  			elif e.code == 500:
>  				raise
> DDNSInternalServerError(e.reason)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

      reply	other threads:[~2017-02-24 10:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-23 17:17 Dirk Wagner
2017-02-24 10:51 ` Stefan Schantl [this message]

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=1487933466.8575.0.camel@ipfire.org \
    --to=stefan.schantl@ipfire.org \
    --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