1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 09:18:08 +00:00

Merge branch '2.2' into 3.0

# Conflicts:
#	requirements.txt
#	setup.py
This commit is contained in:
grossmj 2024-11-18 11:46:42 +10:00
commit bd813b0a53
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD
4 changed files with 30 additions and 11 deletions

View File

@ -30,7 +30,7 @@ except ImportError:
from ..config import Config from ..config import Config
from ..utils import parse_version from ..utils import parse_version, md5sum
from ..utils.images import default_images_directory from ..utils.images import default_images_directory
from .project import Project from .project import Project
@ -308,12 +308,21 @@ class Controller:
except OSError as e: except OSError as e:
log.error(str(e)) log.error(str(e))
@staticmethod @staticmethod
def install_resource_files(dst_path, resource_name): def install_resource_files(dst_path, resource_name, upgrade_resources=True):
""" """
Install files from resources to user's file system Install files from resources to user's file system
""" """
def should_copy(src, dst, upgrade_resources):
if not os.path.exists(dst):
return True
if upgrade_resources is False:
return False
# copy the resource if it is different
return md5sum(src) != md5sum(dst)
if hasattr(sys, "frozen") and sys.platform.startswith("win"): if hasattr(sys, "frozen") and sys.platform.startswith("win"):
resource_path = os.path.normpath(os.path.join(os.path.dirname(sys.executable), resource_name)) resource_path = os.path.normpath(os.path.join(os.path.dirname(sys.executable), resource_name))
for filename in os.listdir(resource_path): for filename in os.listdir(resource_path):
@ -322,7 +331,7 @@ class Controller:
else: else:
for entry in importlib_resources.files('gns3server').joinpath(resource_name).iterdir(): for entry in importlib_resources.files('gns3server').joinpath(resource_name).iterdir():
full_path = os.path.join(dst_path, entry.name) full_path = os.path.join(dst_path, entry.name)
if entry.is_file() and not os.path.exists(full_path): if entry.is_file() and should_copy(str(entry), full_path, upgrade_resources):
log.debug(f'Installing {resource_name} resource file "{entry.name}" to "{full_path}"') log.debug(f'Installing {resource_name} resource file "{entry.name}" to "{full_path}"')
shutil.copy(str(entry), os.path.join(dst_path, entry.name)) shutil.copy(str(entry), os.path.join(dst_path, entry.name))
elif entry.is_dir(): elif entry.is_dir():
@ -338,7 +347,7 @@ class Controller:
dst_path = self.configs_path() dst_path = self.configs_path()
log.info(f"Installing base configs in '{dst_path}'") log.info(f"Installing base configs in '{dst_path}'")
try: try:
Controller.install_resource_files(dst_path, "configs") Controller.install_resource_files(dst_path, "configs", upgrade_resources=False)
except OSError as e: except OSError as e:
log.error(f"Could not install base config files to {dst_path}: {e}") log.error(f"Could not install base config files to {dst_path}: {e}")
@ -351,7 +360,7 @@ class Controller:
dst_path = self.disks_path() dst_path = self.disks_path()
log.info(f"Installing built-in disks in '{dst_path}'") log.info(f"Installing built-in disks in '{dst_path}'")
try: try:
Controller.install_resource_files(dst_path, "disks") Controller.install_resource_files(dst_path, "disks", upgrade_resources=False)
except OSError as e: except OSError as e:
log.error(f"Could not install disk files to {dst_path}: {e}") log.error(f"Could not install disk files to {dst_path}: {e}")

View File

@ -95,7 +95,7 @@ class ApplianceManager:
os.makedirs(appliances_path, exist_ok=True) os.makedirs(appliances_path, exist_ok=True)
return appliances_path return appliances_path
def builtin_appliances_path(self, delete_first=False): def builtin_appliances_path(self):
""" """
Get the built-in appliance storage directory Get the built-in appliance storage directory
""" """
@ -107,8 +107,6 @@ class ApplianceManager:
else: else:
resources_path = os.path.expanduser(resources_path) resources_path = os.path.expanduser(resources_path)
appliances_dir = os.path.join(resources_path, "appliances") appliances_dir = os.path.join(resources_path, "appliances")
if delete_first:
shutil.rmtree(appliances_dir, ignore_errors=True)
os.makedirs(appliances_dir, exist_ok=True) os.makedirs(appliances_dir, exist_ok=True)
return appliances_dir return appliances_dir
@ -117,7 +115,7 @@ class ApplianceManager:
At startup we copy the built-in appliances files. At startup we copy the built-in appliances files.
""" """
dst_path = self.builtin_appliances_path(delete_first=True) dst_path = self.builtin_appliances_path()
log.info(f"Installing built-in appliances in '{dst_path}'") log.info(f"Installing built-in appliances in '{dst_path}'")
from . import Controller from . import Controller
try: try:

View File

@ -23,6 +23,7 @@ import textwrap
import posixpath import posixpath
import socket import socket
import errno import errno
import hashlib
def force_unix_path(path): def force_unix_path(path):
@ -109,3 +110,14 @@ def is_ipv6_enabled() -> bool:
if e.errno == errno.EADDRINUSE: if e.errno == errno.EADDRINUSE:
return True return True
raise raise
def md5sum(filename):
"""
Calculate the MD5 checksum of a file.
"""
hash_md5 = hashlib.md5()
with open(filename, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
hash_md5.update(chunk)
return hash_md5.hexdigest()

View File

@ -10,7 +10,7 @@ Jinja2>=3.1.4,<3.2
sentry-sdk>=2.17,<2.18 # optional dependency sentry-sdk>=2.17,<2.18 # optional dependency
psutil>=6.1.0 psutil>=6.1.0
distro>=1.9.0 distro>=1.9.0
py-cpuinfo==9.0.0 py-cpuinfo>=9.0.0,<10.0
sqlalchemy==2.0.36 sqlalchemy==2.0.36
aiosqlite==0.20.0 aiosqlite==0.20.0
alembic==1.13.3 alembic==1.13.3
@ -19,6 +19,6 @@ python-jose[cryptography]==3.3.0
email-validator==2.2.0 email-validator==2.2.0
watchfiles==0.24.0 watchfiles==0.24.0
zstandard==0.23.0 zstandard==0.23.0
platformdirs==4.3.6 platformdirs>=2.4.0,<3 # platformdirs >=3 conflicts when building Debian packages
importlib-resources>=1.3; python_version <= '3.9' importlib-resources>=1.3; python_version <= '3.9'
truststore>=0.10.0; python_version >= '3.10' truststore>=0.10.0; python_version >= '3.10'