Modify table module and related 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.database.models import NfInstModel
19 from lcm.pub.exceptions import NFLCMException
20 from lcm.pub.msapi.nfvolcm import vnfd_rawdata_get
21 from lcm.pub.utils.timeutil import now_time
22 from lcm.pub.utils.values import ignore_case_get
23
24 logger = logging.getLogger(__name__)
25
26
27 class CreateVnf:
28     def __init__(self, data):
29         self.data = data
30         self.vnfd_id = ignore_case_get(self.data, "vnfdId")
31         self.vnf_instance_mame = ignore_case_get(self.data, "vnfInstanceName")
32         self.description = ignore_case_get(self.data, "vnfInstanceDescription")
33
34     def do_biz(self):
35         logger.debug("CreateVnfIdentifier--CreateVnf::> %s" % self.data)
36         is_exist = NfInstModel.objects.filter(nf_name=self.vnf_instance_mame).exists()
37         logger.debug("check_inst_name_exist::is_exist=%s" % is_exist)
38         if is_exist:
39             raise NFLCMException('VNF is already exist.')
40
41         ret = vnfd_rawdata_get(self.vnfd_id)
42         if ret[0] != 0:
43             raise NFLCMException('Get vnfd data failed.')
44         vnfd_info = json.JSONDecoder().decode(ret[1])
45         metadata = ignore_case_get(vnfd_info, "metadata")
46         version = ignore_case_get(metadata, "vnfd_version")
47         vendor = ignore_case_get(metadata, "vendor")
48         netype = ignore_case_get(metadata, "vnf_type")
49         vnfsoftwareversion = ignore_case_get(metadata, "version")
50         vnfd_model = vnfd_info
51
52         nf_inst_id = str(uuid.uuid4())
53         NfInstModel.objects.create(nfinstid=nf_inst_id, nf_name=self.vnf_instance_mame, package_id='todo',
54                                    version=version, vendor=vendor, netype=netype, vnfd_model=vnfd_model,
55                                    status='NOT_INSTANTIATED', nf_desc=self.description, vnfdid=self.vnfd_id,
56                                    vnfSoftwareVersion=vnfsoftwareversion, create_time=now_time())
57         vnf_inst = NfInstModel.objects.get(nfinstid=nf_inst_id)
58         logger.debug('id is [%s],name is [%s],vnfd_id is [%s],description is [%s],create_time is [%s]' %
59                      (vnf_inst.nfinstid, vnf_inst.nf_name, vnf_inst.vnfdid, vnf_inst.nf_desc, vnf_inst.create_time))
60         return nf_inst_id