2020-11-29 21:36:16 +01:00
|
|
|
import traceback
|
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
from sh_edraft.configuration.base.configuration_model_base import ConfigurationModelBase
|
|
|
|
from sh_edraft.database.model.database_settings_name import DatabaseSettingsName
|
2020-12-14 21:10:26 +01:00
|
|
|
from sh_edraft.utils.console.console import Console
|
|
|
|
from sh_edraft.utils.console.model.foreground_color import ForegroundColor
|
2020-11-29 21:36:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
class DatabaseSettings(ConfigurationModelBase):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
ConfigurationModelBase.__init__(self)
|
|
|
|
|
|
|
|
self._connection_string: Optional[str] = None
|
|
|
|
self._credentials: Optional[str] = None
|
|
|
|
self._encoding: Optional[str] = None
|
|
|
|
self._case_sensitive: Optional[bool] = None
|
|
|
|
self._echo: Optional[bool] = None
|
|
|
|
|
|
|
|
@property
|
|
|
|
def connection_string(self) -> str:
|
|
|
|
return self._connection_string
|
|
|
|
|
|
|
|
@connection_string.setter
|
|
|
|
def connection_string(self, connection_string: str):
|
|
|
|
self._connection_string = connection_string
|
|
|
|
|
|
|
|
@property
|
|
|
|
def credentials(self) -> str:
|
|
|
|
return self._credentials
|
|
|
|
|
|
|
|
@credentials.setter
|
|
|
|
def credentials(self, credentials: str):
|
|
|
|
self._credentials = credentials
|
|
|
|
|
|
|
|
@property
|
|
|
|
def encoding(self) -> str:
|
|
|
|
return self._encoding
|
|
|
|
|
|
|
|
@encoding.setter
|
|
|
|
def encoding(self, encoding: str) -> None:
|
|
|
|
self._encoding = encoding
|
|
|
|
|
|
|
|
@property
|
|
|
|
def case_sensitive(self) -> bool:
|
|
|
|
return self._case_sensitive
|
|
|
|
|
|
|
|
@case_sensitive.setter
|
|
|
|
def case_sensitive(self, case_sensitive: bool) -> None:
|
|
|
|
self._case_sensitive = case_sensitive
|
|
|
|
|
|
|
|
@property
|
|
|
|
def echo(self) -> bool:
|
|
|
|
return self._echo
|
|
|
|
|
|
|
|
@echo.setter
|
|
|
|
def echo(self, echo: bool) -> None:
|
|
|
|
self._echo = echo
|
|
|
|
|
|
|
|
def from_dict(self, settings: dict):
|
|
|
|
try:
|
|
|
|
self._connection_string = settings[DatabaseSettingsName.connection_string.value]
|
|
|
|
self._credentials = settings[DatabaseSettingsName.credentials.value]
|
|
|
|
|
|
|
|
if DatabaseSettingsName.encoding.value in settings:
|
|
|
|
self._encoding = settings[DatabaseSettingsName.encoding.value]
|
|
|
|
|
|
|
|
if DatabaseSettingsName.case_sensitive.value in settings:
|
|
|
|
self._case_sensitive = bool(settings[DatabaseSettingsName.case_sensitive.value])
|
|
|
|
|
|
|
|
if DatabaseSettingsName.echo.value in settings:
|
|
|
|
self._echo = bool(settings[DatabaseSettingsName.echo.value])
|
|
|
|
except Exception as e:
|
2020-12-14 21:10:26 +01:00
|
|
|
Console.set_foreground_color(ForegroundColor.red)
|
|
|
|
Console.write_line(f'[ ERROR ] [ {__name__} ]: Reading error in {self.__name__} settings')
|
|
|
|
Console.write_line(f'[ EXCEPTION ] [ {__name__} ]: {e} -> {traceback.format_exc()}')
|
|
|
|
Console.set_foreground_color(ForegroundColor.default)
|