2023-02-01 07:29:06 -05:00
|
|
|
"""
|
|
|
|
City Object 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
|
|
|
|
"""
|
2023-05-17 17:10:30 -04:00
|
|
|
import logging
|
2023-02-01 07:29:06 -05:00
|
|
|
import datetime
|
|
|
|
from typing import Union, Dict
|
|
|
|
|
|
|
|
from sqlalchemy import select
|
|
|
|
from sqlalchemy.exc import SQLAlchemyError
|
|
|
|
|
|
|
|
from hub.persistence import Repository
|
|
|
|
from hub.persistence.models import CityObject as Model
|
|
|
|
from hub.city_model_structure.building import Building
|
|
|
|
|
|
|
|
|
|
|
|
class CityObject(Repository):
|
|
|
|
_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:
|
|
|
|
cls._instance = super(CityObject, cls).__new__(cls)
|
|
|
|
return cls._instance
|
|
|
|
|
2023-05-18 16:15:57 -04:00
|
|
|
def insert(self, city_id: int, building: Building):
|
2023-02-01 07:29:06 -05:00
|
|
|
"""
|
|
|
|
Inserts a new city object
|
|
|
|
:param city_id: city id for the city owning this city object
|
|
|
|
:param building: the city object (only building for now) to be inserted
|
2023-05-18 16:15:57 -04:00
|
|
|
return None
|
2023-02-01 07:29:06 -05:00
|
|
|
"""
|
|
|
|
city_object = self.get_by_name_and_city(building.name, city_id)
|
2023-05-18 16:15:57 -04:00
|
|
|
if city_object is not None:
|
|
|
|
raise SQLAlchemyError(f'A city_object named {building.name} already exists in that city')
|
|
|
|
try:
|
|
|
|
city_object = Model(city_id=city_id,
|
|
|
|
building=building)
|
|
|
|
self.session.add(city_object)
|
|
|
|
self.session.flush()
|
|
|
|
self.session.commit()
|
|
|
|
|
|
|
|
except SQLAlchemyError as err:
|
|
|
|
error_message = f'An error occurred while creating city_object {err}'
|
|
|
|
logging.error(error_message)
|
|
|
|
raise SQLAlchemyError(error_message)
|
2023-02-01 07:29:06 -05:00
|
|
|
|
2023-05-17 17:10:30 -04:00
|
|
|
def update(self, city_id: int, building: Building) -> Union[Dict, None]:
|
2023-02-01 07:29:06 -05:00
|
|
|
"""
|
|
|
|
Updates an application
|
|
|
|
:param city_id: the city id of the city owning the city object
|
|
|
|
:param building: the city object
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
object_usage = ''
|
|
|
|
for internal_zone in building.internal_zones:
|
|
|
|
for usage in internal_zone.usages:
|
|
|
|
object_usage = f'{object_usage}{usage.name}_{usage.percentage} '
|
|
|
|
object_usage = object_usage.rstrip()
|
2023-02-02 13:00:58 -05:00
|
|
|
self.session.query(Model).filter(Model.name == building.name, Model.city_id == city_id).update(
|
2023-02-01 07:29:06 -05:00
|
|
|
{'name': building.name,
|
|
|
|
'alias': building.alias,
|
|
|
|
'object_type': building.type,
|
|
|
|
'year_of_construction': building.year_of_construction,
|
|
|
|
'function': building.function,
|
|
|
|
'usage': object_usage,
|
|
|
|
'volume': building.volume,
|
|
|
|
'area': building.floor_area,
|
|
|
|
'updated': datetime.datetime.utcnow()})
|
|
|
|
self.session.commit()
|
|
|
|
except SQLAlchemyError as err:
|
2023-05-18 12:29:28 -04:00
|
|
|
logging.error('Error while updating city object: %s', err)
|
2023-02-01 07:29:06 -05:00
|
|
|
return {'message': 'Error occurred while updating application'}
|
2023-05-18 12:29:28 -04:00
|
|
|
return None
|
2023-02-01 07:29:06 -05:00
|
|
|
|
|
|
|
def delete(self, city_id: int, name: str):
|
|
|
|
"""
|
|
|
|
Deletes an application with the application_uuid
|
|
|
|
:param city_id: The id for the city owning the city object
|
|
|
|
:param name: The city object name
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
try:
|
2023-02-02 13:00:58 -05:00
|
|
|
self.session.query(Model).filter(Model.city_id == city_id, Model.name == name).delete()
|
2023-02-01 07:29:06 -05:00
|
|
|
self.session.commit()
|
|
|
|
except SQLAlchemyError as err:
|
2023-05-18 12:29:28 -04:00
|
|
|
logging.error('Error while deleting application: %s', err)
|
2023-02-01 07:29:06 -05:00
|
|
|
|
2023-03-13 14:41:25 -04:00
|
|
|
def get_by_name_and_city(self, name, city_id) -> Union[Model, None]:
|
2023-02-01 07:29:06 -05:00
|
|
|
"""
|
|
|
|
Fetch a city object based on name and city id
|
|
|
|
:param name: city object name
|
|
|
|
:param city_id: a city identifier
|
|
|
|
:return: [CityObject] with the provided name belonging to the city with id city_id
|
|
|
|
"""
|
2023-05-18 12:29:28 -04:00
|
|
|
_city_object = None
|
2023-02-01 07:29:06 -05:00
|
|
|
try:
|
2023-02-02 13:00:58 -05:00
|
|
|
_city_object = self.session.execute(select(Model).where(
|
|
|
|
Model.name == name, Model.city_id == city_id
|
2023-02-01 07:29:06 -05:00
|
|
|
)).first()
|
|
|
|
except SQLAlchemyError as err:
|
2023-05-18 12:29:28 -04:00
|
|
|
logging.error('Error while fetching application by application_uuid: %s', err)
|
|
|
|
if _city_object is None:
|
|
|
|
return None
|
|
|
|
return _city_object[0]
|