X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=rwlaunchpad%2Fplugins%2Frwpkgmgr%2Frift%2Ftasklets%2Frwpkgmgr%2Fproxy%2Ffilesystem.py;h=7111092fddd9035679298f5b7b1558459f4c5c9e;hb=d19def3ddc2bed6863dce7fa03b5c52f1dca2d91;hp=a303424f9b0ca36c7532e80fd8addbc57a7610a8;hpb=07b439824b5eac4dc760ce56b52fbdcf5539db4c;p=osm%2FSO.git diff --git a/rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/proxy/filesystem.py b/rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/proxy/filesystem.py index a303424f..7111092f 100644 --- a/rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/proxy/filesystem.py +++ b/rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/proxy/filesystem.py @@ -22,6 +22,7 @@ import os import rift.package.store as store import rift.package.package +import rift.package.icon as icon from .base import AbstractPackageManagerProxy @@ -78,10 +79,15 @@ class FileSystemProxy(AbstractPackageManagerProxy): return self.SCHEMA[package_type] - def package_file_add(self, new_file, package_type, package_id, package_path): + def package_file_add(self, new_file, package_type, package_id, package_path, package_file_type): # Get the schema from thr package path # the first part will always be the vnfd/nsd name mode = 0o664 + + # for files other than README, create the package path from the asset type, e.g. icons/icon1.png + # for README files, strip off any leading '/' + package_path = package_file_type + "/" + package_path \ + if package_file_type != "readme" else package_path.strip('/') components = package_path.split("/") if len(components) > 2: schema = components[1] @@ -94,21 +100,33 @@ class FileSystemProxy(AbstractPackageManagerProxy): # Construct abs path of the destination obj path = store._get_package_dir(package_id) - dest_file = os.path.join(path, package_path) + dest_file = os.path.join(path, package.prefix, package_path) + # Insert (by copy) the file in the package location. For icons, + # insert also in UI location for UI to pickup try: package.insert_file(new_file, dest_file, package_path, mode=mode) + + if package_file_type == 'icons': + icon_extract = icon.PackageIconExtractor(self.log) + icon_extract.extract_icons(package) + except rift.package.package.PackageAppendError as e: self.log.exception(e) return False + self.log.debug("File insertion complete at {}".format(dest_file)) return True - def package_file_delete(self, package_type, package_id, package_path): + def package_file_delete(self, package_type, package_id, package_path, package_file_type): package_type = package_type.lower() store = self._get_store(package_type) package = store.get_package(package_id) + # for files other than README, create the package path from the asset type + package_path = package_file_type + "/" + package_path \ + if package_file_type != "readme" else package_path + # package_path has to be relative, so strip off the starting slash if # provided incorrectly. if package_path[0] == "/": @@ -116,7 +134,7 @@ class FileSystemProxy(AbstractPackageManagerProxy): # Construct abs path of the destination obj path = store._get_package_dir(package_id) - dest_file = os.path.join(path, package_path) + dest_file = os.path.join(path, package.prefix, package_path) try: package.delete_file(dest_file, package_path)