public inbox for ddns@lists.ipfire.org
 help / color / mirror / Atom feed
* new nrovider: dynup.de
@ 2018-04-30 15:33 Stöckl
  2018-04-30 18:08 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Stöckl @ 2018-04-30 15:33 UTC (permalink / raw)
  To: ddns

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




diff --git a/README b/README
index d8027a4..f45d128 100755
--- a/README
+++ b/README
@@ -62,6 +62,7 @@ SUPPORTED PROVIDERS:
  	dyndns.org
  	dyns.cx|net
  	dynu.com
+	dynup.de
  	easydns.com
  	enom.com
  	entrydns.net



diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 6b25cb6..75e6c4c 100755
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -868,6 +868,43 @@ class DDNSProviderDynU(DDNSProtocolDynDNS2, 
DDNSProvider):
  		self.send_request(data)


+class DDNSProviderDynUp(DDNSProvider):
+	handle    = "dynup.de"
+	name      = "DynUp.DE"
+	website   = "http://dynup.de/"
+	protocols = ("ipv4",)
+
+	# Information about the format of the HTTPS request is to be found
+	# https://dyndnsfree.de/user/hilfe.php
+
+	url = "https://dynup.de/dyn.php"
+	can_remove_records = False
+
+	def update_protocol(self, proto):
+		data = {
+			"username" : self.username,
+			"password" : self.password,
+			"hostname" : self.hostname,
+			"print" : '1',
+		}
+
+		# Send update to the server.
+		response = self.send_request(self.url, data=data)
+
+		# Get the full response message.
+		output = response.read()
+
+		# Remove all leading and trailing whitespace.
+		output = output.strip()
+
+		# Handle success messages.
+		if output.startswith("I:OK") :
+			return
+
+		# If we got here, some other update error happened.
+		raise DDNSUpdateError
+
+
  class DDNSProviderEasyDNS(DDNSProvider):
  	handle    = "easydns.com"
  	name      = "EasyDNS"




-- 
Mit vielen Grüßen
     aus Weißensberg, der Nahtstelle zwischen Allgäu & Bodensee

          Christian

-- 
Mit vielen Grüßen
     aus Weißensberg, der Nahtstelle zwischen Allgäu & Bodensee

          Christian Stöckl

-- 
Mit vielen Grüßen
     aus Weißensberg, der Nahtstelle zwischen Allgäu & Bodensee

         Stöckl

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: new nrovider: dynup.de
  2018-04-30 15:33 new nrovider: dynup.de Stöckl
@ 2018-04-30 18:08 ` Michael Tremer
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2018-04-30 18:08 UTC (permalink / raw)
  To: ddns

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

Hello Christian,

when I try to open the website of that provider, I only get a Forbidden page and
the documentation does not seem to exist either.

Who is operating this service and are you sure that the service is operational?

Best,
-Michael

On Mon, 2018-04-30 at 17:33 +0200, Stöckl wrote:
> 
> 
> diff --git a/README b/README
> index d8027a4..f45d128 100755
> --- a/README
> +++ b/README
> @@ -62,6 +62,7 @@ SUPPORTED PROVIDERS:
>   	dyndns.org
>   	dyns.cx|net
>   	dynu.com
> +	dynup.de
>   	easydns.com
>   	enom.com
>   	entrydns.net
> 
> 
> 
> diff --git a/src/ddns/providers.py b/src/ddns/providers.py
> index 6b25cb6..75e6c4c 100755
> --- a/src/ddns/providers.py
> +++ b/src/ddns/providers.py
> @@ -868,6 +868,43 @@ class DDNSProviderDynU(DDNSProtocolDynDNS2, 
> DDNSProvider):
>   		self.send_request(data)
> 
> 
> +class DDNSProviderDynUp(DDNSProvider):
> +	handle    = "dynup.de"
> +	name      = "DynUp.DE"
> +	website   = "http://dynup.de/"
> +	protocols = ("ipv4",)
> +
> +	# Information about the format of the HTTPS request is to be found
> +	# https://dyndnsfree.de/user/hilfe.php
> +
> +	url = "https://dynup.de/dyn.php"
> +	can_remove_records = False
> +
> +	def update_protocol(self, proto):
> +		data = {
> +			"username" : self.username,
> +			"password" : self.password,
> +			"hostname" : self.hostname,
> +			"print" : '1',
> +		}
> +
> +		# Send update to the server.
> +		response = self.send_request(self.url, data=data)
> +
> +		# Get the full response message.
> +		output = response.read()
> +
> +		# Remove all leading and trailing whitespace.
> +		output = output.strip()
> +
> +		# Handle success messages.
> +		if output.startswith("I:OK") :
> +			return
> +
> +		# If we got here, some other update error happened.
> +		raise DDNSUpdateError
> +
> +
>   class DDNSProviderEasyDNS(DDNSProvider):
>   	handle    = "easydns.com"
>   	name      = "EasyDNS"
> 
> 
> 
> 
> -- 
> Mit vielen Grüßen
>      aus Weißensberg, der Nahtstelle zwischen Allgäu & Bodensee
> 
>           Christian
> 
> -- 
> Mit vielen Grüßen
>      aus Weißensberg, der Nahtstelle zwischen Allgäu & Bodensee
> 
>           Christian Stöckl
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-04-30 18:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-30 15:33 new nrovider: dynup.de Stöckl
2018-04-30 18:08 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox