from typing import Optional from dataclasses import dataclass from omegaconf import OmegaConf, DictConfig import os @dataclass class Zotero: api_key: str library_id: str library_type: str def getattr(self, name): return getattr(self, name) def _setattr(self, name, value): setattr(self, name, value) @dataclass class Database: name: str path: str tempdir: str def getattr(self, name): return getattr(self, name) def _setattr(self, name, value): setattr(self, name, value) @dataclass class Mail: smtp_server: str port: int sender: str password: str use_user_name: bool user_name: str signature: str empty_signature = """


""" def getattr(self, name): return getattr(self, name) def _setattr(self, name, value): setattr(self, name, value) class Config: '''A class to handle the configuration of the application. After initializing, it will try to load the config file and store it for future access. Any changes made can be saved to the file using the .save() method. Changes are used in real time in the app, if a restart is required, the Application will show a window. Raises: RuntimeError: Configuration not loaded KeyError: Invalid option ''' _config: Optional[DictConfig] = None def __init__(self, config_path: str): """ Loads the configuration file and stores it for future access. Args: config_path (str): Path to the YAML configuration file. Raises: FileNotFoundError: Configuration file not found """ if not os.path.exists(config_path): raise FileNotFoundError(f"Configuration file not found: {config_path}") self._config = OmegaConf.load(config_path) self.config_path = config_path def save(self): """ Saves the current configuration to the file. Args: config_path (str): Path to the YAML configuration file. """ OmegaConf.save(self._config, self.config_path) @property def zotero(self): return Zotero(**self._config.zotero) @property def zotero_attr(self, name): return getattr(self.zotero, name) @zotero_attr.setter def zotero_attr(self, name, value): self.zotero._setattr(name, value) @property def database(self): return Database(**self._config.database) @property def database_attr(self, name): return getattr(self.database, name) @database_attr.setter def database_attr(self, name, value): self.database._setattr(name, value) @property def mail(self): return Mail(**self._config.mail) def mail_attr(self, name): return getattr(self.mail, name) def set_mail_attr(self, name, value): OmegaConf.update(self._config, f"mail.{name}", value) def set_database_attr(self, name, value): OmegaConf.update(self._config, f"database.{name}", value) def set_zotero_attr(self, name, value): OmegaConf.update(self._config, f"zotero.{name}", value) @property def default_apps(self): return self._config.default_apps @default_apps.setter def default_apps(self, value: bool): self._config.default_apps = value @property def save_path(self): return self._config.save_path @save_path.setter def save_path(self, value: str): self._config.save_path = value @property def icon_path(self): """Path to Icon folder Returns: str: Folder path as string """ return self._config.icon_path