| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | |
| tierno | d125caf | 2018-11-22 16:05:54 +0000 | [diff] [blame] | 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 |
| 12 | # implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 16 | import logging |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 17 | from osm_common import dbmongo, dbmemory, fslocal, msglocal, msgkafka, version as common_version |
| 18 | from osm_common.dbbase import DbException |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 19 | from osm_common.fsbase import FsException |
| 20 | from osm_common.msgbase import MsgException |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 21 | from http import HTTPStatus |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 22 | from base_topic import EngineException, versiontuple |
| tierno | 55ba2e6 | 2018-12-11 17:22:22 +0000 | [diff] [blame^] | 23 | from admin_topics import UserTopic, ProjectTopic, VimAccountTopic, WimAccountTopic, SdnTopic |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 24 | from descriptor_topics import VnfdTopic, NsdTopic, PduTopic, NstTopic |
| Felipe Vicens | 07f3172 | 2018-10-29 15:16:44 +0100 | [diff] [blame] | 25 | from instance_topics import NsrTopic, VnfrTopic, NsLcmOpTopic, NsiTopic, NsiLcmOpTopic |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 26 | from base64 import b64encode |
| 27 | from os import urandom |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 28 | |
| 29 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 30 | min_common_version = "0.1.8" |
| tierno | 441dbbf | 2018-07-10 12:52:48 +0200 | [diff] [blame] | 31 | |
| 32 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 33 | class Engine(object): |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 34 | map_from_topic_to_class = { |
| 35 | "vnfds": VnfdTopic, |
| 36 | "nsds": NsdTopic, |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 37 | "nsts": NstTopic, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 38 | "pdus": PduTopic, |
| 39 | "nsrs": NsrTopic, |
| 40 | "vnfrs": VnfrTopic, |
| 41 | "nslcmops": NsLcmOpTopic, |
| 42 | "vim_accounts": VimAccountTopic, |
| tierno | 55ba2e6 | 2018-12-11 17:22:22 +0000 | [diff] [blame^] | 43 | "wim_accounts": WimAccountTopic, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 44 | "sdns": SdnTopic, |
| 45 | "users": UserTopic, |
| 46 | "projects": ProjectTopic, |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 47 | "nsis": NsiTopic, |
| Felipe Vicens | 07f3172 | 2018-10-29 15:16:44 +0100 | [diff] [blame] | 48 | "nsilcmops": NsiLcmOpTopic |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 49 | # [NEW_TOPIC]: add an entry here |
| 50 | } |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 51 | |
| 52 | def __init__(self): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 53 | self.db = None |
| 54 | self.fs = None |
| 55 | self.msg = None |
| 56 | self.config = None |
| 57 | self.logger = logging.getLogger("nbi.engine") |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 58 | self.map_topic = {} |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 59 | |
| 60 | def start(self, config): |
| 61 | """ |
| 62 | Connect to database, filesystem storage, and messaging |
| 63 | :param config: two level dictionary with configuration. Top level should contain 'database', 'storage', |
| 64 | :return: None |
| 65 | """ |
| 66 | self.config = config |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 67 | # check right version of common |
| 68 | if versiontuple(common_version) < versiontuple(min_common_version): |
| 69 | raise EngineException("Not compatible osm/common version '{}'. Needed '{}' or higher".format( |
| 70 | common_version, min_common_version)) |
| 71 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 72 | try: |
| 73 | if not self.db: |
| 74 | if config["database"]["driver"] == "mongo": |
| 75 | self.db = dbmongo.DbMongo() |
| 76 | self.db.db_connect(config["database"]) |
| 77 | elif config["database"]["driver"] == "memory": |
| 78 | self.db = dbmemory.DbMemory() |
| 79 | self.db.db_connect(config["database"]) |
| 80 | else: |
| 81 | raise EngineException("Invalid configuration param '{}' at '[database]':'driver'".format( |
| 82 | config["database"]["driver"])) |
| 83 | if not self.fs: |
| 84 | if config["storage"]["driver"] == "local": |
| 85 | self.fs = fslocal.FsLocal() |
| 86 | self.fs.fs_connect(config["storage"]) |
| 87 | else: |
| 88 | raise EngineException("Invalid configuration param '{}' at '[storage]':'driver'".format( |
| 89 | config["storage"]["driver"])) |
| 90 | if not self.msg: |
| 91 | if config["message"]["driver"] == "local": |
| 92 | self.msg = msglocal.MsgLocal() |
| 93 | self.msg.connect(config["message"]) |
| 94 | elif config["message"]["driver"] == "kafka": |
| 95 | self.msg = msgkafka.MsgKafka() |
| 96 | self.msg.connect(config["message"]) |
| 97 | else: |
| 98 | raise EngineException("Invalid configuration param '{}' at '[message]':'driver'".format( |
| 99 | config["storage"]["driver"])) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 100 | |
| 101 | # create one class per topic |
| 102 | for topic, topic_class in self.map_from_topic_to_class.items(): |
| 103 | self.map_topic[topic] = topic_class(self.db, self.fs, self.msg) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 104 | except (DbException, FsException, MsgException) as e: |
| 105 | raise EngineException(str(e), http_code=e.http_code) |
| 106 | |
| 107 | def stop(self): |
| 108 | try: |
| 109 | if self.db: |
| 110 | self.db.db_disconnect() |
| 111 | if self.fs: |
| 112 | self.fs.fs_disconnect() |
| 113 | if self.fs: |
| 114 | self.fs.fs_disconnect() |
| 115 | except (DbException, FsException, MsgException) as e: |
| 116 | raise EngineException(str(e), http_code=e.http_code) |
| 117 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 118 | def new_item(self, rollback, session, topic, indata=None, kwargs=None, headers=None, force=False): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 119 | """ |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 120 | Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry, |
| 121 | that must be completed with a call to method upload_content |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 122 | :param rollback: list to append created items at database in case a rollback must to be done |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 123 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 124 | :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 125 | :param indata: data to be inserted |
| 126 | :param kwargs: used to override the indata descriptor |
| 127 | :param headers: http request headers |
| tierno | b92094f | 2018-05-11 13:44:22 +0200 | [diff] [blame] | 128 | :param force: If True avoid some dependence checks |
| tierno | 0ffaa99 | 2018-05-09 13:21:56 +0200 | [diff] [blame] | 129 | :return: _id: identity of the inserted data. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 130 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 131 | if topic not in self.map_topic: |
| 132 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 133 | return self.map_topic[topic].new(rollback, session, indata, kwargs, headers, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 134 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 135 | def upload_content(self, session, topic, _id, indata, kwargs, headers, force=False): |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 136 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 137 | Upload content for an already created entry (_id) |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 138 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 139 | :param topic: it can be: users, projects, vnfds, nsds, |
| 140 | :param _id: server id of the item |
| 141 | :param indata: data to be inserted |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 142 | :param kwargs: used to override the indata descriptor |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 143 | :param headers: http request headers |
| 144 | :param force: If True avoid some dependence checks |
| 145 | :return: _id: identity of the inserted data. |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 146 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 147 | if topic not in self.map_topic: |
| 148 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 149 | return self.map_topic[topic].upload_content(session, _id, indata, kwargs, headers, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 150 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 151 | def get_item_list(self, session, topic, filter_q=None): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 152 | """ |
| 153 | Get a list of items |
| 154 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 155 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 156 | :param filter_q: filter of data to be applied |
| 157 | :return: The list, it can be empty if no one match the filter_q. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 158 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 159 | if topic not in self.map_topic: |
| 160 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 161 | return self.map_topic[topic].list(session, filter_q) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 162 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 163 | def get_item(self, session, topic, _id): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 164 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 165 | Get complete information on an item |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 166 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 167 | :param topic: it can be: users, projects, vnfds, nsds, |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 168 | :param _id: server id of the item |
| 169 | :return: dictionary, raise exception if not found. |
| 170 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 171 | if topic not in self.map_topic: |
| 172 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 173 | return self.map_topic[topic].show(session, _id) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 174 | |
| tierno | 8700604 | 2018-10-24 12:50:20 +0200 | [diff] [blame] | 175 | def get_file(self, session, topic, _id, path=None, accept_header=None): |
| 176 | """ |
| 177 | Get descriptor package or artifact file content |
| 178 | :param session: contains the used login username and working project |
| 179 | :param topic: it can be: users, projects, vnfds, nsds, |
| 180 | :param _id: server id of the item |
| 181 | :param path: artifact path or "$DESCRIPTOR" or None |
| 182 | :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain |
| 183 | :return: opened file plus Accept format or raises an exception |
| 184 | """ |
| 185 | if topic not in self.map_topic: |
| 186 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 187 | return self.map_topic[topic].get_file(session, _id, path, accept_header) |
| 188 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 189 | def del_item_list(self, session, topic, _filter=None): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 190 | """ |
| 191 | Delete a list of items |
| 192 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 193 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 194 | :param _filter: filter of data to be applied |
| 195 | :return: The deleted list, it can be empty if no one match the _filter. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 196 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 197 | if topic not in self.map_topic: |
| 198 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 199 | return self.map_topic[topic].delete_list(session, _filter) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 200 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 201 | def del_item(self, session, topic, _id, force=False): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 202 | """ |
| tierno | b92094f | 2018-05-11 13:44:22 +0200 | [diff] [blame] | 203 | Delete item by its internal id |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 204 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 205 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 206 | :param _id: server id of the item |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 207 | :param force: indicates if deletion must be forced in case of conflict |
| tierno | 09c073e | 2018-04-26 13:36:48 +0200 | [diff] [blame] | 208 | :return: dictionary with deleted item _id. It raises exception if not found. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 209 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 210 | if topic not in self.map_topic: |
| 211 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 212 | return self.map_topic[topic].delete(session, _id, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 213 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 214 | def edit_item(self, session, topic, _id, indata=None, kwargs=None, force=False): |
| 215 | """ |
| 216 | Update an existing entry at database |
| 217 | :param session: contains the used login username and working project |
| 218 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 219 | :param _id: identifier to be updated |
| 220 | :param indata: data to be inserted |
| 221 | :param kwargs: used to override the indata descriptor |
| 222 | :param force: If True avoid some dependence checks |
| 223 | :return: dictionary, raise exception if not found. |
| 224 | """ |
| 225 | if topic not in self.map_topic: |
| 226 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 227 | return self.map_topic[topic].edit(session, _id, indata, kwargs, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 228 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 229 | def create_admin(self): |
| 230 | """ |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 231 | Creates a new user admin/admin into database if database is empty. Useful for initialization |
| 232 | :return: _id identity of the inserted data, or None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 233 | """ |
| 234 | users = self.db.get_one("users", fail_on_empty=False, fail_on_more=False) |
| 235 | if users: |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 236 | return None |
| 237 | # raise EngineException("Unauthorized. Database users is not empty", HTTPStatus.UNAUTHORIZED) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 238 | user_desc = {"username": "admin", "password": "admin", "projects": ["admin"]} |
| 239 | fake_session = {"project_id": "admin", "username": "admin", "admin": True} |
| 240 | roolback_list = [] |
| 241 | _id = self.map_topic["users"].new(roolback_list, fake_session, user_desc, force=True) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 242 | return _id |
| 243 | |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 244 | def upgrade_db(self, current_version, target_version): |
| 245 | if not target_version or current_version == target_version: |
| 246 | return |
| 247 | if target_version == '1.0': |
| 248 | if not current_version: |
| 249 | # create database version |
| 250 | serial = urandom(32) |
| 251 | version_data = { |
| 252 | "_id": 'version', # Always 'version' |
| 253 | "version_int": 1000, # version number |
| 254 | "version": '1.0', # version text |
| 255 | "date": "2018-10-25", # version date |
| 256 | "description": "added serial", # changes in this version |
| 257 | 'status': 'ENABLED', # ENABLED, DISABLED (migration in process), ERROR, |
| 258 | 'serial': b64encode(serial) |
| 259 | } |
| 260 | self.db.create("admin", version_data) |
| 261 | self.db.set_secret_key(serial) |
| 262 | # TODO add future migrations here |
| 263 | |
| 264 | raise EngineException("Wrong database version '{}'. Expected '{}'" |
| 265 | ". It cannot be up/down-grade".format(current_version, target_version), |
| 266 | http_code=HTTPStatus.INTERNAL_SERVER_ERROR) |
| 267 | |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 268 | def init_db(self, target_version='1.0'): |
| 269 | """ |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 270 | Init database if empty. If not empty it checks that database version and migrates if needed |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 271 | If empty, it creates a new user admin/admin at 'users' and a new entry at 'version' |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 272 | :param target_version: check desired database version. Migrate to it if possible or raises exception |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 273 | :return: None if ok, exception if error or if the version is different. |
| 274 | """ |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 275 | |
| 276 | version_data = self.db.get_one("admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True) |
| 277 | # check database status is ok |
| 278 | if version_data and version_data.get("status") != 'ENABLED': |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 279 | raise EngineException("Wrong database status '{}'".format( |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 280 | version_data["status"]), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 281 | |
| 282 | # check version |
| 283 | db_version = None if not version_data else version_data.get("version") |
| 284 | if db_version != target_version: |
| 285 | self.upgrade_db(db_version, target_version) |
| 286 | |
| 287 | # create user admin if not exist |
| 288 | self.create_admin() |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 289 | return |