portal.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. import plac
  2. import subprocess
  3. import pandas as pd
  4. import time
  5. from datetime import datetime
  6. from pathlib import Path
  7. from shutil import copy2
  8. import config
  9. import psutil
  10. import json
  11. cfg = config.Config()
  12. report_dir = cfg.portal_dir + '\\System\\Report'
  13. publish_dir = cfg.portal_dir + '\\Publish\\daten'
  14. if not Path(publish_dir).exists():
  15. publish_dir = cfg.portal_dir + '\\daten'
  16. @plac.pos('config_file', '', type=str)
  17. def portal(config_file='GAPS_neu'):
  18. print(f"== Portal '{config_file}.xml' ==")
  19. full_filename = f'{cfg.xml_dir}\\{config_file}.xml'
  20. if not Path(full_filename).exists():
  21. print(f"!! Datei '{full_filename}' existiert nicht !!")
  22. return
  23. prepare_report_temp(config_file)
  24. pub_dir = Path(f'{publish_dir}\\{config_file}')
  25. rep_dir = f'{report_dir}\\{config_file}'
  26. if not pub_dir.exists():
  27. pub_dir.mkdir()
  28. for export_format in ['jpg', 'xls', 'pdf']:
  29. export_files(config_file, export_format, f'{rep_dir}\\{export_format}', pub_dir, f'{cfg.log_dir}\\{config_file}_{export_format}.mac.log')
  30. def export_files(config_file, export_format, rep_dir, pub_dir, logfile):
  31. cmd = f'"{cfg.cognos_dir}\\runmac32.exe" "{cfg.tools_dir}\\VBS\\publish-reports.mac" "{rep_dir}","{export_format}","{pub_dir}"'
  32. setup = {
  33. 'start': datetime.now().timestamp(),
  34. 'call': ['export_files', export_format, rep_dir, str(pub_dir), logfile],
  35. 'description': f"Exportiere '{rep_dir}' nach '{pub_dir}'...",
  36. 'cleanup': []
  37. }
  38. with open(logfile, 'w') as stream:
  39. p = subprocess.Popen(cmd, stdout=stream, stderr=stream)
  40. setup['pid'] = p.pid
  41. setup['reports'] = [f.name for f in sorted(Path(rep_dir).glob('*.pp[rx]'))]
  42. setup['exports'] = [str(translate_filename(f, export_format, str(pub_dir))) for f in setup['reports']]
  43. setup['exports_remaining'] = setup['exports']
  44. if export_format == 'jpg':
  45. setup['cleanup'].append(['rename_files', str(pub_dir)])
  46. setup['cleanup'].append(['cleanup_dir', str(pub_dir)])
  47. with open(f'{cfg.log_dir}\\running\\portal_{config_file}_{export_format}.json', 'w') as f:
  48. json.dump(setup, f, indent=2)
  49. def observe(filename):
  50. with open(filename, 'r') as f:
  51. setup = json.load(f)
  52. while psutil.pid_exists(setup['pid']):
  53. setup['exports_remaining'] = [f for f in setup['exports_remaining'] if not Path(f).exists() or Path(f).stat().st_mtime < setup['start']]
  54. print('Fortschritt: ' + str(len(setup['exports']) - len(setup['exports_remaining'])) + '/' + str(len(setup['exports'])) + '...', end='\r')
  55. time.sleep(5)
  56. print('Abgeschlossen. ')
  57. def translate_filename(filename, export_format, pub_dir):
  58. if export_format == 'jpg':
  59. return Path(pub_dir + '\\' + filename[:-4] + 'graph1.jpg')
  60. return Path(pub_dir + '\\' + filename[:-4] + '_0.' + export_format)
  61. def rename_files(pub_dir):
  62. for f in pub_dir.glob('*.jpg'):
  63. if f.exists():
  64. new_name = str(f).replace('graph', '_')
  65. f.replace(Path(new_name))
  66. def cleanup_dir(pub_dir):
  67. for f in pub_dir.glob('*.htm'):
  68. f.unlink()
  69. def prepare_report_temp(config_file):
  70. df = pd.read_csv(cfg.xml_dir + '\\info\\reports.csv', sep=';')
  71. df = df[df['Datei'].str.contains(config_file + '\\.', case=False)]
  72. format_list = [('GIF', 'jpg'), ('PDF', 'pdf'), ('XLS', 'xls')]
  73. for (filter_col, export_format) in format_list:
  74. reports = set(df[df[filter_col] == 'J']['Report'].to_list())
  75. rep_dir = f'{report_dir}\\{config_file}\\{export_format}'
  76. unlink_and_recreate(Path(rep_dir))
  77. for rep in reports:
  78. ppx = f"{report_dir}\\{rep}.ppx"
  79. ppr = f"{report_dir}\\{rep}.ppr"
  80. if Path(ppx).exists():
  81. copy2(ppx, rep_dir)
  82. elif Path(ppr).exists():
  83. copy2(ppr, rep_dir)
  84. def unlink_and_recreate(dirname):
  85. if not dirname.exists():
  86. dirname.mkdir(parents=True)
  87. else:
  88. for f in dirname.glob('*.pp[xr]'):
  89. f.unlink()
  90. if __name__ == '__main__':
  91. # plac.call(portal)
  92. portal()
  93. while True:
  94. time.sleep(60)