city_retrofit/hub/persistence/repositories/user.py

144 lines
4.7 KiB
Python
Raw Normal View History

"""
User repository with database CRUD operations
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Peter Yefi peteryefi@gmail.com
"""
2023-05-17 17:10:30 -04:00
import logging
2023-05-18 12:29:28 -04:00
from typing import Union, Dict
import datetime
from sqlalchemy.exc import SQLAlchemyError
from sqlalchemy import select
2023-05-18 12:29:28 -04:00
from hub.persistence import Repository
from hub.persistence.models import User as Model, Application as ApplicationModel, UserRoles
2023-01-24 10:51:50 -05:00
from hub.helpers.auth import Auth
2023-05-18 12:29:28 -04:00
2023-02-01 06:05:12 -05:00
class User(Repository):
2023-05-18 12:29:28 -04:00
"""
User class
"""
_instance = None
def __init__(self, db_name: str, dotenv_path: str, app_env: str):
super().__init__(db_name, dotenv_path, app_env)
def __new__(cls, db_name, dotenv_path, app_env):
"""
Implemented for a singleton pattern
"""
if cls._instance is None:
2023-02-01 06:05:12 -05:00
cls._instance = super(User, cls).__new__(cls)
return cls._instance
2023-02-01 06:05:12 -05:00
def insert(self, name: str, password: str, role: UserRoles, application_id: int) -> Union[Model, Dict]:
"""
Inserts a new user
2023-05-17 17:10:30 -04:00
:param name: username
:param password: user password
:param role: user rol [Admin or Hub_Reader]
:param application_id: user application id
:return: [User, Dictionary]
"""
2023-01-31 13:11:39 -05:00
user = self.get_by_name_and_application(name, application_id)
if user is None:
try:
2023-02-01 06:05:12 -05:00
user = Model(name=name, password=Auth.hash_password(password), role=role, application_id=application_id)
2023-01-31 13:11:39 -05:00
self.session.add(user)
self.session.flush()
self.session.commit()
return user
except SQLAlchemyError as err:
2023-05-18 12:29:28 -04:00
error_message = f'An error occurred while creating user: {err}'
logging.error(error_message)
return {'message': f'error creating user {name}'}
2023-02-01 06:05:12 -05:00
def update(self, user_id: int, name: str, password: str, role: UserRoles) -> Union[Dict, None]:
"""
Updates a user
:param user_id: the id of the user to be updated
:param name: the name of the user
:param password: the password of the user
:param role: the role of the user
2023-03-13 14:41:25 -04:00
:return: None, Dictionary
"""
try:
2023-02-01 06:05:12 -05:00
self.session.query(Model).filter(Model.id == user_id).update({
'name': name,
'password': Auth.hash_password(password),
'role': role,
'updated': datetime.datetime.utcnow()
})
self.session.commit()
except SQLAlchemyError as err:
2023-05-18 12:29:28 -04:00
logging.error('Error while updating user: %s', err)
return {'err_msg': 'Error occurred while updated user'}
2023-05-18 12:29:28 -04:00
return None
def delete(self, user_id: int):
"""
Deletes a user with the id
:param user_id: the user id
:return: None
"""
try:
self.session.query(Model).filter(Model.id == user_id).delete()
self.session.commit()
except SQLAlchemyError as err:
2023-05-18 12:29:28 -04:00
logging.error('Error while fetching user: %s', err)
2023-03-13 15:01:55 -04:00
def get_by_name_and_application(self, name: str, application_id: int) -> Union[Model, None]:
"""
Fetch user based on the email address
2023-05-17 17:10:30 -04:00
:param name: Username
2023-02-01 06:05:12 -05:00
:param application_id: User application name
2023-03-13 15:01:55 -04:00
:return: User matching the search criteria or None
"""
2023-05-18 12:29:28 -04:00
user = None
try:
2023-03-13 15:01:55 -04:00
user = self.session.execute(
select(Model).where(Model.name == name, Model.application_id == application_id)
2023-03-13 15:01:55 -04:00
).first()
if user is not None:
user = user[0]
except SQLAlchemyError as err:
2023-05-18 12:29:28 -04:00
logging.error('Error while fetching user by name and application: %s', err)
return user
2023-03-13 14:41:25 -04:00
def get_by_name_application_id_and_password(self, name: str, password: str, application_id: int) -> Union[Model, None]:
"""
Fetch user based on the email and password
2023-05-17 17:10:30 -04:00
:param name: Username
2023-02-01 06:05:12 -05:00
:param password: User password
2023-05-17 17:10:30 -04:00
:param application_id: Application id
2023-03-13 14:41:25 -04:00
:return: User
"""
try:
2023-02-01 06:05:12 -05:00
user = self.session.execute(
select(Model).where(Model.name == name, Model.application_id == application_id)
2023-02-01 06:05:12 -05:00
).first()
if user:
if Auth.check_password(password, user[0].password):
2023-02-21 10:03:37 -05:00
return user[0]
except SQLAlchemyError as err:
2023-05-18 12:29:28 -04:00
logging.error('Error while fetching user by email: %s', err)
return None
2023-03-13 14:41:25 -04:00
def get_by_name_application_uuid_and_password(self, name: str, password: str, application_uuid: str) -> Union[Model, None]:
"""
Fetch user based on the email and password
2023-05-17 17:10:30 -04:00
:param name: Username
:param password: User password
:param application_uuid: Application uuid
2023-03-13 14:41:25 -04:00
:return: User
"""
2023-05-18 12:29:28 -04:00
application = None
try:
application = self.session.execute(
select(ApplicationModel).where(ApplicationModel.application_uuid == application_uuid)
).first()
except SQLAlchemyError as err:
2023-05-18 12:29:28 -04:00
logging.error('Error while fetching user by name: %s', err)
return self.get_by_name_application_id_and_password(name, password, application[0].id)