From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: ddns@lists.ipfire.org Subject: Re: Add support for godaddy.com Date: Thu, 16 Mar 2023 11:19:39 +0000 Message-ID: <74377781-E1DE-4875-8E3F-FBF6C0C2F5EA@ipfire.org> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1813237422500340352==" List-Id: --===============1813237422500340352== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello again, > On 16 Mar 2023, at 10:14, Costas Tyfoxylos wrote: >=20 > Hi Michael, >=20 > Just briefly had a look at the code to refamiliarise myself with it and not= iced that the code base is on the very old % interpolation so converting to f= strings either makes a lot of sense or none at all depending on how you look = at it. :) I have also had a look at the urlopen comment you made and I cannot= use the send_request method as you suggest, at least not without patching th= at as the headers set by it define a "Basic" authorization header with the us= ername and password but godaddy expects an "sso-key" header instead. So I eit= her need to bypass send_request and use url_open or patch send_request to be = able to amend the authorization header with a custom entry. > What do you think? You *will* have to use send_request, because it implements so much. For examp= le using an upstream proxy. If you omit that, your provider won=E2=80=99t fun= ction for those users and that would just be weird and hard to debug. Then, send_request does not require you to use HTTP Basic authentication. It = will do it for you if you pass the appropriate parameters, but you don=E2=80= =99t have to do that. If you need to pass any additional headers, there is nothing wrong with exten= ding the function and having it take a dictionary with any additional headers= . That should be a single commit, please. -Michael > kind regards > Costas >=20 > On Thu, Mar 16, 2023 at 9:53=E2=80=AFAM Costas Tyfoxylos wrote: > Hi Michael, >=20 > Thanks for all the points, they all make sense, I made this patch looking a= t other implementations of providers so I guess some of the topics you raise = are there for more of them. I will try to make some time to get an improved o= ne in, but that will probably not be on a very short timeframe. As far as the= f-strings are concerned, if I get around to fix all the other issues you men= tion would you like me to go over all the code base and update it to using th= em since they are the standard for quite some time now? I completely understa= nd how you would not want to have an inconsistent approach to this but I can = update everything if that helps more. Also if I have any issue with implement= ing any of the points is it ok if I reach out? >=20 > kind regards > Costas >=20 > On Thu, Mar 16, 2023 at 8:46=E2=80=AFAM Michael Tremer wrote: > Hello Costas, >=20 > I would like to drop a couple of comments about this patch: >=20 > It uses f-strings which we do not use at all in ddns and so I wouldn=E2=80= =99t want to start now. >=20 > The newly added provider class does not make use of the send_request method= (https://git.ipfire.org/?p=3Dddns.git;a=3Dblob;f=3Dsrc/ddns/system.py;h=3D48= c9a8f88fdde2b922cb6548e450c9a1407851fb;hb=3DHEAD#l124) which we use to log th= e request, configure extra settings like an upstream proxy, etc. Just calling= urlopen() is not sufficient. >=20 > The TTL is set to 600. I cannot find anything about this in the upstream do= cumentation, but that seems to be an eternity compared to the other providers= where the TTL is at maximum 60s. If there is a way to choose, then we should= use a lower value here. >=20 > This does not support IPv6 at all. The A record is hardcoded although GoDad= dy supports AAAA records, too. >=20 > Then it is not being implemented that a record can be deleted even though t= he API supports it: https://developer.godaddy.com/doc/endpoint/domains#/v1/re= cordDeleteTypeName >=20 > Then the error handling is incorrect as ddns handles all mentioned error co= des automatically. It is not necessary to perform manual stuff here. So this = is just dead code that would never be reached when using send_request(). >=20 > I am very grateful for your patch submission but it cannot be merged like t= his as it introduces some major problems. Please submit an improved patch. >=20 > Best, > -Michael >=20 > > On 15 Mar 2023, at 12:19, Stefan Schantl wr= ote: > >=20 > > Hello Costas, > >=20 > > thanks for sending your patch here and once again for sending the same > > patch as a pull request on github. > >=20 > > I really don't know, why your first mail did not appear in my inbox, > > nor got displayed on our patchwork infrastructure. > >=20 > > After a quick code review and some basic testing with invalid data, > > everything seems to work and I finally merged your patchset. > >=20 > > In addition to this I tagged a new version of ddns, which will be part > > of one of the next upcomming Core updates. > >=20 > > Best regards, > >=20 > > -Stefan=20 > >=20 > > _______________________________________________ > > ddns mailing list > > ddns(a)lists.ipfire.org > > https://lists.ipfire.org/mailman/listinfo/ddns >=20 > _______________________________________________ > ddns mailing list > ddns(a)lists.ipfire.org > https://lists.ipfire.org/mailman/listinfo/ddns --===============1813237422500340352==--