blob: 3f83557453b7e79db5e088b9fef3f6e2a27e201d [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
Eduardo Sousa5c01e192019-05-08 02:35:47 +010017import 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
26from osm_nbi.base_topic import EngineException, versiontuple
27from osm_nbi.admin_topics import VimAccountTopic, WimAccountTopic, SdnTopic
delacruzramofe598fe2019-10-23 18:25:11 +020028from osm_nbi.admin_topics import K8sClusterTopic, K8sRepoTopic
tierno23acf402019-08-28 13:36:34 +000029from osm_nbi.admin_topics import UserTopicAuth, ProjectTopicAuth, RoleTopicAuth
30from osm_nbi.descriptor_topics import VnfdTopic, NsdTopic, PduTopic, NstTopic
31from osm_nbi.instance_topics import NsrTopic, VnfrTopic, NsLcmOpTopic, NsiTopic, NsiLcmOpTopic
32from osm_nbi.pmjobs_topics import PmJobsTopic
tiernod985a8d2018-10-19 14:12:28 +020033from base64 import b64encode
Eduardo Sousa5c01e192019-05-08 02:35:47 +010034from os import urandom, path
tierno04dbb0e2019-01-09 16:00:24 +000035from threading import Lock
tiernoc94c3df2018-02-09 15:38:54 +010036
37__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tierno932499c2019-01-28 17:28:10 +000038min_common_version = "0.1.16"
tierno441dbbf2018-07-10 12:52:48 +020039
40
tiernoc94c3df2018-02-09 15:38:54 +010041class Engine(object):
tiernob24258a2018-10-04 18:39:49 +020042 map_from_topic_to_class = {
43 "vnfds": VnfdTopic,
44 "nsds": NsdTopic,
Felipe Vicensb57758d2018-10-16 16:00:20 +020045 "nsts": NstTopic,
tiernob24258a2018-10-04 18:39:49 +020046 "pdus": PduTopic,
47 "nsrs": NsrTopic,
48 "vnfrs": VnfrTopic,
49 "nslcmops": NsLcmOpTopic,
50 "vim_accounts": VimAccountTopic,
tierno55ba2e62018-12-11 17:22:22 +000051 "wim_accounts": WimAccountTopic,
tiernob24258a2018-10-04 18:39:49 +020052 "sdns": SdnTopic,
delacruzramofe598fe2019-10-23 18:25:11 +020053 "k8sclusters": K8sClusterTopic,
54 "k8srepos": K8sRepoTopic,
delacruzramo01b15d32019-07-02 14:37:47 +020055 "users": UserTopicAuth, # Valid for both internal and keystone authentication backends
56 "projects": ProjectTopicAuth, # Valid for both internal and keystone authentication backends
delacruzramoceb8baf2019-06-21 14:25:38 +020057 "roles": RoleTopicAuth, # Valid for both internal and keystone authentication backends
Felipe Vicensb57758d2018-10-16 16:00:20 +020058 "nsis": NsiTopic,
Felipe Vicens07f31722018-10-29 15:16:44 +010059 "nsilcmops": NsiLcmOpTopic
tiernob24258a2018-10-04 18:39:49 +020060 # [NEW_TOPIC]: add an entry here
vijay.r35ef2f72019-04-30 17:55:49 +053061 # "pm_jobs": PmJobsTopic will be added manually because it needs other parameters
tiernob24258a2018-10-04 18:39:49 +020062 }
tiernoc94c3df2018-02-09 15:38:54 +010063
Eduardo Sousa044f4312019-05-20 15:17:35 +010064 map_target_version_to_int = {
65 "1.0": 1000,
tierno1f029d82019-06-13 22:37:04 +000066 "1.1": 1001,
67 "1.2": 1002,
Eduardo Sousa044f4312019-05-20 15:17:35 +010068 # Add new versions here
69 }
70
delacruzramo3d6881c2019-12-04 13:42:26 +010071 def __init__(self, token_cache):
tiernoc94c3df2018-02-09 15:38:54 +010072 self.db = None
73 self.fs = None
74 self.msg = None
Eduardo Sousa5c01e192019-05-08 02:35:47 +010075 self.auth = None
tiernoc94c3df2018-02-09 15:38:54 +010076 self.config = None
Eduardo Sousa5c01e192019-05-08 02:35:47 +010077 self.operations = None
tiernoc94c3df2018-02-09 15:38:54 +010078 self.logger = logging.getLogger("nbi.engine")
tiernob24258a2018-10-04 18:39:49 +020079 self.map_topic = {}
tierno04dbb0e2019-01-09 16:00:24 +000080 self.write_lock = None
delacruzramo3d6881c2019-12-04 13:42:26 +010081 self.token_cache = token_cache
tiernoc94c3df2018-02-09 15:38:54 +010082
83 def start(self, config):
84 """
85 Connect to database, filesystem storage, and messaging
86 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
87 :return: None
88 """
89 self.config = config
tiernob24258a2018-10-04 18:39:49 +020090 # check right version of common
91 if versiontuple(common_version) < versiontuple(min_common_version):
92 raise EngineException("Not compatible osm/common version '{}'. Needed '{}' or higher".format(
93 common_version, min_common_version))
94
tiernoc94c3df2018-02-09 15:38:54 +010095 try:
96 if not self.db:
97 if config["database"]["driver"] == "mongo":
98 self.db = dbmongo.DbMongo()
99 self.db.db_connect(config["database"])
100 elif config["database"]["driver"] == "memory":
101 self.db = dbmemory.DbMemory()
102 self.db.db_connect(config["database"])
103 else:
104 raise EngineException("Invalid configuration param '{}' at '[database]':'driver'".format(
105 config["database"]["driver"]))
106 if not self.fs:
107 if config["storage"]["driver"] == "local":
108 self.fs = fslocal.FsLocal()
109 self.fs.fs_connect(config["storage"])
Eduardo Sousa7e0eb132019-06-21 11:50:21 +0100110 elif config["storage"]["driver"] == "mongo":
111 self.fs = fsmongo.FsMongo()
112 self.fs.fs_connect(config["storage"])
tiernoc94c3df2018-02-09 15:38:54 +0100113 else:
114 raise EngineException("Invalid configuration param '{}' at '[storage]':'driver'".format(
115 config["storage"]["driver"]))
116 if not self.msg:
117 if config["message"]["driver"] == "local":
118 self.msg = msglocal.MsgLocal()
119 self.msg.connect(config["message"])
120 elif config["message"]["driver"] == "kafka":
121 self.msg = msgkafka.MsgKafka()
122 self.msg.connect(config["message"])
123 else:
124 raise EngineException("Invalid configuration param '{}' at '[message]':'driver'".format(
tierno932499c2019-01-28 17:28:10 +0000125 config["message"]["driver"]))
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100126 if not self.auth:
127 if config["authentication"]["backend"] == "keystone":
delacruzramo01b15d32019-07-02 14:37:47 +0200128 self.auth = AuthconnKeystone(config["authentication"], self.db, None)
delacruzramoceb8baf2019-06-21 14:25:38 +0200129 else:
delacruzramo3d6881c2019-12-04 13:42:26 +0100130 self.auth = AuthconnInternal(config["authentication"], self.db, self.token_cache)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100131 if not self.operations:
132 if "resources_to_operations" in config["rbac"]:
133 resources_to_operations_file = config["rbac"]["resources_to_operations"]
134 else:
135 possible_paths = (
136 __file__[:__file__.rfind("engine.py")] + "resources_to_operations.yml",
137 "./resources_to_operations.yml"
138 )
139 for config_file in possible_paths:
140 if path.isfile(config_file):
141 resources_to_operations_file = config_file
142 break
Eduardo Sousaa519a962019-06-06 15:00:50 +0100143 if not resources_to_operations_file:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100144 raise EngineException("Invalid permission configuration: resources_to_operations file missing")
Eduardo Sousaa519a962019-06-06 15:00:50 +0100145
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100146 with open(resources_to_operations_file, 'r') as f:
delacruzramob19cadc2019-10-08 10:18:02 +0200147 resources_to_operations = yaml.load(f, Loader=yaml.Loader)
Eduardo Sousaa519a962019-06-06 15:00:50 +0100148
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100149 self.operations = []
150
151 for _, value in resources_to_operations["resources_to_operations"].items():
152 if value not in self.operations:
Eduardo Sousac5a18892019-06-06 14:51:23 +0100153 self.operations += [value]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100154
tierno04dbb0e2019-01-09 16:00:24 +0000155 self.write_lock = Lock()
tiernob24258a2018-10-04 18:39:49 +0200156 # create one class per topic
157 for topic, topic_class in self.map_from_topic_to_class.items():
delacruzramo32bab472019-09-13 12:24:22 +0200158 # if self.auth and topic_class in (UserTopicAuth, ProjectTopicAuth):
159 # self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
160 if self.auth and topic_class == RoleTopicAuth:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100161 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth,
162 self.operations)
163 else:
delacruzramo32bab472019-09-13 12:24:22 +0200164 self.map_topic[topic] = topic_class(self.db, self.fs, self.msg, self.auth)
Eduardo Sousa225200d2019-05-22 15:57:17 +0100165
preethika.p0952a482019-09-20 16:37:50 +0530166 self.map_topic["pm_jobs"] = PmJobsTopic(self.db, config["prometheus"].get("host"),
167 config["prometheus"].get("port"))
tiernoc94c3df2018-02-09 15:38:54 +0100168 except (DbException, FsException, MsgException) as e:
169 raise EngineException(str(e), http_code=e.http_code)
170
171 def stop(self):
172 try:
173 if self.db:
174 self.db.db_disconnect()
175 if self.fs:
176 self.fs.fs_disconnect()
tierno932499c2019-01-28 17:28:10 +0000177 if self.msg:
178 self.msg.disconnect()
tierno04dbb0e2019-01-09 16:00:24 +0000179 self.write_lock = None
tiernoc94c3df2018-02-09 15:38:54 +0100180 except (DbException, FsException, MsgException) as e:
181 raise EngineException(str(e), http_code=e.http_code)
182
tierno65ca36d2019-02-12 19:27:52 +0100183 def new_item(self, rollback, session, topic, indata=None, kwargs=None, headers=None):
tiernoc94c3df2018-02-09 15:38:54 +0100184 """
tiernof27c79b2018-03-12 17:08:42 +0100185 Creates a new entry into database. For nsds and vnfds it creates an almost empty DISABLED entry,
186 that must be completed with a call to method upload_content
tiernob24258a2018-10-04 18:39:49 +0200187 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +0100188 :param session: contains the used login username and working project, force to avoid checkins, public
tiernob24258a2018-10-04 18:39:49 +0200189 :param topic: it can be: users, projects, vim_accounts, sdns, nsrs, nsds, vnfds
tiernoc94c3df2018-02-09 15:38:54 +0100190 :param indata: data to be inserted
191 :param kwargs: used to override the indata descriptor
192 :param headers: http request headers
tierno0ffaa992018-05-09 13:21:56 +0200193 :return: _id: identity of the inserted data.
tiernoc94c3df2018-02-09 15:38:54 +0100194 """
tiernob24258a2018-10-04 18:39:49 +0200195 if topic not in self.map_topic:
196 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000197 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100198 return self.map_topic[topic].new(rollback, session, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100199
tierno65ca36d2019-02-12 19:27:52 +0100200 def upload_content(self, session, topic, _id, indata, kwargs, headers):
tierno65acb4d2018-04-06 16:42:40 +0200201 """
tiernob24258a2018-10-04 18:39:49 +0200202 Upload content for an already created entry (_id)
tierno65acb4d2018-04-06 16:42:40 +0200203 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200204 :param topic: it can be: users, projects, vnfds, nsds,
205 :param _id: server id of the item
206 :param indata: data to be inserted
tierno65acb4d2018-04-06 16:42:40 +0200207 :param kwargs: used to override the indata descriptor
tiernob24258a2018-10-04 18:39:49 +0200208 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +0200209 :return: _id: identity of the inserted data.
tierno65acb4d2018-04-06 16:42:40 +0200210 """
tiernob24258a2018-10-04 18:39:49 +0200211 if topic not in self.map_topic:
212 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000213 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100214 return self.map_topic[topic].upload_content(session, _id, indata, kwargs, headers)
tiernoc94c3df2018-02-09 15:38:54 +0100215
tiernob24258a2018-10-04 18:39:49 +0200216 def get_item_list(self, session, topic, filter_q=None):
tiernoc94c3df2018-02-09 15:38:54 +0100217 """
218 Get a list of items
219 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200220 :param topic: it can be: users, projects, vnfds, nsds, ...
221 :param filter_q: filter of data to be applied
222 :return: The list, it can be empty if no one match the filter_q.
tiernoc94c3df2018-02-09 15:38:54 +0100223 """
tiernob24258a2018-10-04 18:39:49 +0200224 if topic not in self.map_topic:
225 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
226 return self.map_topic[topic].list(session, filter_q)
tiernof27c79b2018-03-12 17:08:42 +0100227
tiernob24258a2018-10-04 18:39:49 +0200228 def get_item(self, session, topic, _id):
tiernoc94c3df2018-02-09 15:38:54 +0100229 """
tiernob24258a2018-10-04 18:39:49 +0200230 Get complete information on an item
tiernoc94c3df2018-02-09 15:38:54 +0100231 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200232 :param topic: it can be: users, projects, vnfds, nsds,
tiernoc94c3df2018-02-09 15:38:54 +0100233 :param _id: server id of the item
234 :return: dictionary, raise exception if not found.
235 """
tiernob24258a2018-10-04 18:39:49 +0200236 if topic not in self.map_topic:
237 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
238 return self.map_topic[topic].show(session, _id)
tiernoc94c3df2018-02-09 15:38:54 +0100239
tierno87006042018-10-24 12:50:20 +0200240 def get_file(self, session, topic, _id, path=None, accept_header=None):
241 """
242 Get descriptor package or artifact file content
243 :param session: contains the used login username and working project
244 :param topic: it can be: users, projects, vnfds, nsds,
245 :param _id: server id of the item
246 :param path: artifact path or "$DESCRIPTOR" or None
247 :param accept_header: Content of Accept header. Must contain applition/zip or/and text/plain
248 :return: opened file plus Accept format or raises an exception
249 """
250 if topic not in self.map_topic:
251 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
252 return self.map_topic[topic].get_file(session, _id, path, accept_header)
253
tiernob24258a2018-10-04 18:39:49 +0200254 def del_item_list(self, session, topic, _filter=None):
tiernoc94c3df2018-02-09 15:38:54 +0100255 """
256 Delete a list of items
257 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200258 :param topic: it can be: users, projects, vnfds, nsds, ...
259 :param _filter: filter of data to be applied
260 :return: The deleted list, it can be empty if no one match the _filter.
tiernoc94c3df2018-02-09 15:38:54 +0100261 """
tiernob24258a2018-10-04 18:39:49 +0200262 if topic not in self.map_topic:
263 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000264 with self.write_lock:
265 return self.map_topic[topic].delete_list(session, _filter)
tiernoc94c3df2018-02-09 15:38:54 +0100266
tiernobee3bad2019-12-05 12:26:01 +0000267 def del_item(self, session, topic, _id, not_send_msg=None):
tiernoc94c3df2018-02-09 15:38:54 +0100268 """
tiernob92094f2018-05-11 13:44:22 +0200269 Delete item by its internal id
tiernoc94c3df2018-02-09 15:38:54 +0100270 :param session: contains the used login username and working project
tiernob24258a2018-10-04 18:39:49 +0200271 :param topic: it can be: users, projects, vnfds, nsds, ...
tiernoc94c3df2018-02-09 15:38:54 +0100272 :param _id: server id of the item
tiernobee3bad2019-12-05 12:26:01 +0000273 :param not_send_msg: If False, message will not be sent to kafka.
274 If a list, message is not sent, but content is stored in this variable so that the caller can send this
275 message using its own loop. If None, message is sent
delacruzramo01b15d32019-07-02 14:37:47 +0200276 :return: dictionary with deleted item _id. It raises exception if not found.
tiernoc94c3df2018-02-09 15:38:54 +0100277 """
tiernob24258a2018-10-04 18:39:49 +0200278 if topic not in self.map_topic:
279 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000280 with self.write_lock:
tiernobee3bad2019-12-05 12:26:01 +0000281 return self.map_topic[topic].delete(session, _id, not_send_msg=not_send_msg)
tiernoc94c3df2018-02-09 15:38:54 +0100282
tierno65ca36d2019-02-12 19:27:52 +0100283 def edit_item(self, session, topic, _id, indata=None, kwargs=None):
tiernob24258a2018-10-04 18:39:49 +0200284 """
285 Update an existing entry at database
286 :param session: contains the used login username and working project
287 :param topic: it can be: users, projects, vnfds, nsds, ...
288 :param _id: identifier to be updated
289 :param indata: data to be inserted
290 :param kwargs: used to override the indata descriptor
delacruzramo01b15d32019-07-02 14:37:47 +0200291 :return: dictionary with edited item _id, raise exception if not found.
tiernob24258a2018-10-04 18:39:49 +0200292 """
293 if topic not in self.map_topic:
294 raise EngineException("Unknown topic {}!!!".format(topic), HTTPStatus.INTERNAL_SERVER_ERROR)
tierno04dbb0e2019-01-09 16:00:24 +0000295 with self.write_lock:
tierno65ca36d2019-02-12 19:27:52 +0100296 return self.map_topic[topic].edit(session, _id, indata, kwargs)
tiernoc94c3df2018-02-09 15:38:54 +0100297
tiernod985a8d2018-10-19 14:12:28 +0200298 def upgrade_db(self, current_version, target_version):
Eduardo Sousa044f4312019-05-20 15:17:35 +0100299 if target_version not in self.map_target_version_to_int.keys():
tierno1f029d82019-06-13 22:37:04 +0000300 raise EngineException("Cannot upgrade to version '{}' with this version of code".format(target_version),
Eduardo Sousa044f4312019-05-20 15:17:35 +0100301 http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
tiernod985a8d2018-10-19 14:12:28 +0200302
Eduardo Sousa044f4312019-05-20 15:17:35 +0100303 if current_version == target_version:
304 return
305
306 target_version_int = self.map_target_version_to_int[target_version]
307
308 if not current_version:
309 # create database version
310 serial = urandom(32)
311 version_data = {
312 "_id": "version", # Always "version"
313 "version_int": 1000, # version number
314 "version": "1.0", # version text
315 "date": "2018-10-25", # version date
316 "description": "added serial", # changes in this version
317 'status': "ENABLED", # ENABLED, DISABLED (migration in process), ERROR,
318 'serial': b64encode(serial)
319 }
320 self.db.create("admin", version_data)
321 self.db.set_secret_key(serial)
322 current_version = "1.0"
323
tierno1f029d82019-06-13 22:37:04 +0000324 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 +0200325 if self.config['authentication']['backend'] == "internal":
326 self.db.del_list("roles")
327
Eduardo Sousa044f4312019-05-20 15:17:35 +0100328 version_data = {
329 "_id": "version",
tierno1f029d82019-06-13 22:37:04 +0000330 "version_int": 1002,
331 "version": "1.2",
332 "date": "2019-06-11",
Eduardo Sousa044f4312019-05-20 15:17:35 +0100333 "description": "set new format for roles_operations"
334 }
335
336 self.db.set_one("admin", {"_id": "version"}, version_data)
tierno1f029d82019-06-13 22:37:04 +0000337 current_version = "1.2"
Eduardo Sousa044f4312019-05-20 15:17:35 +0100338 # TODO add future migrations here
tiernod985a8d2018-10-19 14:12:28 +0200339
tierno4a946e42018-04-12 17:48:49 +0200340 def init_db(self, target_version='1.0'):
341 """
tiernod985a8d2018-10-19 14:12:28 +0200342 Init database if empty. If not empty it checks that database version and migrates if needed
tierno4a946e42018-04-12 17:48:49 +0200343 If empty, it creates a new user admin/admin at 'users' and a new entry at 'version'
tiernod985a8d2018-10-19 14:12:28 +0200344 :param target_version: check desired database version. Migrate to it if possible or raises exception
tierno4a946e42018-04-12 17:48:49 +0200345 :return: None if ok, exception if error or if the version is different.
346 """
tiernod985a8d2018-10-19 14:12:28 +0200347
348 version_data = self.db.get_one("admin", {"_id": "version"}, fail_on_empty=False, fail_on_more=True)
349 # check database status is ok
350 if version_data and version_data.get("status") != 'ENABLED':
tierno4a946e42018-04-12 17:48:49 +0200351 raise EngineException("Wrong database status '{}'".format(
tiernod985a8d2018-10-19 14:12:28 +0200352 version_data["status"]), HTTPStatus.INTERNAL_SERVER_ERROR)
353
354 # check version
355 db_version = None if not version_data else version_data.get("version")
356 if db_version != target_version:
357 self.upgrade_db(db_version, target_version)
358
tierno4a946e42018-04-12 17:48:49 +0200359 return