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