Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix(ldap): correct the LDAP DN during the upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sc979 committed Nov 14, 2019
1 parent 0f476bf commit 9df6718
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions www/install/php/Update-19.10.2.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,43 @@
* For more information : contact@centreon.com
*
*/
include_once __DIR__ . "/../../class/centreonLog.class.php";
$centreonLog = new CentreonLog();

// remove ldap users missing contact name
// these users have been added using the auto-import ldap feature and will be re-imported at their next login.
try {
$pearDB->query(
"DELETE FROM contact WHERE contact_name is NULL"
);
} catch (\PDOException $e) {
$centreonLog->insertLog(
2,
"UPGRADE : 19.10.2 Unable to delete ldap auto-imported users with empty contact_name"
);
}

// correct the DN of manually imported users from an LDAP
try {
// finding the data of contacts linked to an LDAP
$stmt = $this->pearDB->query(
"SELECT contact_id, contact_name, contact_ldap_dn FROM contact WHERE ar_id is NOT NULL"
);
while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
// removing the double slashes if needed and saving the corrected data
if (strpos($row['contact_ldap_dn'], "\\\\")) {
$newDn = str_replace("\\\\", "\\", $row['contact_ldap_dn']);
$updateDB = $this->pearDB->prepare(
"UPDATE contact SET contact_ldap_dn = :newDn WHERE contact_id = :contactId"
);
$updateDB->bindValue(':newDn', $newDn, \PDO::PARAM_STR);
$updateDB->bindValue(':contactId', $row['contact_id'], \PDO::PARAM_INT);
$updateDB->execute();
}
}
} catch (\PDOException $e) {
$centreonLog->insertLog(
2,
"UPGRADE : 19.10.2 Unable to correct the LDAP DN data"
);
}

0 comments on commit 9df6718

Please sign in to comment.