public SyncEngine(ISyncConfiguration configuration) { if (configuration == null) { throw new ArgumentNullException(nameof(configuration)); } this.configuration = configuration; this.optigem = new OptigemConnector(this.configuration.OptigemDatabasePath); this.logDir = new DirectoryInfo(Path.Combine(this.configuration.OptigemDatabasePath, "syncLogs")); if (!this.logDir.Exists) { this.logDir.Create(); } string ldapConnection = this.optigem.GetLdapConnectionString(); if (string.IsNullOrEmpty(ldapConnection)) { throw new InvalidOperationException("No LDAP connection configured."); } var parser = new LdapConnectionStringParser { ConnectionString = ldapConnection }; this.ldap = new LdapConnector(parser.Server, parser.Port, AuthType.Basic, parser.User, parser.Password, 100, this.configuration.WhatIf); this.groups = new GroupWorker(this.configuration, this.ldap, this.optigem); }
private void OnPasswordSetClicked(object sender, EventArgs e) { var optigem = new OptigemConnector(this.configuration.OptigemDatabasePath); IList <PersonModel> persons = optigem.GetAllPersons(this.txbAddUsername.Text?.Trim()) .ToList(); if (!persons.Any()) { MessageBox.Show("Es konnte kein Benutzer mit dem angegebenen Benutzernamen gefunden werden.", "Fehler...", MessageBoxButtons.OK, MessageBoxIcon.Error); } else if (persons.Count() > 1) { MessageBox.Show("Es wurde mehr als ein Benutzer mit dem angegebenen Benutzernamen gefunden.", "Fehler...", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { var person = persons.First(); var parser = new LdapConnectionStringParser { ConnectionString = optigem.GetLdapConnectionString() }; var ldap = new LdapConnector(parser.Server, parser.Port, AuthType.Basic, parser.User, parser.Password, 100, this.configuration.WhatIf); SearchResultEntry[] searchResult = ldap .PagedSearch($"(&(objectClass=inetOrgPerson)(syncUserId={person.SyncUserId}))", this.configuration.LdapDirectoryBaseDn, LdapBuilder.AllAttributes) .SelectMany(s => s.OfType <SearchResultEntry>()) .ToArray(); if (searchResult.Length == 0) { MessageBox.Show("Der ausgewählte Benutzer ist in LDAP nicht vorhanden." + Environment.NewLine + "Das Passwort kann nicht gesetzt werden.", "Fehler...", MessageBoxButtons.OK, MessageBoxIcon.Error); } else if (searchResult.Length > 1) { MessageBox.Show("Für den Benutzer ist mehr als ein Eintrag in LDAP vorhanden." + Environment.NewLine + "Das Passwort kann nicht gesetzt werden.", "Fehler...", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { var entry = searchResult.First(); var password = new DirectoryAttribute("userpassword", LdapBuilder.GenerateSaltedSha1(person.Password)); bool result = ldap.ModifyEntry(entry.DistinguishedName, new DirectoryAttributeModification[] { password.CreateModification(DirectoryAttributeOperation.Replace) }); if (result) { MessageBox.Show("Das Passwort für den Benutzer wurde zurück gesetzt (siehe Feld in OPTIGEM).", "Passwort zurückgesetzt...", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Beim Zurücksetzen des Passworts is ein Fehler aufgetreten.", "Fehler...", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } }
public GroupWorker(ISyncConfiguration configuration, LdapConnector ldap, OptigemConnector optigem) { if (configuration == null) { throw new ArgumentNullException(nameof(configuration)); } if (ldap == null) { throw new ArgumentNullException(nameof(ldap)); } if (optigem == null) { throw new ArgumentNullException(nameof(optigem)); } this.configuration = configuration; this.ldap = ldap; this.optigem = optigem; }