config.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. import os
  2. from dataclasses import dataclass
  3. from pathlib import Path
  4. @dataclass
  5. class MailConfig:
  6. server: str
  7. port: int
  8. secure: str
  9. username: str
  10. password: str
  11. email: str
  12. @dataclass
  13. class Cognos7Config:
  14. program_dir: str
  15. iqd_dir: str
  16. models_dir: str
  17. cube_dir: str
  18. report_dir: str
  19. publish_dir: str
  20. prot_dir: str
  21. def joinpath(path, *other):
  22. return str(Path(path).joinpath(*other)).lower()
  23. class Config:
  24. kunde = "Test"
  25. version = "C11"
  26. versand_separat = False
  27. cognos7: Cognos7Config
  28. _cfg = {}
  29. def __init__(self, ini="GAPS.ini"):
  30. self._cfg = {}
  31. self.tools_dir = Path(os.curdir).absolute()
  32. self.tasks_dir = str(self.tools_dir.parent).lower()
  33. if self.tools_dir.parent.name.lower() != "tasks":
  34. # development
  35. self.tools_dir = self.tools_dir.joinpath("gctools")
  36. self.portal_dir = "c:\\globalcube"
  37. if not Path(self.portal_dir).exists():
  38. self.portal_dir = joinpath(self.tools_dir, "Portal")
  39. else:
  40. base_dir = self.tools_dir.parent.parent
  41. if base_dir.name.lower() != "globalcube":
  42. self.version = "C7"
  43. self.portal_dir = str(base_dir)
  44. self.system_dir = joinpath(self.portal_dir, "System")
  45. self.tasks_dir = joinpath(self.portal_dir, "Tasks")
  46. self.xml_dir = joinpath(self.tasks_dir, "config")
  47. self.log_dir = joinpath(self.tasks_dir, "logs")
  48. if ":" not in ini:
  49. ini = joinpath(self.tasks_dir, ini)
  50. with open(ini, "r") as stream:
  51. for line in stream.readlines():
  52. if "=" in line:
  53. key, value = line.split("=")
  54. self._cfg[key] = value.replace('"', "").replace("\n", "")
  55. self.kunde = self._cfg.get("KUNDE", "Test")
  56. self.kunde_safe = self.kunde.replace(" ", "-").lower()
  57. self.system = self._cfg.get("SYSTEM", "")
  58. if self.system != "":
  59. self.system_dir = joinpath(self.system_dir, self.system)
  60. self.mail_config()
  61. self.cognos7_config()
  62. self.cognos11_config()
  63. def mail_config(self):
  64. self.smtp = MailConfig(
  65. **{
  66. "server": "mail.global-cube.com",
  67. "port": "465",
  68. "secure": "ssl",
  69. "username": "versand",
  70. "password": "y6!avXX3tQvr",
  71. "email": "versand+neuer-kunde@global-cube.com",
  72. }
  73. )
  74. if self._cfg.get("SMTP_HOST", "") != "":
  75. secure = {"": "", "N": "", "J": "ssl", "SSL": "ssl", "TLS": "tls"}
  76. self.smtp = MailConfig(
  77. server=self._cfg.get("SMTP_HOST"),
  78. port=self._cfg.get("SMTP_PORT"),
  79. secure=secure[self._cfg.get("SMTP_SSL", "")],
  80. username=self._cfg.get("SMTP_USER"),
  81. password=self._cfg.get("SMTP_PW"),
  82. email=self._cfg.get("SMTP_FROM"),
  83. )
  84. self.versand_separat = self._cfg.get("VERSAND_SEPARAT") == "J"
  85. def cognos7_config(self):
  86. self.cognos7 = Cognos7Config(
  87. program_dir=self._cfg.get("COGNOS", "c:\\program files (x86)\\cognos\\cer5\\bin"),
  88. iqd_dir=joinpath(self.system_dir, "IQD"),
  89. models_dir=joinpath(self.system_dir, "Models"),
  90. cube_dir=joinpath(self.system_dir, "Cube_out"),
  91. report_dir=joinpath(self.system_dir, "Report"),
  92. publish_dir=joinpath(self.portal_dir, "Publish", "daten"),
  93. prot_dir=joinpath(self.system_dir, "Prot"),
  94. )
  95. if not Path(self.cognos7.publish_dir).exists():
  96. self.cognos7.publish_dir = (joinpath(self.portal_dir, "daten"),)
  97. def cognos11_config(self):
  98. pass