blob: e0c25e5bc53ee81cbfa7d4dbbd25c56c3c61965c [file] [log] [blame]
tiernoc94c3df2018-02-09 15:38:54 +01001# -*- coding: utf-8 -*-
2
tiernod125caf2018-11-22 16:05:54 +00003# 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
tiernoc94c3df2018-02-09 15:38:54 +010016import logging
tierno9e87a7f2020-03-23 09:24:10 +000017# import yaml
Eduardo Sousa7e0eb132019-06-21 11:50:21 +010018from osm_common import dbmongo, dbmemory, fslocal, fsmongo, msglocal, msgkafka, version as common_version
tiernob24258a2018-10-04 18:39:49 +020019from osm_common.dbbase import DbException
tiernoa8d63632018-05-10 13:12:32 +020020from osm_common.fsbase import FsException
21from osm_common.msgbase import MsgException
tiernoc94c3df2018-02-09 15:38:54 +010022from http import HTTPStatus
Eduardo Sousa5c01e192019-05-08 02:35:47 +010023
tierno23acf402019-08-28 13:36:34 +000024from osm_nbi.authconn_keystone import AuthconnKeystone
25from osm_nbi.authconn_internal import AuthconnInternal
K Sai Kiran7ddb0732020-10-30 11:14:44 +053026from osm_nbi.authconn_tacacs import AuthconnTacacs
tierno23acf402019-08-28 13:36:34 +000027from osm_nbi.base_topic import EngineException, versiontuple
28from osm_nbi.admin_topics import VimAccountTopic, WimAccountTopic, SdnTopic
Felipe Vicensb66b0412020-05-06 10:11:00 +020029from osm_nbi.admin_topics import K8sClusterTopic, K8sRepoTopic, OsmRepoTopic
David Garciaecb41322021-03-31 19:10:46 +020030from osm_nbi.admin_topics import VcaTopic
tierno23acf402019-08-28 13:36:34 +000031from osm_nbi.admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth
delacruzramo271d2002019-12-02 21:00:37 +010032from osm_nbi.descriptor_topics import VnfdTopic, NsdTopic, PduTopic, NstTopic, VnfPkgOpTopic
tierno23acf402019-08-28 13:36:34 +000033from osm_nbi.instance_topics import NsrTopic, VnfrTopic, NsLcmOpTopic, NsiTopic, NsiLcmOpTopic
34from osm_nbi.pmjobs_topics import PmJobsTopic
preethika.p329b8182020-04-22 12:25:39 +053035from osm_nbi.subscription_topics import NslcmSubscriptionsTopic
tiernod985a8d2018-10-19 14:12:28 +020036from base64 import b64encode
tierno9e87a7f2020-03-23 09:24:10 +000037from os import urandom # , path
tierno04dbb0e2019-01-09 16:00:24 +000038from threading import Lock
tiernoc94c3df2018-02-09 15:38:54 +010039
40__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno932499c2019-01-28 17:28:10 +000041min_common_version = "0.1.16"
tierno441dbbf2018-07-10 12:52:48 +020042
43
tiernoc94c3df2018-02-09 15:38:54 +010044class Engine(object):
tiernob24258a2018-10-04 18:39:49 +020045 map_from_topic_to_class = {
46 "vnfds": VnfdTopic,
47 "nsds": NsdTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020048 "nsts": NstTopic,
tiernob24258a2018-10-04 18:39:49 +020049 "pdus": PduTopic,
50 "nsrs": NsrTopic,
51 "vnfrs": VnfrTopic,
52 "nslcmops": NsLcmOpTopic,
53 "vim_accounts": VimAccountTopic,
tierno55ba2e62018-12-11 17:22:22 +000054 "wim_accounts": WimAccountTopic,
tiernob24258a2018-10-04 18:39:49 +020055 "sdns": SdnTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020056 "k8sclusters": K8sClusterTopic,
David Garciaecb41322021-03-31 19:10:46 +020057 "vca": VcaTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020058 "k8srepos": K8sRepoTopic,
Felipe Vicensb66b0412020-05-06 10:11:00 +020059 "osmrepos": OsmRepoTopic,
delacruzramo01b15d32019-07-02 14:37:47 +020060 "users": UserTopicAuth, # Valid for both internal and keystone authentication backends
61 "projects": ProjectTopicAuth, # Valid for both internal and keystone authentication backends
delacruzramoceb8baf2019-06-21 14:25:38 +020062 "roles": RoleTopicAuth, # Valid for both internal and keystone authentication backends
Felipe Vicensb57758d2018-10-16 16:00:20 +020063 "nsis": NsiTopic,
delacruzramo271d2002019-12-02 21:00:37 +010064 "nsilcmops": NsiLcmOpTopic,
65 "vnfpkgops": VnfPkgOpTopic,
preethika.p329b8182020-04-22 12:25:39 +053066 "nslcm_subscriptions": NslcmSubscriptionsTopic,
tiernob24258a2018-10-04 18:39:49 +020067 # [NEW_TOPIC]: add an entry here
vijay.r35ef2f72019-04-30 17:55:49 +053068 # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters
tiernob24258a2018-10-04 18:39:49 +020069 }
tiernoc94c3df2018-02-09 15:38:54 +010070
Eduardo Sousa044f4312019-05-20 15:17:35 +010071 map_target_version_to_int = {
72 "1.0": 1000,
tierno1f029d82019-06-13 22:37:04 +000073 "1.1": 1001,
74 "1.2": 1002,
Eduardo Sousa044f4312019-05-20 15:17:35 +010075 # Add new versions here
76 }
77
delacruzramoad682a52019-12-10 16:26:34 +010078 def __init__(self, authenticator):
tiernoc94c3df2018-02-09 15:38:54 +010079 self.db = None
80 self.fs = None
81 self.msg = None
delacruzramoad682a52019-12-10 16:26:34 +010082 self.authconn = None
tiernoc94c3df2018-02-09 15:38:54 +010083 self.config = None
tierno9e87a7f2020-03-23 09:24:10 +000084 # self.operations = None
tiernoc94c3df2018-02-09 15:38:54 +010085 self.logger = logging.getLogger("nbi.engine")
tiernob24258a2018-10-04 18:39:49 +020086 self.map_topic = {}
tierno04dbb0e2019-01-09 16:00:24 +000087 self.write_lock = None
delacruzramoad682a52019-12-10 16:26:34 +010088 # self.token_cache = token_cache
89 self.authenticator = authenticator
tiernoc94c3df2018-02-09 15:38:54 +010090
91 def start(self, config):
92 """
93 Connect to database, filesystem storage, and messaging
94 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
95 :return: None
96 """
97 self.config = config
tiernob24258a2018-10-04 18:39:49 +020098 # check right version of common
99 if versiontuple(common_version) < versiontuple(min_common_version):
100 raise EngineException("Not compatible osm/common version '{}'. Needed '{}' or higher".format(
101 common_version, min_common_version))
102
tiernoc94c3df2018-02-09 15:38:54 +0100103 try:
104 if not self.db:
105 if config["database"]["driver"] == "mongo":
106 self.db = dbmongo.DbMongo()
107 self.db.db_connect(config["database"])
108 elif config["database"]["driver"] == "memory":
109 self.db = dbmemory.DbMemory()
110 self.db.db_connect(config["database"])
111 else:
112 raise EngineException("Invalid configuration param '{}' at '[database]':'driver'".format(
113 config["database"]["driver"]))
114 if not self.fs:
115 if config["storage"]["driver"] == "local":
116 self.fs = fslocal.FsLocal()
117 self.fs.fs_connect(config["storage"])
Eduardo Sousa7e0eb132019-06-21 11:50:21 +0100118 elif config["storage"]["driver"] == "mongo":
119 self.fs = fsmongo.FsMongo()
120 self.fs.fs_connect(config["storage"])
tiernoc94c3df2018-02-09 15:38:54 +0100121 else:
122 raise EngineException("Invalid configuration param '{}' at '[storage]':'driver'".format(
123 config["storage"]["driver"]))
124 if not self.msg:
125 if config["message"]["driver"] == "local":
126 self.msg = msglocal.MsgLocal()
127 self.msg.connect(config["message"])
128 elif config["message"]["driver"] == "kafka":
129 self.msg = msgkafka.MsgKafka()
130 self.msg.connect(config["message"])
131 else:
132 raise EngineException("Invalid configuration param '{}' at '[message]':'driver'".format(
tierno932499c2019-01-28 17:28:10 +0000133 config["message"]["driver"]))
delacruzramoad682a52019-12-10 16:26:34 +0100134 if not self.authconn:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100135 if config["authentication"]["backend"] == "keystone":
tierno9e87a7f2020-03-23 09:24:10 +0000136 self.authconn = AuthconnKeystone(config["authentication"], self.db,
137 self.authenticator.role_permissions)
K Sai Kiran7ddb0732020-10-30 11:14:44 +0530138 elif config["authentication"]["backend"] == "tacacs":
139 self.authconn = AuthconnTacacs(config["authentication"], self.db,
140 self.authenticator.role_permissions)
delacruzramoceb8baf2019-06-21 14:25:38 +0200141 else:
tierno9e87a7f2020-03-23 09:24:10 +0000142 self.authconn = AuthconnInternal(config["authentication"], self.db,
143 self.authenticator.role_permissions)
144 # if not self.operations:
145 # if "resources_to_operations" in config["rbac"]:
146 # resources_to_operations_file = config["rbac"]["resources_to_operations"]
147 # else:
148 # possible_paths = (
149 # __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml",
150 # "./resources_to_operations.yml"
151 # )
152 # for config_file in possible_paths:
153 # if path.isfile(config_file):
154 # resources_to_operations_file = config_file
155 # break
156 # if not resources_to_operations_file:
157 # raise EngineException("Invalid permission configuration:"
158 # "resources_to_operations file missing")
159 #
160 # with open(resources_to_operations_file, 'r') as f:
161 # resources_to_operations = yaml.load(f, Loader=yaml.Loader)
162 #
163 # self.operations = []
164 #
165 # for _, value in resources_to_operations["resources_to_operations"].items():
166 # if value not in self.operations:
167 # self.operations += [value]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100168
tierno04dbb0e2019-01-09 16:00:24 +0000169 self.write_lock = Lock()
tiernob24258a2018-10-04 18:39:49 +0200170 # create one class per topic
171 for topic, topic_class in self.map_from_topic_to_class.items():
delacruzramo32bab472019-09-13 12:24:22 +0200172 # if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth):
173 # self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
tierno9e87a7f2020-03-23 09:24:10 +0000174 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.authconn)
Eduardo Sousa225200d2019-05-22 15:57:17 +0100175
preethika.p0952a482019-09-20 16:37:50 +0530176 self.map_topic["pm_jobs"] = PmJobsTopic(self.db, config["prometheus"].get("host"),
177 config["prometheus"].get("port"))
tiernoc94c3df2018-02-09 15:38:54 +0100178 except (DbException, FsException, MsgException) as e:
179 raise EngineException(str(e), http_code=e.http_code)
180
181 def stop(self):
182 try:
183 if self.db:
184 self.db.db_disconnect()
185 if self.fs:
186 self.fs.fs_disconnect()
tierno932499c2019-01-28 17:28:10 +0000187 if self.msg:
188 self.msg.disconnect()
tierno04dbb0e2019-01-09 16:00:24 +0000189 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +0100190 except (DbException, FsException, MsgException) as e:
191 raise EngineException(str(e), http_code=e.http_code)
192
tierno65ca36d2019-02-12 19:27:52 +0100193 def new_item(self, rollback, session, topic, indata=None, kwargs=None, headers=None):
tiernoc94c3df2018-02-09 15:38:54 +0100194 """
tiernof27c79b2018-03-12 17:08:42 +0100195 Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry,
196 that must be completed with a call to method upload_content
tiernob24258a2018-10-04 18:39:49 +0200197 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +0100198 :param session: contains the used login username and working project, force to avoid checkins, public
tiernob24258a2018-10-04 18:39:49 +0200199 :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds
tiernoc94c3df2018-02-09 15:38:54 +0100200 :param indata: data to be inserted
201 :param kwargs: used to override the indata descriptor
202 :param headers: http request headers
tierno0ffaa992018-05-09 13:21:56 +0200203 :return: _id: identity of the inserted data.
tiernoc94c3df2018-02-09 15:38:54 +0100204 """
tiernob24258a2018-10-04 18:39:49 +0200205 if topic not in self.map_topic:
206 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000207 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100208 return self.map_topic[topic].new(rollback, session, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100209
tierno65ca36d2019-02-12 19:27:52 +0100210 def upload_content(self, session, topic, _id, indata, kwargs, headers):
tierno65acb4d2018-04-06 16:42:40 +0200211 """
tiernob24258a2018-10-04 18:39:49 +0200212 Upload content for an already created entry (_id)
tierno65acb4d2018-04-06 16:42:40 +0200213 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200214 :param topic: it can be: users, projects, vnfds, nsds,
215 :param _id: server id of the item
216 :param indata: data to be inserted
tierno65acb4d2018-04-06 16:42:40 +0200217 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200218 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +0200219 :return: _id: identity of the inserted data.
tierno65acb4d2018-04-06 16:42:40 +0200220 """
tiernob24258a2018-10-04 18:39:49 +0200221 if topic not in self.map_topic:
222 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000223 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100224 return self.map_topic[topic].upload_content(session, _id, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100225
Frank Bryden19b97522020-07-10 12:32:02 +0000226 def get_item_list(self, session, topic, filter_q=None, api_req=False):
tiernoc94c3df2018-02-09 15:38:54 +0100227 """
228 Get a list of items
229 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200230 :param topic: it can be: users, projects, vnfds, nsds, ...
231 :param filter_q: filter of data to be applied
Frank Bryden19b97522020-07-10 12:32:02 +0000232 :param api_req: True if this call is serving an external API request. False if serving internal request.
tiernob24258a2018-10-04 18:39:49 +0200233 :return: The list, it can be empty if no one match the filter_q.
tiernoc94c3df2018-02-09 15:38:54 +0100234 """
tiernob24258a2018-10-04 18:39:49 +0200235 if topic not in self.map_topic:
236 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
Frank Bryden19b97522020-07-10 12:32:02 +0000237 return self.map_topic[topic].list(session, filter_q, api_req)
tiernof27c79b2018-03-12 17:08:42 +0100238
Frank Bryden19b97522020-07-10 12:32:02 +0000239 def get_item(self, session, topic, _id, api_req=False):
tiernoc94c3df2018-02-09 15:38:54 +0100240 """
tiernob24258a2018-10-04 18:39:49 +0200241 Get complete information on an item
tiernoc94c3df2018-02-09 15:38:54 +0100242 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200243 :param topic: it can be: users, projects, vnfds, nsds,
tiernoc94c3df2018-02-09 15:38:54 +0100244 :param _id: server id of the item
Frank Bryden19b97522020-07-10 12:32:02 +0000245 :param api_req: True if this call is serving an external API request. False if serving internal request.
tiernoc94c3df2018-02-09 15:38:54 +0100246 :return: dictionary, raise exception if not found.
247 """
tiernob24258a2018-10-04 18:39:49 +0200248 if topic not in self.map_topic:
249 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
Frank Bryden19b97522020-07-10 12:32:02 +0000250 return self.map_topic[topic].show(session, _id, api_req)
tiernoc94c3df2018-02-09 15:38:54 +0100251
tierno87006042018-10-24 12:50:20 +0200252 def get_file(self, session, topic, _id, path=None, accept_header=None):
253 """
254 Get descriptor package or artifact file content
255 :param session: contains the used login username and working project
256 :param topic: it can be: users, projects, vnfds, nsds,
257 :param _id: server id of the item
258 :param path: artifact path or "$DESCRIPTOR" or None
259 :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain
260 :return: opened file plus Accept format or raises an exception
261 """
262 if topic not in self.map_topic:
263 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
264 return self.map_topic[topic].get_file(session, _id, path, accept_header)
265
tiernob24258a2018-10-04 18:39:49 +0200266 def del_item_list(self, session, topic, _filter=None):
tiernoc94c3df2018-02-09 15:38:54 +0100267 """
268 Delete a list of items
269 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200270 :param topic: it can be: users, projects, vnfds, nsds, ...
271 :param _filter: filter of data to be applied
272 :return: The deleted list, it can be empty if no one match the _filter.
tiernoc94c3df2018-02-09 15:38:54 +0100273 """
tiernob24258a2018-10-04 18:39:49 +0200274 if topic not in self.map_topic:
275 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000276 with self.write_lock:
277 return self.map_topic[topic].delete_list(session, _filter)
tiernoc94c3df2018-02-09 15:38:54 +0100278
tiernobee3bad2019-12-05 12:26:01 +0000279 def del_item(self, session, topic, _id, not_send_msg=None):
tiernoc94c3df2018-02-09 15:38:54 +0100280 """
tiernob92094f2018-05-11 13:44:22 +0200281 Delete item by its internal id
tiernoc94c3df2018-02-09 15:38:54 +0100282 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200283 :param topic: it can be: users, projects, vnfds, nsds, ...
tiernoc94c3df2018-02-09 15:38:54 +0100284 :param _id: server id of the item
tiernobee3bad2019-12-05 12:26:01 +0000285 :param not_send_msg: If False, message will not be sent to kafka.
286 If a list, message is not sent, but content is stored in this variable so that the caller can send this
287 message using its own loop. If None, message is sent
delacruzramo01b15d32019-07-02 14:37:47 +0200288 :return: dictionary with deleted item _id. It raises exception if not found.
tiernoc94c3df2018-02-09 15:38:54 +0100289 """
tiernob24258a2018-10-04 18:39:49 +0200290 if topic not in self.map_topic:
291 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000292 with self.write_lock:
tiernobee3bad2019-12-05 12:26:01 +0000293 return self.map_topic[topic].delete(session, _id, not_send_msg=not_send_msg)
tiernoc94c3df2018-02-09 15:38:54 +0100294
tierno65ca36d2019-02-12 19:27:52 +0100295 def edit_item(self, session, topic, _id, indata=None, kwargs=None):
tiernob24258a2018-10-04 18:39:49 +0200296 """
297 Update an existing entry at database
298 :param session: contains the used login username and working project
299 :param topic: it can be: users, projects, vnfds, nsds, ...
300 :param _id: identifier to be updated
301 :param indata: data to be inserted
302 :param kwargs: used to override the indata descriptor
delacruzramo01b15d32019-07-02 14:37:47 +0200303 :return: dictionary with edited item _id, raise exception if not found.
tiernob24258a2018-10-04 18:39:49 +0200304 """
305 if topic not in self.map_topic:
306 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000307 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100308 return self.map_topic[topic].edit(session, _id, indata, kwargs)
tiernoc94c3df2018-02-09 15:38:54 +0100309
tiernod985a8d2018-10-19 14:12:28 +0200310 def upgrade_db(self, current_version, target_version):
Eduardo Sousa044f4312019-05-20 15:17:35 +0100311 if target_version not in self.map_target_version_to_int.keys():
tierno1f029d82019-06-13 22:37:04 +0000312 raise EngineException("Cannot upgrade to version '{}' with this version of code".format(target_version),
Eduardo Sousa044f4312019-05-20 15:17:35 +0100313 http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
tiernod985a8d2018-10-19 14:12:28 +0200314
Eduardo Sousa044f4312019-05-20 15:17:35 +0100315 if current_version == target_version:
316 return
317
318 target_version_int = self.map_target_version_to_int[target_version]
319
320 if not current_version:
321 # create database version
322 serial = urandom(32)
323 version_data = {
324 "_id": "version", # Always "version"
325 "version_int": 1000, # version number
326 "version": "1.0", # version text
327 "date": "2018-10-25", # version date
328 "description": "added serial", # changes in this version
329 'status': "ENABLED", # ENABLED, DISABLED (migration in process), ERROR,
330 'serial': b64encode(serial)
331 }
332 self.db.create("admin", version_data)
333 self.db.set_secret_key(serial)
334 current_version = "1.0"
335
tierno1f029d82019-06-13 22:37:04 +0000336 if current_version in ("1.0", "1.1") and target_version_int >= self.map_target_version_to_int["1.2"]:
delacruzramo01b15d32019-07-02 14:37:47 +0200337 if self.config['authentication']['backend'] == "internal":
338 self.db.del_list("roles")
339
Eduardo Sousa044f4312019-05-20 15:17:35 +0100340 version_data = {
341 "_id": "version",
tierno1f029d82019-06-13 22:37:04 +0000342 "version_int": 1002,
343 "version": "1.2",
344 "date": "2019-06-11",
Eduardo Sousa044f4312019-05-20 15:17:35 +0100345 "description": "set new format for roles_operations"
346 }
347
348 self.db.set_one("admin", {"_id": "version"}, version_data)
tierno1f029d82019-06-13 22:37:04 +0000349 current_version = "1.2"
Eduardo Sousa044f4312019-05-20 15:17:35 +0100350 # TODO add future migrations here
tiernod985a8d2018-10-19 14:12:28 +0200351
tierno4a946e42018-04-12 17:48:49 +0200352 def init_db(self, target_version='1.0'):
353 """
tiernod985a8d2018-10-19 14:12:28 +0200354 Init database if empty. If not empty it checks that database version and migrates if needed
tierno4a946e42018-04-12 17:48:49 +0200355 If empty, it creates a new user admin/admin at 'users' and a new entry at 'version'
tiernod985a8d2018-10-19 14:12:28 +0200356 :param target_version: check desired database version. Migrate to it if possible or raises exception
tierno4a946e42018-04-12 17:48:49 +0200357 :return: None if ok, exception if error or if the version is different.
358 """
tiernod985a8d2018-10-19 14:12:28 +0200359
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':
tierno4a946e42018-04-12 17:48:49 +0200363 raise EngineException("Wrong database status '{}'".format(
tiernod985a8d2018-10-19 14:12:28 +0200364 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
tierno4a946e42018-04-12 17:48:49 +0200371 return