iId = -1; $this->sUserName = $sNewUserName; $this->sName = $sNewName; $this->sPassword = $sNewPassword; $this->iQuotaMax = $iNewQuotaMax; $this->sEmail = $sNewEmail; $this->sMobile = $sNewMobile; $this->bEmailNotification = $bNewEmailNotification; $this->bSmsNotification = $bNewSmsNotification; $this->sLdapDn = $sNewLdapDn; $this->iMaxSessions = $iNewMaxSessions; $this->iLanguageID = $iNewLanguageID; $this->bPasswordChanged = false; } /** * Get the object's primary key * * @return int object's primary key * */ function getID() { return $this->iId; } /** * Get the user's login name * * @return String user's login name * */ function getUserName() { return $this->sUserName; } /** * Set the user's login name * * @param String New user login name * */ function setUserName($sNewValue) { $this->sUserName = $sNewValue; } /** * Set the user's password * * @param String New user password * */ function setPassword($sNewValue) { $this->sPassword = $sNewValue; $this->bPasswordChanged = true; } /** * Get the user's maximum disk quota * * @return int user's maximum disk quota * */ function getQuotaMax() { return $this->iQuotaMax; } /** * Set the user's maximum disk quota * * @param int User's maximum disk quota in bytes * */ function setQuotaMax($iNewValue) { $this->iQuotaMax = $iNewValue; } /** * Set the user's name * * @param String User's email address * */ function setName($sNewValue) { $this->sName = $sNewValue; } /** * gets the user's name * * @param String User's email address * */ function getName() { return $this->sName; } /** * Get the user's currrently used quota * * @return int user's currently used quota * */ function getQuotaCurrent() { return $this->iQuotaCurrent; } /** * Get the user's email address * * @return String user's email address * */ function getEmail() { return $this->sEmail; } /** * Set the user's email address * * @param String User's email address * */ function setEmail($sNewValue) { $this->sEmail = $sNewValue; } /** * Get the user's mobile phone number * * @return String user's mobile phone number * */ function getMobile() { return $this->sMobile; } /** * Set the user's mobile phone number * * @param String User's mobile phone number * */ function setMobile($sNewValue) { $this->sMobile = $sNewValue; } /** * Get the user's email notification status * * @return boolean user's email notification status * */ function getEmailNotification() { return $this->bEmailNotification; } /** * Set the user's email notification status * * @param boolean User's email notification status (notify by email) * */ function setEmailNotification($bNewValue) { $this->bEmailNotification = KTUtil::anyToBool($bNewValue); } /** * Get the user's SMS (mobile phone) notification status * * @return boolean SMS (mobile phone) notification status * */ function getSmsNotification() { return $this->bSmsNotification; } /** * Set the user's SMS (mobile phone) notification status * * @param boolean User's SMS (mobile phone) notification status (notify by mobile phone) * */ function setSmsNotification($bNewValue) { $this->bSmsNotification = $bNewValue; } /** * Get the user's LDAP distinguished name * * @return String user's LDAP distinguished name * */ function getLdapDn() { return $this->sLdapDn; } /** * Set the user's LDAP distinguished name * * @param String User's LDAP distinguished name * */ function setLdapDn($sNewValue) { $this->sLdapDn = $sNewValue; } /** * Get the user's maximum number of concurrent sessions * * @return int user's maximum number of concurrent sessions * */ function getMaxSessions() { return $this->iMaxSessions; } /** * Set the user's maximum number of concurrent sessions * * @param int User's maximum number of concurrent sessions * */ function setMaxSessions($iNewValue) { $this->iMaxSessions = $iNewValue; } /** * Get the primary key for the language preferred by the user * * @return int primary key of language preferred by user * */ function getLanguageID() { return $this->iLanguageIDID; } /** * Set the primary key of the language preferred by the user * * @param int Primary key of language preferred by user * */ function setLanguageID($iNewValue) { $this->iLanguageIDID = $iNewValue; } function _fieldValues() { return array( 'username' => $this->sUserName, 'name' => $this->sName, 'password' => md5($this->sPassword), 'quota_max' => $this->iQuotaMax, 'quota_current' => 0, 'email' => $this->sEmail, 'mobile' => $this->sMobile, 'email_notification' => KTUtil::anyToBool($this->bEmailNotification), 'sms_notification' => KTUtil::anyToBool($this->bSmsNotification), 'ldap_dn' => $this->sLdapDn, 'max_sessions' => $this->iMaxSessions, 'language_id' => $this->iLanguageID, ); } function _table() { global $default; return $default->users_table; } /** * Delete the current object from the database * * @return boolean true on successful deletion, false otherwise and set $_SESSION["errorMessage"] * */ function deleteFromSystem() { global $default, $lang_err_database, $lang_err_object_key; //only delete the object if it exists in the database if ($this->iId >= 0) { $sql = $default->db; $result = $sql->query("DELETE FROM $default->users_groups_table WHERE user_id = $this->iId"); if ($result) { return true; } $_SESSION["errorMessage"] = $lang_err_database; return false; } $_SESSION["errorMessage"] = $lang_err_object_key; return false; } /** * Static function. * Given a web_documents primary key it will create a * User object and populate it with the * corresponding database values * * @return User populated User object on successful query, false otherwise and set $_SESSION["errorMessage"] */ function & get($iUserID) { global $default; $sql = $default->db; $result = $sql->query(array("SELECT * FROM $default->users_table WHERE id = ?", $iUserID));/*ok*/ if ($result) { if ($sql->next_record()) { $oUser = & new User($sql->f("username"), $sql->f("name"), $sql->f("password"), $sql->f("quota_max"), $sql->f("email"), $sql->f("mobile"), $sql->f("email_notification"), $sql->f("sms_notification"), $sql->f("ldap_dn"), $sql->f("max_sessions"), $sql->f("language_id")); $oUser->iId = $iUserID; return $oUser; } $_SESSION["errorMessage"] = $lang_err_object_not_exist . "id = " . $iUserID . " table = $default->users_table"; return false; } $_SESSION["errorMessage"] = $lang_err_database; return false; } /** * Static function * Get a list of users * * @param String Where clause (not required) * * @return Array array of User objects, false otherwise and set $_SESSION["errorMessage"] */ function getList($sWhereClause = null) { return KTEntityUtil::getList(User::_table(), 'User', $sWhereClause); } /** * Static function * Return the unitIDs of the specified user * * @param int the id the user to lookup the unit for * @return array the unitIDs, false otherwise */ function getUnitIDs($userID) { global $default, $lang_err_database; $sql = $default->db; /*ok*/$result = $sql->query(array("SELECT DISTINCT gul.unit_id FROM $default->users_groups_table ugl " . "INNER JOIN $default->groups_units_table gul ON ugl.group_id = gul.group_id ". "WHERE ugl.user_id = ?", $userID)); if ($result) { $aUnitIDs = array(); while ($sql->next_record()) { $aUnitIDs[] = $sql->f("unit_id"); } return $aUnitIDs; } return false; } /** * Static function * Return the useID for the specified user * * @param int the id the user to lookup the unit for * @return int the unitID, false otherwise and $_SESSION["errorMessage"] set */ function getUnitID($userID) { global $default, $lang_err_database; $sql = $default->db; /*ok*/$result = $sql->query(array("SELECT DISTINCT gul.unit_id FROM $default->users_groups_table ugl " . "INNER JOIN $default->groups_units_table gul ON ugl.group_id = gul.group_id ". "WHERE ugl.user_id = ?", $userID)); if ($result) { if ($sql->next_record()) { return $sql->f("unit_id"); } } $_SESSION["errorMessage"] = $lang_err_database; return false; } /** * static function * * gets the id of a user using their username * * @param string The username for which we want its ID */ function getUserID($sUsername) { global $default; $id = lookupID($default->users_table, "username", $sUsername); $this->iId = $id; } /** Static function * Gets the user's default top level folder for the current user */ function getUserRootFolderID() { global $default; $unitID = User::getUnitID($_SESSION["userID"]); $iFolderID; if ($unitID) { // if the user is in a unit, start at the unit's root folder // lookup the unit name $unitName = lookupField($default->units_table, "name", "id", $unitID); // the unit root folder has the same name as the unit // FIXME: dodgy i know, but its easy $unitRootFolderName = $unitName; // now lookup the folderID $aFolders = Folder::getList(array("name = ? and parent_id = 1", $unitRootFolderName));/*ok*/ if (!$aFolders) { // no folder exists with this name, so start at the root $iFolderID = lookupID($default->folders_table, "parent_id", 0); } else { $iFolderID = $aFolders[0]->getID(); } } else { $iFolderID = lookupID($default->folders_table, "parent_id", 0); } return $iFolderID; } /** * Returns a unit administrator for the current user */ function getUnitAdminUser() { global $default; // find out what unit we're in $iUnitID = User::getUnitID($_SESSION["userID"]); if ($iUnitID) { // then find the group that is unit_admin $sql = $default->db; $sEmail = ""; if ($sql->query(array("SELECT group_id FROM $default->groups_units_table GUL " . /*ok*/ "INNER JOIN $default->groups_table GL on GUL.group_id=GL.id " . "WHERE GL.is_unit_admin=1 " . "AND unit_id = ?", $iUnitID))) { // get the first record if ($sql->next_record()) { $iGroupID = $sql->f("group_id"); // then find the first user in this group that has an email address if ($sql->query(array("SELECT U.id, U.email FROM $default->users_table U " . /*ok*/ "INNER JOIN $default->users_groups_table UGL on UGL.user_id=U.id " . "WHERE group_id = ?", $iGroupID))) { while ($sql->next_record()) { if (strlen($sql->f("email")) > 0) { return User::get($sql->f("id")); } } } } } } return false; } } /** * Static function * * Creates a User object from an array * * @param Array Array of parameters. Must match order of parameters in constructor * * @return User user object */ function & userCreateFromArray($aParameters) { $oUser = & new User($aParameters[0], $aParameters[1], $aParameters[2], $aParameters[3], $aParameters[4], $aParameters[5], $aParameters[6], $aParameters[7], $aParameters[8], $aParameters[9], $aParameters[10]); return $oUser; } ?>