config.py 3.3 KB

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