public inbox for ddns@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: ddns@lists.ipfire.org
Subject: [PATCH] Silently fall back to the guess the IP address with a remote server
Date: Wed, 12 Aug 2015 01:06:43 +0100	[thread overview]
Message-ID: <1439338003-31606-1-git-send-email-michael.tremer@ipfire.org> (raw)

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

For most OSes we do not implement a way to read the current IP
address from the local configuration. In that case ddns used to
throw an exception and stop. This patch changes that in the way
that ddns will fall back to guess the IP address with help
of a remote server.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/ddns/system.py | 25 +++++++++++++++++--------
 1 file changed, 17 insertions(+), 8 deletions(-)

diff --git a/src/ddns/system.py b/src/ddns/system.py
index 0d90ce6..c268ba5 100644
--- a/src/ddns/system.py
+++ b/src/ddns/system.py
@@ -66,6 +66,13 @@ class DDNSSystem(object):
 		return proxy
 
 	def get_local_ip_address(self, proto):
+		ip_address = self._get_local_ip_address(proto)
+
+		# Check if the IP address is usable and only return it then
+		if self._is_usable_ip_address(proto, ip_address):
+			return ip_address
+
+	def _get_local_ip_address(self, proto):
 		# Legacy code for IPFire 2.
 		if self.distro == "ipfire-2" and proto == "ipv4":
 			try:
@@ -281,16 +288,18 @@ class DDNSSystem(object):
 		guess_ip = self.core.settings.get("guess_external_ip", "true")
 		guess_ip = guess_ip in ("true", "yes", "1")
 
-		# If the external IP address should be used, we just do that.
-		if guess_ip:
-			return self.guess_external_ip_address(proto)
-
 		# Get the local IP address.
-		local_ip_address = self.get_local_ip_address(proto)
+		local_ip_address = None
+
+		if not guess_ip:
+			try:
+				local_ip_address = self.get_local_ip_address(proto)
+			except NotImplementedError:
+				logger.warning(_("Falling back to check the IP address with help of a public server"))
 
-		# If the local IP address is not usable, we must guess
-		# the correct IP address...
-		if not self._is_usable_ip_address(proto, local_ip_address):
+		# If no local IP address could be determined, we will fall back to the guess
+		# it with help of an external server...
+		if not local_ip_address:
 			local_ip_address = self.guess_external_ip_address(proto)
 
 		return local_ip_address
-- 
2.4.3


             reply	other threads:[~2015-08-12  0:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-12  0:06 Michael Tremer [this message]
2016-01-15  1:09 ` Michael Tremer

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=1439338003-31606-1-git-send-email-michael.tremer@ipfire.org \
    --to=michael.tremer@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