Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-05-24 14:36:24 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2021-05-24 14:36:24 +0200
commite604f2c676471bde781cbb0a0586e73a52024e94 (patch)
tree26b964fdc1478dc7cc0db1871fc172593e9e6386
parent2b5ad7e52ef69255918e396d599536b1907f6b46 (diff)
Added optional version handling. And improved error handling a bit.
-rw-r--r--archinstall/__init__.py2
-rw-r--r--archinstall/lib/plugins.py34
2 files changed, 30 insertions, 6 deletions
diff --git a/archinstall/__init__.py b/archinstall/__init__.py
index 1f230902..53d31af2 100644
--- a/archinstall/__init__.py
+++ b/archinstall/__init__.py
@@ -24,7 +24,7 @@ from .lib.user_interaction import *
parser = ArgumentParser()
__version__ = "2.2.0.RC1"
-
+storage['__version__'] = __version__
def initialize_arguments():
config = {}
diff --git a/archinstall/lib/plugins.py b/archinstall/lib/plugins.py
index b7b6afbb..bf4b7720 100644
--- a/archinstall/lib/plugins.py
+++ b/archinstall/lib/plugins.py
@@ -9,6 +9,7 @@ import urllib.request
from importlib import metadata
from .output import log
+from .storage import storage
plugins = {}
@@ -56,6 +57,17 @@ def import_via_path(path :str, namespace=None): # -> module (not sure how to wri
log(err, level=logging.ERROR)
log(f"The above error was detected when loading the plugin: {path}", fg="red", level=logging.ERROR)
+ try:
+ del(sys.modules[namespace])
+ except:
+ pass
+
+def find_nth(haystack, needle, n):
+ start = haystack.find(needle)
+ while start >= 0 and n > 1:
+ start = haystack.find(needle, start+len(needle))
+ n -= 1
+ return start
def load_plugin(path :str): # -> module (not sure how to write that in type definitions)
parsed_url = urllib.parse.urlparse(path)
@@ -68,8 +80,20 @@ def load_plugin(path :str): # -> module (not sure how to write that in type defi
elif parsed_url.scheme in ('https', 'http'):
namespace = import_via_path(localize_path(path))
- try:
- plugins[namespace] = sys.modules[namespace].Plugin()
- except Exception as err:
- log(err, level=logging.ERROR)
- log(f"The above error was detected when initiating the plugin: {path}", fg="red", level=logging.ERROR) \ No newline at end of file
+ # Version dependency via __archinstall__version__ variable (if present) in the plugin
+ # Any errors in version inconsistency will be handled through normal error handling if not defined.
+ if namespace in sys.modules:
+ if hasattr(sys.modules[namespace], '__archinstall__version__'):
+ archinstall_major_and_minor_version = float(storage['__version__'][:find_nth(storage['__version__'], '.', 2)])
+
+ if sys.modules[namespace].__archinstall__version__ < archinstall_major_and_minor_version:
+ log(f"Plugin {sys.modules[namespace]} does not support the current Archinstall version.", fg="red", level=logging.ERROR)
+
+ if hasattr(sys.modules[namespace], 'Plugin'):
+ try:
+ plugins[namespace] = sys.modules[namespace].Plugin()
+ except Exception as err:
+ log(err, level=logging.ERROR)
+ log(f"The above error was detected when initiating the plugin: {path}", fg="red", level=logging.ERROR)
+ else:
+ log(f"Plugin '{path}' is missing a valid entry-point or is corrupt.", fg="yellow", level=logging.WARNING) \ No newline at end of file