2022-11-15 20:48:42 -05:00
|
|
|
"""
|
|
|
|
DBFactory performs read related operations
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project CoderPeter Yefi peteryefi@gmail.com
|
|
|
|
"""
|
2023-02-02 06:12:24 -05:00
|
|
|
from hub.persistence import City
|
|
|
|
from hub.persistence import Application
|
2023-02-02 13:00:58 -05:00
|
|
|
from hub.persistence import User
|
|
|
|
from hub.persistence import CityObject
|
2023-03-03 17:19:36 -05:00
|
|
|
from hub.persistence import SimulationResults
|
2022-11-15 20:48:42 -05:00
|
|
|
|
|
|
|
|
|
|
|
class DBFactory:
|
|
|
|
"""
|
|
|
|
DBFactory class
|
|
|
|
"""
|
|
|
|
|
2022-12-07 19:06:17 -05:00
|
|
|
def __init__(self, db_name, app_env, dotenv_path):
|
2023-02-02 06:12:24 -05:00
|
|
|
self._city = City(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path)
|
|
|
|
self._application = Application(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path)
|
2023-02-02 13:00:58 -05:00
|
|
|
self._user = User(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path)
|
|
|
|
self._city_object = CityObject(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path)
|
2023-03-03 17:19:36 -05:00
|
|
|
self._simulation_results = SimulationResults(db_name=db_name, dotenv_path=dotenv_path, app_env=app_env)
|
2022-11-15 20:48:42 -05:00
|
|
|
|
|
|
|
def get_city(self, city_id):
|
|
|
|
"""
|
|
|
|
Retrieve a single city from postgres
|
|
|
|
:param city_id: the id of the city to get
|
|
|
|
"""
|
2023-02-02 06:12:24 -05:00
|
|
|
return self._city.get_by_id(city_id)
|
2022-11-15 20:48:42 -05:00
|
|
|
|
|
|
|
def get_city_by_name(self, city_name):
|
|
|
|
"""
|
|
|
|
Retrieve a single city from postgres
|
|
|
|
:param city_name: the name of the city to get
|
|
|
|
"""
|
2023-02-02 06:12:24 -05:00
|
|
|
return self._city.get_by_name(city_name)
|
2022-11-15 20:48:42 -05:00
|
|
|
|
2023-01-11 16:02:33 -05:00
|
|
|
def get_city_by_user(self, user_id):
|
|
|
|
"""
|
|
|
|
Retrieve cities created by user
|
|
|
|
:param user_id: the id of the user
|
|
|
|
"""
|
2023-02-02 06:12:24 -05:00
|
|
|
return self._city.get_by_user(user_id)
|
2023-01-11 16:02:33 -05:00
|
|
|
|
2023-03-03 17:19:36 -05:00
|
|
|
def get_simulation_results_by_id(self, sim_id):
|
|
|
|
"""
|
|
|
|
Retrieve a single simulation results
|
|
|
|
:param sim_id: the id of the simulation results to get
|
|
|
|
"""
|
|
|
|
return self._simulation_results.get_simulation_results_by_id(sim_id)
|
|
|
|
|
|
|
|
def get_simulation_results_by_name(self, name):
|
|
|
|
"""
|
|
|
|
Retrieve a single simulation results
|
|
|
|
:param name: the name of the simulation results to get
|
|
|
|
"""
|
|
|
|
return self._simulation_results.get_simulation_results_by_name(name)
|
|
|
|
|
|
|
|
def get_simulation_results_by_city_id(self, city_id):
|
|
|
|
"""
|
|
|
|
Retrieve a single simulation results
|
|
|
|
:param city_id: the city id of the simulation results to get
|
|
|
|
"""
|
|
|
|
return self._simulation_results.get_simulation_results_by_city_id(city_id)
|
|
|
|
|
|
|
|
def get_simulation_results_by_city_object_id(self, city_object_id):
|
|
|
|
"""
|
|
|
|
Retrieve a single simulation results
|
|
|
|
:param city_object_id: the city object id of the simulation results to get
|
|
|
|
"""
|
|
|
|
return self._simulation_results.get_simulation_results_by_city_object_id(city_object_id)
|
|
|
|
|
2023-02-02 06:12:24 -05:00
|
|
|
def application_info(self, application_uuid):
|
|
|
|
return self._application.get_by_uuid(application_uuid)
|
2022-11-22 20:20:12 -05:00
|
|
|
|
2023-02-02 13:00:58 -05:00
|
|
|
def user_info(self, name, password, application_id):
|
2023-02-21 09:41:26 -05:00
|
|
|
return self._user.get_by_name_application_id_and_password(name, password, application_id)
|
|
|
|
|
|
|
|
def user_login(self, name, password, application_uuid):
|
|
|
|
return self._user.get_by_name_application_uuid_and_password(name, password, application_uuid)
|
2023-02-02 13:00:58 -05:00
|
|
|
|
|
|
|
def building_info(self, name, city_id):
|
|
|
|
return self._city_object.get_by_name_and_city(name, city_id)
|
|
|
|
|