2020-10-30 04:53:15 +00:00
|
|
|
"""Users plugin
|
|
|
|
|
|
|
|
Provides routes used to manage users
|
|
|
|
"""
|
2020-10-31 14:20:28 +00:00
|
|
|
from http.client import NO_CONTENT, CREATED
|
|
|
|
|
2020-10-30 23:02:02 +00:00
|
|
|
from flaschengeist.config import config
|
2020-10-31 14:20:28 +00:00
|
|
|
from flask import Blueprint, request, jsonify, make_response
|
2020-10-30 23:02:02 +00:00
|
|
|
from werkzeug.exceptions import BadRequest, Forbidden, MethodNotAllowed
|
2020-09-03 23:01:00 +00:00
|
|
|
|
|
|
|
from flaschengeist import logger
|
2020-11-06 00:13:52 +00:00
|
|
|
from flaschengeist.models.user import User
|
2020-10-30 02:30:46 +00:00
|
|
|
from flaschengeist.plugins import Plugin
|
2020-10-30 23:02:02 +00:00
|
|
|
from flaschengeist.decorator import login_required, extract_session
|
2020-10-30 02:30:46 +00:00
|
|
|
from flaschengeist.controller import userController
|
2020-09-03 23:01:00 +00:00
|
|
|
|
|
|
|
users_bp = Blueprint("users", __name__)
|
2020-10-23 00:29:55 +00:00
|
|
|
_permission_edit = "users_edit_other"
|
2020-10-24 18:10:43 +00:00
|
|
|
_permission_set_roles = "users_set_roles"
|
2020-10-23 00:29:55 +00:00
|
|
|
_permission_delete = "users_delete_other"
|
2020-10-30 23:02:02 +00:00
|
|
|
_permission_register = "users_register"
|
2020-09-03 23:01:00 +00:00
|
|
|
|
2020-10-15 12:44:58 +00:00
|
|
|
|
2020-10-15 19:58:56 +00:00
|
|
|
class UsersPlugin(Plugin):
|
|
|
|
def __init__(self, config):
|
2020-10-24 18:10:43 +00:00
|
|
|
super().__init__(blueprint=users_bp, permissions=[_permission_edit, _permission_delete, _permission_set_roles])
|
2020-09-03 23:01:00 +00:00
|
|
|
|
|
|
|
|
2020-10-15 22:37:57 +00:00
|
|
|
@users_bp.route("/users", methods=["POST"])
|
2020-10-30 23:02:02 +00:00
|
|
|
def register():
|
|
|
|
"""Register a new user
|
|
|
|
|
|
|
|
Route: ``/users`` | Method: ``POST``
|
|
|
|
|
|
|
|
POST-data: Same as `flaschengeist.models.user.User` + ``password?: string``
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded `flaschengeist.models.user.User` or HTTP error
|
|
|
|
"""
|
|
|
|
registration = config["users"].get("registration", False)
|
|
|
|
if not registration or registration not in ["managed", "public"]:
|
|
|
|
logger.debug("Config for Registration is set to >{}<".format(registration))
|
|
|
|
raise MethodNotAllowed
|
|
|
|
if registration == "managed":
|
|
|
|
extract_session(_permission_register)
|
|
|
|
|
|
|
|
data = request.get_json()
|
|
|
|
if not data:
|
|
|
|
raise BadRequest
|
|
|
|
|
2020-10-31 14:20:28 +00:00
|
|
|
logger.debug("Register new User...")
|
|
|
|
return make_response(jsonify(userController.register(data)), CREATED)
|
2020-10-15 22:37:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
@users_bp.route("/users", methods=["GET"])
|
|
|
|
@login_required()
|
2020-10-30 04:53:15 +00:00
|
|
|
def list_users(current_session):
|
|
|
|
"""List all existing users
|
|
|
|
|
|
|
|
Route: ``/users`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded array of `flaschengeist.models.user.User` or HTTP error
|
|
|
|
"""
|
2020-10-15 22:37:57 +00:00
|
|
|
logger.debug("Retrieve list of all users")
|
|
|
|
users = userController.get_users()
|
|
|
|
return jsonify(users)
|
2020-09-03 23:01:00 +00:00
|
|
|
|
|
|
|
|
2020-10-30 04:53:15 +00:00
|
|
|
@users_bp.route("/users/<userid>", methods=["GET"])
|
2020-10-15 22:37:57 +00:00
|
|
|
@login_required()
|
2020-10-30 04:53:15 +00:00
|
|
|
def get_user(userid, current_session):
|
|
|
|
"""Retrieve user by userid
|
|
|
|
|
|
|
|
Route: ``/users/<userid>`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
userid: UserID of user to retrieve
|
|
|
|
current_session: Session sent with Authorization Header
|
2020-10-15 22:37:57 +00:00
|
|
|
|
2020-10-30 04:53:15 +00:00
|
|
|
Returns:
|
2020-11-06 00:13:52 +00:00
|
|
|
JSON encoded `flaschengeist.models.user.User` or if userid is current user also containing permissions or HTTP error
|
2020-10-30 04:53:15 +00:00
|
|
|
"""
|
|
|
|
logger.debug("Get information of user {{ {} }}".format(userid))
|
2020-11-06 00:13:52 +00:00
|
|
|
user: User = userController.get_user(userid)
|
|
|
|
serial = user.serialize()
|
|
|
|
if (userid == current_session._user.userid):
|
|
|
|
serial['permissions'] = user.get_permissions()
|
|
|
|
return jsonify(serial)
|
2020-10-15 22:37:57 +00:00
|
|
|
|
2020-10-30 04:53:15 +00:00
|
|
|
|
|
|
|
@users_bp.route("/users/<userid>", methods=["DELETE"])
|
2020-10-23 00:29:55 +00:00
|
|
|
@login_required(permission=_permission_delete)
|
2020-10-30 04:53:15 +00:00
|
|
|
def delete_user(userid, current_session):
|
|
|
|
"""Delete user by userid
|
|
|
|
|
|
|
|
Route: ``/users/<userid>`` | Method: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
userid: UserID of user to retrieve
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
2020-10-31 14:20:28 +00:00
|
|
|
HTTP-204 or HTTP error
|
2020-10-30 04:53:15 +00:00
|
|
|
"""
|
|
|
|
logger.debug("Delete user {{ {} }}".format(userid))
|
|
|
|
user = userController.get_user(userid)
|
2020-10-23 00:29:55 +00:00
|
|
|
userController.delete(user)
|
2020-10-31 14:20:28 +00:00
|
|
|
return "", NO_CONTENT
|
2020-10-23 00:29:55 +00:00
|
|
|
|
|
|
|
|
2020-10-30 04:53:15 +00:00
|
|
|
@users_bp.route("/users/<userid>", methods=["PUT"])
|
2020-10-15 22:37:57 +00:00
|
|
|
@login_required()
|
2020-10-30 04:53:15 +00:00
|
|
|
def edit_user(userid, current_session):
|
|
|
|
"""Modify user by userid
|
|
|
|
|
|
|
|
Route: ``/users/<userid>`` | Method: ``PUT``
|
|
|
|
|
|
|
|
POST-data: ```{firstname?: string, lastname?: string, display_name?: string, mail?: string,
|
|
|
|
password?: string, roles?: string[]}```
|
|
|
|
|
|
|
|
Args:
|
|
|
|
userid: UserID of user to retrieve
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
2020-10-31 14:20:28 +00:00
|
|
|
HTTP-204 or HTTP error
|
2020-10-30 04:53:15 +00:00
|
|
|
"""
|
|
|
|
logger.debug("Modify information of user {{ {} }}".format(userid))
|
|
|
|
user = userController.get_user(userid)
|
2020-10-24 18:10:43 +00:00
|
|
|
data = request.get_json()
|
|
|
|
|
|
|
|
password = None
|
|
|
|
new_password = data["new_password"] if "new_password" in data else None
|
2020-10-15 19:58:56 +00:00
|
|
|
|
2020-11-06 00:13:52 +00:00
|
|
|
author = user
|
2020-10-30 04:53:15 +00:00
|
|
|
if userid != current_session._user.userid:
|
2020-11-06 00:13:52 +00:00
|
|
|
author = current_session._user
|
|
|
|
if not author.has_permission(_permission_edit):
|
|
|
|
raise Forbidden
|
2020-10-24 18:10:43 +00:00
|
|
|
else:
|
|
|
|
if "password" not in data:
|
|
|
|
raise BadRequest("Password is missing")
|
|
|
|
password = data["password"]
|
2020-10-03 23:27:05 +00:00
|
|
|
|
2020-10-15 22:37:57 +00:00
|
|
|
for key in ["firstname", "lastname", "display_name", "mail"]:
|
|
|
|
if key in data:
|
|
|
|
setattr(user, key, data[key])
|
2020-10-24 18:10:43 +00:00
|
|
|
|
|
|
|
if "roles" in data:
|
2020-11-06 00:13:52 +00:00
|
|
|
if not author.has_permission(_permission_set_roles):
|
2020-10-24 18:10:43 +00:00
|
|
|
raise Forbidden
|
|
|
|
userController.set_roles(user, data["roles"])
|
|
|
|
|
|
|
|
userController.modify_user(user, password, new_password)
|
2020-10-15 22:37:57 +00:00
|
|
|
userController.update_user(user)
|
2020-10-31 14:20:28 +00:00
|
|
|
return "", NO_CONTENT
|