From: Stefan Schantl <stefan.schantl@ipfire.org>
To: ddns@lists.ipfire.org
Subject: Re: [PATCH 1/2] Add new provider Servercow
Date: Thu, 16 Feb 2017 10:06:17 +0100 [thread overview]
Message-ID: <1487235977.2191.1.camel@ipfire.org> (raw)
In-Reply-To: <1486990868.24657.143.camel@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2265 bytes --]
Hello Jonatan and Michael,
thanks for sending in this patch and for testing.
Merged.
Best regards,
-Stefan
> Hello Jonatan,
>
> thanks for sending in this patch. I have seen this work already, so I
> ACK this
> patch.
>
> Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
>
> Good work!
>
> Best,
> -Michael
>
> On Fri, 2017-02-10 at 15:35 +0100, Jonatan Schlag wrote:
> > Tested-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> > Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> > ---
> > src/ddns/providers.py | 35 +++++++++++++++++++++++++++++++++++
> > 1 file changed, 35 insertions(+)
> >
> > diff --git a/src/ddns/providers.py b/src/ddns/providers.py
> > index 2c30d42..01d7827 100644
> > --- a/src/ddns/providers.py
> > +++ b/src/ddns/providers.py
> > @@ -1452,6 +1452,41 @@ class
> > DDNSProviderSelfhost(DDNSProtocolDynDNS2,
> > DDNSProvider):
> > return data
> >
> >
> > +class DDNSProviderServercow(DDNSProvider):
> > + handle = "servercow.de"
> > + name = "servercow.de"
> > + website = "https://servercow.de/"
> > + protocols = ("ipv4", "ipv6")
> > +
> > + url = "https://www.servercow.de/dnsupdate/update.php"
> > + can_remove_records = False
> > +
> > + def update_protocol(self, proto):
> > + data = {
> > + "ipaddr" : self.get_address(proto),
> > + "hostname" : self.hostname,
> > + "username" : self.username,
> > + "pass" : self.password,
> > + }
> > +
> > + # Send request to provider
> > + response = self.send_request(self.url, data=data)
> > +
> > + # Read response
> > + output = response.read()
> > +
> > + # Server responds with OK if update was successful
> > + if output.startswith("OK"):
> > + return
> > +
> > + # Catch any errors
> > + elif output.startswith("FAILED - Authentication
> > failed"):
> > + raise DDNSAuthenticationError
> > +
> > + # If we got here, some other update error happened
> > + raise DDNSUpdateError(output)
> > +
> > +
> > class DDNSProviderSPDNS(DDNSProtocolDynDNS2, DDNSProvider):
> > handle = "spdns.org"
> > name = "SPDYN"
>
> _______________________________________________
> ddns mailing list
> ddns(a)lists.ipfire.org
> http://lists.ipfire.org/mailman/listinfo/ddns
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2017-02-16 9:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1486737359-22481-1-git-send-email-jonatan.schlag@ipfire.org>
2017-02-13 13:01 ` Michael Tremer
2017-02-16 9:06 ` Stefan Schantl [this message]
2017-02-10 14:37 Jonatan Schlag
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=1487235977.2191.1.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