blob: cb274145e62eade1f40b8713c83bd158c16072b5 [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
garciadeblas4568a372021-03-24 09:19:48 +010017
tierno9e87a7f2020-03-23 09:24:10 +000018# import yaml
garciadeblas4568a372021-03-24 09:19:48 +010019from osm_common import (
20 dbmongo,
21 dbmemory,
22 fslocal,
23 fsmongo,
24 msglocal,
25 msgkafka,
26 version as common_version,
27)
tiernob24258a2018-10-04 18:39:49 +020028from osm_common.dbbase import DbException
tiernoa8d63632018-05-10 13:12:32 +020029from osm_common.fsbase import FsException
30from osm_common.msgbase import MsgException
tiernoc94c3df2018-02-09 15:38:54 +010031from http import HTTPStatus
Eduardo Sousa5c01e192019-05-08 02:35:47 +010032
tierno23acf402019-08-28 13:36:34 +000033from osm_nbi.authconn_keystone import AuthconnKeystone
34from osm_nbi.authconn_internal import AuthconnInternal
K Sai Kiran7ddb0732020-10-30 11:14:44 +053035from osm_nbi.authconn_tacacs import AuthconnTacacs
tierno23acf402019-08-28 13:36:34 +000036from osm_nbi.base_topic import EngineException, versiontuple
37from osm_nbi.admin_topics import VimAccountTopic, WimAccountTopic, SdnTopic
Felipe Vicensb66b0412020-05-06 10:11:00 +020038from osm_nbi.admin_topics import K8sClusterTopic, K8sRepoTopic, OsmRepoTopic
David Garciaecb41322021-03-31 19:10:46 +020039from osm_nbi.admin_topics import VcaTopic
tierno23acf402019-08-28 13:36:34 +000040from osm_nbi.admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth
garciadeblas4568a372021-03-24 09:19:48 +010041from osm_nbi.descriptor_topics import (
42 VnfdTopic,
43 NsdTopic,
44 PduTopic,
45 NstTopic,
46 VnfPkgOpTopic,
47)
48from osm_nbi.instance_topics import (
49 NsrTopic,
50 VnfrTopic,
51 NsLcmOpTopic,
52 NsiTopic,
53 NsiLcmOpTopic,
54)
tierno23acf402019-08-28 13:36:34 +000055from osm_nbi.pmjobs_topics import PmJobsTopic
preethika.p329b8182020-04-22 12:25:39 +053056from osm_nbi.subscription_topics import NslcmSubscriptionsTopic
tiernod985a8d2018-10-19 14:12:28 +020057from base64 import b64encode
garciadeblas4568a372021-03-24 09:19:48 +010058from os import urandom # , path
tierno04dbb0e2019-01-09 16:00:24 +000059from threading import Lock
tiernoc94c3df2018-02-09 15:38:54 +010060
61__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno932499c2019-01-28 17:28:10 +000062min_common_version = "0.1.16"
tierno441dbbf2018-07-10 12:52:48 +020063
64
tiernoc94c3df2018-02-09 15:38:54 +010065class Engine(object):
tiernob24258a2018-10-04 18:39:49 +020066 map_from_topic_to_class = {
67 "vnfds": VnfdTopic,
68 "nsds": NsdTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020069 "nsts": NstTopic,
tiernob24258a2018-10-04 18:39:49 +020070 "pdus": PduTopic,
71 "nsrs": NsrTopic,
72 "vnfrs": VnfrTopic,
73 "nslcmops": NsLcmOpTopic,
74 "vim_accounts": VimAccountTopic,
tierno55ba2e62018-12-11 17:22:22 +000075 "wim_accounts": WimAccountTopic,
tiernob24258a2018-10-04 18:39:49 +020076 "sdns": SdnTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020077 "k8sclusters": K8sClusterTopic,
David Garciaecb41322021-03-31 19:10:46 +020078 "vca": VcaTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020079 "k8srepos": K8sRepoTopic,
Felipe Vicensb66b0412020-05-06 10:11:00 +020080 "osmrepos": OsmRepoTopic,
garciadeblas4568a372021-03-24 09:19:48 +010081 "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
Felipe Vicensb57758d2018-10-16 16:00:20 +020084 "nsis": NsiTopic,
delacruzramo271d2002019-12-02 21:00:37 +010085 "nsilcmops": NsiLcmOpTopic,
86 "vnfpkgops": VnfPkgOpTopic,
preethika.p329b8182020-04-22 12:25:39 +053087 "nslcm_subscriptions": NslcmSubscriptionsTopic,
tiernob24258a2018-10-04 18:39:49 +020088 # [NEW_TOPIC]: add an entry here
vijay.r35ef2f72019-04-30 17:55:49 +053089 # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters
tiernob24258a2018-10-04 18:39:49 +020090 }
tiernoc94c3df2018-02-09 15:38:54 +010091
Eduardo Sousa044f4312019-05-20 15:17:35 +010092 map_target_version_to_int = {
93 "1.0": 1000,
tierno1f029d82019-06-13 22:37:04 +000094 "1.1": 1001,
95 "1.2": 1002,
Eduardo Sousa044f4312019-05-20 15:17:35 +010096 # Add new versions here
97 }
98
delacruzramoad682a52019-12-10 16:26:34 +010099 def __init__(self, authenticator):
tiernoc94c3df2018-02-09 15:38:54 +0100100 self.db = None
101 self.fs = None
102 self.msg = None
delacruzramoad682a52019-12-10 16:26:34 +0100103 self.authconn = None
tiernoc94c3df2018-02-09 15:38:54 +0100104 self.config = None
tierno9e87a7f2020-03-23 09:24:10 +0000105 # self.operations = None
tiernoc94c3df2018-02-09 15:38:54 +0100106 self.logger = logging.getLogger("nbi.engine")
tiernob24258a2018-10-04 18:39:49 +0200107 self.map_topic = {}
tierno04dbb0e2019-01-09 16:00:24 +0000108 self.write_lock = None
delacruzramoad682a52019-12-10 16:26:34 +0100109 # self.token_cache = token_cache
110 self.authenticator = authenticator
tiernoc94c3df2018-02-09 15:38:54 +0100111
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
tiernob24258a2018-10-04 18:39:49 +0200119 # check right version of common
120 if versiontuple(common_version) < versiontuple(min_common_version):
garciadeblas4568a372021-03-24 09:19:48 +0100121 raise EngineException(
122 "Not compatible osm/common version '{}'. Needed '{}' or higher".format(
123 common_version, min_common_version
124 )
125 )
tiernob24258a2018-10-04 18:39:49 +0200126
tiernoc94c3df2018-02-09 15:38:54 +0100127 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:
garciadeblas4568a372021-03-24 09:19:48 +0100136 raise EngineException(
137 "Invalid configuration param '{}' at '[database]':'driver'".format(
138 config["database"]["driver"]
139 )
140 )
tiernoc94c3df2018-02-09 15:38:54 +0100141 if not self.fs:
142 if config["storage"]["driver"] == "local":
143 self.fs = fslocal.FsLocal()
144 self.fs.fs_connect(config["storage"])
Eduardo Sousa7e0eb132019-06-21 11:50:21 +0100145 elif config["storage"]["driver"] == "mongo":
146 self.fs = fsmongo.FsMongo()
147 self.fs.fs_connect(config["storage"])
tiernoc94c3df2018-02-09 15:38:54 +0100148 else:
garciadeblas4568a372021-03-24 09:19:48 +0100149 raise EngineException(
150 "Invalid configuration param '{}' at '[storage]':'driver'".format(
151 config["storage"]["driver"]
152 )
153 )
tiernoc94c3df2018-02-09 15:38:54 +0100154 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:
garciadeblas4568a372021-03-24 09:19:48 +0100162 raise EngineException(
163 "Invalid configuration param '{}' at '[message]':'driver'".format(
164 config["message"]["driver"]
165 )
166 )
delacruzramoad682a52019-12-10 16:26:34 +0100167 if not self.authconn:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100168 if config["authentication"]["backend"] == "keystone":
garciadeblas4568a372021-03-24 09:19:48 +0100169 self.authconn = AuthconnKeystone(
170 config["authentication"],
171 self.db,
172 self.authenticator.role_permissions,
173 )
K Sai Kiran7ddb0732020-10-30 11:14:44 +0530174 elif config["authentication"]["backend"] == "tacacs":
garciadeblas4568a372021-03-24 09:19:48 +0100175 self.authconn = AuthconnTacacs(
176 config["authentication"],
177 self.db,
178 self.authenticator.role_permissions,
179 )
delacruzramoceb8baf2019-06-21 14:25:38 +0200180 else:
garciadeblas4568a372021-03-24 09:19:48 +0100181 self.authconn = AuthconnInternal(
182 config["authentication"],
183 self.db,
184 self.authenticator.role_permissions,
185 )
tierno9e87a7f2020-03-23 09:24:10 +0000186 # 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]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100210
tierno04dbb0e2019-01-09 16:00:24 +0000211 self.write_lock = Lock()
tiernob24258a2018-10-04 18:39:49 +0200212 # create one class per topic
213 for topic, topic_class in self.map_from_topic_to_class.items():
delacruzramo32bab472019-09-13 12:24:22 +0200214 # if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth):
215 # self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
garciadeblas4568a372021-03-24 09:19:48 +0100216 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 )
tiernoc94c3df2018-02-09 15:38:54 +0100225 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()
tierno932499c2019-01-28 17:28:10 +0000234 if self.msg:
235 self.msg.disconnect()
tierno04dbb0e2019-01-09 16:00:24 +0000236 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +0100237 except (DbException, FsException, MsgException) as e:
238 raise EngineException(str(e), http_code=e.http_code)
239
garciadeblas4568a372021-03-24 09:19:48 +0100240 def new_item(
241 self, rollback, session, topic, indata=None, kwargs=None, headers=None
242 ):
tiernoc94c3df2018-02-09 15:38:54 +0100243 """
tiernof27c79b2018-03-12 17:08:42 +0100244 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
tiernob24258a2018-10-04 18:39:49 +0200246 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +0100247 :param session: contains the used login username and working project, force to avoid checkins, public
tiernob24258a2018-10-04 18:39:49 +0200248 :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds
tiernoc94c3df2018-02-09 15:38:54 +0100249 :param indata: data to be inserted
250 :param kwargs: used to override the indata descriptor
251 :param headers: http request headers
tierno0ffaa992018-05-09 13:21:56 +0200252 :return: _id: identity of the inserted data.
tiernoc94c3df2018-02-09 15:38:54 +0100253 """
tiernob24258a2018-10-04 18:39:49 +0200254 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100255 raise EngineException(
256 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
257 )
tierno04dbb0e2019-01-09 16:00:24 +0000258 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100259 return self.map_topic[topic].new(rollback, session, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100260
tierno65ca36d2019-02-12 19:27:52 +0100261 def upload_content(self, session, topic, _id, indata, kwargs, headers):
tierno65acb4d2018-04-06 16:42:40 +0200262 """
tiernob24258a2018-10-04 18:39:49 +0200263 Upload content for an already created entry (_id)
tierno65acb4d2018-04-06 16:42:40 +0200264 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200265 :param topic: it can be: users, projects, vnfds, nsds,
266 :param _id: server id of the item
267 :param indata: data to be inserted
tierno65acb4d2018-04-06 16:42:40 +0200268 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200269 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +0200270 :return: _id: identity of the inserted data.
tierno65acb4d2018-04-06 16:42:40 +0200271 """
tiernob24258a2018-10-04 18:39:49 +0200272 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100273 raise EngineException(
274 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
275 )
tierno04dbb0e2019-01-09 16:00:24 +0000276 with self.write_lock:
garciadeblas4568a372021-03-24 09:19:48 +0100277 return self.map_topic[topic].upload_content(
278 session, _id, indata, kwargs, headers
279 )
tiernoc94c3df2018-02-09 15:38:54 +0100280
Frank Bryden19b97522020-07-10 12:32:02 +0000281 def get_item_list(self, session, topic, filter_q=None, api_req=False):
tiernoc94c3df2018-02-09 15:38:54 +0100282 """
283 Get a list of items
284 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200285 :param topic: it can be: users, projects, vnfds, nsds, ...
286 :param filter_q: filter of data to be applied
Frank Bryden19b97522020-07-10 12:32:02 +0000287 :param api_req: True if this call is serving an external API request. False if serving internal request.
tiernob24258a2018-10-04 18:39:49 +0200288 :return: The list, it can be empty if no one match the filter_q.
tiernoc94c3df2018-02-09 15:38:54 +0100289 """
tiernob24258a2018-10-04 18:39:49 +0200290 if topic not in self.map_topic:
K Sai Kiran57589552021-01-27 21:38:34 +0530291 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
Frank Bryden19b97522020-07-10 12:32:02 +0000292 return self.map_topic[topic].list(session, filter_q, api_req)
tiernof27c79b2018-03-12 17:08:42 +0100293
K Sai Kiran57589552021-01-27 21:38:34 +0530294 def get_item(self, session, topic, _id, filter_q=None, api_req=False):
tiernoc94c3df2018-02-09 15:38:54 +0100295 """
tiernob24258a2018-10-04 18:39:49 +0200296 Get complete information on an item
tiernoc94c3df2018-02-09 15:38:54 +0100297 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200298 :param topic: it can be: users, projects, vnfds, nsds,
tiernoc94c3df2018-02-09 15:38:54 +0100299 :param _id: server id of the item
K Sai Kiran57589552021-01-27 21:38:34 +0530300 :param filter_q: other arguments
Frank Bryden19b97522020-07-10 12:32:02 +0000301 :param api_req: True if this call is serving an external API request. False if serving internal request.
tiernoc94c3df2018-02-09 15:38:54 +0100302 :return: dictionary, raise exception if not found.
303 """
tiernob24258a2018-10-04 18:39:49 +0200304 if topic not in self.map_topic:
K Sai Kiran57589552021-01-27 21:38:34 +0530305 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
306 return self.map_topic[topic].show(session, _id, filter_q, api_req)
tiernoc94c3df2018-02-09 15:38:54 +0100307
tierno87006042018-10-24 12:50:20 +0200308 def get_file(self, session, topic, _id, path=None, accept_header=None):
309 """
310 Get descriptor package or artifact file content
311 :param session: contains the used login username and working project
312 :param topic: it can be: users, projects, vnfds, nsds,
313 :param _id: server id of the item
314 :param path: artifact path or "$DESCRIPTOR" or None
315 :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain
316 :return: opened file plus Accept format or raises an exception
317 """
318 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100319 raise EngineException(
320 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
321 )
tierno87006042018-10-24 12:50:20 +0200322 return self.map_topic[topic].get_file(session, _id, path, accept_header)
323
tiernob24258a2018-10-04 18:39:49 +0200324 def del_item_list(self, session, topic, _filter=None):
tiernoc94c3df2018-02-09 15:38:54 +0100325 """
326 Delete a list of items
327 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200328 :param topic: it can be: users, projects, vnfds, nsds, ...
329 :param _filter: filter of data to be applied
330 :return: The deleted list, it can be empty if no one match the _filter.
tiernoc94c3df2018-02-09 15:38:54 +0100331 """
tiernob24258a2018-10-04 18:39:49 +0200332 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100333 raise EngineException(
334 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
335 )
tierno04dbb0e2019-01-09 16:00:24 +0000336 with self.write_lock:
337 return self.map_topic[topic].delete_list(session, _filter)
tiernoc94c3df2018-02-09 15:38:54 +0100338
tiernobee3bad2019-12-05 12:26:01 +0000339 def del_item(self, session, topic, _id, not_send_msg=None):
tiernoc94c3df2018-02-09 15:38:54 +0100340 """
tiernob92094f2018-05-11 13:44:22 +0200341 Delete item by its internal id
tiernoc94c3df2018-02-09 15:38:54 +0100342 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200343 :param topic: it can be: users, projects, vnfds, nsds, ...
tiernoc94c3df2018-02-09 15:38:54 +0100344 :param _id: server id of the item
tiernobee3bad2019-12-05 12:26:01 +0000345 :param not_send_msg: If False, message will not be sent to kafka.
346 If a list, message is not sent, but content is stored in this variable so that the caller can send this
347 message using its own loop. If None, message is sent
delacruzramo01b15d32019-07-02 14:37:47 +0200348 :return: dictionary with deleted item _id. It raises exception if not found.
tiernoc94c3df2018-02-09 15:38:54 +0100349 """
tiernob24258a2018-10-04 18:39:49 +0200350 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100351 raise EngineException(
352 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
353 )
tierno04dbb0e2019-01-09 16:00:24 +0000354 with self.write_lock:
tiernobee3bad2019-12-05 12:26:01 +0000355 return self.map_topic[topic].delete(session, _id, not_send_msg=not_send_msg)
tiernoc94c3df2018-02-09 15:38:54 +0100356
tierno65ca36d2019-02-12 19:27:52 +0100357 def edit_item(self, session, topic, _id, indata=None, kwargs=None):
tiernob24258a2018-10-04 18:39:49 +0200358 """
359 Update an existing entry at database
360 :param session: contains the used login username and working project
361 :param topic: it can be: users, projects, vnfds, nsds, ...
362 :param _id: identifier to be updated
363 :param indata: data to be inserted
364 :param kwargs: used to override the indata descriptor
delacruzramo01b15d32019-07-02 14:37:47 +0200365 :return: dictionary with edited item _id, raise exception if not found.
tiernob24258a2018-10-04 18:39:49 +0200366 """
367 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100368 raise EngineException(
369 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
370 )
tierno04dbb0e2019-01-09 16:00:24 +0000371 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100372 return self.map_topic[topic].edit(session, _id, indata, kwargs)
tiernoc94c3df2018-02-09 15:38:54 +0100373
tiernod985a8d2018-10-19 14:12:28 +0200374 def upgrade_db(self, current_version, target_version):
Eduardo Sousa044f4312019-05-20 15:17:35 +0100375 if target_version not in self.map_target_version_to_int.keys():
garciadeblas4568a372021-03-24 09:19:48 +0100376 raise EngineException(
377 "Cannot upgrade to version '{}' with this version of code".format(
378 target_version
379 ),
380 http_code=HTTPStatus.INTERNAL_SERVER_ERROR,
381 )
tiernod985a8d2018-10-19 14:12:28 +0200382
Eduardo Sousa044f4312019-05-20 15:17:35 +0100383 if current_version == target_version:
384 return
garciadeblas4568a372021-03-24 09:19:48 +0100385
Eduardo Sousa044f4312019-05-20 15:17:35 +0100386 target_version_int = self.map_target_version_to_int[target_version]
387
388 if not current_version:
389 # create database version
390 serial = urandom(32)
391 version_data = {
garciadeblas4568a372021-03-24 09:19:48 +0100392 "_id": "version", # Always "version"
393 "version_int": 1000, # version number
394 "version": "1.0", # version text
395 "date": "2018-10-25", # version date
Eduardo Sousa044f4312019-05-20 15:17:35 +0100396 "description": "added serial", # changes in this version
garciadeblas4568a372021-03-24 09:19:48 +0100397 "status": "ENABLED", # ENABLED, DISABLED (migration in process), ERROR,
398 "serial": b64encode(serial),
Eduardo Sousa044f4312019-05-20 15:17:35 +0100399 }
400 self.db.create("admin", version_data)
401 self.db.set_secret_key(serial)
402 current_version = "1.0"
garciadeblas4568a372021-03-24 09:19:48 +0100403
404 if (
405 current_version in ("1.0", "1.1")
406 and target_version_int >= self.map_target_version_to_int["1.2"]
407 ):
408 if self.config["authentication"]["backend"] == "internal":
delacruzramo01b15d32019-07-02 14:37:47 +0200409 self.db.del_list("roles")
410
Eduardo Sousa044f4312019-05-20 15:17:35 +0100411 version_data = {
412 "_id": "version",
tierno1f029d82019-06-13 22:37:04 +0000413 "version_int": 1002,
414 "version": "1.2",
415 "date": "2019-06-11",
garciadeblas4568a372021-03-24 09:19:48 +0100416 "description": "set new format for roles_operations",
Eduardo Sousa044f4312019-05-20 15:17:35 +0100417 }
418
419 self.db.set_one("admin", {"_id": "version"}, version_data)
tierno1f029d82019-06-13 22:37:04 +0000420 current_version = "1.2"
Eduardo Sousa044f4312019-05-20 15:17:35 +0100421 # TODO add future migrations here
tiernod985a8d2018-10-19 14:12:28 +0200422
garciadeblas4568a372021-03-24 09:19:48 +0100423 def init_db(self, target_version="1.0"):
tierno4a946e42018-04-12 17:48:49 +0200424 """
tiernod985a8d2018-10-19 14:12:28 +0200425 Init database if empty. If not empty it checks that database version and migrates if needed
tierno4a946e42018-04-12 17:48:49 +0200426 If empty, it creates a new user admin/admin at 'users' and a new entry at 'version'
tiernod985a8d2018-10-19 14:12:28 +0200427 :param target_version: check desired database version. Migrate to it if possible or raises exception
tierno4a946e42018-04-12 17:48:49 +0200428 :return: None if ok, exception if error or if the version is different.
429 """
tiernod985a8d2018-10-19 14:12:28 +0200430
garciadeblas4568a372021-03-24 09:19:48 +0100431 version_data = self.db.get_one(
432 "admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True
433 )
tiernod985a8d2018-10-19 14:12:28 +0200434 # check database status is ok
garciadeblas4568a372021-03-24 09:19:48 +0100435 if version_data and version_data.get("status") != "ENABLED":
436 raise EngineException(
437 "Wrong database status '{}'".format(version_data["status"]),
438 HTTPStatus.INTERNAL_SERVER_ERROR,
439 )
tiernod985a8d2018-10-19 14:12:28 +0200440
441 # check version
442 db_version = None if not version_data else version_data.get("version")
443 if db_version != target_version:
444 self.upgrade_db(db_version, target_version)
445
tierno4a946e42018-04-12 17:48:49 +0200446 return