diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-04-15 10:34:53 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-04-15 10:34:53 +0100 |
commit | ece66a4e9e5d46baa0376bd972f2d4e718b91062 (patch) | |
tree | 1c9e73f1e5cc4a78c36dcfe414cbceb63a4e2187 /src/backend/update.py | |
parent | 44f62d1aba2751d2d2909cc6eec5cb659a8ecde4 (diff) |
check for internet connectivity, and stop execution if there is none
Diffstat (limited to 'src/backend/update.py')
-rw-r--r-- | src/backend/update.py | 51 |
1 files changed, 35 insertions, 16 deletions
diff --git a/src/backend/update.py b/src/backend/update.py index 0c25068..40c2ce8 100644 --- a/src/backend/update.py +++ b/src/backend/update.py @@ -31,20 +31,11 @@ def start(gfx_ui=False): actv_brch = sisyphus.getenv.sys_brch() bhst_addr = sisyphus.getenv.bhst_addr() is_sane = sisyphus.checkenv.sanity() + is_online = sisyphus.checkenv.connectivity() - if is_sane == 1: - sync_evrth() - else: - if "packages-next" in bhst_addr: - print(sisyphus.getcolor.green + "\n\nActive branch:" + " " + sisyphus.getcolor.reset + "'" + actv_brch + "'" + " " + "(stable)" + - " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bhst_addr + "'" + " " + "(testing)") - else: - print(sisyphus.getcolor.green + "\n\nActive branch:" + " " + sisyphus.getcolor.reset + "'" + actv_brch + "'" + " " + "(testing)" + - " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bhst_addr + "'" + " " + "(stable)") - + if is_online != 1: if gfx_ui: - print("\n\nInvalid configuration!") - print("Use 'sisyphus branch --help' for help\n") + print("\nNo internet connection; Aborting!\n") t = 10 while t > 0: mins, secs = divmod(t, 60) @@ -53,10 +44,38 @@ def start(gfx_ui=False): time.sleep(1) t -= 1 - print('Time is up!') + print("Time is up!") sys.exit() - else: - print(sisyphus.getcolor.bright_red + "\n\nInvalid configuration!" + sisyphus.getcolor.reset + sisyphus.getcolor.bright_yellow + "\nUse" + - sisyphus.getcolor.reset + " " + "'" + "sisyphus branch --help" + "'" + " " + sisyphus.getcolor.bright_yellow + "for help" + sisyphus.getcolor.reset) + print(sisyphus.getcolor.brigt_red + + "\nNo internet connection; Aborting!\n" + sisyphus.getcolor.reset) sys.exit() + else: + if is_sane == 1: + sync_evrth() + else: + if "packages-next" in bhst_addr: + print(sisyphus.getcolor.green + "\n\nActive branch:" + " " + sisyphus.getcolor.reset + "'" + actv_brch + "'" + " " + "(stable)" + + " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bhst_addr + "'" + " " + "(testing)") + else: + print(sisyphus.getcolor.green + "\n\nActive branch:" + " " + sisyphus.getcolor.reset + "'" + actv_brch + "'" + " " + "(testing)" + + " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bhst_addr + "'" + " " + "(stable)") + + if gfx_ui: + print("\n\nInvalid configuration!") + print("Use 'sisyphus branch --help' for help\n") + t = 10 + while t > 0: + mins, secs = divmod(t, 60) + timer = '{:02d}:{:02d}'.format(mins, secs) + print(timer, end='\r') + time.sleep(1) + t -= 1 + + print("Time is up!") + sys.exit() + + else: + print(sisyphus.getcolor.bright_red + "\n\nInvalid configuration!" + sisyphus.getcolor.reset + sisyphus.getcolor.bright_yellow + "\nUse" + + sisyphus.getcolor.reset + " " + "'" + "sisyphus branch --help" + "'" + " " + sisyphus.getcolor.bright_yellow + "for help" + sisyphus.getcolor.reset) + sys.exit() |