From 9032381df0269ec0e37cf019c5eabf4c39e932bb Mon Sep 17 00:00:00 2001 From: hakasapl Date: Thu, 15 Sep 2022 14:24:17 -0400 Subject: [PATCH] fixed duplicate class issue --- src/PHPOpenLDAPer/LDAPConn.php | 84 --------------------------------- src/PHPOpenLDAPer/LDAPEntry.php | 2 +- 2 files changed, 1 insertion(+), 85 deletions(-) diff --git a/src/PHPOpenLDAPer/LDAPConn.php b/src/PHPOpenLDAPer/LDAPConn.php index f723959..dfdbd9a 100644 --- a/src/PHPOpenLDAPer/LDAPConn.php +++ b/src/PHPOpenLDAPer/LDAPConn.php @@ -84,87 +84,3 @@ public static function stripCount(&$arr) { } } } - - -/** - * Class that represents a connection to an LDAP server - * - * Originally written for UMASS Amherst Research Computing - * - * @author Hakan Saplakoglu - * @version 1.0.0 - * @since 7.2.0 - */ -class ldapConn { - protected $conn; // LDAP link - - /** - * Constructor, starts an ldap connection and binds to a DN - * - * @param string $host Host ldap address of server - * @param string $bind_dn Admin bind dn - * @param string $bind_pass Admin bind pass - */ - public function __construct($host, $bind_dn, $bind_pass) { - $this->conn = ldap_connect($host); - - ldap_set_option($this->conn, LDAP_OPT_PROTOCOL_VERSION, 3); - ldap_bind($this->conn, $bind_dn, $bind_pass); - } - - /** - * Get the connection instance of the LDAP link - * - * @return link_identifier LDAP connection link - */ - public function getConn() { - return $this->conn; - } - - /** - * Runs a search on the LDAP server and returns entries - * - * @param string $filter LDAP_search filter - * @param string $base Search base - * @return array Array of ldapEntry objects - */ - public function search($filter, $base, $recursive = true) { - if ($recursive) { - $search = ldap_search($this->conn, $base, $filter); - } else { - $search = ldap_list($this->conn, $base, $filter); - } - - $search_entries = @ldap_get_entries($this->conn, $search); - self::stripCount($search_entries); - - $output = array(); - for($i = 0; isset($search_entries) && $i < count($search_entries); $i++) { - array_push($output, new ldapEntry($this->conn, $search_entries[$i]["dn"])); - } - - return $output; - } - - /** - * Gets a single entry from the LDAP server - * - * @param string $dn Distinguished name (DN) of requested entry - * @return ldapEntry requested entry object - */ - public function getEntry($dn) { - return new ldapEntry($this->conn, $dn); - } - - /** - * Removes the very annoying "count" attribute that comes out of all ldap search queries (why does that exist? Every language I know can figure out the count itself) - * - * @param array $arr Array passed by reference to modify - */ - public static function stripCount(&$arr) { - if(is_array($arr)) { - unset($arr['count']); - array_walk($arr, "ldapConn::stripCount"); - } - } -} diff --git a/src/PHPOpenLDAPer/LDAPEntry.php b/src/PHPOpenLDAPer/LDAPEntry.php index 56611cb..c59064e 100644 --- a/src/PHPOpenLDAPer/LDAPEntry.php +++ b/src/PHPOpenLDAPer/LDAPEntry.php @@ -354,4 +354,4 @@ public function attributeValueExists($attr, $value) { public function pendingChanges() { return !is_null($this->mods); } -} \ No newline at end of file +}