energy_system_modelling_wor.../hub/persistence/configuration.py

68 lines
1.9 KiB
Python
Raw Normal View History

"""
Persistence (Postgresql) configuration
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
import os
2023-05-10 17:06:51 -04:00
from pathlib import Path
from dotenv import load_dotenv
from sqlalchemy.ext.declarative import declarative_base
Models = declarative_base()
2023-05-17 17:10:30 -04:00
2023-02-01 06:05:12 -05:00
class Configuration:
"""
Configuration class to hold common persistence configuration
2022-12-07 19:06:17 -05:00
"""
def __init__(self, db_name: str, dotenv_path: str, app_env='TEST'):
"""
2023-02-20 07:24:27 -05:00
:param db_name: database name
:param app_env: application environment, test or production
:param dotenv_path: the absolute path to dotenv file
"""
2022-12-07 19:06:17 -05:00
try:
# load environmental variables
2023-05-10 17:06:51 -04:00
if not Path(dotenv_path).exists():
2023-05-18 12:29:28 -04:00
error_message = f'dotenv file doesn\'t exists at {dotenv_path}'
logging.error(error_message)
raise FileNotFoundError(error_message)
2022-12-07 19:06:17 -05:00
load_dotenv(dotenv_path=dotenv_path)
2023-05-10 17:06:51 -04:00
self._db_name = db_name
self._db_host = os.getenv(f'{app_env}_DB_HOST')
self._db_user = os.getenv(f'{app_env}_DB_USER')
self._db_pass = os.getenv(f'{app_env}_DB_PASSWORD')
self._db_port = os.getenv(f'{app_env}_DB_PORT')
2022-11-15 21:48:09 -05:00
self.hub_token = os.getenv('HUB_TOKEN')
2022-12-07 19:06:17 -05:00
except KeyError as err:
2023-05-18 12:29:28 -04:00
logging.error('Error with credentials: %s', err)
2023-05-10 17:06:51 -04:00
@property
def connection_string(self):
"""
Returns a connection string postgresql
:return: connection string
2022-12-07 19:06:17 -05:00
"""
if self._db_pass:
return f'postgresql://{self._db_user}:{self._db_pass}@{self._db_host}:{self._db_port}/{self._db_name}'
return f'postgresql://{self._db_user}@{self._db_host}:{self._db_port}/{self._db_name}'
2023-05-10 17:06:51 -04:00
@property
def db_user(self):
"""
2023-05-17 17:10:30 -04:00
retrieve the configured username
2023-05-10 17:06:51 -04:00
"""
2022-12-07 19:06:17 -05:00
return self._db_user
2023-05-10 17:06:51 -04:00
@property
def db_name(self):
"""
retrieve the configured database name
"""
return self._db_name