blob: 7afaa224191bbc24143651c8580234a22fde47ee [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)
almagiae47b9132022-05-17 14:12:22 +020055from osm_nbi.vnf_instance_topics import VnfInstances, VnfLcmOpTopic
tierno23acf402019-08-28 13:36:34 +000056from osm_nbi.pmjobs_topics import PmJobsTopic
preethika.p329b8182020-04-22 12:25:39 +053057from osm_nbi.subscription_topics import NslcmSubscriptionsTopic
tiernod985a8d2018-10-19 14:12:28 +020058from base64 import b64encode
garciadeblas4568a372021-03-24 09:19:48 +010059from os import urandom # , path
tierno04dbb0e2019-01-09 16:00:24 +000060from threading import Lock
tiernoc94c3df2018-02-09 15:38:54 +010061
62__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno932499c2019-01-28 17:28:10 +000063min_common_version = "0.1.16"
tierno441dbbf2018-07-10 12:52:48 +020064
65
tiernoc94c3df2018-02-09 15:38:54 +010066class Engine(object):
tiernob24258a2018-10-04 18:39:49 +020067 map_from_topic_to_class = {
68 "vnfds": VnfdTopic,
69 "nsds": NsdTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020070 "nsts": NstTopic,
tiernob24258a2018-10-04 18:39:49 +020071 "pdus": PduTopic,
72 "nsrs": NsrTopic,
73 "vnfrs": VnfrTopic,
74 "nslcmops": NsLcmOpTopic,
75 "vim_accounts": VimAccountTopic,
tierno55ba2e62018-12-11 17:22:22 +000076 "wim_accounts": WimAccountTopic,
tiernob24258a2018-10-04 18:39:49 +020077 "sdns": SdnTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020078 "k8sclusters": K8sClusterTopic,
David Garciaecb41322021-03-31 19:10:46 +020079 "vca": VcaTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020080 "k8srepos": K8sRepoTopic,
Felipe Vicensb66b0412020-05-06 10:11:00 +020081 "osmrepos": OsmRepoTopic,
garciadeblas4568a372021-03-24 09:19:48 +010082 "users": UserTopicAuth, # Valid for both internal and keystone authentication backends
83 "projects": ProjectTopicAuth, # Valid for both internal and keystone authentication backends
84 "roles": RoleTopicAuth, # Valid for both internal and keystone authentication backends
Felipe Vicensb57758d2018-10-16 16:00:20 +020085 "nsis": NsiTopic,
delacruzramo271d2002019-12-02 21:00:37 +010086 "nsilcmops": NsiLcmOpTopic,
87 "vnfpkgops": VnfPkgOpTopic,
preethika.p329b8182020-04-22 12:25:39 +053088 "nslcm_subscriptions": NslcmSubscriptionsTopic,
almagiae47b9132022-05-17 14:12:22 +020089 "vnf_instances": VnfInstances,
90 "vnflcmops": VnfLcmOpTopic,
tiernob24258a2018-10-04 18:39:49 +020091 # [NEW_TOPIC]: add an entry here
vijay.r35ef2f72019-04-30 17:55:49 +053092 # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters
tiernob24258a2018-10-04 18:39:49 +020093 }
tiernoc94c3df2018-02-09 15:38:54 +010094
Eduardo Sousa044f4312019-05-20 15:17:35 +010095 map_target_version_to_int = {
96 "1.0": 1000,
tierno1f029d82019-06-13 22:37:04 +000097 "1.1": 1001,
98 "1.2": 1002,
Eduardo Sousa044f4312019-05-20 15:17:35 +010099 # Add new versions here
100 }
101
delacruzramoad682a52019-12-10 16:26:34 +0100102 def __init__(self, authenticator):
tiernoc94c3df2018-02-09 15:38:54 +0100103 self.db = None
104 self.fs = None
105 self.msg = None
delacruzramoad682a52019-12-10 16:26:34 +0100106 self.authconn = None
tiernoc94c3df2018-02-09 15:38:54 +0100107 self.config = None
tierno9e87a7f2020-03-23 09:24:10 +0000108 # self.operations = None
tiernoc94c3df2018-02-09 15:38:54 +0100109 self.logger = logging.getLogger("nbi.engine")
tiernob24258a2018-10-04 18:39:49 +0200110 self.map_topic = {}
tierno04dbb0e2019-01-09 16:00:24 +0000111 self.write_lock = None
delacruzramoad682a52019-12-10 16:26:34 +0100112 # self.token_cache = token_cache
113 self.authenticator = authenticator
tiernoc94c3df2018-02-09 15:38:54 +0100114
115 def start(self, config):
116 """
117 Connect to database, filesystem storage, and messaging
118 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
119 :return: None
120 """
121 self.config = config
tiernob24258a2018-10-04 18:39:49 +0200122 # check right version of common
123 if versiontuple(common_version) < versiontuple(min_common_version):
garciadeblas4568a372021-03-24 09:19:48 +0100124 raise EngineException(
125 "Not compatible osm/common version '{}'. Needed '{}' or higher".format(
126 common_version, min_common_version
127 )
128 )
tiernob24258a2018-10-04 18:39:49 +0200129
tiernoc94c3df2018-02-09 15:38:54 +0100130 try:
131 if not self.db:
132 if config["database"]["driver"] == "mongo":
133 self.db = dbmongo.DbMongo()
134 self.db.db_connect(config["database"])
135 elif config["database"]["driver"] == "memory":
136 self.db = dbmemory.DbMemory()
137 self.db.db_connect(config["database"])
138 else:
garciadeblas4568a372021-03-24 09:19:48 +0100139 raise EngineException(
140 "Invalid configuration param '{}' at '[database]':'driver'".format(
141 config["database"]["driver"]
142 )
143 )
tiernoc94c3df2018-02-09 15:38:54 +0100144 if not self.fs:
145 if config["storage"]["driver"] == "local":
146 self.fs = fslocal.FsLocal()
147 self.fs.fs_connect(config["storage"])
Eduardo Sousa7e0eb132019-06-21 11:50:21 +0100148 elif config["storage"]["driver"] == "mongo":
149 self.fs = fsmongo.FsMongo()
150 self.fs.fs_connect(config["storage"])
tiernoc94c3df2018-02-09 15:38:54 +0100151 else:
garciadeblas4568a372021-03-24 09:19:48 +0100152 raise EngineException(
153 "Invalid configuration param '{}' at '[storage]':'driver'".format(
154 config["storage"]["driver"]
155 )
156 )
tiernoc94c3df2018-02-09 15:38:54 +0100157 if not self.msg:
158 if config["message"]["driver"] == "local":
159 self.msg = msglocal.MsgLocal()
160 self.msg.connect(config["message"])
161 elif config["message"]["driver"] == "kafka":
162 self.msg = msgkafka.MsgKafka()
163 self.msg.connect(config["message"])
164 else:
garciadeblas4568a372021-03-24 09:19:48 +0100165 raise EngineException(
166 "Invalid configuration param '{}' at '[message]':'driver'".format(
167 config["message"]["driver"]
168 )
169 )
delacruzramoad682a52019-12-10 16:26:34 +0100170 if not self.authconn:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100171 if config["authentication"]["backend"] == "keystone":
garciadeblas4568a372021-03-24 09:19:48 +0100172 self.authconn = AuthconnKeystone(
173 config["authentication"],
174 self.db,
175 self.authenticator.role_permissions,
176 )
K Sai Kiran7ddb0732020-10-30 11:14:44 +0530177 elif config["authentication"]["backend"] == "tacacs":
garciadeblas4568a372021-03-24 09:19:48 +0100178 self.authconn = AuthconnTacacs(
179 config["authentication"],
180 self.db,
181 self.authenticator.role_permissions,
182 )
delacruzramoceb8baf2019-06-21 14:25:38 +0200183 else:
garciadeblas4568a372021-03-24 09:19:48 +0100184 self.authconn = AuthconnInternal(
185 config["authentication"],
186 self.db,
187 self.authenticator.role_permissions,
188 )
tierno9e87a7f2020-03-23 09:24:10 +0000189 # if not self.operations:
190 # if "resources_to_operations" in config["rbac"]:
191 # resources_to_operations_file = config["rbac"]["resources_to_operations"]
192 # else:
193 # possible_paths = (
194 # __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml",
195 # "./resources_to_operations.yml"
196 # )
197 # for config_file in possible_paths:
198 # if path.isfile(config_file):
199 # resources_to_operations_file = config_file
200 # break
201 # if not resources_to_operations_file:
202 # raise EngineException("Invalid permission configuration:"
203 # "resources_to_operations file missing")
204 #
205 # with open(resources_to_operations_file, 'r') as f:
206 # resources_to_operations = yaml.load(f, Loader=yaml.Loader)
207 #
208 # self.operations = []
209 #
210 # for _, value in resources_to_operations["resources_to_operations"].items():
211 # if value not in self.operations:
212 # self.operations += [value]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100213
tierno04dbb0e2019-01-09 16:00:24 +0000214 self.write_lock = Lock()
tiernob24258a2018-10-04 18:39:49 +0200215 # create one class per topic
216 for topic, topic_class in self.map_from_topic_to_class.items():
delacruzramo32bab472019-09-13 12:24:22 +0200217 # if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth):
218 # self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
garciadeblas4568a372021-03-24 09:19:48 +0100219 self.map_topic[topic] = topic_class(
220 self.db, self.fs, self.msg, self.authconn
221 )
222
223 self.map_topic["pm_jobs"] = PmJobsTopic(
224 self.db,
225 config["prometheus"].get("host"),
226 config["prometheus"].get("port"),
227 )
tiernoc94c3df2018-02-09 15:38:54 +0100228 except (DbException, FsException, MsgException) as e:
229 raise EngineException(str(e), http_code=e.http_code)
230
231 def stop(self):
232 try:
233 if self.db:
234 self.db.db_disconnect()
235 if self.fs:
236 self.fs.fs_disconnect()
tierno932499c2019-01-28 17:28:10 +0000237 if self.msg:
238 self.msg.disconnect()
tierno04dbb0e2019-01-09 16:00:24 +0000239 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +0100240 except (DbException, FsException, MsgException) as e:
241 raise EngineException(str(e), http_code=e.http_code)
242
garciadeblas4568a372021-03-24 09:19:48 +0100243 def new_item(
244 self, rollback, session, topic, indata=None, kwargs=None, headers=None
245 ):
tiernoc94c3df2018-02-09 15:38:54 +0100246 """
tiernof27c79b2018-03-12 17:08:42 +0100247 Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry,
248 that must be completed with a call to method upload_content
tiernob24258a2018-10-04 18:39:49 +0200249 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +0100250 :param session: contains the used login username and working project, force to avoid checkins, public
tiernob24258a2018-10-04 18:39:49 +0200251 :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds
tiernoc94c3df2018-02-09 15:38:54 +0100252 :param indata: data to be inserted
253 :param kwargs: used to override the indata descriptor
254 :param headers: http request headers
tierno0ffaa992018-05-09 13:21:56 +0200255 :return: _id: identity of the inserted data.
tiernoc94c3df2018-02-09 15:38:54 +0100256 """
tiernob24258a2018-10-04 18:39:49 +0200257 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100258 raise EngineException(
259 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
260 )
tierno04dbb0e2019-01-09 16:00:24 +0000261 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100262 return self.map_topic[topic].new(rollback, session, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100263
tierno65ca36d2019-02-12 19:27:52 +0100264 def upload_content(self, session, topic, _id, indata, kwargs, headers):
tierno65acb4d2018-04-06 16:42:40 +0200265 """
tiernob24258a2018-10-04 18:39:49 +0200266 Upload content for an already created entry (_id)
tierno65acb4d2018-04-06 16:42:40 +0200267 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200268 :param topic: it can be: users, projects, vnfds, nsds,
269 :param _id: server id of the item
270 :param indata: data to be inserted
tierno65acb4d2018-04-06 16:42:40 +0200271 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200272 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +0200273 :return: _id: identity of the inserted data.
tierno65acb4d2018-04-06 16:42:40 +0200274 """
tiernob24258a2018-10-04 18:39:49 +0200275 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100276 raise EngineException(
277 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
278 )
tierno04dbb0e2019-01-09 16:00:24 +0000279 with self.write_lock:
garciadeblas4568a372021-03-24 09:19:48 +0100280 return self.map_topic[topic].upload_content(
281 session, _id, indata, kwargs, headers
282 )
tiernoc94c3df2018-02-09 15:38:54 +0100283
Frank Bryden19b97522020-07-10 12:32:02 +0000284 def get_item_list(self, session, topic, filter_q=None, api_req=False):
tiernoc94c3df2018-02-09 15:38:54 +0100285 """
286 Get a list of items
287 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200288 :param topic: it can be: users, projects, vnfds, nsds, ...
289 :param filter_q: filter of data to be applied
Frank Bryden19b97522020-07-10 12:32:02 +0000290 :param api_req: True if this call is serving an external API request. False if serving internal request.
tiernob24258a2018-10-04 18:39:49 +0200291 :return: The list, it can be empty if no one match the filter_q.
tiernoc94c3df2018-02-09 15:38:54 +0100292 """
tiernob24258a2018-10-04 18:39:49 +0200293 if topic not in self.map_topic:
K Sai Kiran57589552021-01-27 21:38:34 +0530294 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
Frank Bryden19b97522020-07-10 12:32:02 +0000295 return self.map_topic[topic].list(session, filter_q, api_req)
tiernof27c79b2018-03-12 17:08:42 +0100296
K Sai Kiran57589552021-01-27 21:38:34 +0530297 def get_item(self, session, topic, _id, filter_q=None, api_req=False):
tiernoc94c3df2018-02-09 15:38:54 +0100298 """
tiernob24258a2018-10-04 18:39:49 +0200299 Get complete information on an item
tiernoc94c3df2018-02-09 15:38:54 +0100300 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200301 :param topic: it can be: users, projects, vnfds, nsds,
tiernoc94c3df2018-02-09 15:38:54 +0100302 :param _id: server id of the item
K Sai Kiran57589552021-01-27 21:38:34 +0530303 :param filter_q: other arguments
Frank Bryden19b97522020-07-10 12:32:02 +0000304 :param api_req: True if this call is serving an external API request. False if serving internal request.
tiernoc94c3df2018-02-09 15:38:54 +0100305 :return: dictionary, raise exception if not found.
306 """
tiernob24258a2018-10-04 18:39:49 +0200307 if topic not in self.map_topic:
K Sai Kiran57589552021-01-27 21:38:34 +0530308 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
309 return self.map_topic[topic].show(session, _id, filter_q, api_req)
tiernoc94c3df2018-02-09 15:38:54 +0100310
tierno87006042018-10-24 12:50:20 +0200311 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:
garciadeblas4568a372021-03-24 09:19:48 +0100322 raise EngineException(
323 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
324 )
tierno87006042018-10-24 12:50:20 +0200325 return self.map_topic[topic].get_file(session, _id, path, accept_header)
326
tiernob24258a2018-10-04 18:39:49 +0200327 def del_item_list(self, session, topic, _filter=None):
tiernoc94c3df2018-02-09 15:38:54 +0100328 """
329 Delete a list of items
330 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200331 :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.
tiernoc94c3df2018-02-09 15:38:54 +0100334 """
tiernob24258a2018-10-04 18:39:49 +0200335 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100336 raise EngineException(
337 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
338 )
tierno04dbb0e2019-01-09 16:00:24 +0000339 with self.write_lock:
340 return self.map_topic[topic].delete_list(session, _filter)
tiernoc94c3df2018-02-09 15:38:54 +0100341
tiernobee3bad2019-12-05 12:26:01 +0000342 def del_item(self, session, topic, _id, not_send_msg=None):
tiernoc94c3df2018-02-09 15:38:54 +0100343 """
tiernob92094f2018-05-11 13:44:22 +0200344 Delete item by its internal id
tiernoc94c3df2018-02-09 15:38:54 +0100345 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200346 :param topic: it can be: users, projects, vnfds, nsds, ...
tiernoc94c3df2018-02-09 15:38:54 +0100347 :param _id: server id of the item
tiernobee3bad2019-12-05 12:26:01 +0000348 :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
delacruzramo01b15d32019-07-02 14:37:47 +0200351 :return: dictionary with deleted item _id. It raises exception if not found.
tiernoc94c3df2018-02-09 15:38:54 +0100352 """
tiernob24258a2018-10-04 18:39:49 +0200353 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100354 raise EngineException(
355 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
356 )
tierno04dbb0e2019-01-09 16:00:24 +0000357 with self.write_lock:
tiernobee3bad2019-12-05 12:26:01 +0000358 return self.map_topic[topic].delete(session, _id, not_send_msg=not_send_msg)
tiernoc94c3df2018-02-09 15:38:54 +0100359
tierno65ca36d2019-02-12 19:27:52 +0100360 def edit_item(self, session, topic, _id, indata=None, kwargs=None):
tiernob24258a2018-10-04 18:39:49 +0200361 """
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
delacruzramo01b15d32019-07-02 14:37:47 +0200368 :return: dictionary with edited item _id, raise exception if not found.
tiernob24258a2018-10-04 18:39:49 +0200369 """
370 if topic not in self.map_topic:
garciadeblas4568a372021-03-24 09:19:48 +0100371 raise EngineException(
372 "Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR
373 )
tierno04dbb0e2019-01-09 16:00:24 +0000374 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100375 return self.map_topic[topic].edit(session, _id, indata, kwargs)
tiernoc94c3df2018-02-09 15:38:54 +0100376
tiernod985a8d2018-10-19 14:12:28 +0200377 def upgrade_db(self, current_version, target_version):
Eduardo Sousa044f4312019-05-20 15:17:35 +0100378 if target_version not in self.map_target_version_to_int.keys():
garciadeblas4568a372021-03-24 09:19:48 +0100379 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 )
tiernod985a8d2018-10-19 14:12:28 +0200385
Eduardo Sousa044f4312019-05-20 15:17:35 +0100386 if current_version == target_version:
387 return
garciadeblas4568a372021-03-24 09:19:48 +0100388
Eduardo Sousa044f4312019-05-20 15:17:35 +0100389 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 = {
garciadeblas4568a372021-03-24 09:19:48 +0100395 "_id": "version", # Always "version"
396 "version_int": 1000, # version number
397 "version": "1.0", # version text
398 "date": "2018-10-25", # version date
Eduardo Sousa044f4312019-05-20 15:17:35 +0100399 "description": "added serial", # changes in this version
garciadeblas4568a372021-03-24 09:19:48 +0100400 "status": "ENABLED", # ENABLED, DISABLED (migration in process), ERROR,
401 "serial": b64encode(serial),
Eduardo Sousa044f4312019-05-20 15:17:35 +0100402 }
403 self.db.create("admin", version_data)
404 self.db.set_secret_key(serial)
405 current_version = "1.0"
garciadeblas4568a372021-03-24 09:19:48 +0100406
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":
delacruzramo01b15d32019-07-02 14:37:47 +0200412 self.db.del_list("roles")
413
Eduardo Sousa044f4312019-05-20 15:17:35 +0100414 version_data = {
415 "_id": "version",
tierno1f029d82019-06-13 22:37:04 +0000416 "version_int": 1002,
417 "version": "1.2",
418 "date": "2019-06-11",
garciadeblas4568a372021-03-24 09:19:48 +0100419 "description": "set new format for roles_operations",
Eduardo Sousa044f4312019-05-20 15:17:35 +0100420 }
421
422 self.db.set_one("admin", {"_id": "version"}, version_data)
tierno1f029d82019-06-13 22:37:04 +0000423 current_version = "1.2"
Eduardo Sousa044f4312019-05-20 15:17:35 +0100424 # TODO add future migrations here
tiernod985a8d2018-10-19 14:12:28 +0200425
garciadeblas4568a372021-03-24 09:19:48 +0100426 def init_db(self, target_version="1.0"):
tierno4a946e42018-04-12 17:48:49 +0200427 """
tiernod985a8d2018-10-19 14:12:28 +0200428 Init database if empty. If not empty it checks that database version and migrates if needed
tierno4a946e42018-04-12 17:48:49 +0200429 If empty, it creates a new user admin/admin at 'users' and a new entry at 'version'
tiernod985a8d2018-10-19 14:12:28 +0200430 :param target_version: check desired database version. Migrate to it if possible or raises exception
tierno4a946e42018-04-12 17:48:49 +0200431 :return: None if ok, exception if error or if the version is different.
432 """
tiernod985a8d2018-10-19 14:12:28 +0200433
garciadeblas4568a372021-03-24 09:19:48 +0100434 version_data = self.db.get_one(
435 "admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True
436 )
tiernod985a8d2018-10-19 14:12:28 +0200437 # check database status is ok
garciadeblas4568a372021-03-24 09:19:48 +0100438 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 )
tiernod985a8d2018-10-19 14:12:28 +0200443
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
tierno4a946e42018-04-12 17:48:49 +0200449 return