misc2.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import typer
  2. import config
  3. from misc import apache_ldap
  4. from misc.csv_cleanup import csv_cleanup
  5. from misc.headers import create_headerfiles
  6. app = typer.Typer()
  7. cfg = config.Config()
  8. @app.command()
  9. def headers():
  10. create_headerfiles(f"{cfg.system_dir}\\Export")
  11. @app.command()
  12. def ldap_backup():
  13. cred = cfg.cognos11.credentials
  14. apache_ldap.ldap_backup(cred.username, cred.password, f"{cfg.cognos11.config_dir}\\apacheds_backup.ldif")
  15. @app.command()
  16. def ldap_restore(backup_file: str):
  17. cred = cfg.cognos11.credentials
  18. apache_ldap.restore_ldap(cred.username, cred.password, backup_file)
  19. @app.command()
  20. def ldap_password(old_password: str, new_password: str) -> bool:
  21. return apache_ldap.ldap_change_admin_password(old_password, new_password)
  22. @app.command()
  23. def ldap_admin():
  24. if ldap_password("gc01gapsC$", ""):
  25. print("Passwort ist bereits aktuell.")
  26. for p in ["Cognos#11Cognos#11", "mEn$q3b%P9p1j!A-ku", "Never4getpw#!!##"]:
  27. if ldap_password(p, "gc01gapsC$"):
  28. break
  29. @app.command()
  30. def csv_check(path: str = ""):
  31. if path == "":
  32. path = f"{cfg.system_dir}\\export"
  33. csv_cleanup(path)
  34. if __name__ == "__main__":
  35. headers()