123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import typer
- import config
- from misc import apache_ldap
- from misc.csv_cleanup import csv_cleanup
- from misc.headers import create_headerfiles
- app = typer.Typer()
- cfg = config.Config()
- @app.command()
- def headers():
- create_headerfiles(f"{cfg.system_dir}\\Export")
- @app.command()
- def ldap_backup():
- cred = cfg.cognos11.credentials
- apache_ldap.ldap_backup(cred.username, cred.password, f"{cfg.cognos11.config_dir}\\apacheds_backup.ldif")
- @app.command()
- def ldap_restore(backup_file: str):
- cred = cfg.cognos11.credentials
- apache_ldap.restore_ldap(cred.username, cred.password, backup_file)
- @app.command()
- def ldap_password(old_password: str, new_password: str) -> bool:
- return apache_ldap.ldap_change_admin_password(old_password, new_password)
- @app.command()
- def ldap_admin():
- if ldap_password("gc01gapsC$", ""):
- print("Passwort ist bereits aktuell.")
- for p in ["Cognos#11Cognos#11", "mEn$q3b%P9p1j!A-ku", "Never4getpw#!!##"]:
- if ldap_password(p, "gc01gapsC$"):
- break
- @app.command()
- def csv_check(path: str = ""):
- if path == "":
- path = f"{cfg.system_dir}\\export"
- csv_cleanup(path)
- if __name__ == "__main__":
- headers()
|