forked from s_ranjbar/city_retrofit
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
"""
|
|
Persistence (Postgresql) configuration
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2022 Concordia CERC group
|
|
Project Coder Peter Yefi peteryefi@gmail.com
|
|
"""
|
|
|
|
import os
|
|
from dotenv import load_dotenv
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
|
|
Base = declarative_base()
|
|
|
|
# load environmental variables
|
|
load_dotenv()
|
|
|
|
|
|
class BaseConfiguration(object):
|
|
"""
|
|
Base configuration class to hold common persistence configuration
|
|
"""
|
|
def __init__(self, db_name: str, app_env='TEST'):
|
|
"""
|
|
:param db_name: database name
|
|
:param app_env: application environment, test or production
|
|
"""
|
|
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')
|
|
self.hub_token = os.getenv(f'{app_env}_HUB_TOKEN')
|
|
|
|
def conn_string(self):
|
|
"""
|
|
Returns a connection string postgresql
|
|
:return: connection string
|
|
"""
|
|
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}' |