2025-06-12 19:21:58 +02:00
|
|
|
|
from os import path
|
2025-06-04 20:18:03 +02:00
|
|
|
|
from pathlib import Path
|
2025-06-12 19:21:58 +02:00
|
|
|
|
from sys import platform
|
2025-06-13 20:23:19 +02:00
|
|
|
|
from typing import Tuple, Type
|
2025-07-17 19:12:41 +02:00
|
|
|
|
from pydantic import Field
|
2025-07-27 19:41:04 +02:00
|
|
|
|
from pydantic_yaml import to_yaml_str
|
|
|
|
|
|
from ruamel.yaml import YAML
|
2025-07-17 19:12:41 +02:00
|
|
|
|
from enum import Enum
|
|
|
|
|
|
import logging
|
2025-06-04 20:18:03 +02:00
|
|
|
|
|
|
|
|
|
|
from pydantic import BaseModel
|
2025-06-13 20:23:19 +02:00
|
|
|
|
from pydantic_settings import BaseSettings, PydanticBaseSettingsSource, SettingsConfigDict, JsonConfigSettingsSource
|
2025-06-12 19:21:58 +02:00
|
|
|
|
|
2025-07-17 19:12:41 +02:00
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
2025-06-12 19:21:58 +02:00
|
|
|
|
app_name = "DocuMentor"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if platform == "win32":
|
|
|
|
|
|
config_path = f"%APPDATA%\\{app_name}\\config.json"
|
2025-06-14 20:35:32 +02:00
|
|
|
|
elif platform in ("linux", "linux2"):
|
2025-06-12 19:21:58 +02:00
|
|
|
|
config_path = f"~/.config/{app_name}/config.json"
|
|
|
|
|
|
elif platform == "darwin":
|
|
|
|
|
|
config_path = f"~/Library/Application Support/{app_name}/͏͏͏͏config.json"
|
|
|
|
|
|
else:
|
|
|
|
|
|
config_path = f"~/.config/{app_name}/config.json"
|
|
|
|
|
|
|
|
|
|
|
|
config_path = Path(path.expandvars(config_path))
|
2025-06-04 20:18:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class JavaVm(BaseModel):
|
2025-06-09 19:50:17 +02:00
|
|
|
|
id: int
|
2025-06-06 20:18:29 +02:00
|
|
|
|
version: str
|
2025-06-04 20:18:03 +02:00
|
|
|
|
path_to_binary_file: Path
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DiffPdf(BaseModel):
|
2025-06-09 19:50:17 +02:00
|
|
|
|
id: int
|
2025-06-06 20:18:29 +02:00
|
|
|
|
version: str
|
2025-06-04 20:18:03 +02:00
|
|
|
|
path_to_binary_file: Path
|
|
|
|
|
|
default_params: list[str]
|
2025-06-06 20:18:29 +02:00
|
|
|
|
output_file_extension: str = "pdf"
|
2025-06-04 20:18:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SaxonJar(BaseModel):
|
2025-06-09 19:50:17 +02:00
|
|
|
|
id: int
|
2025-06-06 20:18:29 +02:00
|
|
|
|
version: str
|
2025-06-04 20:18:03 +02:00
|
|
|
|
path_to_jar_file: Path
|
2025-06-06 20:18:29 +02:00
|
|
|
|
output_file_extension: str = "fo"
|
2025-06-04 20:18:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ApacheFop(BaseModel):
|
2025-06-09 19:50:17 +02:00
|
|
|
|
id: int
|
2025-06-06 20:18:29 +02:00
|
|
|
|
version: str
|
2025-06-04 20:18:03 +02:00
|
|
|
|
path_to_dir: Path
|
2025-06-06 20:18:29 +02:00
|
|
|
|
output_file_extension: str = "pdf"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class XslDir(BaseModel):
|
2025-06-09 19:50:17 +02:00
|
|
|
|
id: int
|
2025-06-06 20:18:29 +02:00
|
|
|
|
name: str
|
|
|
|
|
|
path_to_root_dir: Path
|
2025-07-17 19:12:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SSLMode(str, Enum):
|
|
|
|
|
|
DISABLE = "disable"
|
|
|
|
|
|
ALLOW = "allow"
|
|
|
|
|
|
PREFER = "prefer"
|
|
|
|
|
|
REQUIRE = "require"
|
|
|
|
|
|
VERIFY_CA = "verify-ca"
|
|
|
|
|
|
VERIFY_FULL = "verify-full"
|
2025-06-04 20:18:03 +02:00
|
|
|
|
|
2025-06-22 18:12:27 +02:00
|
|
|
|
class PostgreSqlDb(BaseModel):
|
|
|
|
|
|
id: int
|
|
|
|
|
|
name: str
|
|
|
|
|
|
host: str
|
|
|
|
|
|
port: int = 5432
|
|
|
|
|
|
database: str
|
|
|
|
|
|
username: str
|
|
|
|
|
|
password: str
|
2025-07-17 19:12:41 +02:00
|
|
|
|
ssl_mode: SSLMode = SSLMode.PREFER
|
2025-06-22 18:12:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
2025-06-06 20:18:29 +02:00
|
|
|
|
class PdfProject(BaseModel):
|
2025-07-17 19:12:41 +02:00
|
|
|
|
id: int = Field(..., description="Eindeutige Projekt-ID", gt=0)
|
|
|
|
|
|
name: str = Field(..., description="Projekt-Name", min_length=1, max_length=255)
|
|
|
|
|
|
project_dir: Path = Field(..., description="Pfad zum Projekt-Verzeichnis")
|
|
|
|
|
|
java_vm_id: int = Field(..., description="ID der Java VM", gt=0)
|
|
|
|
|
|
diff_pdf_id: int = Field(..., description="ID der diff-pdf Konfiguration", gt=0)
|
|
|
|
|
|
saxon_jar_id: int = Field(..., description="ID der Saxon JAR Konfiguration", gt=0)
|
|
|
|
|
|
apache_fop_id: int = Field(..., description="ID der Apache FOP Konfiguration", gt=0)
|
|
|
|
|
|
xsl_dir_id: int = Field(..., description="ID des XSL-Verzeichnisses", gt=0)
|
|
|
|
|
|
postgre_sql_db_id: int = Field(..., description="ID der PostgreSQL Datenbank", gt=0)
|
2025-06-04 20:18:03 +02:00
|
|
|
|
|
2025-06-18 19:49:31 +02:00
|
|
|
|
def getXsl(self) -> str:
|
|
|
|
|
|
global app_settings
|
|
|
|
|
|
value = [x.name for x in app_settings.xsl_dirs if x.id == self.xsl_dir_id]
|
|
|
|
|
|
|
|
|
|
|
|
return value[0] if len(value) else ""
|
|
|
|
|
|
|
|
|
|
|
|
def getJavaVm(self) -> str:
|
|
|
|
|
|
global app_settings
|
|
|
|
|
|
value = [x.version for x in app_settings.java_vms if x.id == self.java_vm_id]
|
|
|
|
|
|
|
|
|
|
|
|
return value[0] if len(value) else ""
|
|
|
|
|
|
|
|
|
|
|
|
def getSaxon(self) -> str:
|
|
|
|
|
|
global app_settings
|
|
|
|
|
|
value = [x.version for x in app_settings.saxon_jars if x.id == self.saxon_jar_id]
|
|
|
|
|
|
|
|
|
|
|
|
return value[0] if len(value) else ""
|
|
|
|
|
|
|
|
|
|
|
|
def getApacheFop(self) -> str:
|
|
|
|
|
|
global app_settings
|
|
|
|
|
|
value = [x.version for x in app_settings.apache_fops if x.id == self.apache_fop_id]
|
|
|
|
|
|
|
|
|
|
|
|
return value[0] if len(value) else ""
|
|
|
|
|
|
|
|
|
|
|
|
def getDiffPdf(self) -> str:
|
|
|
|
|
|
global app_settings
|
|
|
|
|
|
value = [x.version for x in app_settings.diff_pdfs if x.id == self.diff_pdf_id]
|
|
|
|
|
|
|
|
|
|
|
|
return value[0] if len(value) else ""
|
|
|
|
|
|
|
2025-07-14 21:00:06 +02:00
|
|
|
|
def getPostgreSqlDb(self) -> str:
|
|
|
|
|
|
global app_settings
|
|
|
|
|
|
value = [x.name for x in app_settings.postgresql_dbs if x.id == self.postgre_sql_db_id]
|
|
|
|
|
|
|
|
|
|
|
|
return value[0] if len(value) else ""
|
|
|
|
|
|
|
2025-06-04 20:18:03 +02:00
|
|
|
|
|
|
|
|
|
|
class AppSettings(BaseSettings):
|
2025-06-12 19:21:58 +02:00
|
|
|
|
java_vms: list[JavaVm] = []
|
|
|
|
|
|
diff_pdfs: list[DiffPdf] = []
|
|
|
|
|
|
saxon_jars: list[SaxonJar] = []
|
|
|
|
|
|
apache_fops: list[ApacheFop] = []
|
|
|
|
|
|
xsl_dirs: list[XslDir] = []
|
2025-06-06 20:18:29 +02:00
|
|
|
|
pdf_projects: list[PdfProject] = []
|
2025-06-22 18:12:27 +02:00
|
|
|
|
postgresql_dbs: list[PostgreSqlDb] = []
|
2025-06-17 19:11:08 +02:00
|
|
|
|
theme: str | None = None
|
2025-06-06 20:32:23 +02:00
|
|
|
|
|
2025-06-12 19:21:58 +02:00
|
|
|
|
model_config = SettingsConfigDict(json_file=config_path)
|
2025-06-13 20:23:19 +02:00
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
def settings_customise_sources(
|
|
|
|
|
|
cls,
|
|
|
|
|
|
settings_cls: Type[BaseSettings],
|
|
|
|
|
|
init_settings: PydanticBaseSettingsSource,
|
|
|
|
|
|
env_settings: PydanticBaseSettingsSource,
|
|
|
|
|
|
dotenv_settings: PydanticBaseSettingsSource,
|
|
|
|
|
|
file_secret_settings: PydanticBaseSettingsSource,
|
|
|
|
|
|
) -> Tuple[PydanticBaseSettingsSource, ...]:
|
|
|
|
|
|
return (JsonConfigSettingsSource(settings_cls),)
|
|
|
|
|
|
|
2025-06-12 20:43:31 +02:00
|
|
|
|
def save(self):
|
|
|
|
|
|
global config_path
|
2025-06-14 20:35:32 +02:00
|
|
|
|
# Ordner existert nicht
|
2025-06-13 20:23:19 +02:00
|
|
|
|
if not config_path.parent.exists():
|
|
|
|
|
|
config_path.parent.mkdir(parents=True, exist_ok=True)
|
2025-06-12 19:21:58 +02:00
|
|
|
|
|
2025-06-13 20:23:19 +02:00
|
|
|
|
# Konfiguration speichern
|
|
|
|
|
|
with open(config_path, "wb") as c:
|
|
|
|
|
|
c.write(app_settings.model_dump_json(indent=4).encode())
|
2025-06-12 19:21:58 +02:00
|
|
|
|
|
2025-06-06 20:18:29 +02:00
|
|
|
|
|
2025-06-13 20:23:19 +02:00
|
|
|
|
app_settings = AppSettings()
|
2025-06-14 20:35:32 +02:00
|
|
|
|
|
2025-06-13 20:23:19 +02:00
|
|
|
|
|
2025-07-27 19:41:04 +02:00
|
|
|
|
class XmlFile(BaseModel):
|
2025-06-21 21:20:37 +02:00
|
|
|
|
xml: Path
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-06-20 21:42:30 +02:00
|
|
|
|
class XslFile(BaseModel):
|
|
|
|
|
|
id: tuple
|
|
|
|
|
|
bez: str
|
|
|
|
|
|
xsl_file: Path
|
2025-07-14 21:00:06 +02:00
|
|
|
|
xslt_params: dict[str, str] = {}
|
2025-07-27 19:41:04 +02:00
|
|
|
|
xmls: list[XmlFile] = []
|
2025-06-21 21:20:37 +02:00
|
|
|
|
|
2025-06-20 21:42:30 +02:00
|
|
|
|
|
|
|
|
|
|
class TreeNode(BaseModel):
|
|
|
|
|
|
id: tuple
|
|
|
|
|
|
bez: str
|
2025-07-14 21:00:06 +02:00
|
|
|
|
xslt_params: dict[str, str] = {}
|
2025-06-21 21:20:37 +02:00
|
|
|
|
children: list["TreeNode|XslFile"]
|
2025-06-20 21:42:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
2025-06-21 21:20:37 +02:00
|
|
|
|
class PdfProjectSettings(BaseModel):
|
2025-06-06 20:18:29 +02:00
|
|
|
|
"""
|
2025-07-14 21:00:06 +02:00
|
|
|
|
Speichert die Projekteinstellungen direkt im Projektordner in einer .yaml-Datei.
|
2025-06-06 20:18:29 +02:00
|
|
|
|
"""
|
2025-06-06 20:32:23 +02:00
|
|
|
|
|
2025-06-21 21:20:37 +02:00
|
|
|
|
nodes: list[TreeNode] = []
|
|
|
|
|
|
|
2025-06-22 14:47:17 +02:00
|
|
|
|
@classmethod
|
|
|
|
|
|
def readSettings(cls, project_dir: Path):
|
2025-07-27 18:33:14 +02:00
|
|
|
|
# Explizit UTF-8 Encoding verwenden
|
|
|
|
|
|
project_yaml_path = project_dir / "project.yaml"
|
|
|
|
|
|
with open(project_yaml_path, 'r', encoding='utf-8') as f:
|
|
|
|
|
|
yaml = YAML(typ='safe')
|
|
|
|
|
|
yaml_data = yaml.load(f)
|
|
|
|
|
|
return cls.model_validate(yaml_data)
|
2025-06-22 14:47:17 +02:00
|
|
|
|
|
|
|
|
|
|
def writeSettings(self, project_dir: Path):
|
|
|
|
|
|
with open(project_dir / "project.yaml", "w", encoding="utf8") as f:
|
|
|
|
|
|
f.write(to_yaml_str(self))
|