X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=catalog%2Fpackages%2Fbiz%2Fsdc_vnf_package.py;h=e5be4a124536ee87be511f77bffe47f7780e72f8;hb=0b6a49e188b44602ca83a5802b6820b32d3e2a35;hp=571c3bb00b2679a828db520dd7abd3b39516b86a;hpb=fec58589e6c2493b83743ed35a26b3e76ac996a4;p=modeling%2Fetsicatalog.git diff --git a/catalog/packages/biz/sdc_vnf_package.py b/catalog/packages/biz/sdc_vnf_package.py index 571c3bb..e5be4a1 100644 --- a/catalog/packages/biz/sdc_vnf_package.py +++ b/catalog/packages/biz/sdc_vnf_package.py @@ -122,9 +122,25 @@ class NfDistributeThread(threading.Thread): csar_name = "%s.csar" % artifact.get("name", self.csar_id) local_file_name = sdc.download_artifacts(artifact["toscaModelURL"], local_path, csar_name) if local_file_name.endswith(".csar") or local_file_name.endswith(".zip"): - artifact_vnf_file = fileutil.unzip_file(local_file_name, local_path, "Artifacts/Deployment/OTHER/vnf.csar") - if os.path.exists(artifact_vnf_file): - local_file_name = artifact_vnf_file + fileutil.unzip_csar(local_file_name, local_path) + vendor_vnf_file = "" + # find original vendor ETSI package under the ONBOARDING_PACKAGE directory + onboarding_package_dir = os.path.join(local_path, "Artifacts/Deployment/ONBOARDED_PACKAGE") + if os.path.exists(onboarding_package_dir): + files = os.listdir(onboarding_package_dir) + for file_name in files: + a_file = os.path.join(onboarding_package_dir, file_name) + if os.path.isfile(a_file) & file_name.endswith(".csar"): + vendor_vnf_file = a_file + break + + # find original vendor ETSI package under Artifacts/Deployment/OTHER directory + if vendor_vnf_file.isspace(): + vendor_vnf_file = os.path.join(local_path, "Artifacts/Deployment/OTHER/vnf.csar") + if os.path.exists(vendor_vnf_file): + local_file_name = vendor_vnf_file + else: + local_file_name = vendor_vnf_file vnfd_json = toscaparser.parse_vnfd(local_file_name) vnfd = json.JSONDecoder().decode(vnfd_json)