Add vnflcm operate vnfinst code
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / vnfs / vnf_create / create_vnf_identifier.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 import json
15 import logging
16 import uuid
17
18 from lcm.pub.aaiapi.aai import create_vnf
19 from lcm.pub.database.models import NfInstModel
20 from lcm.pub.exceptions import NFLCMException
21 from lcm.pub.msapi.catalog import query_rawdata_from_catalog
22 from lcm.pub.msapi.gvnfmdriver import get_packageinfo_by_vnfdid
23 from lcm.pub.utils import toscautil
24 from lcm.pub.utils.timeutil import now_time
25 from lcm.pub.utils.values import ignore_case_get
26
27 logger = logging.getLogger(__name__)
28
29
30 class CreateVnf:
31     def __init__(self, data):
32         self.data = data
33         self.vnfd_id = ignore_case_get(self.data, "vnfdId")
34         self.vnf_instance_mame = ignore_case_get(self.data, "vnfInstanceName")
35         self.description = ignore_case_get(self.data, "vnfInstanceDescription")
36         self.vnfd = None
37         self.package_info = ''
38         self.package_id = ''
39         self.csar_id = ''
40
41     def do_biz(self):
42         logger.debug("CreateVnfIdentifier--CreateVnf::> %s" % self.data)
43         is_exist = NfInstModel.objects.filter(nf_name=self.vnf_instance_mame).exists()
44         logger.debug("check_inst_name_exist::is_exist=%s" % is_exist)
45         if is_exist:
46             raise NFLCMException('VNF is already exist.')
47
48         nf_inst_id = str(uuid.uuid4())
49         try:
50             self.package_info = get_packageinfo_by_vnfdid(self.vnfd_id)
51             for val in ignore_case_get(self.package_info, "csars"):
52                 if self.vnfd_id == ignore_case_get(val, "vnfdId"):
53                     self.package_id = ignore_case_get(val, "csarId")
54                     break
55
56             raw_data = query_rawdata_from_catalog(self.package_id)
57             self.vnfd = toscautil.convert_vnfd_model(raw_data["rawData"])  # convert to inner json
58             self.vnfd = json.JSONDecoder().decode(self.vnfd)
59
60             metadata = ignore_case_get(self.vnfd, "metadata")
61             version = ignore_case_get(metadata, "vnfd_version")
62             vendor = ignore_case_get(metadata, "vendor")
63             netype = ignore_case_get(metadata, "vnf_type")
64             vnfsoftwareversion = ignore_case_get(metadata, "version")
65             vnfd_model = self.vnfd
66             NfInstModel.objects.create(nfinstid=nf_inst_id, nf_name=self.vnf_instance_mame, package_id=self.package_id,
67                                        version=version, vendor=vendor, netype=netype, vnfd_model=vnfd_model,
68                                        status='NOT_INSTANTIATED', nf_desc=self.description, vnfdid=self.vnfd_id,
69                                        vnfSoftwareVersion=vnfsoftwareversion, create_time=now_time())
70             data = {
71                 "vnf-id": nf_inst_id,
72                 "vnf-name": self.vnf_instance_mame,
73                 "vnf-type": "INFRA",
74                 "in-maint": "true",
75                 "is-closed-loop-disabled": "false"
76             }
77             create_vnf(nf_inst_id, data)
78         except NFLCMException as e:
79             logger.debug('Create VNF instance[%s] to AAI failed' % nf_inst_id)
80         except:
81             NfInstModel.objects.create(nfinstid=nf_inst_id, nf_name=self.vnf_instance_mame, package_id='',
82                                        version='', vendor='', netype='', vnfd_model='',
83                                        status='NOT_INSTANTIATED', nf_desc=self.description, vnfdid=self.vnfd_id,
84                                        vnfSoftwareVersion='', create_time=now_time())
85
86         vnf_inst = NfInstModel.objects.get(nfinstid=nf_inst_id)
87         logger.debug('id is [%s],name is [%s],vnfd_id is [%s],vnfd_model is [%s],'
88                      'description is [%s],create_time is [%s]' %
89                      (vnf_inst.nfinstid, vnf_inst.nf_name, vnf_inst.vnfdid,
90                       vnf_inst.vnfd_model, vnf_inst.nf_desc, vnf_inst.create_time))
91         return nf_inst_id