misc2.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import os
  2. import typer
  3. import config
  4. from misc import apache_ldap
  5. from misc.convert_mail_csv import convert_folder_to_combined_csv
  6. from misc.csv_cleanup import csv_cleanup
  7. from misc.datev_status import print_all_mdb_files
  8. from misc.headers import create_headerfiles
  9. app = typer.Typer()
  10. cfg = config.Config()
  11. @app.command()
  12. def headers():
  13. create_headerfiles(f"{cfg.system_dir}\\Export")
  14. @app.command()
  15. def ldap_backup():
  16. cred = cfg.cognos11.credentials
  17. apache_ldap.ldap_backup(cred.username, cred.password, f"{cfg.cognos11.config_dir}\\apacheds_backup.ldif")
  18. @app.command()
  19. def ldap_restore(backup_file: str):
  20. cred = cfg.cognos11.credentials
  21. apache_ldap.restore_ldap(cred.username, cred.password, backup_file)
  22. @app.command()
  23. def ldap_password(old_password: str, new_password: str) -> bool:
  24. return apache_ldap.ldap_change_admin_password(old_password, new_password)
  25. @app.command()
  26. def ldap_admin():
  27. if ldap_password("gc01gapsC$", ""):
  28. print("Passwort ist bereits aktuell.")
  29. for p in ["Cognos#11Cognos#11", "mEn$q3b%P9p1j!A-ku", "Never4getpw#!!##"]:
  30. if ldap_password(p, "gc01gapsC$"):
  31. break
  32. @app.command()
  33. def csv_check(path: str = ""):
  34. if path == "":
  35. path = f"{cfg.system_dir}\\export"
  36. csv_cleanup(path)
  37. @app.command()
  38. def combine_csv(path: str = ""):
  39. if path == "":
  40. path = f"{cfg.xml_dir}"
  41. os.makedirs(path + "\\info", exist_ok=True)
  42. os.makedirs(path + "\\backup", exist_ok=True)
  43. convert_folder_to_combined_csv(path)
  44. @app.command()
  45. def datev_details(path: str = ""):
  46. if path == "":
  47. path = cfg.system_dir
  48. print_all_mdb_files(path)