system_assignation/hub/persistence/db_setup.py

68 lines
2.7 KiB
Python
Raw Normal View History

2023-02-01 06:05:12 -05:00
"""
Database setup
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Peter Yefi peteryefi@gmail.com
"""
2023-02-01 06:05:12 -05:00
from hub.persistence import Repository
from hub.persistence.models import Application
from hub.persistence.models import City
2023-02-01 06:05:12 -05:00
from hub.persistence.models import CityObject
2023-01-24 10:51:50 -05:00
from hub.persistence.models import User
from hub.persistence.models import UserRoles
2023-02-01 06:05:12 -05:00
from hub.persistence.models import SimulationResults
from hub.persistence.repositories import User as UserRepository
from hub.persistence.repositories import Application as ApplicationRepository
2023-01-24 10:51:50 -05:00
from hub.hub_logger import logger
2022-12-07 19:06:17 -05:00
class DBSetup:
2023-01-31 13:11:39 -05:00
def __init__(self, db_name, app_env, dotenv_path, admin_password, application_uuid):
"""
2023-01-31 13:11:39 -05:00
Creates database tables a default admin user and a default admin app with the given password and uuid
:param db_name:
:param app_env:
:param dotenv_path:
"""
2023-02-01 06:05:12 -05:00
repository = Repository(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path)
# Create the tables using the models
Application.__table__.create(bind=repository.engine, checkfirst=True)
User.__table__.create(bind=repository.engine, checkfirst=True)
2023-02-01 06:05:12 -05:00
City.__table__.create(bind=repository.engine, checkfirst=True)
CityObject.__table__.create(bind=repository.engine, checkfirst=True)
SimulationResults.__table__.create(bind=repository.engine, checkfirst=True)
self._user_repo = UserRepository(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path)
self._application_repo = ApplicationRepository(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path)
application_id = self._create_admin_app(self._application_repo, application_uuid)
self._create_admin_user(self._user_repo, admin_password, application_id)
@staticmethod
2023-01-31 13:11:39 -05:00
def _create_admin_app(application_repo, application_uuid):
name = 'AdminTool'
description = 'Admin tool to control city persistence and to test the API v1.4'
print('Creating default admin tool application...')
application = application_repo.insert(name, description, application_uuid)
2023-01-31 13:11:39 -05:00
if type(application) is dict:
logger.info(application)
else:
msg = f'Created Admin tool with application_uuid: {application_uuid}'
print(msg)
logger.info(msg)
return application.id
2023-01-31 13:11:39 -05:00
@staticmethod
def _create_admin_user(user_repo, admin_password, application_id):
password = admin_password
print('Creating default admin user...')
2023-01-31 13:11:39 -05:00
user = user_repo.insert('Administrator', password, UserRoles.Admin, application_id)
2022-12-14 17:49:29 -05:00
if type(user) is dict:
logger.info(user)
else:
2023-01-31 13:11:39 -05:00
print(f'Created Admin user')
logger.info(f'Created Admin user')