From 6c854c3aa26026ae814aa482845ce6f7923f421b Mon Sep 17 00:00:00 2001 From: "ying.yunlong" Date: Fri, 5 Jan 2018 15:34:56 +0800 Subject: [PATCH 1/1] Add vfc catalog interface in vnflcm Change-Id: I6768266c8ebde8020e5f0426aa1f2f8a16a054e0 Issue-ID: VFC-630 Signed-off-by: ying.yunlong --- lcm/lcm/pub/msapi/sdc_run_catalog.py | 57 ++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 lcm/lcm/pub/msapi/sdc_run_catalog.py diff --git a/lcm/lcm/pub/msapi/sdc_run_catalog.py b/lcm/lcm/pub/msapi/sdc_run_catalog.py new file mode 100644 index 00000000..9a90a6f6 --- /dev/null +++ b/lcm/lcm/pub/msapi/sdc_run_catalog.py @@ -0,0 +1,57 @@ +# Copyright 2017 ZTE Corporation. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import json +import logging + +from lcm.pub.utils.restcall import req_by_msb +from lcm.pub.exceptions import NFLCMException + +logger = logging.getLogger(__name__) + + +def parse_nsd(csar_id, input_parameters=[]): + req_param = json.JSONEncoder().encode({"csarId": csar_id, "inputs": input_parameters}) + ret = req_by_msb("/api/catalog/v1/parsernsd", "POST", req_param) + if ret[0] != 0: + logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) + raise NFLCMException("Failed to parsernsd of CSAR(%s) from catalog." % csar_id) + ns_model = json.JSONDecoder().decode(ret[1]) + return ns_model.get("model") + + +def parse_vnfd(csar_id, input_parameters=[]): + req_param = json.JSONEncoder().encode({"csarId": csar_id, "inputs": input_parameters}) + ret = req_by_msb("/api/catalog/v1/parservnfd", "POST", req_param) + if ret[0] != 0: + logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) + raise NFLCMException("Failed to parse_vnfd of CSAR(%s) from catalog." % csar_id) + vnf_model = json.JSONDecoder().decode(ret[1]) + return vnf_model.get("model") + + +def query_nspackage_by_id(csar_id): + ret = req_by_msb("/api/catalog/v1/nspackages/%s" % csar_id, "GET") + if ret[0] != 0: + logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) + raise NFLCMException("Failed to query ns CSAR(%s) from catalog." % csar_id) + return json.JSONDecoder().decode(ret[1]) + + +def query_vnfpackage_by_id(csar_id): + ret = req_by_msb("/api/catalog/v1/vnfpackages/%s" % csar_id, "GET") + if ret[0] != 0: + logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) + raise NFLCMException("Failed to query vnf CSAR(%s) from catalog." % csar_id) + return json.JSONDecoder().decode(ret[1]) -- 2.16.6