city_retrofit/hub/persistence/repositories/application.py

112 lines
3.7 KiB
Python
Raw Normal View History

2023-01-31 13:11:39 -05:00
"""
Application repository with database CRUD operations
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca
"""
import datetime
import logging
2023-01-31 13:11:39 -05:00
from sqlalchemy import select
from sqlalchemy.exc import SQLAlchemyError
from sqlalchemy.orm.session import Session
2023-05-19 13:15:40 -04:00
from hub.persistence.repository import Repository
2023-02-01 06:05:12 -05:00
from hub.persistence.models import Application as Model
2023-01-31 13:11:39 -05:00
2023-02-01 06:05:12 -05:00
class Application(Repository):
2023-05-18 12:29:28 -04:00
"""
Application repository
"""
2023-01-31 13:11:39 -05:00
_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(Application, cls).__new__(cls)
2023-01-31 13:11:39 -05:00
return cls._instance
def insert(self, name: str, description: str, application_uuid: str):
"""
Inserts a new application
:param name: Application name
:param description: Application description
:param application_uuid: Unique identifier for the application
2023-05-19 13:15:40 -04:00
:return: Identity id
"""
2023-05-19 13:15:40 -04:00
try:
application = self.get_by_uuid(application_uuid)
if application is not None:
raise SQLAlchemyError('application already exists')
except TypeError:
pass
try:
application = Model(name=name, description=description, application_uuid=application_uuid)
with Session(self.engine) as session:
session.add(application)
session.commit()
session.refresh(application)
return application.id
except SQLAlchemyError as err:
2023-05-18 16:40:52 -04:00
logging.error('An error occurred while creating application %s', err)
2023-05-19 13:15:40 -04:00
raise SQLAlchemyError from err
2023-01-31 13:11:39 -05:00
def update(self, application_uuid: str, name: str, description: str):
2023-01-31 13:11:39 -05:00
"""
Updates an application
:param application_uuid: the application uuid of the application to be updated
:param name: the application name
:param description: the application description
:return: None
2023-01-31 13:11:39 -05:00
"""
try:
with Session(self.engine) as session:
session.query(Model).filter(
Model.application_uuid == application_uuid
).update({'name': name, 'description': description, 'updated': datetime.datetime.utcnow()})
session.commit()
2023-01-31 13:11:39 -05:00
except SQLAlchemyError as err:
2023-05-18 16:40:52 -04:00
logging.error('Error while updating application %s', err)
2023-05-19 13:15:40 -04:00
raise SQLAlchemyError from err
def delete(self, application_uuid: str):
"""
Deletes an application with the application_uuid
:param application_uuid: The application uuid
:return: None
"""
try:
with Session(self.engine) as session:
session.query(Model).filter(Model.application_uuid == application_uuid).delete()
session.flush()
session.commit()
except SQLAlchemyError as err:
2023-05-18 16:40:52 -04:00
logging.error('Error while deleting application %s', err)
2023-05-19 13:15:40 -04:00
raise SQLAlchemyError from err
2023-01-31 13:11:39 -05:00
def get_by_uuid(self, application_uuid: str) -> Model:
2023-01-31 13:11:39 -05:00
"""
Fetch Application based on the application uuid
:param application_uuid: the application uuid
:return: Application with the provided application_uuid
2023-01-31 13:11:39 -05:00
"""
try:
with Session(self.engine) as session:
result_set = session.execute(select(Model).where(
Model.application_uuid == application_uuid)
).first()
return result_set[0]
2023-01-31 13:11:39 -05:00
except SQLAlchemyError as err:
2023-05-18 16:40:52 -04:00
logging.error('Error while fetching application by application_uuid %s', err)
2023-05-19 13:15:40 -04:00
raise SQLAlchemyError from err
except TypeError as err:
2023-05-18 16:40:52 -04:00
logging.error('Error while fetching application, empty result %s', err)
2023-05-19 13:15:40 -04:00
raise TypeError from err