blob: 7d1e85dd03079c06ba65eeac464ae0c00f19de66 [file] [log] [blame]
tiernob24258a2018-10-04 18:39:49 +02001# -*- 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
tiernob24258a2018-10-04 18:39:49 +020016# import logging
17from uuid import uuid4
18from hashlib import sha256
19from http import HTTPStatus
Eduardo Sousa5c01e192019-05-08 02:35:47 +010020from time import time
tiernob24258a2018-10-04 18:39:49 +020021from validation import user_new_schema, user_edit_schema, project_new_schema, project_edit_schema
22from validation import vim_account_new_schema, vim_account_edit_schema, sdn_new_schema, sdn_edit_schema
Eduardo Sousa5c01e192019-05-08 02:35:47 +010023from validation import wim_account_new_schema, wim_account_edit_schema, roles_new_schema, roles_edit_schema
24from validation import validate_input
25from validation import ValidationError
delacruzramoc061f562019-04-05 11:00:02 +020026from validation import is_valid_uuid # To check that User/Project Names don't look like UUIDs
tiernob24258a2018-10-04 18:39:49 +020027from base_topic import BaseTopic, EngineException
delacruzramo01b15d32019-07-02 14:37:47 +020028from osm_common.dbbase import deep_update_rfc7396
29from authconn import AuthconnNotFoundException, AuthconnConflictException
30# from authconn_keystone import AuthconnKeystone
tiernob24258a2018-10-04 18:39:49 +020031
32__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
33
34
35class UserTopic(BaseTopic):
36 topic = "users"
37 topic_msg = "users"
38 schema_new = user_new_schema
39 schema_edit = user_edit_schema
tierno65ca36d2019-02-12 19:27:52 +010040 multiproject = False
tiernob24258a2018-10-04 18:39:49 +020041
42 def __init__(self, db, fs, msg):
43 BaseTopic.__init__(self, db, fs, msg)
44
45 @staticmethod
tierno65ca36d2019-02-12 19:27:52 +010046 def _get_project_filter(session):
tiernob24258a2018-10-04 18:39:49 +020047 """
48 Generates a filter dictionary for querying database users.
49 Current policy is admin can show all, non admin, only its own user.
tierno65ca36d2019-02-12 19:27:52 +010050 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
tiernob24258a2018-10-04 18:39:49 +020051 :return:
52 """
53 if session["admin"]: # allows all
54 return {}
55 else:
56 return {"username": session["username"]}
57
tierno65ca36d2019-02-12 19:27:52 +010058 def check_conflict_on_new(self, session, indata):
tiernob24258a2018-10-04 18:39:49 +020059 # check username not exists
60 if self.db.get_one(self.topic, {"username": indata.get("username")}, fail_on_empty=False, fail_on_more=False):
61 raise EngineException("username '{}' exists".format(indata["username"]), HTTPStatus.CONFLICT)
62 # check projects
tierno65ca36d2019-02-12 19:27:52 +010063 if not session["force"]:
delacruzramoceb8baf2019-06-21 14:25:38 +020064 for p in indata.get("projects") or []:
delacruzramoc061f562019-04-05 11:00:02 +020065 # To allow project addressing by Name as well as ID
66 if not self.db.get_one("projects", {BaseTopic.id_field("projects", p): p}, fail_on_empty=False,
67 fail_on_more=False):
68 raise EngineException("project '{}' does not exist".format(p), HTTPStatus.CONFLICT)
tiernob24258a2018-10-04 18:39:49 +020069
tiernob4844ab2019-05-23 08:42:12 +000070 def check_conflict_on_del(self, session, _id, db_content):
71 """
72 Check if deletion can be done because of dependencies if it is not force. To override
73 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
74 :param _id: internal _id
75 :param db_content: The database content of this item _id
76 :return: None if ok or raises EngineException with the conflict
77 """
tiernob24258a2018-10-04 18:39:49 +020078 if _id == session["username"]:
79 raise EngineException("You cannot delete your own user", http_code=HTTPStatus.CONFLICT)
80
81 @staticmethod
82 def format_on_new(content, project_id=None, make_public=False):
83 BaseTopic.format_on_new(content, make_public=False)
delacruzramoc061f562019-04-05 11:00:02 +020084 # Removed so that the UUID is kept, to allow User Name modification
85 # content["_id"] = content["username"]
tiernob24258a2018-10-04 18:39:49 +020086 salt = uuid4().hex
87 content["_admin"]["salt"] = salt
88 if content.get("password"):
89 content["password"] = sha256(content["password"].encode('utf-8') + salt.encode('utf-8')).hexdigest()
Eduardo Sousa339ed782019-05-28 14:25:00 +010090 if content.get("project_role_mappings"):
delacruzramo01b15d32019-07-02 14:37:47 +020091 projects = [mapping["project"] for mapping in content["project_role_mappings"]]
Eduardo Sousa339ed782019-05-28 14:25:00 +010092
93 if content.get("projects"):
94 content["projects"] += projects
95 else:
96 content["projects"] = projects
tiernob24258a2018-10-04 18:39:49 +020097
98 @staticmethod
99 def format_on_edit(final_content, edit_content):
100 BaseTopic.format_on_edit(final_content, edit_content)
101 if edit_content.get("password"):
102 salt = uuid4().hex
103 final_content["_admin"]["salt"] = salt
104 final_content["password"] = sha256(edit_content["password"].encode('utf-8') +
105 salt.encode('utf-8')).hexdigest()
tiernobdebce92019-07-01 15:36:49 +0000106 return None
tiernob24258a2018-10-04 18:39:49 +0200107
tierno65ca36d2019-02-12 19:27:52 +0100108 def edit(self, session, _id, indata=None, kwargs=None, content=None):
tiernob24258a2018-10-04 18:39:49 +0200109 if not session["admin"]:
110 raise EngineException("needed admin privileges", http_code=HTTPStatus.UNAUTHORIZED)
delacruzramoc061f562019-04-05 11:00:02 +0200111 # Names that look like UUIDs are not allowed
112 name = (indata if indata else kwargs).get("username")
113 if is_valid_uuid(name):
114 raise EngineException("Usernames that look like UUIDs are not allowed",
115 http_code=HTTPStatus.UNPROCESSABLE_ENTITY)
tierno65ca36d2019-02-12 19:27:52 +0100116 return BaseTopic.edit(self, session, _id, indata=indata, kwargs=kwargs, content=content)
tiernob24258a2018-10-04 18:39:49 +0200117
tierno65ca36d2019-02-12 19:27:52 +0100118 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
tiernob24258a2018-10-04 18:39:49 +0200119 if not session["admin"]:
120 raise EngineException("needed admin privileges", http_code=HTTPStatus.UNAUTHORIZED)
delacruzramoc061f562019-04-05 11:00:02 +0200121 # Names that look like UUIDs are not allowed
122 name = indata["username"] if indata else kwargs["username"]
123 if is_valid_uuid(name):
124 raise EngineException("Usernames that look like UUIDs are not allowed",
125 http_code=HTTPStatus.UNPROCESSABLE_ENTITY)
tierno65ca36d2019-02-12 19:27:52 +0100126 return BaseTopic.new(self, rollback, session, indata=indata, kwargs=kwargs, headers=headers)
tiernob24258a2018-10-04 18:39:49 +0200127
128
129class ProjectTopic(BaseTopic):
130 topic = "projects"
131 topic_msg = "projects"
132 schema_new = project_new_schema
133 schema_edit = project_edit_schema
tierno65ca36d2019-02-12 19:27:52 +0100134 multiproject = False
tiernob24258a2018-10-04 18:39:49 +0200135
136 def __init__(self, db, fs, msg):
137 BaseTopic.__init__(self, db, fs, msg)
138
tierno65ca36d2019-02-12 19:27:52 +0100139 @staticmethod
140 def _get_project_filter(session):
141 """
142 Generates a filter dictionary for querying database users.
143 Current policy is admin can show all, non admin, only its own user.
144 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
145 :return:
146 """
147 if session["admin"]: # allows all
148 return {}
149 else:
150 return {"_id.cont": session["project_id"]}
151
152 def check_conflict_on_new(self, session, indata):
tiernob24258a2018-10-04 18:39:49 +0200153 if not indata.get("name"):
154 raise EngineException("missing 'name'")
155 # check name not exists
156 if self.db.get_one(self.topic, {"name": indata.get("name")}, fail_on_empty=False, fail_on_more=False):
157 raise EngineException("name '{}' exists".format(indata["name"]), HTTPStatus.CONFLICT)
158
159 @staticmethod
160 def format_on_new(content, project_id=None, make_public=False):
161 BaseTopic.format_on_new(content, None)
delacruzramoc061f562019-04-05 11:00:02 +0200162 # Removed so that the UUID is kept, to allow Project Name modification
163 # content["_id"] = content["name"]
tiernob24258a2018-10-04 18:39:49 +0200164
tiernob4844ab2019-05-23 08:42:12 +0000165 def check_conflict_on_del(self, session, _id, db_content):
166 """
167 Check if deletion can be done because of dependencies if it is not force. To override
168 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
169 :param _id: internal _id
170 :param db_content: The database content of this item _id
171 :return: None if ok or raises EngineException with the conflict
172 """
tierno65ca36d2019-02-12 19:27:52 +0100173 if _id in session["project_id"]:
tiernob24258a2018-10-04 18:39:49 +0200174 raise EngineException("You cannot delete your own project", http_code=HTTPStatus.CONFLICT)
tierno65ca36d2019-02-12 19:27:52 +0100175 if session["force"]:
tiernob24258a2018-10-04 18:39:49 +0200176 return
177 _filter = {"projects": _id}
178 if self.db.get_list("users", _filter):
179 raise EngineException("There is some USER that contains this project", http_code=HTTPStatus.CONFLICT)
180
tierno65ca36d2019-02-12 19:27:52 +0100181 def edit(self, session, _id, indata=None, kwargs=None, content=None):
tiernob24258a2018-10-04 18:39:49 +0200182 if not session["admin"]:
183 raise EngineException("needed admin privileges", http_code=HTTPStatus.UNAUTHORIZED)
delacruzramoc061f562019-04-05 11:00:02 +0200184 # Names that look like UUIDs are not allowed
185 name = (indata if indata else kwargs).get("name")
186 if is_valid_uuid(name):
187 raise EngineException("Project names that look like UUIDs are not allowed",
188 http_code=HTTPStatus.UNPROCESSABLE_ENTITY)
tierno65ca36d2019-02-12 19:27:52 +0100189 return BaseTopic.edit(self, session, _id, indata=indata, kwargs=kwargs, content=content)
tiernob24258a2018-10-04 18:39:49 +0200190
tierno65ca36d2019-02-12 19:27:52 +0100191 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
tiernob24258a2018-10-04 18:39:49 +0200192 if not session["admin"]:
193 raise EngineException("needed admin privileges", http_code=HTTPStatus.UNAUTHORIZED)
delacruzramoc061f562019-04-05 11:00:02 +0200194 # Names that look like UUIDs are not allowed
195 name = indata["name"] if indata else kwargs["name"]
196 if is_valid_uuid(name):
197 raise EngineException("Project names that look like UUIDs are not allowed",
198 http_code=HTTPStatus.UNPROCESSABLE_ENTITY)
tierno65ca36d2019-02-12 19:27:52 +0100199 return BaseTopic.new(self, rollback, session, indata=indata, kwargs=kwargs, headers=headers)
tiernob24258a2018-10-04 18:39:49 +0200200
201
tiernobdebce92019-07-01 15:36:49 +0000202class CommonVimWimSdn(BaseTopic):
203 """Common class for VIM, WIM SDN just to unify methods that are equal to all of them"""
204 config_to_encrypt = () # what keys at config must be encrypted because contains passwords
205 password_to_encrypt = "" # key that contains a password
tiernob24258a2018-10-04 18:39:49 +0200206
tiernobdebce92019-07-01 15:36:49 +0000207 @staticmethod
208 def _create_operation(op_type, params=None):
209 """
210 Creates a dictionary with the information to an operation, similar to ns-lcm-op
211 :param op_type: can be create, edit, delete
212 :param params: operation input parameters
213 :return: new dictionary with
214 """
215 now = time()
216 return {
217 "lcmOperationType": op_type,
218 "operationState": "PROCESSING",
219 "startTime": now,
220 "statusEnteredTime": now,
221 "detailed-status": "",
222 "operationParams": params,
223 }
tiernob24258a2018-10-04 18:39:49 +0200224
tierno65ca36d2019-02-12 19:27:52 +0100225 def check_conflict_on_new(self, session, indata):
tiernobdebce92019-07-01 15:36:49 +0000226 """
227 Check that the data to be inserted is valid. It is checked that name is unique
228 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
229 :param indata: data to be inserted
230 :return: None or raises EngineException
231 """
tiernob24258a2018-10-04 18:39:49 +0200232 self.check_unique_name(session, indata["name"], _id=None)
233
tierno65ca36d2019-02-12 19:27:52 +0100234 def check_conflict_on_edit(self, session, final_content, edit_content, _id):
tiernobdebce92019-07-01 15:36:49 +0000235 """
236 Check that the data to be edited/uploaded is valid. It is checked that name is unique
237 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
238 :param final_content: data once modified. This method may change it.
239 :param edit_content: incremental data that contains the modifications to apply
240 :param _id: internal _id
241 :return: None or raises EngineException
242 """
tierno65ca36d2019-02-12 19:27:52 +0100243 if not session["force"] and edit_content.get("name"):
tiernob24258a2018-10-04 18:39:49 +0200244 self.check_unique_name(session, edit_content["name"], _id=_id)
245
tiernobdebce92019-07-01 15:36:49 +0000246 def format_on_edit(self, final_content, edit_content):
247 """
248 Modifies final_content inserting admin information upon edition
249 :param final_content: final content to be stored at database
250 :param edit_content: user requested update content
251 :return: operation id
252 """
253
tierno92c1c7d2018-11-12 15:22:37 +0100254 # encrypt passwords
255 schema_version = final_content.get("schema_version")
256 if schema_version:
tiernobdebce92019-07-01 15:36:49 +0000257 if edit_content.get(self.password_to_encrypt):
258 final_content[self.password_to_encrypt] = self.db.encrypt(edit_content[self.password_to_encrypt],
259 schema_version=schema_version,
260 salt=final_content["_id"])
261 if edit_content.get("config") and self.config_to_encrypt:
262 for p in self.config_to_encrypt:
tierno92c1c7d2018-11-12 15:22:37 +0100263 if edit_content["config"].get(p):
264 final_content["config"][p] = self.db.encrypt(edit_content["config"][p],
tiernobdebce92019-07-01 15:36:49 +0000265 schema_version=schema_version,
266 salt=final_content["_id"])
267
268 # create edit operation
269 final_content["_admin"]["operations"].append(self._create_operation("edit"))
270 return "{}:{}".format(final_content["_id"], len(final_content["_admin"]["operations"]) - 1)
tierno92c1c7d2018-11-12 15:22:37 +0100271
272 def format_on_new(self, content, project_id=None, make_public=False):
tiernobdebce92019-07-01 15:36:49 +0000273 """
274 Modifies content descriptor to include _admin and insert create operation
275 :param content: descriptor to be modified
276 :param project_id: if included, it add project read/write permissions. Can be None or a list
277 :param make_public: if included it is generated as public for reading.
278 :return: op_id: operation id on asynchronous operation, None otherwise. In addition content is modified
279 """
280 super().format_on_new(content, project_id=project_id, make_public=make_public)
tierno92c1c7d2018-11-12 15:22:37 +0100281 content["schema_version"] = schema_version = "1.1"
282
283 # encrypt passwords
tiernobdebce92019-07-01 15:36:49 +0000284 if content.get(self.password_to_encrypt):
285 content[self.password_to_encrypt] = self.db.encrypt(content[self.password_to_encrypt],
286 schema_version=schema_version,
287 salt=content["_id"])
288 if content.get("config") and self.config_to_encrypt:
289 for p in self.config_to_encrypt:
tierno92c1c7d2018-11-12 15:22:37 +0100290 if content["config"].get(p):
tiernobdebce92019-07-01 15:36:49 +0000291 content["config"][p] = self.db.encrypt(content["config"][p],
292 schema_version=schema_version,
tierno92c1c7d2018-11-12 15:22:37 +0100293 salt=content["_id"])
294
tiernob24258a2018-10-04 18:39:49 +0200295 content["_admin"]["operationalState"] = "PROCESSING"
296
tiernobdebce92019-07-01 15:36:49 +0000297 # create operation
298 content["_admin"]["operations"] = [self._create_operation("create")]
299 content["_admin"]["current_operation"] = None
300
301 return "{}:0".format(content["_id"])
302
tierno65ca36d2019-02-12 19:27:52 +0100303 def delete(self, session, _id, dry_run=False):
tiernob24258a2018-10-04 18:39:49 +0200304 """
305 Delete item by its internal _id
tierno65ca36d2019-02-12 19:27:52 +0100306 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
tiernob24258a2018-10-04 18:39:49 +0200307 :param _id: server internal id
tiernob24258a2018-10-04 18:39:49 +0200308 :param dry_run: make checking but do not delete
tiernobdebce92019-07-01 15:36:49 +0000309 :return: operation id if it is ordered to delete. None otherwise
tiernob24258a2018-10-04 18:39:49 +0200310 """
tiernobdebce92019-07-01 15:36:49 +0000311
312 filter_q = self._get_project_filter(session)
313 filter_q["_id"] = _id
314 db_content = self.db.get_one(self.topic, filter_q)
315
316 self.check_conflict_on_del(session, _id, db_content)
317 if dry_run:
318 return None
319
320 # remove reference from project_read. If not last delete
321 if session["project_id"]:
322 for project_id in session["project_id"]:
323 if project_id in db_content["_admin"]["projects_read"]:
324 db_content["_admin"]["projects_read"].remove(project_id)
325 if project_id in db_content["_admin"]["projects_write"]:
326 db_content["_admin"]["projects_write"].remove(project_id)
327 else:
328 db_content["_admin"]["projects_read"].clear()
329 db_content["_admin"]["projects_write"].clear()
330
331 update_dict = {"_admin.projects_read": db_content["_admin"]["projects_read"],
332 "_admin.projects_write": db_content["_admin"]["projects_write"]
333 }
334
335 # check if there are projects referencing it (apart from ANY that means public)....
336 if db_content["_admin"]["projects_read"] and (len(db_content["_admin"]["projects_read"]) > 1 or
337 db_content["_admin"]["projects_read"][0] != "ANY"):
338 self.db.set_one(self.topic, filter_q, update_dict=update_dict) # remove references but not delete
339 return None
340
341 # It must be deleted
342 if session["force"]:
343 self.db.del_one(self.topic, {"_id": _id})
344 op_id = None
345 self._send_msg("deleted", {"_id": _id, "op_id": op_id})
346 else:
347 update_dict["_admin.to_delete"] = True
348 self.db.set_one(self.topic, {"_id": _id},
349 update_dict=update_dict,
350 push={"_admin.operations": self._create_operation("delete")}
351 )
352 # the number of operations is the operation_id. db_content does not contains the new operation inserted,
353 # so the -1 is not needed
354 op_id = "{}:{}".format(db_content["_id"], len(db_content["_admin"]["operations"]))
355 self._send_msg("delete", {"_id": _id, "op_id": op_id})
356 return op_id
tiernob24258a2018-10-04 18:39:49 +0200357
358
tiernobdebce92019-07-01 15:36:49 +0000359class VimAccountTopic(CommonVimWimSdn):
360 topic = "vim_accounts"
361 topic_msg = "vim_account"
362 schema_new = vim_account_new_schema
363 schema_edit = vim_account_edit_schema
364 multiproject = True
365 password_to_encrypt = "vim_password"
366 config_to_encrypt = ("admin_password", "nsx_password", "vcenter_password")
367
368
369class WimAccountTopic(CommonVimWimSdn):
tierno55ba2e62018-12-11 17:22:22 +0000370 topic = "wim_accounts"
371 topic_msg = "wim_account"
372 schema_new = wim_account_new_schema
373 schema_edit = wim_account_edit_schema
tierno65ca36d2019-02-12 19:27:52 +0100374 multiproject = True
tiernobdebce92019-07-01 15:36:49 +0000375 password_to_encrypt = "wim_password"
376 config_to_encrypt = ()
tierno55ba2e62018-12-11 17:22:22 +0000377
378
tiernobdebce92019-07-01 15:36:49 +0000379class SdnTopic(CommonVimWimSdn):
tiernob24258a2018-10-04 18:39:49 +0200380 topic = "sdns"
381 topic_msg = "sdn"
382 schema_new = sdn_new_schema
383 schema_edit = sdn_edit_schema
tierno65ca36d2019-02-12 19:27:52 +0100384 multiproject = True
tiernobdebce92019-07-01 15:36:49 +0000385 password_to_encrypt = "password"
386 config_to_encrypt = ()
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100387
388
389class UserTopicAuth(UserTopic):
tierno65ca36d2019-02-12 19:27:52 +0100390 # topic = "users"
391 # topic_msg = "users"
Eduardo Sousaa16a4fa2019-05-23 01:41:18 +0100392 schema_new = user_new_schema
393 schema_edit = user_edit_schema
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100394
395 def __init__(self, db, fs, msg, auth):
396 UserTopic.__init__(self, db, fs, msg)
397 self.auth = auth
398
tierno65ca36d2019-02-12 19:27:52 +0100399 def check_conflict_on_new(self, session, indata):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100400 """
401 Check that the data to be inserted is valid
402
tierno65ca36d2019-02-12 19:27:52 +0100403 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100404 :param indata: data to be inserted
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100405 :return: None or raises EngineException
406 """
407 username = indata.get("username")
tiernocf042d32019-06-13 09:06:40 +0000408 if is_valid_uuid(username):
delacruzramoceb8baf2019-06-21 14:25:38 +0200409 raise EngineException("username '{}' cannot have a uuid format".format(username),
tiernocf042d32019-06-13 09:06:40 +0000410 HTTPStatus.UNPROCESSABLE_ENTITY)
411
412 # Check that username is not used, regardless keystone already checks this
413 if self.auth.get_user_list(filter_q={"name": username}):
414 raise EngineException("username '{}' is already used".format(username), HTTPStatus.CONFLICT)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100415
Eduardo Sousa339ed782019-05-28 14:25:00 +0100416 if "projects" in indata.keys():
tierno701018c2019-06-25 11:13:14 +0000417 # convert to new format project_role_mappings
delacruzramo01b15d32019-07-02 14:37:47 +0200418 role = self.auth.get_role_list({"name": "project_admin"})
419 if not role:
420 role = self.auth.get_role_list()
421 if not role:
422 raise AuthconnNotFoundException("Can't find default role for user '{}'".format(username))
423 rid = role[0]["_id"]
tierno701018c2019-06-25 11:13:14 +0000424 if not indata.get("project_role_mappings"):
425 indata["project_role_mappings"] = []
426 for project in indata["projects"]:
delacruzramo01b15d32019-07-02 14:37:47 +0200427 pid = self.auth.get_project(project)["_id"]
428 prm = {"project": pid, "role": rid}
429 if prm not in indata["project_role_mappings"]:
430 indata["project_role_mappings"].append(prm)
tierno701018c2019-06-25 11:13:14 +0000431 # raise EngineException("Format invalid: the keyword 'projects' is not allowed for keystone authentication",
432 # HTTPStatus.BAD_REQUEST)
Eduardo Sousa339ed782019-05-28 14:25:00 +0100433
tierno65ca36d2019-02-12 19:27:52 +0100434 def check_conflict_on_edit(self, session, final_content, edit_content, _id):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100435 """
436 Check that the data to be edited/uploaded is valid
437
tierno65ca36d2019-02-12 19:27:52 +0100438 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100439 :param final_content: data once modified
440 :param edit_content: incremental data that contains the modifications to apply
441 :param _id: internal _id
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100442 :return: None or raises EngineException
443 """
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100444
tiernocf042d32019-06-13 09:06:40 +0000445 if "username" in edit_content:
446 username = edit_content.get("username")
447 if is_valid_uuid(username):
delacruzramoceb8baf2019-06-21 14:25:38 +0200448 raise EngineException("username '{}' cannot have an uuid format".format(username),
tiernocf042d32019-06-13 09:06:40 +0000449 HTTPStatus.UNPROCESSABLE_ENTITY)
450
451 # Check that username is not used, regardless keystone already checks this
452 if self.auth.get_user_list(filter_q={"name": username}):
453 raise EngineException("username '{}' is already used".format(username), HTTPStatus.CONFLICT)
454
455 if final_content["username"] == "admin":
456 for mapping in edit_content.get("remove_project_role_mappings", ()):
457 if mapping["project"] == "admin" and mapping.get("role") in (None, "system_admin"):
458 # TODO make this also available for project id and role id
459 raise EngineException("You cannot remove system_admin role from admin user",
460 http_code=HTTPStatus.FORBIDDEN)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100461
tiernob4844ab2019-05-23 08:42:12 +0000462 def check_conflict_on_del(self, session, _id, db_content):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100463 """
464 Check if deletion can be done because of dependencies if it is not force. To override
tierno65ca36d2019-02-12 19:27:52 +0100465 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100466 :param _id: internal _id
tiernob4844ab2019-05-23 08:42:12 +0000467 :param db_content: The database content of this item _id
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100468 :return: None if ok or raises EngineException with the conflict
469 """
tiernocf042d32019-06-13 09:06:40 +0000470 if db_content["username"] == session["username"]:
471 raise EngineException("You cannot delete your own login user ", http_code=HTTPStatus.CONFLICT)
delacruzramo01b15d32019-07-02 14:37:47 +0200472 # TODO: Check that user is not logged in ? How? (Would require listing current tokens)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100473
Eduardo Sousaa16a4fa2019-05-23 01:41:18 +0100474 @staticmethod
475 def format_on_show(content):
476 """
Eduardo Sousa44603902019-06-04 08:10:32 +0100477 Modifies the content of the role information to separate the role
Eduardo Sousaa16a4fa2019-05-23 01:41:18 +0100478 metadata from the role definition.
479 """
480 project_role_mappings = []
481
delacruzramo01b15d32019-07-02 14:37:47 +0200482 if "projects" in content:
483 for project in content["projects"]:
484 for role in project["roles"]:
485 project_role_mappings.append({"project": project["_id"],
486 "project_name": project["name"],
487 "role": role["_id"],
488 "role_name": role["name"]})
489 del content["projects"]
Eduardo Sousaa16a4fa2019-05-23 01:41:18 +0100490 content["project_role_mappings"] = project_role_mappings
491
Eduardo Sousa0b1d61b2019-05-30 19:55:52 +0100492 return content
493
tierno65ca36d2019-02-12 19:27:52 +0100494 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100495 """
496 Creates a new entry into the authentication backend.
497
498 NOTE: Overrides BaseTopic functionality because it doesn't require access to database.
499
500 :param rollback: list to append created items at database in case a rollback may to be done
tierno65ca36d2019-02-12 19:27:52 +0100501 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100502 :param indata: data to be inserted
503 :param kwargs: used to override the indata descriptor
504 :param headers: http request headers
delacruzramo01b15d32019-07-02 14:37:47 +0200505 :return: _id: identity of the inserted data, operation _id (None)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100506 """
507 try:
508 content = BaseTopic._remove_envelop(indata)
509
510 # Override descriptor with query string kwargs
511 BaseTopic._update_input_with_kwargs(content, kwargs)
tierno65ca36d2019-02-12 19:27:52 +0100512 content = self._validate_input_new(content, session["force"])
513 self.check_conflict_on_new(session, content)
tiernocf042d32019-06-13 09:06:40 +0000514 # self.format_on_new(content, session["project_id"], make_public=session["public"])
delacruzramo01b15d32019-07-02 14:37:47 +0200515 now = time()
516 content["_admin"] = {"created": now, "modified": now}
517 prms = []
518 for prm in content.get("project_role_mappings", []):
519 proj = self.auth.get_project(prm["project"], not session["force"])
520 role = self.auth.get_role(prm["role"], not session["force"])
521 pid = proj["_id"] if proj else None
522 rid = role["_id"] if role else None
523 prl = {"project": pid, "role": rid}
524 if prl not in prms:
525 prms.append(prl)
526 content["project_role_mappings"] = prms
527 # _id = self.auth.create_user(content["username"], content["password"])["_id"]
528 _id = self.auth.create_user(content)["_id"]
Eduardo Sousa44603902019-06-04 08:10:32 +0100529
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100530 rollback.append({"topic": self.topic, "_id": _id})
tiernocf042d32019-06-13 09:06:40 +0000531 # del content["password"]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100532 # self._send_msg("create", content)
delacruzramo01b15d32019-07-02 14:37:47 +0200533 return _id, None
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100534 except ValidationError as e:
535 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
536
537 def show(self, session, _id):
538 """
539 Get complete information on an topic
540
tierno65ca36d2019-02-12 19:27:52 +0100541 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100542 :param _id: server internal id
543 :return: dictionary, raise exception if not found.
544 """
tiernocf042d32019-06-13 09:06:40 +0000545 # Allow _id to be a name or uuid
546 filter_q = {self.id_field(self.topic, _id): _id}
547 users = self.auth.get_user_list(filter_q)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100548
549 if len(users) == 1:
tierno1546f2a2019-08-20 15:38:11 +0000550 return users[0]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100551 elif len(users) > 1:
552 raise EngineException("Too many users found", HTTPStatus.CONFLICT)
553 else:
554 raise EngineException("User not found", HTTPStatus.NOT_FOUND)
555
tierno65ca36d2019-02-12 19:27:52 +0100556 def edit(self, session, _id, indata=None, kwargs=None, content=None):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100557 """
558 Updates an user entry.
559
tierno65ca36d2019-02-12 19:27:52 +0100560 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100561 :param _id:
562 :param indata: data to be inserted
563 :param kwargs: used to override the indata descriptor
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100564 :param content:
565 :return: _id: identity of the inserted data.
566 """
567 indata = self._remove_envelop(indata)
568
569 # Override descriptor with query string kwargs
570 if kwargs:
571 BaseTopic._update_input_with_kwargs(indata, kwargs)
572 try:
tierno65ca36d2019-02-12 19:27:52 +0100573 indata = self._validate_input_edit(indata, force=session["force"])
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100574
575 if not content:
576 content = self.show(session, _id)
tierno65ca36d2019-02-12 19:27:52 +0100577 self.check_conflict_on_edit(session, content, indata, _id=_id)
tiernocf042d32019-06-13 09:06:40 +0000578 # self.format_on_edit(content, indata)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100579
delacruzramo01b15d32019-07-02 14:37:47 +0200580 if not ("password" in indata or "username" in indata or indata.get("remove_project_role_mappings") or
581 indata.get("add_project_role_mappings") or indata.get("project_role_mappings") or
582 indata.get("projects") or indata.get("add_projects")):
tiernocf042d32019-06-13 09:06:40 +0000583 return _id
delacruzramo01b15d32019-07-02 14:37:47 +0200584 if indata.get("project_role_mappings") \
585 and (indata.get("remove_project_role_mappings") or indata.get("add_project_role_mappings")):
tiernocf042d32019-06-13 09:06:40 +0000586 raise EngineException("Option 'project_role_mappings' is incompatible with 'add_project_role_mappings"
587 "' or 'remove_project_role_mappings'", http_code=HTTPStatus.BAD_REQUEST)
Eduardo Sousa44603902019-06-04 08:10:32 +0100588
delacruzramo01b15d32019-07-02 14:37:47 +0200589 if indata.get("projects") or indata.get("add_projects"):
590 role = self.auth.get_role_list({"name": "project_admin"})
591 if not role:
592 role = self.auth.get_role_list()
593 if not role:
594 raise AuthconnNotFoundException("Can't find a default role for user '{}'"
595 .format(content["username"]))
596 rid = role[0]["_id"]
597 if "add_project_role_mappings" not in indata:
598 indata["add_project_role_mappings"] = []
tierno1546f2a2019-08-20 15:38:11 +0000599 if "remove_project_role_mappings" not in indata:
600 indata["remove_project_role_mappings"] = []
601 if isinstance(indata.get("projects"), dict):
602 # backward compatible
603 for k, v in indata["projects"].items():
604 if k.startswith("$") and v is None:
605 indata["remove_project_role_mappings"].append({"project": k[1:]})
606 elif k.startswith("$+"):
607 indata["add_project_role_mappings"].append({"project": v, "role": rid})
608 del indata["projects"]
delacruzramo01b15d32019-07-02 14:37:47 +0200609 for proj in indata.get("projects", []) + indata.get("add_projects", []):
610 indata["add_project_role_mappings"].append({"project": proj, "role": rid})
611
612 # user = self.show(session, _id) # Already in 'content'
613 original_mapping = content["project_role_mappings"]
Eduardo Sousa44603902019-06-04 08:10:32 +0100614
tiernocf042d32019-06-13 09:06:40 +0000615 mappings_to_add = []
616 mappings_to_remove = []
Eduardo Sousa44603902019-06-04 08:10:32 +0100617
tiernocf042d32019-06-13 09:06:40 +0000618 # remove
619 for to_remove in indata.get("remove_project_role_mappings", ()):
620 for mapping in original_mapping:
621 if to_remove["project"] in (mapping["project"], mapping["project_name"]):
622 if not to_remove.get("role") or to_remove["role"] in (mapping["role"], mapping["role_name"]):
623 mappings_to_remove.append(mapping)
Eduardo Sousa44603902019-06-04 08:10:32 +0100624
tiernocf042d32019-06-13 09:06:40 +0000625 # add
626 for to_add in indata.get("add_project_role_mappings", ()):
627 for mapping in original_mapping:
628 if to_add["project"] in (mapping["project"], mapping["project_name"]) and \
629 to_add["role"] in (mapping["role"], mapping["role_name"]):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100630
tiernocf042d32019-06-13 09:06:40 +0000631 if mapping in mappings_to_remove: # do not remove
632 mappings_to_remove.remove(mapping)
633 break # do not add, it is already at user
634 else:
delacruzramo01b15d32019-07-02 14:37:47 +0200635 pid = self.auth.get_project(to_add["project"])["_id"]
636 rid = self.auth.get_role(to_add["role"])["_id"]
637 mappings_to_add.append({"project": pid, "role": rid})
tiernocf042d32019-06-13 09:06:40 +0000638
639 # set
640 if indata.get("project_role_mappings"):
641 for to_set in indata["project_role_mappings"]:
642 for mapping in original_mapping:
643 if to_set["project"] in (mapping["project"], mapping["project_name"]) and \
644 to_set["role"] in (mapping["role"], mapping["role_name"]):
tiernocf042d32019-06-13 09:06:40 +0000645 if mapping in mappings_to_remove: # do not remove
646 mappings_to_remove.remove(mapping)
647 break # do not add, it is already at user
648 else:
delacruzramo01b15d32019-07-02 14:37:47 +0200649 pid = self.auth.get_project(to_set["project"])["_id"]
650 rid = self.auth.get_role(to_set["role"])["_id"]
651 mappings_to_add.append({"project": pid, "role": rid})
tiernocf042d32019-06-13 09:06:40 +0000652 for mapping in original_mapping:
653 for to_set in indata["project_role_mappings"]:
654 if to_set["project"] in (mapping["project"], mapping["project_name"]) and \
655 to_set["role"] in (mapping["role"], mapping["role_name"]):
656 break
657 else:
658 # delete
659 if mapping not in mappings_to_remove: # do not remove
660 mappings_to_remove.append(mapping)
661
delacruzramo01b15d32019-07-02 14:37:47 +0200662 self.auth.update_user({"_id": _id, "username": indata.get("username"), "password": indata.get("password"),
663 "add_project_role_mappings": mappings_to_add,
664 "remove_project_role_mappings": mappings_to_remove
665 })
tiernocf042d32019-06-13 09:06:40 +0000666
delacruzramo01b15d32019-07-02 14:37:47 +0200667 # return _id
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100668 except ValidationError as e:
669 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
670
671 def list(self, session, filter_q=None):
672 """
673 Get a list of the topic that matches a filter
tierno65ca36d2019-02-12 19:27:52 +0100674 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100675 :param filter_q: filter of data to be applied
676 :return: The list, it can be empty if no one match the filter.
677 """
tierno1546f2a2019-08-20 15:38:11 +0000678 users = self.auth.get_user_list(filter_q)
Eduardo Sousaa16a4fa2019-05-23 01:41:18 +0100679
680 return users
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100681
tierno65ca36d2019-02-12 19:27:52 +0100682 def delete(self, session, _id, dry_run=False):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100683 """
684 Delete item by its internal _id
685
tierno65ca36d2019-02-12 19:27:52 +0100686 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100687 :param _id: server internal id
688 :param force: indicates if deletion must be forced in case of conflict
689 :param dry_run: make checking but do not delete
690 :return: dictionary with deleted item _id. It raises EngineException on error: not found, conflict, ...
691 """
tiernocf042d32019-06-13 09:06:40 +0000692 # Allow _id to be a name or uuid
delacruzramo01b15d32019-07-02 14:37:47 +0200693 user = self.auth.get_user(_id)
694 uid = user["_id"]
695 self.check_conflict_on_del(session, uid, user)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100696 if not dry_run:
delacruzramo01b15d32019-07-02 14:37:47 +0200697 v = self.auth.delete_user(uid)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100698 return v
699 return None
700
701
702class ProjectTopicAuth(ProjectTopic):
tierno65ca36d2019-02-12 19:27:52 +0100703 # topic = "projects"
704 # topic_msg = "projects"
Eduardo Sousa44603902019-06-04 08:10:32 +0100705 schema_new = project_new_schema
706 schema_edit = project_edit_schema
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100707
708 def __init__(self, db, fs, msg, auth):
709 ProjectTopic.__init__(self, db, fs, msg)
710 self.auth = auth
711
tierno65ca36d2019-02-12 19:27:52 +0100712 def check_conflict_on_new(self, session, indata):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100713 """
714 Check that the data to be inserted is valid
715
tierno65ca36d2019-02-12 19:27:52 +0100716 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100717 :param indata: data to be inserted
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100718 :return: None or raises EngineException
719 """
tiernocf042d32019-06-13 09:06:40 +0000720 project_name = indata.get("name")
721 if is_valid_uuid(project_name):
delacruzramoceb8baf2019-06-21 14:25:38 +0200722 raise EngineException("project name '{}' cannot have an uuid format".format(project_name),
tiernocf042d32019-06-13 09:06:40 +0000723 HTTPStatus.UNPROCESSABLE_ENTITY)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100724
tiernocf042d32019-06-13 09:06:40 +0000725 project_list = self.auth.get_project_list(filter_q={"name": project_name})
726
727 if project_list:
728 raise EngineException("project '{}' exists".format(project_name), HTTPStatus.CONFLICT)
729
730 def check_conflict_on_edit(self, session, final_content, edit_content, _id):
731 """
732 Check that the data to be edited/uploaded is valid
733
734 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
735 :param final_content: data once modified
736 :param edit_content: incremental data that contains the modifications to apply
737 :param _id: internal _id
738 :return: None or raises EngineException
739 """
740
741 project_name = edit_content.get("name")
delacruzramo01b15d32019-07-02 14:37:47 +0200742 if project_name != final_content["name"]: # It is a true renaming
tiernocf042d32019-06-13 09:06:40 +0000743 if is_valid_uuid(project_name):
delacruzramo01b15d32019-07-02 14:37:47 +0200744 raise EngineException("project name '{}' cannot have an uuid format".format(project_name),
tiernocf042d32019-06-13 09:06:40 +0000745 HTTPStatus.UNPROCESSABLE_ENTITY)
746
delacruzramo01b15d32019-07-02 14:37:47 +0200747 if final_content["name"] == "admin":
748 raise EngineException("You cannot rename project 'admin'", http_code=HTTPStatus.CONFLICT)
749
tiernocf042d32019-06-13 09:06:40 +0000750 # Check that project name is not used, regardless keystone already checks this
751 if self.auth.get_project_list(filter_q={"name": project_name}):
752 raise EngineException("project '{}' is already used".format(project_name), HTTPStatus.CONFLICT)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100753
tiernob4844ab2019-05-23 08:42:12 +0000754 def check_conflict_on_del(self, session, _id, db_content):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100755 """
756 Check if deletion can be done because of dependencies if it is not force. To override
757
tierno65ca36d2019-02-12 19:27:52 +0100758 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100759 :param _id: internal _id
tiernob4844ab2019-05-23 08:42:12 +0000760 :param db_content: The database content of this item _id
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100761 :return: None if ok or raises EngineException with the conflict
762 """
delacruzramo01b15d32019-07-02 14:37:47 +0200763
764 def check_rw_projects(topic, title, id_field):
765 for desc in self.db.get_list(topic):
766 if _id in desc["_admin"]["projects_read"] + desc["_admin"]["projects_write"]:
767 raise EngineException("Project '{}' ({}) is being used by {} '{}'"
768 .format(db_content["name"], _id, title, desc[id_field]), HTTPStatus.CONFLICT)
769
770 if _id in session["project_id"]:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100771 raise EngineException("You cannot delete your own project", http_code=HTTPStatus.CONFLICT)
772
delacruzramo01b15d32019-07-02 14:37:47 +0200773 if db_content["name"] == "admin":
774 raise EngineException("You cannot delete project 'admin'", http_code=HTTPStatus.CONFLICT)
775
776 # If any user is using this project, raise CONFLICT exception
777 if not session["force"]:
778 for user in self.auth.get_user_list():
tierno1546f2a2019-08-20 15:38:11 +0000779 for prm in user.get("project_role_mappings"):
780 if prm["project"] == _id:
781 raise EngineException("Project '{}' ({}) is being used by user '{}'"
782 .format(db_content["name"], _id, user["username"]), HTTPStatus.CONFLICT)
delacruzramo01b15d32019-07-02 14:37:47 +0200783
784 # If any VNFD, NSD, NST, PDU, etc. is using this project, raise CONFLICT exception
785 if not session["force"]:
786 check_rw_projects("vnfds", "VNF Descriptor", "id")
787 check_rw_projects("nsds", "NS Descriptor", "id")
788 check_rw_projects("nsts", "NS Template", "id")
789 check_rw_projects("pdus", "PDU Descriptor", "name")
790
tierno65ca36d2019-02-12 19:27:52 +0100791 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100792 """
793 Creates a new entry into the authentication backend.
794
795 NOTE: Overrides BaseTopic functionality because it doesn't require access to database.
796
797 :param rollback: list to append created items at database in case a rollback may to be done
tierno65ca36d2019-02-12 19:27:52 +0100798 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100799 :param indata: data to be inserted
800 :param kwargs: used to override the indata descriptor
801 :param headers: http request headers
delacruzramo01b15d32019-07-02 14:37:47 +0200802 :return: _id: identity of the inserted data, operation _id (None)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100803 """
804 try:
805 content = BaseTopic._remove_envelop(indata)
806
807 # Override descriptor with query string kwargs
808 BaseTopic._update_input_with_kwargs(content, kwargs)
tierno65ca36d2019-02-12 19:27:52 +0100809 content = self._validate_input_new(content, session["force"])
810 self.check_conflict_on_new(session, content)
811 self.format_on_new(content, project_id=session["project_id"], make_public=session["public"])
delacruzramo01b15d32019-07-02 14:37:47 +0200812 _id = self.auth.create_project(content)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100813 rollback.append({"topic": self.topic, "_id": _id})
814 # self._send_msg("create", content)
delacruzramo01b15d32019-07-02 14:37:47 +0200815 return _id, None
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100816 except ValidationError as e:
817 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
818
819 def show(self, session, _id):
820 """
821 Get complete information on an topic
822
tierno65ca36d2019-02-12 19:27:52 +0100823 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100824 :param _id: server internal id
825 :return: dictionary, raise exception if not found.
826 """
tiernocf042d32019-06-13 09:06:40 +0000827 # Allow _id to be a name or uuid
828 filter_q = {self.id_field(self.topic, _id): _id}
829 projects = self.auth.get_project_list(filter_q=filter_q)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100830
831 if len(projects) == 1:
832 return projects[0]
833 elif len(projects) > 1:
834 raise EngineException("Too many projects found", HTTPStatus.CONFLICT)
835 else:
836 raise EngineException("Project not found", HTTPStatus.NOT_FOUND)
837
838 def list(self, session, filter_q=None):
839 """
840 Get a list of the topic that matches a filter
841
tierno65ca36d2019-02-12 19:27:52 +0100842 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100843 :param filter_q: filter of data to be applied
844 :return: The list, it can be empty if no one match the filter.
845 """
Eduardo Sousafa54cd92019-05-20 15:58:41 +0100846 return self.auth.get_project_list(filter_q)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100847
tierno65ca36d2019-02-12 19:27:52 +0100848 def delete(self, session, _id, dry_run=False):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100849 """
850 Delete item by its internal _id
851
tierno65ca36d2019-02-12 19:27:52 +0100852 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100853 :param _id: server internal id
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100854 :param dry_run: make checking but do not delete
855 :return: dictionary with deleted item _id. It raises EngineException on error: not found, conflict, ...
856 """
tiernocf042d32019-06-13 09:06:40 +0000857 # Allow _id to be a name or uuid
delacruzramo01b15d32019-07-02 14:37:47 +0200858 proj = self.auth.get_project(_id)
859 pid = proj["_id"]
860 self.check_conflict_on_del(session, pid, proj)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100861 if not dry_run:
delacruzramo01b15d32019-07-02 14:37:47 +0200862 v = self.auth.delete_project(pid)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100863 return v
864 return None
865
tierno4015b472019-06-10 13:57:29 +0000866 def edit(self, session, _id, indata=None, kwargs=None, content=None):
867 """
868 Updates a project entry.
869
870 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
871 :param _id:
872 :param indata: data to be inserted
873 :param kwargs: used to override the indata descriptor
874 :param content:
875 :return: _id: identity of the inserted data.
876 """
877 indata = self._remove_envelop(indata)
878
879 # Override descriptor with query string kwargs
880 if kwargs:
881 BaseTopic._update_input_with_kwargs(indata, kwargs)
882 try:
883 indata = self._validate_input_edit(indata, force=session["force"])
884
885 if not content:
886 content = self.show(session, _id)
887 self.check_conflict_on_edit(session, content, indata, _id=_id)
delacruzramo01b15d32019-07-02 14:37:47 +0200888 self.format_on_edit(content, indata)
tierno4015b472019-06-10 13:57:29 +0000889
890 if "name" in indata:
delacruzramo01b15d32019-07-02 14:37:47 +0200891 content["name"] = indata["name"]
892 self.auth.update_project(content["_id"], content)
tierno4015b472019-06-10 13:57:29 +0000893 except ValidationError as e:
894 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
895
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100896
897class RoleTopicAuth(BaseTopic):
delacruzramoceb8baf2019-06-21 14:25:38 +0200898 topic = "roles"
899 topic_msg = None # "roles"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100900 schema_new = roles_new_schema
901 schema_edit = roles_edit_schema
tierno65ca36d2019-02-12 19:27:52 +0100902 multiproject = False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100903
904 def __init__(self, db, fs, msg, auth, ops):
905 BaseTopic.__init__(self, db, fs, msg)
906 self.auth = auth
907 self.operations = ops
delacruzramo01b15d32019-07-02 14:37:47 +0200908 # self.topic = "roles_operations" if isinstance(auth, AuthconnKeystone) else "roles"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100909
910 @staticmethod
911 def validate_role_definition(operations, role_definitions):
912 """
913 Validates the role definition against the operations defined in
914 the resources to operations files.
915
916 :param operations: operations list
917 :param role_definitions: role definition to test
918 :return: None if ok, raises ValidationError exception on error
919 """
tierno1f029d82019-06-13 22:37:04 +0000920 if not role_definitions.get("permissions"):
921 return
922 ignore_fields = ["admin", "default"]
923 for role_def in role_definitions["permissions"].keys():
Eduardo Sousa37de0912019-05-23 02:17:22 +0100924 if role_def in ignore_fields:
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100925 continue
Eduardo Sousac7689372019-06-04 16:01:46 +0100926 if role_def[-1] == ":":
tierno1f029d82019-06-13 22:37:04 +0000927 raise ValidationError("Operation cannot end with ':'")
Eduardo Sousac5a18892019-06-06 14:51:23 +0100928
delacruzramoc061f562019-04-05 11:00:02 +0200929 role_def_matches = [op for op in operations if op.startswith(role_def)]
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100930
931 if len(role_def_matches) == 0:
tierno1f029d82019-06-13 22:37:04 +0000932 raise ValidationError("Invalid permission '{}'".format(role_def))
Eduardo Sousa37de0912019-05-23 02:17:22 +0100933
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100934 def _validate_input_new(self, input, force=False):
935 """
936 Validates input user content for a new entry.
937
938 :param input: user input content for the new topic
939 :param force: may be used for being more tolerant
940 :return: The same input content, or a changed version of it.
941 """
942 if self.schema_new:
943 validate_input(input, self.schema_new)
Eduardo Sousa37de0912019-05-23 02:17:22 +0100944 self.validate_role_definition(self.operations, input)
Eduardo Sousac4650362019-06-04 13:24:22 +0100945
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100946 return input
947
948 def _validate_input_edit(self, input, force=False):
949 """
950 Validates input user content for updating an entry.
951
952 :param input: user input content for the new topic
953 :param force: may be used for being more tolerant
954 :return: The same input content, or a changed version of it.
955 """
956 if self.schema_edit:
957 validate_input(input, self.schema_edit)
Eduardo Sousa37de0912019-05-23 02:17:22 +0100958 self.validate_role_definition(self.operations, input)
Eduardo Sousac4650362019-06-04 13:24:22 +0100959
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100960 return input
961
tierno65ca36d2019-02-12 19:27:52 +0100962 def check_conflict_on_new(self, session, indata):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100963 """
964 Check that the data to be inserted is valid
965
tierno65ca36d2019-02-12 19:27:52 +0100966 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100967 :param indata: data to be inserted
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100968 :return: None or raises EngineException
969 """
tierno1f029d82019-06-13 22:37:04 +0000970 # check name not exists
delacruzramo01b15d32019-07-02 14:37:47 +0200971 name = indata["name"]
972 # if self.db.get_one(self.topic, {"name": indata.get("name")}, fail_on_empty=False, fail_on_more=False):
973 if self.auth.get_role_list({"name": name}):
974 raise EngineException("role name '{}' exists".format(name), HTTPStatus.CONFLICT)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100975
tierno65ca36d2019-02-12 19:27:52 +0100976 def check_conflict_on_edit(self, session, final_content, edit_content, _id):
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100977 """
978 Check that the data to be edited/uploaded is valid
979
tierno65ca36d2019-02-12 19:27:52 +0100980 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100981 :param final_content: data once modified
982 :param edit_content: incremental data that contains the modifications to apply
983 :param _id: internal _id
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100984 :return: None or raises EngineException
985 """
tierno1f029d82019-06-13 22:37:04 +0000986 if "default" not in final_content["permissions"]:
987 final_content["permissions"]["default"] = False
988 if "admin" not in final_content["permissions"]:
989 final_content["permissions"]["admin"] = False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100990
tierno1f029d82019-06-13 22:37:04 +0000991 # check name not exists
992 if "name" in edit_content:
993 role_name = edit_content["name"]
delacruzramo01b15d32019-07-02 14:37:47 +0200994 # if self.db.get_one(self.topic, {"name":role_name,"_id.ne":_id}, fail_on_empty=False, fail_on_more=False):
995 roles = self.auth.get_role_list({"name": role_name})
996 if roles and roles[0][BaseTopic.id_field("roles", _id)] != _id:
tierno1f029d82019-06-13 22:37:04 +0000997 raise EngineException("role name '{}' exists".format(role_name), HTTPStatus.CONFLICT)
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100998
tiernob4844ab2019-05-23 08:42:12 +0000999 def check_conflict_on_del(self, session, _id, db_content):
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001000 """
1001 Check if deletion can be done because of dependencies if it is not force. To override
1002
tierno65ca36d2019-02-12 19:27:52 +01001003 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001004 :param _id: internal _id
tiernob4844ab2019-05-23 08:42:12 +00001005 :param db_content: The database content of this item _id
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001006 :return: None if ok or raises EngineException with the conflict
1007 """
delacruzramo01b15d32019-07-02 14:37:47 +02001008 role = self.auth.get_role(_id)
1009 if role["name"] in ["system_admin", "project_admin"]:
1010 raise EngineException("You cannot delete role '{}'".format(role["name"]), http_code=HTTPStatus.FORBIDDEN)
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001011
delacruzramo01b15d32019-07-02 14:37:47 +02001012 # If any user is using this role, raise CONFLICT exception
1013 for user in self.auth.get_user_list():
tierno1546f2a2019-08-20 15:38:11 +00001014 for prm in user.get("project_role_mappings"):
1015 if prm["role"] == _id:
1016 raise EngineException("Role '{}' ({}) is being used by user '{}'"
1017 .format(role["name"], _id, user["username"]), HTTPStatus.CONFLICT)
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001018
1019 @staticmethod
delacruzramo01b15d32019-07-02 14:37:47 +02001020 def format_on_new(content, project_id=None, make_public=False): # TO BE REMOVED ?
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001021 """
1022 Modifies content descriptor to include _admin
1023
1024 :param content: descriptor to be modified
1025 :param project_id: if included, it add project read/write permissions
1026 :param make_public: if included it is generated as public for reading.
1027 :return: None, but content is modified
1028 """
1029 now = time()
1030 if "_admin" not in content:
1031 content["_admin"] = {}
1032 if not content["_admin"].get("created"):
1033 content["_admin"]["created"] = now
1034 content["_admin"]["modified"] = now
Eduardo Sousac4650362019-06-04 13:24:22 +01001035
tierno1f029d82019-06-13 22:37:04 +00001036 if "permissions" not in content:
1037 content["permissions"] = {}
Eduardo Sousac4650362019-06-04 13:24:22 +01001038
tierno1f029d82019-06-13 22:37:04 +00001039 if "default" not in content["permissions"]:
1040 content["permissions"]["default"] = False
1041 if "admin" not in content["permissions"]:
1042 content["permissions"]["admin"] = False
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001043
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001044 @staticmethod
1045 def format_on_edit(final_content, edit_content):
1046 """
1047 Modifies final_content descriptor to include the modified date.
1048
1049 :param final_content: final descriptor generated
1050 :param edit_content: alterations to be include
1051 :return: None, but final_content is modified
1052 """
delacruzramo01b15d32019-07-02 14:37:47 +02001053 if "_admin" in final_content:
1054 final_content["_admin"]["modified"] = time()
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001055
tierno1f029d82019-06-13 22:37:04 +00001056 if "permissions" not in final_content:
1057 final_content["permissions"] = {}
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001058
tierno1f029d82019-06-13 22:37:04 +00001059 if "default" not in final_content["permissions"]:
1060 final_content["permissions"]["default"] = False
1061 if "admin" not in final_content["permissions"]:
1062 final_content["permissions"]["admin"] = False
tiernobdebce92019-07-01 15:36:49 +00001063 return None
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001064
delacruzramo01b15d32019-07-02 14:37:47 +02001065 def show(self, session, _id):
1066 """
1067 Get complete information on an topic
Eduardo Sousac4650362019-06-04 13:24:22 +01001068
delacruzramo01b15d32019-07-02 14:37:47 +02001069 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1070 :param _id: server internal id
1071 :return: dictionary, raise exception if not found.
1072 """
1073 filter_q = {BaseTopic.id_field(self.topic, _id): _id}
1074 roles = self.auth.get_role_list(filter_q)
1075 if not roles:
1076 raise AuthconnNotFoundException("Not found any role with filter {}".format(filter_q))
1077 elif len(roles) > 1:
1078 raise AuthconnConflictException("Found more than one role with filter {}".format(filter_q))
1079 return roles[0]
1080
1081 def list(self, session, filter_q=None):
1082 """
1083 Get a list of the topic that matches a filter
1084
1085 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1086 :param filter_q: filter of data to be applied
1087 :return: The list, it can be empty if no one match the filter.
1088 """
1089 return self.auth.get_role_list(filter_q)
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001090
tierno65ca36d2019-02-12 19:27:52 +01001091 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001092 """
1093 Creates a new entry into database.
1094
1095 :param rollback: list to append created items at database in case a rollback may to be done
tierno65ca36d2019-02-12 19:27:52 +01001096 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001097 :param indata: data to be inserted
1098 :param kwargs: used to override the indata descriptor
1099 :param headers: http request headers
delacruzramo01b15d32019-07-02 14:37:47 +02001100 :return: _id: identity of the inserted data, operation _id (None)
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001101 """
1102 try:
tierno1f029d82019-06-13 22:37:04 +00001103 content = self._remove_envelop(indata)
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001104
1105 # Override descriptor with query string kwargs
tierno1f029d82019-06-13 22:37:04 +00001106 self._update_input_with_kwargs(content, kwargs)
tierno65ca36d2019-02-12 19:27:52 +01001107 content = self._validate_input_new(content, session["force"])
1108 self.check_conflict_on_new(session, content)
1109 self.format_on_new(content, project_id=session["project_id"], make_public=session["public"])
delacruzramo01b15d32019-07-02 14:37:47 +02001110 # role_name = content["name"]
1111 rid = self.auth.create_role(content)
1112 content["_id"] = rid
1113 # _id = self.db.create(self.topic, content)
1114 rollback.append({"topic": self.topic, "_id": rid})
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001115 # self._send_msg("create", content)
delacruzramo01b15d32019-07-02 14:37:47 +02001116 return rid, None
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001117 except ValidationError as e:
1118 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
1119
tierno65ca36d2019-02-12 19:27:52 +01001120 def delete(self, session, _id, dry_run=False):
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001121 """
1122 Delete item by its internal _id
1123
tierno65ca36d2019-02-12 19:27:52 +01001124 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001125 :param _id: server internal id
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001126 :param dry_run: make checking but do not delete
1127 :return: dictionary with deleted item _id. It raises EngineException on error: not found, conflict, ...
1128 """
delacruzramo01b15d32019-07-02 14:37:47 +02001129 filter_q = {BaseTopic.id_field(self.topic, _id): _id}
1130 roles = self.auth.get_role_list(filter_q)
1131 if not roles:
1132 raise AuthconnNotFoundException("Not found any role with filter {}".format(filter_q))
1133 elif len(roles) > 1:
1134 raise AuthconnConflictException("Found more than one role with filter {}".format(filter_q))
1135 rid = roles[0]["_id"]
1136 self.check_conflict_on_del(session, rid, None)
delacruzramoceb8baf2019-06-21 14:25:38 +02001137 # filter_q = {"_id": _id}
delacruzramo01b15d32019-07-02 14:37:47 +02001138 # filter_q = {BaseTopic.id_field(self.topic, _id): _id} # To allow role addressing by name
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001139 if not dry_run:
delacruzramo01b15d32019-07-02 14:37:47 +02001140 v = self.auth.delete_role(rid)
1141 # v = self.db.del_one(self.topic, filter_q)
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001142 return v
1143 return None
1144
tierno65ca36d2019-02-12 19:27:52 +01001145 def edit(self, session, _id, indata=None, kwargs=None, content=None):
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001146 """
1147 Updates a role entry.
1148
tierno65ca36d2019-02-12 19:27:52 +01001149 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001150 :param _id:
1151 :param indata: data to be inserted
1152 :param kwargs: used to override the indata descriptor
Eduardo Sousa5c01e192019-05-08 02:35:47 +01001153 :param content:
1154 :return: _id: identity of the inserted data.
1155 """
delacruzramo01b15d32019-07-02 14:37:47 +02001156 if kwargs:
1157 self._update_input_with_kwargs(indata, kwargs)
1158 try:
1159 indata = self._validate_input_edit(indata, force=session["force"])
1160 if not content:
1161 content = self.show(session, _id)
1162 deep_update_rfc7396(content, indata)
1163 self.check_conflict_on_edit(session, content, indata, _id=_id)
1164 self.format_on_edit(content, indata)
1165 self.auth.update_role(content)
1166 except ValidationError as e:
1167 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)