mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-07-31 09:38:40 -04:00
Maintenance: validate domain strings for all providers #363
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @qdm12 on GitHub (Feb 3, 2024).
All domain strings are not validated for now. It would be good to check at a global scope the domain is
Some providers only use a host and the domain json value can be the empty string (constant value in the code), for example duckdns the domain is always duckdns.org. goip.de can have the domain empty, which defaults to goip.de, but it can also be set for example to goip.it.
@CyberAustin commented on GitHub (Feb 7, 2024):
I'm taking a stab at this right now. Mostly got it working, just need to get the code to my dev machine at home so I can run all the linting and formatting.
@qdm12 commented on GitHub (Feb 7, 2024):
Awesome (no pressure either)
You can probably develop with the development container (see .devcontainer directory) if you have Docker and VSCode installed, that's what I use (from a directory in WSL2 on windows)
@CyberAustin commented on GitHub (Feb 7, 2024):
Yeah, I use your include dev container. It's just that I'm at work and only have access to limited resources during work hours.
@CyberAustin commented on GitHub (Feb 7, 2024):
PR created: https://github.com/qdm12/ddns-updater/pull/638