* DynDNS support for ddns project.
@ 2012-09-09 17:34 Stefan Schantl
2012-09-09 18:29 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Stefan Schantl @ 2012-09-09 17:34 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 486 bytes --]
Hello guys,
i've created a patch for the Dynamic DNS client for IPFire.
(http://git.ipfire.org/?p=oddments/ddns.git;a=summary)
My patch will add support for the very popular "dyndns.org" provider.
However I wasn't able to test my changes, because
I don't have any account there and I seems new members have to purchase
to use use it.
So, I need your help to test my changes and finally be able to support
that provider in the next major version of IPFire.
Best regards,
Stefan
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Add-support-for-dyndns.org.patch --]
[-- Type: text/x-patch, Size: 2566 bytes --]
>From 02ddf51e320545da8b606a58c4a231a7cdf191da Mon Sep 17 00:00:00 2001
From: Stefan Schantl <stefan.schantl@ipfire.org>
Date: Sun, 9 Sep 2012 19:10:04 +0200
Subject: [PATCH] Add support for dyndns.org.
---
ddns.conf | 5 +++++
ddns/__init__.py | 1 +
ddns/providers.py | 44 ++++++++++++++++++++++++++++++++++++++++++++
3 Dateien ge��ndert, 50 Zeilen hinzugef��gt(+)
diff --git a/ddns.conf b/ddns.conf
index a40f567..3c34a9c 100644
--- a/ddns.conf
+++ b/ddns.conf
@@ -20,6 +20,11 @@
# username = user
# password = pass
+# [test.dyndns.org]
+# provider = dyndns.org
+# username = user
+# password = pass
+
# [test.selfhost.de]
# provider = selfhost.de
# username = user
diff --git a/ddns/__init__.py b/ddns/__init__.py
index ee91a60..5733885 100644
--- a/ddns/__init__.py
+++ b/ddns/__init__.py
@@ -86,6 +86,7 @@ class DDNSCore(object):
Simply registers all providers.
"""
for provider in (
+ DDNSProviderDynDNS,
DDNSProviderNOIP,
DDNSProviderSelfhost,
):
diff --git a/ddns/providers.py b/ddns/providers.py
index f764001..d93b4d2 100644
--- a/ddns/providers.py
+++ b/ddns/providers.py
@@ -121,6 +121,50 @@ class DDNSProvider(object):
return self.core.system.get_address(proto)
+class DDNSProviderDynDNS(DDNSProvider):
+ INFO = {
+ "handle" : "dyndns.org",
+ "name" : "DynDNS",
+ "website" : "http://www.dnydns.org",
+ "protocols" : ["ipv4",]
+ }
+
+ # Information about the format of the HTTP request is to be found
+ # http://dyn.com/support/developers/api/perform-update/
+ # http://dyn.com/support/developers/api/return-codes/
+
+ url = "http://%(username)s:%(password)s@members.dyndns.org/nic/update?hostname=%(hostname)s&myip=%(address)s&wildcard=NOCHG&mx=NOCHG&backmx=NOCHG"
+
+ def __call__(self):
+ url = self.url % {
+ "hostname" : self.hostname,
+ "username" : self.username,
+ "password" : self.password,
+ "address" : self.get_address("ipv4"),
+ }
+
+ # Send update to the server.
+ response = self.send_request(url)
+
+ # Get the full response message.
+ output = response.read()
+
+ # Handle success messages.
+ if output.startswith("good") or output.startswith("nochg"):
+ return
+
+ # Handle error codes.
+ if output == "badauth":
+ raise DDNSAuthenticationError
+ elif output == "aduse":
+ raise DDNSAbuseError
+ elif output == "911":
+ raise DDNSInternalServerError
+
+ # If we got here, some other update error happened.
+ raise DDNSUpdateError
+
+
class DDNSProviderNOIP(DDNSProvider):
INFO = {
"handle" : "no-ip.com",
--
1.7.11.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: DynDNS support for ddns project.
2012-09-09 17:34 DynDNS support for ddns project Stefan Schantl
@ 2012-09-09 18:29 ` Michael Tremer
2014-06-14 17:10 ` Stefan Schantl
0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2012-09-09 18:29 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1562 bytes --]
Hey Stefan,
thanks for your contribution so far. I have found several problems,
which need to be fixed:
1) We cannot possibly accept any code which has not been tested. Please
go and look for some people who can do that if you cannot do it on your
own.
2) In the URL, you created are some options, which are deprecated as it
is explained here http://dyn.com/support/developers/api/perform-update/.
You should not introduce already deprecated functionality.
So, I suggest to drop "wildcard", "mx" and "backupmx" from the URL.
3) As it is listed here
http://dyn.com/support/developers/api/return-codes/, there are a lot of
return codes, which are not catched. You should consider to implement
some of them which might be useful for the users like "nofqdn" or
"nohost". I would cosider "dnserr" as mandatory.
Michael
On Sun, 2012-09-09 at 19:34 +0200, Stefan Schantl wrote:
> Hello guys,
>
> i've created a patch for the Dynamic DNS client for IPFire.
> (http://git.ipfire.org/?p=oddments/ddns.git;a=summary)
>
> My patch will add support for the very popular "dyndns.org" provider.
> However I wasn't able to test my changes, because
> I don't have any account there and I seems new members have to purchase
> to use use it.
>
> So, I need your help to test my changes and finally be able to support
> that provider in the next major version of IPFire.
>
> Best regards,
>
> Stefan
> _______________________________________________
> Development mailing list
> Development(a)lists.ipfire.org
> http://lists.ipfire.org/mailman/listinfo/development
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: DynDNS support for ddns project.
2012-09-09 18:29 ` Michael Tremer
@ 2014-06-14 17:10 ` Stefan Schantl
2014-06-16 10:08 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Stefan Schantl @ 2014-06-14 17:10 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2479 bytes --]
Hello Michael and list followers,
during my work on integrating several dynamic dns providers I've
rewritten the code for the dyndns.org provider.
I've included your suggestions and was able to do some testing by using
the provided test accounts from dyndns.org
(http://dyn.com/support/developers/test-account/)
I've pushed the changes to my personal git repository, they can be found
here:
http://git.ipfire.org/?p=people/stevee/ddns.git;a=blobdiff;f=src/ddns/providers.py;h=5954b91c17ad27aa58d86ad5cd9f49e50e5aa973;hp=2788c9722ae86aa1ac89d8aab32e72129e0a0209;hb=b5bf290b8a613ac5becf59c71cbb1922d4ce53c5;hpb=3fcc662c83320ff8c0e64e22d0604f8955ab4011
Please have a look on them and merge the changes to the main ddns git
repository so we can support this provider.
Best regards,
-Stefan
> Hey Stefan,
>
> thanks for your contribution so far. I have found several problems,
> which need to be fixed:
>
> 1) We cannot possibly accept any code which has not been tested. Please
> go and look for some people who can do that if you cannot do it on your
> own.
>
> 2) In the URL, you created are some options, which are deprecated as it
> is explained here http://dyn.com/support/developers/api/perform-update/.
> You should not introduce already deprecated functionality.
>
> So, I suggest to drop "wildcard", "mx" and "backupmx" from the URL.
>
> 3) As it is listed here
> http://dyn.com/support/developers/api/return-codes/, there are a lot of
> return codes, which are not catched. You should consider to implement
> some of them which might be useful for the users like "nofqdn" or
> "nohost". I would cosider "dnserr" as mandatory.
>
> Michael
>
> On Sun, 2012-09-09 at 19:34 +0200, Stefan Schantl wrote:
>> Hello guys,
>>
>> i've created a patch for the Dynamic DNS client for IPFire.
>> (http://git.ipfire.org/?p=oddments/ddns.git;a=summary)
>>
>> My patch will add support for the very popular "dyndns.org" provider.
>> However I wasn't able to test my changes, because
>> I don't have any account there and I seems new members have to purchase
>> to use use it.
>>
>> So, I need your help to test my changes and finally be able to support
>> that provider in the next major version of IPFire.
>>
>> Best regards,
>>
>> Stefan
>> _______________________________________________
>> Development mailing list
>> Development(a)lists.ipfire.org
>> http://lists.ipfire.org/mailman/listinfo/development
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: DynDNS support for ddns project.
2014-06-14 17:10 ` Stefan Schantl
@ 2014-06-16 10:08 ` Michael Tremer
0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2014-06-16 10:08 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2919 bytes --]
Hi Stefan,
I merged this one (with a couple of cleanups) and the other new
providers in your repository as well.
Please double-check if I resolved all merge conflicts correctly and that
everything still works for you.
Best,
-Michael
On Sat, 2014-06-14 at 19:10 +0200, Stefan Schantl wrote:
> Hello Michael and list followers,
>
> during my work on integrating several dynamic dns providers I've
> rewritten the code for the dyndns.org provider.
>
> I've included your suggestions and was able to do some testing by using
> the provided test accounts from dyndns.org
> (http://dyn.com/support/developers/test-account/)
>
> I've pushed the changes to my personal git repository, they can be found
> here:
>
> http://git.ipfire.org/?p=people/stevee/ddns.git;a=blobdiff;f=src/ddns/providers.py;h=5954b91c17ad27aa58d86ad5cd9f49e50e5aa973;hp=2788c9722ae86aa1ac89d8aab32e72129e0a0209;hb=b5bf290b8a613ac5becf59c71cbb1922d4ce53c5;hpb=3fcc662c83320ff8c0e64e22d0604f8955ab4011
>
> Please have a look on them and merge the changes to the main ddns git
> repository so we can support this provider.
>
> Best regards,
>
> -Stefan
>
> > Hey Stefan,
> >
> > thanks for your contribution so far. I have found several problems,
> > which need to be fixed:
> >
> > 1) We cannot possibly accept any code which has not been tested. Please
> > go and look for some people who can do that if you cannot do it on your
> > own.
> >
> > 2) In the URL, you created are some options, which are deprecated as it
> > is explained here http://dyn.com/support/developers/api/perform-update/.
> > You should not introduce already deprecated functionality.
> >
> > So, I suggest to drop "wildcard", "mx" and "backupmx" from the URL.
> >
> > 3) As it is listed here
> > http://dyn.com/support/developers/api/return-codes/, there are a lot of
> > return codes, which are not catched. You should consider to implement
> > some of them which might be useful for the users like "nofqdn" or
> > "nohost". I would cosider "dnserr" as mandatory.
> >
> > Michael
> >
> > On Sun, 2012-09-09 at 19:34 +0200, Stefan Schantl wrote:
> >> Hello guys,
> >>
> >> i've created a patch for the Dynamic DNS client for IPFire.
> >> (http://git.ipfire.org/?p=oddments/ddns.git;a=summary)
> >>
> >> My patch will add support for the very popular "dyndns.org" provider.
> >> However I wasn't able to test my changes, because
> >> I don't have any account there and I seems new members have to purchase
> >> to use use it.
> >>
> >> So, I need your help to test my changes and finally be able to support
> >> that provider in the next major version of IPFire.
> >>
> >> Best regards,
> >>
> >> Stefan
> >> _______________________________________________
> >> Development mailing list
> >> Development(a)lists.ipfire.org
> >> http://lists.ipfire.org/mailman/listinfo/development
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-06-16 10:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-09 17:34 DynDNS support for ddns project Stefan Schantl
2012-09-09 18:29 ` Michael Tremer
2014-06-14 17:10 ` Stefan Schantl
2014-06-16 10: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