| 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 |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 17 | |
| tierno | 9e87a7f | 2020-03-23 09:24:10 +0000 | [diff] [blame] | 18 | # import yaml |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 19 | from osm_common import ( |
| 20 | dbmongo, |
| 21 | dbmemory, |
| 22 | fslocal, |
| 23 | fsmongo, |
| 24 | msglocal, |
| 25 | msgkafka, |
| 26 | version as common_version, |
| 27 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 28 | from osm_common.dbbase import DbException |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 29 | from osm_common.fsbase import FsException |
| 30 | from osm_common.msgbase import MsgException |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 31 | from http import HTTPStatus |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 32 | |
| tierno | 23acf40 | 2019-08-28 13:36:34 +0000 | [diff] [blame] | 33 | from osm_nbi.authconn_keystone import AuthconnKeystone |
| 34 | from osm_nbi.authconn_internal import AuthconnInternal |
| K Sai Kiran | 7ddb073 | 2020-10-30 11:14:44 +0530 | [diff] [blame] | 35 | from osm_nbi.authconn_tacacs import AuthconnTacacs |
| tierno | 23acf40 | 2019-08-28 13:36:34 +0000 | [diff] [blame] | 36 | from osm_nbi.base_topic import EngineException, versiontuple |
| 37 | from osm_nbi.admin_topics import VimAccountTopic, WimAccountTopic, SdnTopic |
| Felipe Vicens | b66b041 | 2020-05-06 10:11:00 +0200 | [diff] [blame] | 38 | from osm_nbi.admin_topics import K8sClusterTopic, K8sRepoTopic, OsmRepoTopic |
| David Garcia | ecb4132 | 2021-03-31 19:10:46 +0200 | [diff] [blame] | 39 | from osm_nbi.admin_topics import VcaTopic |
| tierno | 23acf40 | 2019-08-28 13:36:34 +0000 | [diff] [blame] | 40 | from osm_nbi.admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 41 | from osm_nbi.descriptor_topics import ( |
| 42 | VnfdTopic, |
| 43 | NsdTopic, |
| 44 | PduTopic, |
| 45 | NstTopic, |
| 46 | VnfPkgOpTopic, |
| 47 | ) |
| 48 | from osm_nbi.instance_topics import ( |
| 49 | NsrTopic, |
| 50 | VnfrTopic, |
| 51 | NsLcmOpTopic, |
| 52 | NsiTopic, |
| 53 | NsiLcmOpTopic, |
| 54 | ) |
| almagia | e47b913 | 2022-05-17 14:12:22 +0200 | [diff] [blame] | 55 | from osm_nbi.vnf_instance_topics import VnfInstances, VnfLcmOpTopic |
| tierno | 23acf40 | 2019-08-28 13:36:34 +0000 | [diff] [blame] | 56 | from osm_nbi.pmjobs_topics import PmJobsTopic |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 57 | from osm_nbi.subscription_topics import NslcmSubscriptionsTopic |
| selvi.j | f100459 | 2022-04-29 05:42:35 +0000 | [diff] [blame] | 58 | from osm_nbi.osm_vnfm.vnf_subscription import VnflcmSubscriptionsTopic |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 59 | from base64 import b64encode |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 60 | from os import urandom # , path |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 61 | from threading import Lock |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 62 | |
| 63 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 64 | min_common_version = "0.1.16" |
| tierno | 441dbbf | 2018-07-10 12:52:48 +0200 | [diff] [blame] | 65 | |
| 66 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 67 | class Engine(object): |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 68 | map_from_topic_to_class = { |
| 69 | "vnfds": VnfdTopic, |
| 70 | "nsds": NsdTopic, |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 71 | "nsts": NstTopic, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 72 | "pdus": PduTopic, |
| 73 | "nsrs": NsrTopic, |
| 74 | "vnfrs": VnfrTopic, |
| 75 | "nslcmops": NsLcmOpTopic, |
| 76 | "vim_accounts": VimAccountTopic, |
| tierno | 55ba2e6 | 2018-12-11 17:22:22 +0000 | [diff] [blame] | 77 | "wim_accounts": WimAccountTopic, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 78 | "sdns": SdnTopic, |
| delacruzramo | fe598fe | 2019-10-23 18:25:11 +0200 | [diff] [blame] | 79 | "k8sclusters": K8sClusterTopic, |
| David Garcia | ecb4132 | 2021-03-31 19:10:46 +0200 | [diff] [blame] | 80 | "vca": VcaTopic, |
| delacruzramo | fe598fe | 2019-10-23 18:25:11 +0200 | [diff] [blame] | 81 | "k8srepos": K8sRepoTopic, |
| Felipe Vicens | b66b041 | 2020-05-06 10:11:00 +0200 | [diff] [blame] | 82 | "osmrepos": OsmRepoTopic, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 83 | "users": UserTopicAuth, # Valid for both internal and keystone authentication backends |
| 84 | "projects": ProjectTopicAuth, # Valid for both internal and keystone authentication backends |
| 85 | "roles": RoleTopicAuth, # Valid for both internal and keystone authentication backends |
| Felipe Vicens | b57758d | 2018-10-16 16:00:20 +0200 | [diff] [blame] | 86 | "nsis": NsiTopic, |
| delacruzramo | 271d200 | 2019-12-02 21:00:37 +0100 | [diff] [blame] | 87 | "nsilcmops": NsiLcmOpTopic, |
| 88 | "vnfpkgops": VnfPkgOpTopic, |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 89 | "nslcm_subscriptions": NslcmSubscriptionsTopic, |
| almagia | e47b913 | 2022-05-17 14:12:22 +0200 | [diff] [blame] | 90 | "vnf_instances": VnfInstances, |
| 91 | "vnflcmops": VnfLcmOpTopic, |
| selvi.j | f100459 | 2022-04-29 05:42:35 +0000 | [diff] [blame] | 92 | "vnflcm_subscriptions": VnflcmSubscriptionsTopic, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 93 | # [NEW_TOPIC]: add an entry here |
| vijay.r | 35ef2f7 | 2019-04-30 17:55:49 +0530 | [diff] [blame] | 94 | # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 95 | } |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 96 | |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 97 | map_target_version_to_int = { |
| 98 | "1.0": 1000, |
| tierno | 1f029d8 | 2019-06-13 22:37:04 +0000 | [diff] [blame] | 99 | "1.1": 1001, |
| 100 | "1.2": 1002, |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 101 | # Add new versions here |
| 102 | } |
| 103 | |
| delacruzramo | ad682a5 | 2019-12-10 16:26:34 +0100 | [diff] [blame] | 104 | def __init__(self, authenticator): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 105 | self.db = None |
| 106 | self.fs = None |
| 107 | self.msg = None |
| delacruzramo | ad682a5 | 2019-12-10 16:26:34 +0100 | [diff] [blame] | 108 | self.authconn = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 109 | self.config = None |
| tierno | 9e87a7f | 2020-03-23 09:24:10 +0000 | [diff] [blame] | 110 | # self.operations = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 111 | self.logger = logging.getLogger("nbi.engine") |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 112 | self.map_topic = {} |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 113 | self.write_lock = None |
| delacruzramo | ad682a5 | 2019-12-10 16:26:34 +0100 | [diff] [blame] | 114 | # self.token_cache = token_cache |
| 115 | self.authenticator = authenticator |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 116 | |
| 117 | def start(self, config): |
| 118 | """ |
| 119 | Connect to database, filesystem storage, and messaging |
| 120 | :param config: two level dictionary with configuration. Top level should contain 'database', 'storage', |
| 121 | :return: None |
| 122 | """ |
| 123 | self.config = config |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 124 | # check right version of common |
| 125 | if versiontuple(common_version) < versiontuple(min_common_version): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 126 | raise EngineException( |
| 127 | "Not compatible osm/common version '{}'. Needed '{}' or higher".format( |
| 128 | common_version, min_common_version |
| 129 | ) |
| 130 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 131 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 132 | try: |
| 133 | if not self.db: |
| 134 | if config["database"]["driver"] == "mongo": |
| 135 | self.db = dbmongo.DbMongo() |
| 136 | self.db.db_connect(config["database"]) |
| 137 | elif config["database"]["driver"] == "memory": |
| 138 | self.db = dbmemory.DbMemory() |
| 139 | self.db.db_connect(config["database"]) |
| 140 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 141 | raise EngineException( |
| 142 | "Invalid configuration param '{}' at '[database]':'driver'".format( |
| 143 | config["database"]["driver"] |
| 144 | ) |
| 145 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 146 | if not self.fs: |
| 147 | if config["storage"]["driver"] == "local": |
| 148 | self.fs = fslocal.FsLocal() |
| 149 | self.fs.fs_connect(config["storage"]) |
| Eduardo Sousa | 7e0eb13 | 2019-06-21 11:50:21 +0100 | [diff] [blame] | 150 | elif config["storage"]["driver"] == "mongo": |
| 151 | self.fs = fsmongo.FsMongo() |
| 152 | self.fs.fs_connect(config["storage"]) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 153 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 154 | raise EngineException( |
| 155 | "Invalid configuration param '{}' at '[storage]':'driver'".format( |
| 156 | config["storage"]["driver"] |
| 157 | ) |
| 158 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 159 | if not self.msg: |
| 160 | if config["message"]["driver"] == "local": |
| 161 | self.msg = msglocal.MsgLocal() |
| 162 | self.msg.connect(config["message"]) |
| 163 | elif config["message"]["driver"] == "kafka": |
| 164 | self.msg = msgkafka.MsgKafka() |
| 165 | self.msg.connect(config["message"]) |
| 166 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 167 | raise EngineException( |
| 168 | "Invalid configuration param '{}' at '[message]':'driver'".format( |
| 169 | config["message"]["driver"] |
| 170 | ) |
| 171 | ) |
| delacruzramo | ad682a5 | 2019-12-10 16:26:34 +0100 | [diff] [blame] | 172 | if not self.authconn: |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 173 | if config["authentication"]["backend"] == "keystone": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 174 | self.authconn = AuthconnKeystone( |
| 175 | config["authentication"], |
| 176 | self.db, |
| 177 | self.authenticator.role_permissions, |
| 178 | ) |
| K Sai Kiran | 7ddb073 | 2020-10-30 11:14:44 +0530 | [diff] [blame] | 179 | elif config["authentication"]["backend"] == "tacacs": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 180 | self.authconn = AuthconnTacacs( |
| 181 | config["authentication"], |
| 182 | self.db, |
| 183 | self.authenticator.role_permissions, |
| 184 | ) |
| delacruzramo | ceb8baf | 2019-06-21 14:25:38 +0200 | [diff] [blame] | 185 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 186 | self.authconn = AuthconnInternal( |
| 187 | config["authentication"], |
| 188 | self.db, |
| 189 | self.authenticator.role_permissions, |
| 190 | ) |
| tierno | 9e87a7f | 2020-03-23 09:24:10 +0000 | [diff] [blame] | 191 | # if not self.operations: |
| 192 | # if "resources_to_operations" in config["rbac"]: |
| 193 | # resources_to_operations_file = config["rbac"]["resources_to_operations"] |
| 194 | # else: |
| 195 | # possible_paths = ( |
| 196 | # __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml", |
| 197 | # "./resources_to_operations.yml" |
| 198 | # ) |
| 199 | # for config_file in possible_paths: |
| 200 | # if path.isfile(config_file): |
| 201 | # resources_to_operations_file = config_file |
| 202 | # break |
| 203 | # if not resources_to_operations_file: |
| 204 | # raise EngineException("Invalid permission configuration:" |
| 205 | # "resources_to_operations file missing") |
| 206 | # |
| 207 | # with open(resources_to_operations_file, 'r') as f: |
| garciadeblas | 4cd875d | 2023-02-14 19:05:34 +0100 | [diff] [blame] | 208 | # resources_to_operations = yaml.safeload(f) |
| tierno | 9e87a7f | 2020-03-23 09:24:10 +0000 | [diff] [blame] | 209 | # |
| 210 | # self.operations = [] |
| 211 | # |
| 212 | # for _, value in resources_to_operations["resources_to_operations"].items(): |
| 213 | # if value not in self.operations: |
| 214 | # self.operations += [value] |
| Eduardo Sousa | 5c01e19 | 2019-05-08 02:35:47 +0100 | [diff] [blame] | 215 | |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 216 | self.write_lock = Lock() |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 217 | # create one class per topic |
| 218 | for topic, topic_class in self.map_from_topic_to_class.items(): |
| delacruzramo | 32bab47 | 2019-09-13 12:24:22 +0200 | [diff] [blame] | 219 | # if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth): |
| 220 | # self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth) |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 221 | self.map_topic[topic] = topic_class( |
| 222 | self.db, self.fs, self.msg, self.authconn |
| 223 | ) |
| 224 | |
| 225 | self.map_topic["pm_jobs"] = PmJobsTopic( |
| 226 | self.db, |
| 227 | config["prometheus"].get("host"), |
| 228 | config["prometheus"].get("port"), |
| 229 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 230 | except (DbException, FsException, MsgException) as e: |
| 231 | raise EngineException(str(e), http_code=e.http_code) |
| 232 | |
| 233 | def stop(self): |
| 234 | try: |
| 235 | if self.db: |
| 236 | self.db.db_disconnect() |
| 237 | if self.fs: |
| 238 | self.fs.fs_disconnect() |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 239 | if self.msg: |
| 240 | self.msg.disconnect() |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 241 | self.write_lock = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 242 | except (DbException, FsException, MsgException) as e: |
| 243 | raise EngineException(str(e), http_code=e.http_code) |
| 244 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 245 | def new_item( |
| 246 | self, rollback, session, topic, indata=None, kwargs=None, headers=None |
| 247 | ): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 248 | """ |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 249 | Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry, |
| 250 | that must be completed with a call to method upload_content |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 251 | :param rollback: list to append created items at database in case a rollback must to be done |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 252 | :param session: contains the used login username and working project, force to avoid checkins, public |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 253 | :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 254 | :param indata: data to be inserted |
| 255 | :param kwargs: used to override the indata descriptor |
| 256 | :param headers: http request headers |
| tierno | 0ffaa99 | 2018-05-09 13:21:56 +0200 | [diff] [blame] | 257 | :return: _id: identity of the inserted data. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 258 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 259 | if topic not in self.map_topic: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 260 | raise EngineException( |
| 261 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 262 | ) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 263 | with self.write_lock: |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 264 | return self.map_topic[topic].new(rollback, session, indata, kwargs, headers) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 265 | |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 266 | def upload_content(self, session, topic, _id, indata, kwargs, headers): |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 267 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 268 | Upload content for an already created entry (_id) |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 269 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 270 | :param topic: it can be: users, projects, vnfds, nsds, |
| 271 | :param _id: server id of the item |
| 272 | :param indata: data to be inserted |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 273 | :param kwargs: used to override the indata descriptor |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 274 | :param headers: http request headers |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 275 | :return: _id: identity of the inserted data. |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 276 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 277 | if topic not in self.map_topic: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 278 | raise EngineException( |
| 279 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 280 | ) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 281 | with self.write_lock: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 282 | return self.map_topic[topic].upload_content( |
| 283 | session, _id, indata, kwargs, headers |
| 284 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 285 | |
| Frank Bryden | 19b9752 | 2020-07-10 12:32:02 +0000 | [diff] [blame] | 286 | def get_item_list(self, session, topic, filter_q=None, api_req=False): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 287 | """ |
| 288 | Get a list of items |
| 289 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 290 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 291 | :param filter_q: filter of data to be applied |
| Frank Bryden | 19b9752 | 2020-07-10 12:32:02 +0000 | [diff] [blame] | 292 | :param api_req: True if this call is serving an external API request. False if serving internal request. |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 293 | :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] | 294 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 295 | if topic not in self.map_topic: |
| garciadeblas | f2af4a1 | 2023-01-24 16:56:54 +0100 | [diff] [blame] | 296 | raise EngineException( |
| 297 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 298 | ) |
| Frank Bryden | 19b9752 | 2020-07-10 12:32:02 +0000 | [diff] [blame] | 299 | return self.map_topic[topic].list(session, filter_q, api_req) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 300 | |
| K Sai Kiran | 5758955 | 2021-01-27 21:38:34 +0530 | [diff] [blame] | 301 | def get_item(self, session, topic, _id, filter_q=None, api_req=False): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 302 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 303 | Get complete information on an item |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 304 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 305 | :param topic: it can be: users, projects, vnfds, nsds, |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 306 | :param _id: server id of the item |
| K Sai Kiran | 5758955 | 2021-01-27 21:38:34 +0530 | [diff] [blame] | 307 | :param filter_q: other arguments |
| Frank Bryden | 19b9752 | 2020-07-10 12:32:02 +0000 | [diff] [blame] | 308 | :param api_req: True if this call is serving an external API request. False if serving internal request. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 309 | :return: dictionary, raise exception if not found. |
| 310 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 311 | if topic not in self.map_topic: |
| garciadeblas | f2af4a1 | 2023-01-24 16:56:54 +0100 | [diff] [blame] | 312 | raise EngineException( |
| 313 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 314 | ) |
| K Sai Kiran | 5758955 | 2021-01-27 21:38:34 +0530 | [diff] [blame] | 315 | return self.map_topic[topic].show(session, _id, filter_q, api_req) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 316 | |
| tierno | 8700604 | 2018-10-24 12:50:20 +0200 | [diff] [blame] | 317 | def get_file(self, session, topic, _id, path=None, accept_header=None): |
| 318 | """ |
| 319 | Get descriptor package or artifact file content |
| 320 | :param session: contains the used login username and working project |
| 321 | :param topic: it can be: users, projects, vnfds, nsds, |
| 322 | :param _id: server id of the item |
| 323 | :param path: artifact path or "$DESCRIPTOR" or None |
| 324 | :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain |
| 325 | :return: opened file plus Accept format or raises an exception |
| 326 | """ |
| 327 | if topic not in self.map_topic: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 328 | raise EngineException( |
| 329 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 330 | ) |
| tierno | 8700604 | 2018-10-24 12:50:20 +0200 | [diff] [blame] | 331 | return self.map_topic[topic].get_file(session, _id, path, accept_header) |
| 332 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 333 | def del_item_list(self, session, topic, _filter=None): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 334 | """ |
| 335 | Delete a list of items |
| 336 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 337 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 338 | :param _filter: filter of data to be applied |
| 339 | :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] | 340 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 341 | if topic not in self.map_topic: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 342 | raise EngineException( |
| 343 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 344 | ) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 345 | with self.write_lock: |
| 346 | return self.map_topic[topic].delete_list(session, _filter) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 347 | |
| tierno | bee3bad | 2019-12-05 12:26:01 +0000 | [diff] [blame] | 348 | def del_item(self, session, topic, _id, not_send_msg=None): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 349 | """ |
| tierno | b92094f | 2018-05-11 13:44:22 +0200 | [diff] [blame] | 350 | Delete item by its internal id |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 351 | :param session: contains the used login username and working project |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 352 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 353 | :param _id: server id of the item |
| tierno | bee3bad | 2019-12-05 12:26:01 +0000 | [diff] [blame] | 354 | :param not_send_msg: If False, message will not be sent to kafka. |
| 355 | If a list, message is not sent, but content is stored in this variable so that the caller can send this |
| 356 | message using its own loop. If None, message is sent |
| delacruzramo | 01b15d3 | 2019-07-02 14:37:47 +0200 | [diff] [blame] | 357 | :return: dictionary with deleted item _id. It raises exception if not found. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 358 | """ |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 359 | if topic not in self.map_topic: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 360 | raise EngineException( |
| 361 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 362 | ) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 363 | with self.write_lock: |
| tierno | bee3bad | 2019-12-05 12:26:01 +0000 | [diff] [blame] | 364 | return self.map_topic[topic].delete(session, _id, not_send_msg=not_send_msg) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 365 | |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 366 | def edit_item(self, session, topic, _id, indata=None, kwargs=None): |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 367 | """ |
| 368 | Update an existing entry at database |
| 369 | :param session: contains the used login username and working project |
| 370 | :param topic: it can be: users, projects, vnfds, nsds, ... |
| 371 | :param _id: identifier to be updated |
| 372 | :param indata: data to be inserted |
| 373 | :param kwargs: used to override the indata descriptor |
| delacruzramo | 01b15d3 | 2019-07-02 14:37:47 +0200 | [diff] [blame] | 374 | :return: dictionary with edited item _id, raise exception if not found. |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 375 | """ |
| 376 | if topic not in self.map_topic: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 377 | raise EngineException( |
| 378 | "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR |
| 379 | ) |
| tierno | 04dbb0e | 2019-01-09 16:00:24 +0000 | [diff] [blame] | 380 | with self.write_lock: |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 381 | return self.map_topic[topic].edit(session, _id, indata, kwargs) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 382 | |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 383 | def upgrade_db(self, current_version, target_version): |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 384 | if target_version not in self.map_target_version_to_int.keys(): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 385 | raise EngineException( |
| 386 | "Cannot upgrade to version '{}' with this version of code".format( |
| 387 | target_version |
| 388 | ), |
| 389 | http_code=HTTPStatus.INTERNAL_SERVER_ERROR, |
| 390 | ) |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 391 | |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 392 | if current_version == target_version: |
| 393 | return |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 394 | |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 395 | target_version_int = self.map_target_version_to_int[target_version] |
| 396 | |
| 397 | if not current_version: |
| 398 | # create database version |
| 399 | serial = urandom(32) |
| 400 | version_data = { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 401 | "_id": "version", # Always "version" |
| 402 | "version_int": 1000, # version number |
| 403 | "version": "1.0", # version text |
| 404 | "date": "2018-10-25", # version date |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 405 | "description": "added serial", # changes in this version |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 406 | "status": "ENABLED", # ENABLED, DISABLED (migration in process), ERROR, |
| 407 | "serial": b64encode(serial), |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 408 | } |
| 409 | self.db.create("admin", version_data) |
| 410 | self.db.set_secret_key(serial) |
| 411 | current_version = "1.0" |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 412 | |
| 413 | if ( |
| 414 | current_version in ("1.0", "1.1") |
| 415 | and target_version_int >= self.map_target_version_to_int["1.2"] |
| 416 | ): |
| 417 | if self.config["authentication"]["backend"] == "internal": |
| delacruzramo | 01b15d3 | 2019-07-02 14:37:47 +0200 | [diff] [blame] | 418 | self.db.del_list("roles") |
| 419 | |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 420 | version_data = { |
| 421 | "_id": "version", |
| tierno | 1f029d8 | 2019-06-13 22:37:04 +0000 | [diff] [blame] | 422 | "version_int": 1002, |
| 423 | "version": "1.2", |
| 424 | "date": "2019-06-11", |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 425 | "description": "set new format for roles_operations", |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | self.db.set_one("admin", {"_id": "version"}, version_data) |
| tierno | 1f029d8 | 2019-06-13 22:37:04 +0000 | [diff] [blame] | 429 | current_version = "1.2" |
| Eduardo Sousa | 044f431 | 2019-05-20 15:17:35 +0100 | [diff] [blame] | 430 | # TODO add future migrations here |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 431 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 432 | def init_db(self, target_version="1.0"): |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 433 | """ |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 434 | 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] | 435 | 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] | 436 | :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] | 437 | :return: None if ok, exception if error or if the version is different. |
| 438 | """ |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 439 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 440 | version_data = self.db.get_one( |
| 441 | "admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True |
| 442 | ) |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 443 | # check database status is ok |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 444 | if version_data and version_data.get("status") != "ENABLED": |
| 445 | raise EngineException( |
| 446 | "Wrong database status '{}'".format(version_data["status"]), |
| 447 | HTTPStatus.INTERNAL_SERVER_ERROR, |
| 448 | ) |
| tierno | d985a8d | 2018-10-19 14:12:28 +0200 | [diff] [blame] | 449 | |
| 450 | # check version |
| 451 | db_version = None if not version_data else version_data.get("version") |
| 452 | if db_version != target_version: |
| 453 | self.upgrade_db(db_version, target_version) |
| 454 | |
| tierno | 4a946e4 | 2018-04-12 17:48:49 +0200 | [diff] [blame] | 455 | return |