| 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 |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 17 | import yaml |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 18 | from osm_common import dbmongo, dbmemory, fslocal, msglocal, msgkafka, version as common_version |
| 19 | from osm_common.dbbase import DbException |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 20 | from osm_common.fsbase import FsException |
| 21 | from osm_common.msgbase import MsgException |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 22 | from http import HTTPStatus |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 23 | |
| 24 | from authconn_keystone import AuthconnKeystone |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 25 | from base_topic import EngineException, versiontuple |
| tierno | 55ba2e6 | 2018-12-11 17:22:22 +0000 | [diff] [blame] | 26 | from admin_topics import UserTopic, ProjectTopic, VimAccountTopic, WimAccountTopic, SdnTopic |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 27 | from admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 28 | from descriptor_topics import VnfdTopic, NsdTopic, PduTopic, NstTopic |
| Felipe Vicens | 07f3172 | 2018-10-29 15:16:44 +0100 | [diff] [blame] | 29 | from instance_topics import NsrTopic, VnfrTopic, NsLcmOpTopic, NsiTopic, NsiLcmOpTopic |
| vijay.r | 35ef2f7 | 2019-04-30 17:55:49 +0530 | [diff] [blame^] | 30 | from pmjobs_topics import PmJobsTopic |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 31 | from base64 import b64encode |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 32 | from os import urandom, path |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 33 | from threading import Lock |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 34 | |
| 35 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 36 | min_common_version = "0.1.16" |
| tierno | 441dbbf | 2018-07-10 12:52:48 +0200 | [diff] [blame] | 37 | |
| 38 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 39 | class Engine(object): |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 40 | map_from_topic_to_class = { |
| 41 | "vnfds": VnfdTopic, |
| 42 | "nsds": NsdTopic, |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 43 | "nsts": NstTopic, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 44 | "pdus": PduTopic, |
| 45 | "nsrs": NsrTopic, |
| 46 | "vnfrs": VnfrTopic, |
| 47 | "nslcmops": NsLcmOpTopic, |
| 48 | "vim_accounts": VimAccountTopic, |
| tierno | 55ba2e6 | 2018-12-11 17:22:22 +0000 | [diff] [blame] | 49 | "wim_accounts": WimAccountTopic, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 50 | "sdns": SdnTopic, |
| 51 | "users": UserTopic, |
| 52 | "projects": ProjectTopic, |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 53 | "nsis": NsiTopic, |
| Felipe Vicens | 07f3172 | 2018-10-29 15:16:44 +0100 | [diff] [blame] | 54 | "nsilcmops": NsiLcmOpTopic |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 55 | # [NEW_TOPIC]: add an entry here |
| vijay.r | 35ef2f7 | 2019-04-30 17:55:49 +0530 | [diff] [blame^] | 56 | # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 57 | } |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 58 | |
| 59 | def __init__(self): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 60 | self.db = None |
| 61 | self.fs = None |
| 62 | self.msg = None |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 63 | self.auth = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 64 | self.config = None |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 65 | self.operations = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 66 | self.logger = logging.getLogger("nbi.engine") |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 67 | self.map_topic = {} |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 68 | self.write_lock = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 69 | |
| 70 | def start(self, config): |
| 71 | """ |
| 72 | Connect to database, filesystem storage, and messaging |
| 73 | :param config: two level dictionary with configuration. Top level should contain 'database', 'storage', |
| 74 | :return: None |
| 75 | """ |
| 76 | self.config = config |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 77 | # check right version of common |
| 78 | if versiontuple(common_version) < versiontuple(min_common_version): |
| 79 | raise EngineException("Not compatible osm/common version '{}'. Needed '{}' or higher".format( |
| 80 | common_version, min_common_version)) |
| 81 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 82 | try: |
| 83 | if not self.db: |
| 84 | if config["database"]["driver"] == "mongo": |
| 85 | self.db = dbmongo.DbMongo() |
| 86 | self.db.db_connect(config["database"]) |
| 87 | elif config["database"]["driver"] == "memory": |
| 88 | self.db = dbmemory.DbMemory() |
| 89 | self.db.db_connect(config["database"]) |
| 90 | else: |
| 91 | raise EngineException("Invalid configuration param '{}' at '[database]':'driver'".format( |
| 92 | config["database"]["driver"])) |
| 93 | if not self.fs: |
| 94 | if config["storage"]["driver"] == "local": |
| 95 | self.fs = fslocal.FsLocal() |
| 96 | self.fs.fs_connect(config["storage"]) |
| 97 | else: |
| 98 | raise EngineException("Invalid configuration param '{}' at '[storage]':'driver'".format( |
| 99 | config["storage"]["driver"])) |
| 100 | if not self.msg: |
| 101 | if config["message"]["driver"] == "local": |
| 102 | self.msg = msglocal.MsgLocal() |
| 103 | self.msg.connect(config["message"]) |
| 104 | elif config["message"]["driver"] == "kafka": |
| 105 | self.msg = msgkafka.MsgKafka() |
| 106 | self.msg.connect(config["message"]) |
| 107 | else: |
| 108 | raise EngineException("Invalid configuration param '{}' at '[message]':'driver'".format( |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 109 | config["message"]["driver"])) |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 110 | if not self.auth: |
| 111 | if config["authentication"]["backend"] == "keystone": |
| 112 | self.auth = AuthconnKeystone(config["authentication"]) |
| 113 | if not self.operations: |
| 114 | if "resources_to_operations" in config["rbac"]: |
| 115 | resources_to_operations_file = config["rbac"]["resources_to_operations"] |
| 116 | else: |
| 117 | possible_paths = ( |
| 118 | __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml", |
| 119 | "./resources_to_operations.yml" |
| 120 | ) |
| 121 | for config_file in possible_paths: |
| 122 | if path.isfile(config_file): |
| 123 | resources_to_operations_file = config_file |
| 124 | break |
| 125 | if not resources_to_operations_file: |
| 126 | raise EngineException("Invalid permission configuration: resources_to_operations file missing") |
| 127 | |
| 128 | with open(resources_to_operations_file, 'r') as f: |
| 129 | resources_to_operations = yaml.load(f) |
| 130 | |
| 131 | self.operations = [] |
| 132 | |
| 133 | for _, value in resources_to_operations["resources_to_operations"].items(): |
| 134 | if value not in self.operations: |
| 135 | self.operations += value |
| 136 | |
| 137 | if config["authentication"]["backend"] == "keystone": |
| 138 | self.map_from_topic_to_class["users"] = UserTopicAuth |
| 139 | self.map_from_topic_to_class["projects"] = ProjectTopicAuth |
| 140 | self.map_from_topic_to_class["roles"] = RoleTopicAuth |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 141 | |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 142 | self.write_lock = Lock() |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 143 | # create one class per topic |
| 144 | for topic, topic_class in self.map_from_topic_to_class.items(): |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 145 | if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth): |
| 146 | self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth) |
| 147 | elif self.auth and topic_class == RoleTopicAuth: |
| 148 | self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth, |
| 149 | self.operations) |
| 150 | else: |
| 151 | self.map_topic[topic] = topic_class(self.db, self.fs, self.msg) |
| vijay.r | 35ef2f7 | 2019-04-30 17:55:49 +0530 | [diff] [blame^] | 152 | self.map_topic[topic] = topic_class(self.db, self.fs, self.msg) |
| 153 | self.map_topic["pm_jobs"] = PmJobsTopic(config["prometheus"].get("host"), config["prometheus"].get("port")) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 154 | except (DbException, FsException, MsgException) as e: |
| 155 | raise EngineException(str(e), http_code=e.http_code) |
| 156 | |
| 157 | def stop(self): |
| 158 | try: |
| 159 | if self.db: |
| 160 | self.db.db_disconnect() |
| 161 | if self.fs: |
| 162 | self.fs.fs_disconnect() |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 163 | if self.msg: |
| 164 | self.msg.disconnect() |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 165 | self.write_lock = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 166 | except (DbException, FsException, MsgException) as e: |
| 167 | raise EngineException(str(e), http_code=e.http_code) |
| 168 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 169 | 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] | 170 | """ |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 171 | Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry, |
| 172 | that must be completed with a call to method upload_content |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 173 | :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] | 174 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 175 | :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 176 | :param indata: data to be inserted |
| 177 | :param kwargs: used to override the indata descriptor |
| 178 | :param headers: http request headers |
| tierno | b92094f | 2018-05-11 13:44:22 +0200 | [diff] [blame] | 179 | :param force: If True avoid some dependence checks |
| tierno | 0ffaa99 | 2018-05-09 13:21:56 +0200 | [diff] [blame] | 180 | :return: _id: identity of the inserted data. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 181 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 182 | if topic not in self.map_topic: |
| 183 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 184 | with self.write_lock: |
| 185 | return self.map_topic[topic].new(rollback, session, indata, kwargs, headers, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 186 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 187 | def upload_content(self, session, topic, _id, indata, kwargs, headers, force=False): |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 188 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 189 | Upload content for an already created entry (_id) |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 190 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 191 | :param topic: it can be: users, projects, vnfds, nsds, |
| 192 | :param _id: server id of the item |
| 193 | :param indata: data to be inserted |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 194 | :param kwargs: used to override the indata descriptor |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 195 | :param headers: http request headers |
| 196 | :param force: If True avoid some dependence checks |
| 197 | :return: _id: identity of the inserted data. |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 198 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 199 | if topic not in self.map_topic: |
| 200 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 201 | with self.write_lock: |
| 202 | return self.map_topic[topic].upload_content(session, _id, indata, kwargs, headers, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 203 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 204 | def get_item_list(self, session, topic, filter_q=None): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 205 | """ |
| 206 | Get a list of items |
| 207 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 208 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 209 | :param filter_q: filter of data to be applied |
| 210 | :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] | 211 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 212 | if topic not in self.map_topic: |
| 213 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 214 | return self.map_topic[topic].list(session, filter_q) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 215 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 216 | def get_item(self, session, topic, _id): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 217 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 218 | Get complete information on an item |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 219 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 220 | :param topic: it can be: users, projects, vnfds, nsds, |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 221 | :param _id: server id of the item |
| 222 | :return: dictionary, raise exception if not found. |
| 223 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 224 | if topic not in self.map_topic: |
| 225 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 226 | return self.map_topic[topic].show(session, _id) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 227 | |
| tierno | 8700604 | 2018-10-24 12:50:20 +0200 | [diff] [blame] | 228 | def get_file(self, session, topic, _id, path=None, accept_header=None): |
| 229 | """ |
| 230 | Get descriptor package or artifact file content |
| 231 | :param session: contains the used login username and working project |
| 232 | :param topic: it can be: users, projects, vnfds, nsds, |
| 233 | :param _id: server id of the item |
| 234 | :param path: artifact path or "$DESCRIPTOR" or None |
| 235 | :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain |
| 236 | :return: opened file plus Accept format or raises an exception |
| 237 | """ |
| 238 | if topic not in self.map_topic: |
| 239 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 240 | return self.map_topic[topic].get_file(session, _id, path, accept_header) |
| 241 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 242 | def del_item_list(self, session, topic, _filter=None): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 243 | """ |
| 244 | Delete a list of items |
| 245 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 246 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 247 | :param _filter: filter of data to be applied |
| 248 | :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] | 249 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 250 | if topic not in self.map_topic: |
| 251 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 252 | with self.write_lock: |
| 253 | return self.map_topic[topic].delete_list(session, _filter) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 254 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 255 | def del_item(self, session, topic, _id, force=False): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 256 | """ |
| tierno | b92094f | 2018-05-11 13:44:22 +0200 | [diff] [blame] | 257 | Delete item by its internal id |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 258 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 259 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 260 | :param _id: server id of the item |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 261 | :param force: indicates if deletion must be forced in case of conflict |
| tierno | 09c073e | 2018-04-26 13:36:48 +0200 | [diff] [blame] | 262 | :return: dictionary with deleted item _id. It raises exception if not found. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 263 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 264 | if topic not in self.map_topic: |
| 265 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 266 | with self.write_lock: |
| 267 | return self.map_topic[topic].delete(session, _id, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 268 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 269 | def edit_item(self, session, topic, _id, indata=None, kwargs=None, force=False): |
| 270 | """ |
| 271 | Update an existing entry at database |
| 272 | :param session: contains the used login username and working project |
| 273 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 274 | :param _id: identifier to be updated |
| 275 | :param indata: data to be inserted |
| 276 | :param kwargs: used to override the indata descriptor |
| 277 | :param force: If True avoid some dependence checks |
| 278 | :return: dictionary, raise exception if not found. |
| 279 | """ |
| 280 | if topic not in self.map_topic: |
| 281 | raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 282 | with self.write_lock: |
| 283 | return self.map_topic[topic].edit(session, _id, indata, kwargs, force) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 284 | |
| delacruzramo | c061f56 | 2019-04-05 11:00:02 +0200 | [diff] [blame] | 285 | def create_admin_project(self): |
| 286 | """ |
| 287 | Creates a new project 'admin' into database if database is empty. Useful for initialization. |
| 288 | :return: _id identity of the inserted data, or None |
| 289 | """ |
| 290 | |
| 291 | projects = self.db.get_one("projects", fail_on_empty=False, fail_on_more=False) |
| 292 | if projects: |
| 293 | return None |
| 294 | project_desc = {"name": "admin"} |
| 295 | fake_session = {"project_id": "admin", "username": "admin", "admin": True} |
| 296 | rollback_list = [] |
| 297 | _id = self.map_topic["projects"].new(rollback_list, fake_session, project_desc, force=True) |
| 298 | return _id |
| 299 | |
| 300 | def create_admin_user(self): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 301 | """ |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 302 | Creates a new user admin/admin into database if database is empty. Useful for initialization |
| 303 | :return: _id identity of the inserted data, or None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 304 | """ |
| 305 | users = self.db.get_one("users", fail_on_empty=False, fail_on_more=False) |
| 306 | if users: |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 307 | return None |
| 308 | # raise EngineException("Unauthorized. Database users is not empty", HTTPStatus.UNAUTHORIZED) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 309 | user_desc = {"username": "admin", "password": "admin", "projects": ["admin"]} |
| 310 | fake_session = {"project_id": "admin", "username": "admin", "admin": True} |
| 311 | roolback_list = [] |
| 312 | _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] | 313 | return _id |
| 314 | |
| delacruzramo | c061f56 | 2019-04-05 11:00:02 +0200 | [diff] [blame] | 315 | def create_admin(self): |
| 316 | """ |
| 317 | Creates new 'admin' user and project into database if database is empty. Useful for initialization. |
| 318 | :return: _id identity of the inserted data, or None |
| 319 | """ |
| 320 | project_id = self.create_admin_project() |
| 321 | user_id = self.create_admin_user() |
| 322 | if not project_id and not user_id: |
| 323 | return None |
| 324 | else: |
| 325 | return {'project_id': project_id, 'user_id': user_id} |
| 326 | |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 327 | def upgrade_db(self, current_version, target_version): |
| 328 | if not target_version or current_version == target_version: |
| 329 | return |
| 330 | if target_version == '1.0': |
| 331 | if not current_version: |
| 332 | # create database version |
| 333 | serial = urandom(32) |
| 334 | version_data = { |
| 335 | "_id": 'version', # Always 'version' |
| 336 | "version_int": 1000, # version number |
| 337 | "version": '1.0', # version text |
| 338 | "date": "2018-10-25", # version date |
| 339 | "description": "added serial", # changes in this version |
| 340 | 'status': 'ENABLED', # ENABLED, DISABLED (migration in process), ERROR, |
| 341 | 'serial': b64encode(serial) |
| 342 | } |
| 343 | self.db.create("admin", version_data) |
| 344 | self.db.set_secret_key(serial) |
| tierno | bee085c | 2018-12-12 17:03:04 +0000 | [diff] [blame] | 345 | return |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 346 | # TODO add future migrations here |
| 347 | |
| 348 | raise EngineException("Wrong database version '{}'. Expected '{}'" |
| 349 | ". It cannot be up/down-grade".format(current_version, target_version), |
| 350 | http_code=HTTPStatus.INTERNAL_SERVER_ERROR) |
| 351 | |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 352 | def init_db(self, target_version='1.0'): |
| 353 | """ |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 354 | 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] | 355 | 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] | 356 | :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] | 357 | :return: None if ok, exception if error or if the version is different. |
| 358 | """ |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 359 | |
| 360 | version_data = self.db.get_one("admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True) |
| 361 | # check database status is ok |
| 362 | if version_data and version_data.get("status") != 'ENABLED': |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 363 | raise EngineException("Wrong database status '{}'".format( |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 364 | version_data["status"]), HTTPStatus.INTERNAL_SERVER_ERROR) |
| 365 | |
| 366 | # check version |
| 367 | db_version = None if not version_data else version_data.get("version") |
| 368 | if db_version != target_version: |
| 369 | self.upgrade_db(db_version, target_version) |
| 370 | |
| 371 | # create user admin if not exist |
| 372 | self.create_admin() |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 373 | return |