config.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import os
  2. from pathlib import Path
  3. from dataclasses import dataclass
  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. 'server': 'mail.global-cube.com',
  66. 'port': '465',
  67. 'secure': 'ssl',
  68. 'username': 'versand',
  69. 'password': 'y6!avXX3tQvr',
  70. 'email': 'versand+neuer-kunde@global-cube.com'
  71. })
  72. if self._cfg.get('SMTP_HOST', '') != '':
  73. secure = {'': '', 'N': '', 'J': 'ssl', 'SSL': 'ssl', 'TLS': 'tls'}
  74. self.smtp = MailConfig(
  75. server=self._cfg.get('SMTP_HOST'),
  76. port=self._cfg.get('SMTP_PORT'),
  77. secure=secure[self._cfg.get('SMTP_SSL', '')],
  78. username=self._cfg.get('SMTP_USER'),
  79. password=self._cfg.get('SMTP_PW'),
  80. email=self._cfg.get('SMTP_FROM'),
  81. )
  82. self.versand_separat = self._cfg.get('VERSAND_SEPARAT') == 'J'
  83. def cognos7_config(self):
  84. self.cognos7 = Cognos7Config(
  85. program_dir=self._cfg.get('COGNOS', 'c:\\program files (x86)\\cognos\\cer5\\bin'),
  86. iqd_dir=joinpath(self.system_dir, 'IQD'),
  87. models_dir=joinpath(self.system_dir, 'Models'),
  88. cube_dir=joinpath(self.system_dir, 'Cube_out'),
  89. report_dir=joinpath(self.system_dir, 'Report'),
  90. publish_dir=joinpath(self.portal_dir, 'Publish', 'daten'),
  91. prot_dir=joinpath(self.system_dir, 'Prot')
  92. )
  93. if not Path(self.cognos7.publish_dir).exists():
  94. self.cognos7.publish_dir = joinpath(self.portal_dir, 'daten'),
  95. def cognos11_config(self):
  96. pass