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