replaced getUser function with getEntry function

This commit is contained in:
dechutes 2003-03-19 22:46:46 +00:00
parent b1058da8a5
commit eef73e5ce8
2 changed files with 38 additions and 25 deletions

View File

@ -117,29 +117,40 @@ class Ldap{
}
}
// fills the UserEntry object with attributes from the ldap server with the
// given dn of an user entry
function getUser ($in_user_dn) {
$user = new UserEntry();
$attrs = array();
/**
* @brief Populates any given object with the available attributes in the
* LDAP. The names of the member variables of the object must correspond to
* the attribute names in the LDAP server.
*
* @param in_entry_dn distinguished name of entry in ldap
* @param in_object input object to populate
*
* @return populated object
*/
function getEntry ($in_entry_dn, $in_object) {
// read all variables of given object to $vararray
$vararray = get_object_vars ($in_object);
// set attributefilter only to attributes present in given object
$attributefilter = array();
foreach (array_keys ($vararray) as $varname)
$attributefilter[] = $varname;
// filter doesn't matter (we only read one entry)
$filter = "(objectClass=*)";
$resource = ldap_read ($this->server,
$in_user_dn, "(objectClass=*)", $attrs);
$in_entry_dn, $filter, $attributefilter);
$entry = ldap_first_entry ($this->server, $resource);
// attributes which are not multivalued ...
$uid = ldap_get_values ($this->server, $entry, "uid");
$user->setUid ($uid[0]);
$cn = ldap_get_values ($this->server, $entry, "cn");
$user->setCn ($cn[0]);
$sn = ldap_get_values ($this->server, $entry, "sn");
$user->setSn ($sn[0]);
$givenName = ldap_get_values ($this->server, $entry, "givenName");
$user->setGivenName ($givenName[0]);
$homeDirectory = ldap_get_values ($this->server, $entry, "homeDirectory");
$user->setHomeDirectory ($homeDirectory[0]);
return $user;
foreach (array_keys ($vararray) as $varname)
$in_object->$varname = ldap_get_values ($this->server, $entry, $varname);
return $in_object;
}
// closes connection to server
function close() {
ldap_close($this->server);

View File

@ -54,11 +54,13 @@ echo "</tr>";
foreach ($user_dn_list as $user_dn) {
echo "<tr>\n";
$userentry = $ldap->getUser ($user_dn);
echo ("<td class=\"userlist\">" . $userentry->getGivenName() . "</td>");
echo ("<td class=\"userlist\">" . $userentry->getSn() . "</td>");
echo ("<td class=\"userlist\">" . $userentry->getUid() . "</td>");
echo ("<td class=\"userlist\">" . $userentry->gethomeDirectory() . "</td>");
$userentry = new UserEntry();
$userentry = $ldap->getEntry ($user_dn, $userentry);
$ldap->getEntry ($user_dn, $userentry);
echo ("<td class=\"userlist\">" . current ($userentry->getGivenName()) . "</td>");
echo ("<td class=\"userlist\">" . current ($userentry->getSn()) . "</td>");
echo ("<td class=\"userlist\">" . current ($userentry->getUid()) . "</td>");
echo ("<td class=\"userlist\">" . current ($userentry->gethomeDirectory()) . "</td>");
echo "</tr>\n";
}
echo "</table>";