config.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. @dataclass
  22. class Cognos11Credentials:
  23. namespace: str
  24. username: str
  25. password: str
  26. @dataclass
  27. class Cognos11Config:
  28. logs_dir: str
  29. reportoutput_dir: str
  30. specs_dir: str
  31. webservice: str
  32. config_dir: str
  33. folders_file: str
  34. reports_file: str
  35. jobs_file: str
  36. server_dir: str
  37. credentials: Cognos11Credentials
  38. def joinpath(path, *other):
  39. return str(Path(path).joinpath(*other))
  40. class Config:
  41. kunde = "Test"
  42. version = "C11"
  43. versand_separat = False
  44. cognos7: Cognos7Config
  45. cognos11: Cognos11Config
  46. _cfg = {}
  47. def __init__(self, ini="GAPS.ini"):
  48. self._cfg = {}
  49. self.tools_dir = Path(os.curdir).absolute()
  50. self.tasks_dir = str(self.tools_dir.parent).lower()
  51. if self.tools_dir.parent.name.lower() != "tasks":
  52. # development
  53. self.tools_dir = self.tools_dir.joinpath("gctools")
  54. self.portal_dir = "c:\\globalcube"
  55. if not Path(self.portal_dir).exists():
  56. self.portal_dir = joinpath(self.tools_dir, "Portal")
  57. else:
  58. base_dir = self.tools_dir.parent.parent
  59. if base_dir.name.lower() != "globalcube":
  60. self.version = "C7"
  61. self.portal_dir = str(base_dir)
  62. self.system_dir = joinpath(self.portal_dir, "System")
  63. self.tasks_dir = joinpath(self.portal_dir, "Tasks")
  64. self.xml_dir = joinpath(self.tasks_dir, "config")
  65. self.log_dir = joinpath(self.tasks_dir, "logs")
  66. if ":" not in ini:
  67. ini = joinpath(self.tasks_dir, ini)
  68. with open(ini, "r") as stream:
  69. for line in stream.readlines():
  70. if "=" in line:
  71. key, value = line.split("=")
  72. self._cfg[key] = value.replace('"', "").replace("\n", "")
  73. self.kunde = self._cfg.get("KUNDE", "Test")
  74. self.kunde_safe = self.kunde.replace(" ", "-").lower()
  75. self.system = self._cfg.get("SYSTEM", "")
  76. if self.system != "":
  77. self.system_dir = joinpath(self.system_dir, self.system)
  78. self.mail_config()
  79. self.cognos7_config()
  80. self.cognos11_config()
  81. def mail_config(self):
  82. self.smtp = MailConfig(
  83. **{
  84. "server": "mail.global-cube.com",
  85. "port": "465",
  86. "secure": "ssl",
  87. "username": "versand",
  88. "password": "y6!avXX3tQvr",
  89. "email": "versand+neuer-kunde@global-cube.com",
  90. }
  91. )
  92. if self._cfg.get("SMTP_HOST", "") != "":
  93. secure = {"": "", "N": "", "J": "ssl", "SSL": "ssl", "TLS": "tls"}
  94. self.smtp = MailConfig(
  95. server=self._cfg.get("SMTP_HOST"),
  96. port=self._cfg.get("SMTP_PORT"),
  97. secure=secure[self._cfg.get("SMTP_SSL", "")],
  98. username=self._cfg.get("SMTP_USER"),
  99. password=self._cfg.get("SMTP_PW"),
  100. email=self._cfg.get("SMTP_FROM"),
  101. )
  102. self.versand_separat = self._cfg.get("VERSAND_SEPARAT") == "J"
  103. def cognos7_config(self):
  104. self.cognos7 = Cognos7Config(
  105. program_dir=self._cfg.get("COGNOS", "c:\\program files (x86)\\cognos\\cer5\\bin"),
  106. iqd_dir=joinpath(self.system_dir, "IQD"),
  107. models_dir=joinpath(self.system_dir, "Models"),
  108. cube_dir=joinpath(self.system_dir, "Cube_out"),
  109. report_dir=joinpath(self.system_dir, "Report"),
  110. publish_dir=joinpath(self.portal_dir, "Publish", "daten"),
  111. prot_dir=joinpath(self.system_dir, "Prot"),
  112. )
  113. if not Path(self.cognos7.publish_dir).exists():
  114. self.cognos7.publish_dir = (joinpath(self.portal_dir, "daten"),)
  115. def cognos11_config(self):
  116. self.cognos11 = Cognos11Config(
  117. logs_dir=joinpath(self.log_dir, "c11"),
  118. reportoutput_dir=joinpath(self.portal_dir, "ReportOutput"),
  119. specs_dir=joinpath(self.portal_dir, "Content", "Reports"),
  120. webservice="http://localhost:9300/bi/",
  121. config_dir=joinpath(self.xml_dir, "c11"),
  122. folders_file=joinpath(self.xml_dir, "c11", "folders.json"),
  123. reports_file=joinpath(self.xml_dir, "c11", "reports.json"),
  124. jobs_file=joinpath(self.xml_dir, "c11", "jobs.json"),
  125. credentials=Cognos11Credentials(
  126. namespace=self._cfg.get("C11_NS", "CognosEx"),
  127. username=self._cfg.get("C11_U", "Global1"),
  128. password=self._cfg.get("C11_P", "Cognos#11"),
  129. ),
  130. server_dir="C:\\Program Files\\ibm\\cognos\\analytics",
  131. )