113 bool $a_call_by_reference =
false 119 $this->db = $DIC->database();
122 $this->auth_mode =
"default";
123 $this->passwd_type = self::PASSWD_PLAIN;
124 if ($a_user_id > 0) {
125 $this->
setId($a_user_id);
128 $this->prefs = array();
129 $this->prefs[
"language"] = $this->
ilias->ini->readVariable(
"language",
"default");
130 $this->skin = $this->
ilias->ini->readVariable(
"layout",
"skin");
132 $this->prefs[
"style"] = $this->
ilias->ini->readVariable(
"layout",
"style");
135 $this->app_event_handler = $DIC[
'ilAppEventHandler'];
150 $r =
$ilDB->queryF(
"SELECT * FROM usr_data " .
151 'WHERE usr_id= %s', [
'integer'], [$this->
id]);
156 $data[
"passwd_type"] = self::PASSWD_CRYPTED;
171 if (!isset($this->prefs[
'language']) || $this->prefs[
'language'] ===
'') {
172 $this->prefs[
'language'] = $this->oldPrefs[
'language'] ??
'';
176 !isset($this->prefs[
'skin']) || $this->prefs[
'skin'] ===
'' ||
179 $this->prefs[
'skin'] = $this->oldPrefs[
'skin'] ??
'';
182 $this->skin = $this->prefs[
"skin"];
185 !isset($this->prefs[
'style']) ||
186 $this->prefs[
'style'] ===
'' ||
194 $this->prefs[
"style"] = $this->
ilias->ini->readVariable(
"layout",
"style");
197 if (empty($this->prefs[
"hits_per_page"])) {
198 $this->prefs[
"hits_per_page"] = 10;
201 $ilErr->raiseError(
"<b>Error: There is no dataset with id " .
202 $this->
id .
"!</b><br />class: " . get_class($this) .
"<br />Script: " . __FILE__ .
203 "<br />Line: " . __LINE__,
$ilErr->FATAL);
219 $this->password_encoding_type = $password_encryption_type;
243 $this->
setLogin($a_data[
"login"] ??
'');
244 if (!($a_data[
"passwd_type"] ??
false)) {
245 $ilErr->raiseError(
"<b>Error: passwd_type missing in function assignData(). " .
246 $this->
id .
"!</b><br />class: " . get_class($this) .
"<br />Script: " 247 . __FILE__ .
"<br />Line: " . __LINE__,
$ilErr->FATAL);
249 if (($a_data[
"passwd"] ??
'') !=
"********" && strlen($a_data[
'passwd'] ??
'')) {
250 $this->
setPasswd($a_data[
"passwd"] ??
'', $a_data[
"passwd_type"] ??
'');
253 $this->
setGender((
string) ($a_data[
"gender"] ??
''));
254 $this->
setUTitle((
string) ($a_data[
"title"] ??
''));
255 $this->
setFirstname((
string) ($a_data[
"firstname"] ??
''));
256 $this->
setLastname((
string) ($a_data[
"lastname"] ??
''));
258 if (isset($a_data[
'birthday']) && is_string($a_data[
'birthday'])) {
266 $this->
setDepartment((
string) ($a_data[
"department"] ??
''));
267 $this->
setStreet((
string) ($a_data[
"street"] ??
''));
268 $this->
setCity((
string) ($a_data[
"city"] ??
''));
269 $this->
setZipcode((
string) ($a_data[
"zipcode"] ??
''));
270 $this->
setCountry((
string) ($a_data[
"country"] ??
''));
273 $this->
setPhoneHome((
string) ($a_data[
"phone_home"] ??
''));
275 $this->
setFax((
string) ($a_data[
"fax"] ??
''));
277 $this->
setEmail((
string) ($a_data[
"email"] ??
''));
278 $this->
setSecondEmail((
string) ($a_data[
"second_email"] ?? null));
279 $this->
setHobby((
string) ($a_data[
"hobby"] ??
''));
280 $this->
setClientIP((
string) ($a_data[
"client_ip"] ??
''));
290 $this->
setLastLogin((
string) ($a_data[
"last_login"] ??
''));
291 $this->
setFirstLogin((
string) ($a_data[
"first_login"] ??
''));
293 $this->
setLastUpdate((
string) ($a_data[
"last_update"] ??
''));
294 $this->create_date = $a_data[
"create_date"] ??
"";
295 $this->
setComment((
string) ($a_data[
"referral_comment"] ??
''));
296 $this->approve_date = ($a_data[
"approve_date"] ?? null);
297 $this->active = ($a_data[
"active"] ?? 0);
298 $this->agree_date = ($a_data[
"agree_date"] ?? null);
313 $this->
setAuthMode((
string) ($a_data[
'auth_mode'] ?? null));
328 $ilAppEventHandler = $DIC[
'ilAppEventHandler'];
334 switch ($this->passwd_type) {
335 case self::PASSWD_PLAIN:
336 if (strlen($this->passwd)) {
344 case self::PASSWD_CRYPTED:
349 $ilErr->raiseError(
"<b>Error: passwd_type missing in function saveAsNew. " .
350 $this->
id .
"!</b><br />class: " . get_class($this) .
"<br />Script: " . __FILE__ .
351 "<br />Line: " . __LINE__,
$ilErr->FATAL);
354 if (!$this->active) {
360 $insert_array = array(
361 "usr_id" => array(
"integer", $this->
id),
362 "login" => array(
"text", $this->
login),
363 "passwd" => array(
"text", $pw_value),
366 "firstname" => array(
"text", $this->firstname),
367 "lastname" => array(
"text", $this->lastname),
368 "title" => array(
"text", $this->utitle),
369 "gender" => array(
"text", $this->gender),
370 "email" => array(
"text", trim($this->email)),
371 "second_email" => array(
"text", trim($this->second_email)),
372 "hobby" => array(
"text", $this->hobby),
373 "institution" => array(
"text", $this->institution),
374 "department" => array(
"text", $this->department),
375 "street" => array(
"text", $this->street),
376 "city" => array(
"text", $this->city),
377 "zipcode" => array(
"text", $this->zipcode),
378 "country" => array(
"text", $this->country),
379 "sel_country" => array(
"text", $this->sel_country),
380 "phone_office" => array(
"text", $this->phone_office),
381 "phone_home" => array(
"text", $this->phone_home),
382 "phone_mobile" => array(
"text", $this->phone_mobile),
383 "fax" => array(
"text", $this->fax),
385 "last_login" => array(
"timestamp", null),
386 "first_login" => array(
"timestamp", null),
387 "last_profile_prompt" => array(
"timestamp", null),
388 "last_update" => array(
"timestamp",
ilUtil::now()),
389 "create_date" => array(
"timestamp",
ilUtil::now()),
390 "referral_comment" => array(
"text", $this->referral_comment),
391 "matriculation" => array(
"text", $this->matriculation),
392 "client_ip" => array(
"text", $this->client_ip),
393 "approve_date" => array(
"timestamp", $this->approve_date),
394 "agree_date" => array(
"timestamp", $this->agree_date),
395 "active" => array(
"integer", $this->active),
400 "auth_mode" => array(
"text", $this->
getAuthMode()),
403 "latitude" => array(
"text", $this->latitude),
404 "longitude" => array(
"text", $this->longitude),
405 "loc_zoom" => array(
"integer", (
int) $this->loc_zoom),
406 "last_password_change" => array(
"integer", $this->last_password_change_ts),
407 "passwd_policy_reset" => array(
"integer", (
int) $this->passwd_policy_reset),
408 'inactivation_date' => array(
'timestamp', $this->inactivation_date),
409 'is_self_registered' => array(
'integer', (
int) $this->is_self_registered),
411 $ilDB->insert(
"usr_data", $insert_array);
418 $mbox->createDefaultFolder();
421 $mail_options->createMailOptionsEntry();
423 $ilAppEventHandler->raise(
426 array(
"user_obj" => $this)
442 } elseif ($this->active) {
449 "firstname" => [
"text", substr($this->firstname, 0, 128)],
450 "lastname" => [
"text", substr($this->lastname, 0, 128)],
451 "email" => [
"text", substr(trim($this->email), 0, 128)],
452 "second_email" => [
"text", trim($this->second_email)],
481 "loc_zoom" => [
"integer", (
int) $this->loc_zoom],
482 'login_attempts' => [
'integer', $this->login_attempts],
483 "last_password_change" => [
"integer", $this->last_password_change_ts],
484 "passwd_policy_reset" => [
"integer", $this->passwd_policy_reset],
487 'reg_hash' => [
'text', null]
490 if ($this->agree_date === null || (is_string($this->agree_date) && strtotime($this->agree_date) !==
false)) {
493 switch ($this->passwd_type) {
494 case self::PASSWD_PLAIN:
495 if (strlen($this->passwd)) {
497 $update_array[
'passwd'] = [
'text', $this->
getPasswd()];
503 case self::PASSWD_CRYPTED:
508 $ilErr->raiseError(
"<b>Error: passwd_type missing in function update()" . $this->
id .
"!</b><br />class: " .
509 get_class($this) .
"<br />Script: " . __FILE__ .
"<br />Line: " . __LINE__,
$ilErr->FATAL);
515 $ilDB->update(
"usr_data", $update_array, [
"usr_id" => [
"integer", $this->
id]]);
529 $ilAppEventHandler->raise(
532 [
"user_obj" => $this]
544 $ilDB->manipulateF(
"UPDATE usr_data SET agree_date = " .
$ilDB->now() .
545 " WHERE usr_id = %s", array(
"integer"), array($this->
getId()));
554 $ilDB = $DIC->database();
557 "SELECT " . $a_field .
" FROM usr_data WHERE usr_id = %s",
563 return $set[$a_field];
573 $ilDB = $DIC[
'ilDB'];
575 $set =
$ilDB->queryF(
576 "SELECT title, firstname, lastname FROM usr_data WHERE usr_id = %s",
581 if ($rec =
$ilDB->fetchAssoc($set)) {
583 $fullname = $rec[
"title"] .
" ";
585 if ($rec[
"firstname"]) {
586 $fullname .= $rec[
"firstname"] .
" ";
588 if ($rec[
"lastname"]) {
589 $fullname .= $rec[
"lastname"];
597 return self::_lookup($a_user_id,
"email") ??
'';
602 return (
string) self::_lookup($a_user_id,
"gender") ??
'';
607 return self::_lookup($a_user_id,
"client_ip") ??
'';
618 $ilDB = $DIC[
'ilDB'];
621 "SELECT firstname, lastname, title, login FROM usr_data WHERE usr_id = %s",
625 if ($user_rec =
$ilDB->fetchAssoc(
$res)) {
626 return array(
"user_id" => $a_user_id,
627 "firstname" => $user_rec[
"firstname"],
628 "lastname" => $user_rec[
"lastname"],
629 "title" => $user_rec[
"title"],
630 "login" => $user_rec[
"login"]
633 return array(
"user_id" => 0,
649 $ilDB = $DIC[
'ilDB'];
652 "SELECT * FROM usr_data WHERE usr_id = %s",
662 return (
string) self::_lookup($a_user_id,
"login") ??
'';
667 return (
string) self::_lookup($a_user_id,
"ext_account") ??
'';
678 $ilDB = $DIC[
'ilDB'];
680 if (!is_array($a_user_str)) {
682 "SELECT usr_id FROM usr_data WHERE login = %s",
688 if (is_array($user_rec)) {
689 return (
int) $user_rec[
"usr_id"];
696 "SELECT usr_id FROM usr_data " .
697 " WHERE " .
$ilDB->in(
"login", $a_user_str,
false,
"text")
701 while ($rec =
$ilDB->fetchAssoc($set)) {
702 $ids[] = (
int) $rec[
'usr_id'];
710 return self::_lookup($a_user_id,
"last_login") ??
'';
715 return self::_lookup($a_user_id,
"first_login") ??
'';
728 "UPDATE usr_data SET " .
729 "last_login = " .
$ilDB->now() .
730 " WHERE usr_id = %s",
737 "UPDATE usr_data SET " .
738 "first_login = " .
$ilDB->now() .
739 " WHERE usr_id = %s",
743 $this->app_event_handler->raise(
746 array(
"user_obj" => $this)
766 if (func_num_args() != 2) {
770 if (!isset($raw) || !isset($raw_retype)) {
774 if ($raw != $raw_retype) {
782 SET passwd = %s, passwd_enc_type = %s, passwd_salt = %s 784 array(
'text',
'text',
'text',
'integer'),
798 $ilDB = $DIC->database();
802 SELECT * FROM loginname_history 821 $ilDB = $DIC[
'ilDB'];
823 $ilDB->setLimit(1, 0);
826 SELECT login, history_date FROM loginname_history 827 WHERE usr_id = %s ORDER BY history_date DESC',
832 if (!is_array($row) || !count($row)) {
837 $row[
'login'], $row[
'history_date']
854 $lng = $DIC->language();
856 if (func_num_args() != 1) {
860 if (!isset($a_login)) {
864 $former_login = self::_lookupLogin($this->
getId());
867 if (0 == strcmp($a_login, $former_login)) {
872 $last_history_entry = self::_getLastHistoryDataByUserId($this->
getId());
874 $last_history_entry = null;
878 if ((
int)
$ilSetting->get(
'allow_change_loginname') &&
880 self::_doesLoginnameExistInHistory($a_login)) {
882 } elseif ((
int)
$ilSetting->get(
'allow_change_loginname') &&
884 is_array($last_history_entry) &&
885 $last_history_entry[1] + (
int)
$ilSetting->get(
'loginname_change_blocking_time') > time()) {
888 $lng->
txt(
'changing_loginname_not_possible_info'),
899 if ((
int)
$ilSetting->get(
'allow_change_loginname') &&
901 self::_writeHistory($this->
getId(), $former_login);
905 $this->
login = $a_login;
912 array(
'text',
'integer'),
924 self::_writePref($this->
id, $a_keyword, $a_value);
925 $this->
setPref($a_keyword, $a_value);
930 self::_deletePref($this->
getId(), $a_keyword);
933 public static function _deletePref(
int $a_user_id,
string $a_keyword): void
937 $ilDB = $DIC->database();
940 'DELETE FROM usr_pref WHERE usr_id = %s AND keyword = %s',
941 array(
'integer',
'text'),
942 array($a_user_id, $a_keyword)
953 $ilDB = $DIC->database();
956 "DELETE FROM usr_pref WHERE usr_id = %s",
969 $ilDB = $DIC->database();
973 "usr_id" => array(
"integer", $a_usr_id),
974 "keyword" => array(
"text", $a_keyword),
977 "value" => array(
"text",$a_value)
984 self::_deleteAllPref($this->
id);
985 foreach ($this->prefs as $keyword => $value) {
986 self::_writePref($this->
id, $keyword, (
string) $value);
992 if ($tz = $this->
getPref(
'user_tz')) {
1006 return $settings->getDefaultTimeFormat();
1016 return $settings->getDefaultDateFormat();
1020 public function setPref(
string $a_keyword, ?
string $a_value): void
1022 if ($a_keyword !=
"") {
1023 $this->prefs[$a_keyword] = $a_value;
1027 public function getPref(
string $a_keyword): ?string
1029 return $this->prefs[$a_keyword] ?? null;
1034 return (array_key_exists($a_keyword, $this->prefs));
1043 $ilDB = $DIC[
'ilDB'];
1045 $query =
"SELECT * FROM usr_pref WHERE usr_id = " .
$ilDB->quote($a_usr_id,
"integer") .
" " .
1046 "AND keyword = " .
$ilDB->quote($a_keyword,
"text");
1057 if (is_array($this->prefs)) {
1060 $this->prefs = self::_getPreferences($this->
id);
1063 public function delete():
bool 1067 $rbacadmin = $DIC->rbac()->admin();
1072 $mapping->deleteUser($this->
getId());
1077 $mailbox->updateMailsOfDeletedUser($this->
getLogin());
1084 "DELETE FROM usr_data WHERE usr_id = %s",
1086 array($this->
getId())
1092 self::_deleteAllPref($this->
getId());
1100 $rbacadmin->removeUser($this->
getId());
1104 $q =
"DELETE FROM bookmark_tree WHERE tree = " .
1106 $ilDB->manipulate($q);
1108 $q =
"DELETE FROM bookmark_data WHERE user_id = " .
1110 $ilDB->manipulate($q);
1134 $tree->cascadingDelete();
1144 $ilOrgUnitUserAssignmentQueries->deleteAllAssignmentsOfUser($this->
getId());
1158 $ilAppEventHandler = $DIC[
'ilAppEventHandler'];
1159 $ilAppEventHandler->raise(
1162 array(
'usr_id' => $this->
getId())
1177 $this->fullname = ($this->utitle !=
"")
1178 ? $this->utitle .
" " 1180 $this->fullname .= $this->firstname .
" ";
1198 if (!$a_max_strlen) {
1202 if (strlen($this->fullname) <= $a_max_strlen) {
1206 if ((strlen($this->utitle) + strlen($this->lastname) + 4) <= $a_max_strlen) {
1207 return ilUtil::stripSlashes($this->utitle .
" " . substr($this->firstname, 0, 1) .
". " . $this->lastname);
1210 if ((strlen($this->firstname) + strlen($this->lastname) + 1) <= $a_max_strlen) {
1214 if ((strlen($this->lastname) + 3) <= $a_max_strlen) {
1223 $this->
login = $a_str;
1235 $this->passwd = $a_str;
1236 $this->passwd_type = $a_type;
1257 $this->gender = substr($a_str, -1);
1272 $this->utitle = $a_str;
1282 $this->firstname = $a_str;
1292 $this->lastname = $a_str;
1302 $this->institution = $a_str;
1312 $this->department = $a_str;
1322 $this->street = $a_str;
1332 $this->city = $a_str;
1342 $this->zipcode = $a_str;
1352 $this->country = $a_str;
1365 $this->sel_country = $a_val;
1378 $this->phone_office = $a_str;
1388 $this->phone_home = $a_str;
1398 $this->phone_mobile = $a_str;
1408 $this->fax = $a_str;
1418 $this->client_ip = $a_str;
1428 $this->matriculation = $a_str;
1440 $ilDB = $DIC[
'ilDB'];
1442 $query =
"SELECT matriculation FROM usr_data " .
1443 "WHERE usr_id = " .
$ilDB->quote($a_usr_id);
1446 return $row->matriculation ?:
'';
1451 $this->email = $a_str;
1471 $this->hobby = $a_str;
1481 $this->
setPref(
"language", $a_str);
1487 return $this->prefs[
"language"];
1492 $this->last_password_change_ts = $a_last_password_change_ts;
1507 $this->passwd_policy_reset = $status;
1514 $ilDB = $DIC->database();
1515 $lng = $DIC->language();
1517 $q =
"SELECT value FROM usr_pref WHERE usr_id= " .
1518 $ilDB->quote($a_usr_id,
"integer") .
" AND keyword = " .
1519 $ilDB->quote(
'language',
"text");
1520 $r =
$ilDB->query($q);
1522 while ($row =
$ilDB->fetchAssoc($r)) {
1523 return (
string) $row[
'value'];
1525 if (is_object(
$lng)) {
1537 $ilDB = $DIC[
'ilDB'];
1540 "UPDATE usr_data " .
1541 " SET ext_account = %s WHERE usr_id = %s",
1542 array(
"text",
"integer"),
1543 array($a_ext_id, $a_usr_id)
1551 $ilDB = $DIC[
'ilDB'];
1554 "UPDATE usr_data " .
1555 " SET auth_mode = %s WHERE usr_id = %s",
1556 array(
"text",
"integer"),
1557 array($a_auth_mode, $a_usr_id)
1579 $this->last_login = $a_str;
1589 $this->first_login = $a_str;
1599 $this->last_profile_prompt = $a_str;
1609 $this->last_update = $a_str;
1619 $this->referral_comment = $a_str;
1633 $this->approve_date = $a_str;
1647 $this->agree_date = $a_str;
1679 $ilDB = $DIC[
'ilDB'];
1681 $query =
'SELECT usr_id FROM usr_data ' .
1682 'WHERE active = ' .
$ilDB->quote(1,
'integer') .
' ' .
1683 'AND usr_id = ' .
$ilDB->quote($a_usr_id,
'integer');
1704 if ($this->active) {
1708 if ((!empty($storedActive) && empty($currentActive)) ||
1709 (empty($storedActive) && !empty($currentActive))) {
1710 $this->
setActive($currentActive, self::getUserIdByLogin(self::getLoginFromAuth()));
1719 return (
bool) self::_lookup($a_id,
"active");
1724 $this->skin = $a_str;
1729 $this->time_limit_owner = $a_owner;
1734 return $this->time_limit_owner ?: 7;
1739 $this->time_limit_from = $a_from;
1749 $this->time_limit_until = $a_until;
1759 $this->time_limit_unlimited = $a_unlimited;
1769 $this->time_limit_message = $a_time_limit_message;
1779 $this->login_attempts = $a_login_attempts;
1800 $this->profile_incomplete = $a_prof_inc;
1831 $passwordResetOnFirstLogin = (
1832 $security->isPasswordChangeOnFirstLoginEnabled() &&
1837 return ($authModeAllowsPasswordChange && ($passwordResetOnFirstLogin || $passwordResetOnChangedPolicy));
1848 $max_pass_age = $security->getPasswordMaxAge();
1849 if ($max_pass_age > 0) {
1850 $max_pass_age_ts = ($max_pass_age * 86400);
1852 $current_ts = time();
1854 if (($current_ts - $pass_change_ts) > $max_pass_age_ts) {
1867 $current_ts = time();
1869 $password_age = (
int) (($current_ts - $pass_change_ts) / 86400);
1870 return $password_age;
1877 $ilDB = $DIC[
'ilDB'];
1881 $query =
"UPDATE usr_data SET last_password_change = %s " .
1882 "WHERE usr_id = %s";
1883 $affected =
$ilDB->manipulateF(
1885 array(
'integer',
'integer'),
1899 $query =
"UPDATE usr_data SET last_password_change = 0 " .
1900 "WHERE usr_id = %s";
1901 $affected =
$ilDB->manipulateF(
1904 array($this->
getId())
1915 $this->latitude = $a_latitude;
1925 $this->longitude = $a_longitude;
1935 $this->loc_zoom = $a_locationzoom;
1946 string $a_session_id
1950 $ilDB = $DIC[
'ilDB'];
1952 $set =
$ilDB->queryf(
1954 SELECT COUNT(*) session_count 1955 FROM usr_session WHERE user_id = %s AND expires > %s AND session_id != %s ',
1956 array(
'integer',
'integer',
'text'),
1957 array($a_user_id, time(), $a_session_id)
1959 $row =
$ilDB->fetchAssoc($set);
1960 return (
bool) $row[
'session_count'];
1968 $login = self::getLoginFromAuth();
1969 $id = self::_lookupId($login);
1981 $uid =
$GLOBALS[
'DIC'][
'ilAuthSession']->getUserId();
1982 $login = self::_lookupLogin($uid);
1986 $login = self::toUsernameWithoutDomain($login);
1999 $pos = strrpos($a_login,
'/');
2000 $pos2 = strrpos($a_login,
'\\');
2001 if ($pos ===
false || $pos < $pos2) {
2005 $a_login = substr($a_login, $pos + 1);
2017 $login = self::getLoginFromAuth();
2018 $set =
$ilDB->queryF(
2019 "SELECT active FROM usr_data WHERE login= %s",
2024 if ($rec =
$ilDB->fetchAssoc($set)) {
2025 if ($rec[
"active"]) {
2035 return (
int) self::_lookupId($a_login);
2045 $ilDB = $DIC->database();
2048 "SELECT usr_id FROM usr_data " .
2049 "WHERE email = %s and active = 1",
2054 while ($row =
$ilDB->fetchObject(
$res)) {
2055 $ids[] = (
int) $row->usr_id;
2069 $ilDB = $DIC->database();
2072 "SELECT login FROM usr_data " .
2073 "WHERE email = %s and active = 1",
2078 while ($row =
$ilDB->fetchObject(
$res)) {
2079 $ids[] = $row->login;
2087 $login = self::_lookupLogin($a_userid);
2088 return $login ?: null;
2094 public static function getAllUserLogins(): array
2101 $ilDB = $DIC[
'ilDB'];
2108 while ($row =
$ilDB->fetchAssoc(
$res)) {
2109 $logins[] = $row[
'login'];
2123 $ilDB = $DIC[
'ilDB'];
2124 $res =
$ilDB->query(
"SELECT * FROM usr_data WHERE " .
2125 $ilDB->in(
"usr_id", $a_user_ids,
false,
"integer"));
2127 while ($row =
$ilDB->fetchAssoc(
$res)) {
2128 $user_data[$row[
'usr_id']] = $row;
2139 ?array $a_fields = null,
2144 $ilDB = $DIC[
'ilDB'];
2146 $result_arr = array();
2148 if ($a_fields !== null and is_array($a_fields)) {
2149 if (count($a_fields) == 0) {
2152 if (($usr_id_field = array_search(
"usr_id", $a_fields)) !==
false) {
2153 unset($a_fields[$usr_id_field]);
2156 $select = implode(
",", $a_fields) .
",usr_data.usr_id";
2158 if (in_array(
'online_time', $a_fields)) {
2159 $select .=
",ut_online.online_time ";
2163 $q =
"SELECT " . $select .
" FROM usr_data ";
2167 if (in_array(
'online_time', $a_fields)) {
2168 $q .=
"LEFT JOIN ut_online ON usr_data.usr_id = ut_online.usr_id ";
2174 $q .=
"WHERE active = " .
$ilDB->quote($active,
"integer");
2177 $q .=
"WHERE time_limit_unlimited= " .
$ilDB->quote(0,
"integer");
2180 $qtemp = $q .
", rbac_ua, object_data WHERE rbac_ua.rol_id = object_data.obj_id AND " .
2181 $ilDB->like(
"object_data.title",
"text",
"%crs%") .
" AND usr_data.usr_id = rbac_ua.usr_id";
2182 $r =
$ilDB->query($qtemp);
2183 $course_users = array();
2184 while ($row =
$ilDB->fetchAssoc($r)) {
2185 $course_users[] = $row[
"usr_id"];
2187 if (count($course_users)) {
2188 $q .=
" WHERE " .
$ilDB->in(
"usr_data.usr_id", $course_users,
true,
"integer") .
" ";
2195 $date = strftime(
"%Y-%m-%d %H:%I:%S", mktime(0, 0, 0, $session_data[
"m"], $session_data[
"d"], $session_data[
"y"]));
2196 $q .=
" AND last_login < " .
$ilDB->quote($date,
"timestamp");
2201 $q .=
" LEFT JOIN obj_members ON usr_data.usr_id = obj_members.usr_id " .
2202 "WHERE obj_members.obj_id = (SELECT obj_id FROM object_reference " .
2203 "WHERE ref_id = " .
$ilDB->quote(
$ref_id,
"integer") .
") ";
2209 $rbacreview = $DIC[
'rbacreview'];
2212 $local_roles = $rbacreview->getRolesOfRoleFolder(
$ref_id,
false);
2213 if (is_array($local_roles) && count($local_roles)) {
2214 $q .=
" LEFT JOIN rbac_ua ON usr_data.usr_id = rbac_ua.usr_id WHERE " .
2215 $ilDB->in(
"rbac_ua.rol_id", $local_roles,
false,
"integer") .
" ";
2222 $q .=
" LEFT JOIN rbac_ua ON usr_data.usr_id = rbac_ua.usr_id WHERE rbac_ua.rol_id = " .
2223 $ilDB->quote($rol_id,
"integer");
2227 $r =
$ilDB->query($q);
2229 while ($row =
$ilDB->fetchAssoc($r)) {
2230 $result_arr[] = $row;
2243 $ilDB = $DIC[
'ilDB'];
2245 $q =
"SELECT count(*) as cnt FROM usr_pref up1, usr_pref up2 " .
2246 " WHERE up1.keyword= " .
$ilDB->quote(
"style",
"text") .
2247 " AND up1.value= " .
$ilDB->quote($a_style,
"text") .
2248 " AND up2.keyword= " .
$ilDB->quote(
"skin",
"text") .
2249 " AND up2.value= " .
$ilDB->quote($a_skin,
"text") .
2250 " AND up1.usr_id = up2.usr_id ";
2252 $cnt_set =
$ilDB->query($q);
2254 $cnt_rec =
$ilDB->fetchAssoc($cnt_set);
2256 return (
int) $cnt_rec[
"cnt"];
2266 $ilDB = $DIC[
'ilDB'];
2268 $q =
"SELECT DISTINCT up1.value style, up2.value skin FROM usr_pref up1, usr_pref up2 " .
2269 " WHERE up1.keyword = " .
$ilDB->quote(
"style",
"text") .
2270 " AND up2.keyword = " .
$ilDB->quote(
"skin",
"text") .
2271 " AND up1.usr_id = up2.usr_id";
2273 $sty_set =
$ilDB->query($q);
2276 while ($sty_rec =
$ilDB->fetchAssoc($sty_set)) {
2277 $styles[] = $sty_rec[
"skin"] .
":" . $sty_rec[
"style"];
2284 string $a_from_skin,
2285 string $a_from_style,
2291 $ilDB = $DIC[
'ilDB'];
2293 $q =
"SELECT up1.usr_id usr_id FROM usr_pref up1, usr_pref up2 " .
2294 " WHERE up1.keyword= " .
$ilDB->quote(
"style",
"text") .
2295 " AND up1.value= " .
$ilDB->quote($a_from_style,
"text") .
2296 " AND up2.keyword= " .
$ilDB->quote(
"skin",
"text") .
2297 " AND up2.value= " .
$ilDB->quote($a_from_skin,
"text") .
2298 " AND up1.usr_id = up2.usr_id ";
2300 $usr_set =
$ilDB->query($q);
2302 while ($usr_rec =
$ilDB->fetchAssoc($usr_set)) {
2303 self::_writePref($usr_rec[
"usr_id"],
"skin", $a_to_skin);
2304 self::_writePref($usr_rec[
"usr_id"],
"style", $a_to_style);
2326 string $a_time =
"",
2331 $ilDB = $DIC[
'ilDB'];
2333 if ($a_time ===
"") {
2334 $a_time = date(
"Y-m-d H:i:s");
2337 $item_set =
$ilDB->queryF(
2338 "SELECT * FROM personal_clipboard WHERE " .
2339 "parent = %s AND item_id = %s AND type = %s AND user_id = %s",
2340 array(
"integer",
"integer",
"text",
"integer"),
2341 array(0, $a_item_id, $a_type, $this->
getId())
2345 if (!$item_set->fetchRow()) {
2347 "INSERT INTO personal_clipboard " .
2348 "(item_id, type, user_id, title, parent, insert_time, order_nr) VALUES " .
2349 " (%s,%s,%s,%s,%s,%s,%s)",
2350 array(
"integer",
"text",
"integer",
"text",
"integer",
"timestamp",
"integer"),
2351 array($a_item_id, $a_type, $this->
getId(), $a_title, $a_parent, $a_time, $a_order_nr)
2355 "UPDATE personal_clipboard SET insert_time = %s " .
2356 "WHERE user_id = %s AND item_id = %s AND type = %s AND parent = 0",
2357 array(
"timestamp",
"integer",
"integer",
"text"),
2358 array($a_time, $this->
getId(), $a_item_id, $a_type)
2374 $a_time = date(
"Y-m-d H:i:s");
2377 $ilDB->insert(
"personal_pc_clipboard", array(
2378 "user_id" => array(
"integer", $this->
getId()),
2379 "content" => array(
"clob", $a_content),
2380 "insert_time" => array(
"timestamp", $a_time),
2381 "order_nr" => array(
"integer", $a_nr)
2397 $set =
$ilDB->queryF(
"SELECT MAX(insert_time) mtime FROM personal_pc_clipboard " .
2398 " WHERE user_id = %s", array(
"integer"), array($this->
getId()));
2399 $row =
$ilDB->fetchAssoc($set);
2401 $set =
$ilDB->queryF(
2402 "SELECT * FROM personal_pc_clipboard " .
2403 " WHERE user_id = %s AND insert_time = %s ORDER BY order_nr ASC",
2404 array(
"integer",
"timestamp"),
2405 array($this->
getId(), $row[
"mtime"])
2408 while ($row =
$ilDB->fetchAssoc($set)) {
2409 $content[] = $row[
"content"];
2422 $ilDB = $DIC[
'ilDB'];
2424 $set =
$ilDB->queryF(
2425 "SELECT * FROM personal_clipboard WHERE " .
2426 "parent = %s AND type = %s AND user_id = %s",
2427 array(
"integer",
"text",
"integer"),
2428 array(0, $a_type, $this->
getId())
2430 if (
$ilDB->fetchAssoc($set)) {
2442 "DELETE FROM personal_clipboard WHERE " .
2443 "type = %s AND user_id = %s",
2444 array(
"text",
"integer"),
2445 array($a_type, $this->
getId())
2453 $ilDB = $DIC[
'ilDB'];
2455 $ilDB->manipulateF(
"DELETE FROM personal_clipboard WHERE " .
2456 "user_id = %s", array(
"integer"), array($this->
getId()));
2463 string $a_type =
"",
2464 bool $a_top_nodes_only =
false 2468 $ilDB = $DIC[
'ilDB'];
2471 if ($a_top_nodes_only) {
2472 $par =
" AND parent = " .
$ilDB->quote(0,
"integer") .
" ";
2475 $type_str = ($a_type !=
"")
2476 ?
" AND type = " .
$ilDB->quote($a_type,
"text") .
" " 2478 $q =
"SELECT * FROM personal_clipboard WHERE " .
2479 "user_id = " .
$ilDB->quote($this->
getId(),
"integer") .
" " .
2481 " ORDER BY order_nr";
2482 $objs =
$ilDB->query($q);
2484 while ($obj =
$ilDB->fetchAssoc($objs)) {
2485 if ($obj[
"type"] ==
"mob") {
2491 if ($obj[
"type"] ==
"incl") {
2497 $objects[] = array(
"id" => $obj[
"item_id"],
2498 "type" => $obj[
"type"],
"title" => $obj[
"title"],
2499 "insert_time" => $obj[
"insert_time"]);
2509 string $a_insert_time
2513 $ilDB = $DIC[
'ilDB'];
2516 $objs =
$ilDB->queryF(
2517 "SELECT * FROM personal_clipboard WHERE " .
2518 "user_id = %s AND parent = %s AND insert_time = %s " .
2519 " ORDER BY order_nr",
2520 array(
"integer",
"integer",
"timestamp"),
2521 array(
$ilUser->getId(), $a_parent, $a_insert_time)
2524 while ($obj =
$ilDB->fetchAssoc($objs)) {
2525 if ($obj[
"type"] ==
"mob") {
2528 $objects[] = array(
"id" => $obj[
"item_id"],
2529 "type" => $obj[
"type"],
"title" => $obj[
"title"],
"insert_time" => $obj[
"insert_time"]);
2544 $ilDB = $DIC[
'ilDB'];
2546 $q =
"SELECT DISTINCT user_id FROM personal_clipboard WHERE " .
2547 "item_id = " .
$ilDB->quote($a_id,
"integer") .
" AND " .
2548 "type = " .
$ilDB->quote($a_type,
"text");
2549 $user_set =
$ilDB->query($q);
2551 while ($user_rec =
$ilDB->fetchAssoc($user_set)) {
2552 $users[] = (
int) $user_rec[
"user_id"];
2564 $q =
"DELETE FROM personal_clipboard WHERE " .
2565 "item_id = " .
$ilDB->quote($a_item_id,
"integer") .
2566 " AND type = " .
$ilDB->quote($a_type,
"text") .
" " .
2567 " AND user_id = " .
$ilDB->quote($this->
getId(),
"integer");
2568 $ilDB->manipulate($q);
2576 $ilDB = $DIC[
'ilDB'];
2578 $query =
"SELECT obj_id FROM object_data WHERE import_id = " .
2579 $ilDB->quote($i2_id,
"text");
2583 while ($row =
$ilDB->fetchObject(
$res)) {
2584 $id = (
int) $row->obj_id;
2595 return ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits($a_usr_id);
2600 return self::lookupOrgUnitsRepresentation($this->
getId());
2605 $this->auth_mode = $a_str;
2618 $this->ext_account = $a_str;
2633 string $a_auth_mode,
2634 bool $a_read_auth_default =
false 2638 $ilDB = $DIC[
'ilDB'];
2641 $q =
"SELECT login,usr_id,ext_account,auth_mode FROM usr_data " .
2642 "WHERE auth_mode = %s";
2644 $values[] = $a_auth_mode;
2646 $q .=
" OR auth_mode = %s ";
2648 $values[] =
'default';
2651 $res =
$ilDB->queryF($q, $types, $values);
2653 while ($row =
$ilDB->fetchObject(
$res)) {
2654 if ($row->auth_mode ==
'default') {
2655 $accounts[$row->usr_id] = $row->login;
2657 $accounts[$row->usr_id] = $row->ext_account;
2669 $ilDB = $DIC[
'ilDB'];
2672 $q =
"UPDATE usr_data SET active = 1, inactivation_date = NULL WHERE " .
2673 $ilDB->in(
"usr_id", $a_usr_ids,
false,
"integer");
2674 $ilDB->manipulate($q);
2676 $usrId_IN_usrIds =
$ilDB->in(
"usr_id", $a_usr_ids,
false,
"integer");
2678 $q =
"UPDATE usr_data SET active = 0 WHERE $usrId_IN_usrIds";
2679 $ilDB->manipulate($q);
2683 SET inactivation_date = %s 2684 WHERE inactivation_date IS NULL 2685 AND $usrId_IN_usrIds 2687 $ilDB->manipulateF($queryString, array(
'timestamp'), array(
ilUtil::now()));
2693 return (
string) self::_lookup($a_usr_id,
"auth_mode");
2703 bool $tryFallback =
true 2710 "SELECT * FROM usr_data WHERE " .
2711 " ext_account = %s AND auth_mode = %s",
2712 array(
"text",
"text"),
2713 array($a_account, $a_auth)
2716 return $usr[
"login"];
2719 if (!$tryFallback) {
2725 "SELECT login FROM usr_data " .
2726 "WHERE login = %s AND auth_mode = %s AND (ext_account IS NULL OR ext_account = '') ",
2727 array(
"text",
"text"),
2728 array($a_account, $a_auth)
2731 return $usr[
'login'];
2737 "SELECT login FROM usr_data WHERE " .
2738 " ext_account = %s AND auth_mode = %s",
2739 array(
"text",
"text"),
2740 array($a_account,
"default")
2743 return $usr[
"login"];
2747 "SELECT login FROM usr_data " .
2748 "WHERE login = %s AND (ext_account IS NULL OR ext_account = '') AND auth_mode = %s",
2749 array(
"text",
"text"),
2750 array($a_account,
"default")
2753 return $usr[
"login"];
2766 $ilDB = $DIC[
'ilDB'];
2768 $r =
$ilDB->query(
"SELECT count(*) AS cnt, auth_mode FROM usr_data " .
2769 "GROUP BY auth_mode");
2771 while ($cnt =
$ilDB->fetchAssoc($r)) {
2772 $cnt_arr[$cnt[
"auth_mode"]] = (
int) $cnt[
"cnt"];
2782 $ilDB = $DIC[
'ilDB'];
2787 $q =
"SELECT * FROM usr_data WHERE " .
2788 " email = %s AND (auth_mode = %s ";
2789 $types = array(
"text",
"text");
2790 $values = array($a_email,
"local");
2793 $q .=
" OR auth_mode = %s";
2795 $values[] =
"default";
2801 $usr_set =
$ilDB->queryF($q, $types, $values);
2802 while ($usr_rec =
$ilDB->fetchAssoc($usr_set)) {
2803 $users[$usr_rec[
"usr_id"]] = $usr_rec[
"login"];
2819 $image_dir = $webspace_dir .
"/usr_images";
2821 $store_file =
"usr_" . $obj_id .
"." .
"jpg";
2823 chmod($tmp_file, 0770);
2827 $show_file =
"$image_dir/usr_" . $obj_id .
".jpg";
2828 $thumb_file =
"$image_dir/usr_" . $obj_id .
"_small.jpg";
2829 $xthumb_file =
"$image_dir/usr_" . $obj_id .
"_xsmall.jpg";
2830 $xxthumb_file =
"$image_dir/usr_" . $obj_id .
"_xxsmall.jpg";
2834 $tmp_file .
"[0] -geometry 200x200^ -gravity center -extent 200x200 -quality 100 JPEG:" . $show_file
2837 $tmp_file .
"[0] -geometry 100x100^ -gravity center -extent 100x100 -quality 100 JPEG:" . $thumb_file
2840 $tmp_file .
"[0] -geometry 75x75^ -gravity center -extent 75x75 -quality 100 JPEG:" . $xthumb_file
2843 $tmp_file .
"[0] -geometry 30x30^ -gravity center -extent 30x30 -quality 100 JPEG:" . $xxthumb_file
2853 self::_writePref($obj_id,
"profile_image", $store_file);
2864 string $a_size =
"small",
2865 bool $a_force_pic =
false 2867 if (isset(self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic])) {
2868 return self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic];
2871 self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic] = self::_getPersonalPicturePath($this->
getId(), $a_size, $a_force_pic);
2873 return self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic];
2878 return self::_getAvatar($this->
getId());
2884 return $define->getAvatar();
2893 string $a_size =
"small",
2894 bool $a_force_pic =
false,
2895 bool $a_prevent_no_photo_image =
false,
2896 bool $html_export =
false 2899 $define->setForcePicture($a_force_pic);
2900 $define->setSize($a_size);
2908 $a_dir = trim(str_replace(
"..",
"", $a_dir));
2909 if ($a_dir ==
"" || !is_dir($a_dir)) {
2914 $image_dir = $webspace_dir .
"/usr_images";
2916 "upload_" . $a_user_id .
"pic",
2917 "usr_" . $a_user_id .
"." .
"jpg",
2918 "usr_" . $a_user_id .
"_small.jpg",
2919 "usr_" . $a_user_id .
"_xsmall.jpg",
2920 "usr_" . $a_user_id .
"_xxsmall.jpg",
2921 "upload_" . $a_user_id);
2922 foreach ($images as $image) {
2923 if (is_file($image_dir .
"/" . $image)) {
2924 copy($image_dir .
"/" . $image, $a_dir .
"/" . $image);
2931 bool $a_do_update =
true 2934 $image_dir = $webspace_dir .
"/usr_images";
2935 $file = $image_dir .
"/usr_" . $this->
getId() .
"." .
"jpg";
2936 $thumb_file = $image_dir .
"/usr_" . $this->
getId() .
"_small.jpg";
2937 $xthumb_file = $image_dir .
"/usr_" . $this->
getId() .
"_xsmall.jpg";
2938 $xxthumb_file = $image_dir .
"/usr_" . $this->
getId() .
"_xxsmall.jpg";
2939 $upload_file = $image_dir .
"/upload_" . $this->
getId();
2943 $this->
setPref(
"profile_image",
"");
2947 if (is_file($file)) {
2950 if (is_file($thumb_file)) {
2951 unlink($thumb_file);
2953 if (is_file($xthumb_file)) {
2954 unlink($xthumb_file);
2956 if (is_file($xxthumb_file)) {
2957 unlink($xxthumb_file);
2959 if (is_file($upload_file)) {
2960 unlink($upload_file);
2967 foreach ($a_data as $field =>
$data) {
2968 $this->user_defined_data[
'f_' . $field] =
$data;
2974 return $this->user_defined_data ?: array();
2980 foreach ($this->user_defined_data as $field => $value) {
2981 if ($field !==
'usr_id' && $value !== null) {
2982 $udata->set($field, $value);
2991 $this->user_defined_data = $udata->getAll();
3003 public function getProfileAsString(
ilLanguage $language):
string 3007 $rbacreview = $DIC[
'rbacreview'];
3012 $body = ($language->
txt(
"login") .
": " . $this->
getLogin() .
"\n");
3015 $body .= ($language->
txt(
"title") .
": " . $this->
getUTitle() .
"\n");
3018 $body .= ($language->
txt(
"gender") .
": " . $language->
txt(
'gender_' . strtolower($this->
getGender())) .
"\n");
3021 $body .= ($language->
txt(
"firstname") .
": " . $this->
getFirstname() .
"\n");
3024 $body .= ($language->
txt(
"lastname") .
": " . $this->
getLastname() .
"\n");
3027 $body .= ($language->
txt(
"institution") .
": " . $this->
getInstitution() .
"\n");
3030 $body .= ($language->
txt(
"department") .
": " . $this->
getDepartment() .
"\n");
3033 $body .= ($language->
txt(
"street") .
": " . $this->
getStreet() .
"\n");
3035 if (strlen($this->
getCity())) {
3036 $body .= ($language->
txt(
"city") .
": " . $this->
getCity() .
"\n");
3039 $body .= ($language->
txt(
"zipcode") .
": " . $this->
getZipcode() .
"\n");
3042 $body .= ($language->
txt(
"country") .
": " . $this->
getCountry() .
"\n");
3048 $body .= ($language->
txt(
"phone_office") .
": " . $this->
getPhoneOffice() .
"\n");
3051 $body .= ($language->
txt(
"phone_home") .
": " . $this->
getPhoneHome() .
"\n");
3054 $body .= ($language->
txt(
"phone_mobile") .
": " . $this->
getPhoneMobile() .
"\n");
3056 if (strlen($this->
getFax())) {
3057 $body .= ($language->
txt(
"fax") .
": " . $this->
getFax() .
"\n");
3060 $body .= ($language->
txt(
"email") .
": " . $this->
getEmail() .
"\n");
3063 $body .= ($language->
txt(
"second_email") .
": " . $this->
getSecondEmail() .
"\n");
3066 $body .= ($language->
txt(
"hobby") .
": " . $this->
getHobby() .
"\n");
3069 $body .= ($language->
txt(
"referral_comment") .
": " . $this->
getComment() .
"\n");
3080 $body .= ($language->
txt(
"create_date") .
": " . $date .
"\n");
3084 foreach ($rbacreview->getGlobalRoles() as $role) {
3085 if ($rbacreview->isAssigned($this->getId(), $role)) {
3090 $body .= ($language->
txt(
'reg_role_info') .
': ' . implode(
',', $gr) .
"\n");
3095 $body .= ($language->
txt(
'time_limit') .
": " . $language->
txt(
'crs_unlimited') .
"\n");
3108 $body .= $language->
txt(
'time_limit') .
': ' .
3109 $language->
txt(
'from') .
" " .
3120 foreach ($user_defined_fields->getDefinitions() as $field_id => $definition) {
3121 $data = $user_defined_data[
"f_" . $field_id] ??
'';
3125 preg_replace(
'/<br(\s*)?\/?>/i',
"\n",
$data)
3129 $body .= $definition[
'field_name'] .
': ' .
$data .
"\n";
3141 bool $a_create =
false 3145 $ilDB = $DIC[
'ilDB'];
3147 if ($a_user_id > 0) {
3148 $set =
$ilDB->queryF(
3149 "SELECT feed_hash from usr_data WHERE usr_id = %s",
3153 if ($rec =
$ilDB->fetchAssoc($set)) {
3154 if (strlen($rec[
"feed_hash"]) == 32) {
3155 return $rec[
"feed_hash"];
3156 } elseif ($a_create) {
3157 $hash = md5(random_int(1, 9999999) + str_replace(
" ",
"", microtime()));
3159 "UPDATE usr_data SET feed_hash = %s" .
3160 " WHERE usr_id = %s",
3161 array(
"text",
"integer"),
3162 array($hash, $a_user_id)
3179 if ($a_user_id > 0) {
3180 return self::_lookupPref($a_user_id,
"priv_feed_pass");
3196 ($a_password ==
"") ?
"" : md5($a_password)
3210 $ilDB = $DIC[
'ilDB'];
3212 $q =
"SELECT DISTINCT login, usr_id FROM usr_data " .
3215 $values[] = $a_login;
3217 if ($a_user_id != 0) {
3218 $q .=
" AND usr_id != %s ";
3219 $types[] =
"integer";
3220 $values[] = $a_user_id;
3223 $r =
$ilDB->queryF($q, $types, $values);
3225 if ($row =
$ilDB->fetchAssoc($r)) {
3226 return (
int) $row[
'usr_id'];
3235 string $a_external_account,
3240 $ilDB = $DIC[
'ilDB'];
3243 "SELECT * FROM usr_data " .
3244 "WHERE ext_account = %s AND auth_mode = %s",
3245 array(
"text",
"text"),
3246 array($a_external_account, $a_auth_mode)
3261 $ilDB = $DIC[
'ilDB'];
3262 $rbacreview = $DIC[
'rbacreview'];
3263 $ids = $rbacreview->assignedUsers($role_id);
3265 if (count($ids) == 0) {
3269 $query =
"SELECT usr_data.*, usr_pref.value AS language 3271 LEFT JOIN usr_pref ON usr_pref.usr_id = usr_data.usr_id AND usr_pref.keyword = %s 3272 WHERE " .
$ilDB->in(
"usr_data.usr_id", $ids,
false,
"integer");
3273 $values[] =
"language";
3277 if (is_numeric($active) && $active > -1) {
3278 $query .=
" AND usr_data.active = %s";
3280 $types[] =
"integer";
3283 $query .=
" ORDER BY usr_data.lastname, usr_data.firstname ";
3287 while ($row =
$ilDB->fetchAssoc($r)) {
3304 $ilDB = $DIC[
'ilDB'];
3305 $query =
"SELECT usr_data.*, usr_pref.value AS language FROM usr_data LEFT JOIN usr_pref ON usr_pref.usr_id = usr_data.usr_id and usr_pref.keyword = %s";
3307 $values[] =
"language";
3309 if (is_numeric($active) && $active > -1) {
3310 $query .=
" AND usr_data.active = %s";
3312 $types[] =
"integer";
3316 $query .=
" AND usr_data.time_limit_owner = %s";
3318 $types[] =
"integer";
3321 $query .=
" AND usr_data.usr_id != %s ";
3323 $types[] =
"integer";
3325 $query .=
" ORDER BY usr_data.lastname, usr_data.firstname ";
3329 while ($row =
$ilDB->fetchAssoc($result)) {
3346 return self::_getUsersForIds($a_mem_ids, $active);
3358 int $timelimitowner = -1
3362 $ilDB = $DIC[
'ilDB'];
3364 $query =
"SELECT usr_data.*, usr_pref.value AS language 3366 LEFT JOIN usr_pref ON usr_pref.usr_id = usr_data.usr_id AND usr_pref.keyword = %s 3367 WHERE " .
$ilDB->in(
"usr_data.usr_id", $a_mem_ids,
false,
"integer") .
" 3368 AND usr_data.usr_id != %s";
3369 $values[] =
"language";
3372 $types[] =
"integer";
3374 if (is_numeric($active) && $active > -1) {
3375 $query .=
" AND active = %s";
3377 $types[] =
"integer";
3380 if ($timelimitowner !=
USER_FOLDER_ID && $timelimitowner != -1) {
3381 $query .=
" AND usr_data.time_limit_owner = %s";
3382 $values[] = $timelimitowner;
3383 $types[] =
"integer";
3386 $query .=
" ORDER BY usr_data.lastname, usr_data.firstname ";
3390 while ($row =
$ilDB->fetchAssoc($result)) {
3407 $ilDB = $DIC[
'ilDB'];
3410 if (is_array($a_internalids)) {
3411 foreach ($a_internalids as $internalid) {
3412 if (is_numeric($internalid)) {
3413 $ids[] = $internalid;
3416 if (is_numeric($parsedid) && $parsedid > 0) {
3422 if (count($ids) == 0) {
3426 $query =
"SELECT usr_data.*, usr_pref.value AS language 3429 ON usr_pref.usr_id = usr_data.usr_id AND usr_pref.keyword = %s 3430 WHERE " .
$ilDB->in(
"usr_data.usr_id", $ids,
false,
"integer");
3431 $values[] =
"language";
3434 $query .=
" ORDER BY usr_data.lastname, usr_data.firstname ";
3438 while ($row =
$ilDB->fetchAssoc($result)) {
3454 $ilDB = $DIC[
'ilDB'];
3459 "SELECT * FROM usr_pref WHERE usr_id = %s",
3464 while ($row =
$ilDB->fetchAssoc($r)) {
3465 $prefs[$row[
"keyword"]] = $row[
"value"];
3482 $ilDB = $DIC[
'ilDB'];
3485 $set =
$ilDB->query(
3486 "SELECT usr_id FROM usr_pref " .
3487 " WHERE keyword = " .
$ilDB->quote($a_keyword,
"text") .
3488 " AND " .
$ilDB->in(
"usr_id", $a_user_ids,
false,
"integer") .
3489 " AND value = " .
$ilDB->quote($a_val,
"text")
3491 while ($rec =
$ilDB->fetchAssoc($set)) {
3492 $users[] = $rec[
"usr_id"];
3502 $ilDB = $DIC[
'ilDB'];
3504 $query =
"SELECT login_attempts FROM usr_data WHERE usr_id = %s";
3505 $result =
$ilDB->queryF(
$query, array(
'integer'), array($a_usr_id));
3506 $record =
$ilDB->fetchAssoc($result);
3507 return (
int) ($record[
'login_attempts'] ?? 0);
3515 $ilDB = $DIC[
'ilDB'];
3517 $query =
"UPDATE usr_data SET login_attempts = (login_attempts + 1) WHERE usr_id = %s";
3518 $affected =
$ilDB->manipulateF(
$query, array(
'integer'), array($a_usr_id));
3532 $ilDB = $DIC[
'ilDB'];
3534 $query =
"UPDATE usr_data SET active = 0, inactivation_date = %s WHERE usr_id = %s";
3549 return in_array($this->
getPref(
"public_profile"), array(
"y",
"g"));
3570 $ilDB = $DIC[
'ilDB'];
3575 'SELECT * FROM loginname_history WHERE usr_id = %s AND login = %s AND history_date = %s',
3576 array(
'integer',
'text',
'integer'),
3583 INSERT INTO loginname_history 3584 (usr_id, login, history_date) 3585 VALUES (%s, %s, %s)',
3586 array(
'integer',
'text',
'integer'),
3598 bool $a_no_anonymous =
false 3602 $ilDB = $DIC->database();
3607 $atime = $pd_set->get(
'user_activity_time') * 60;
3612 if ($a_user_id === 0) {
3613 $where[] =
'user_id > 0';
3615 $where[] =
'user_id = ' .
$ilDB->quote($a_user_id,
'integer');
3618 if ($a_no_anonymous) {
3626 $where[] =
'expires > ' .
$ilDB->quote($ctime,
'integer');
3627 $where[] =
'(p.value IS NULL OR NOT p.value = ' .
$ilDB->quote(
'y',
'text') .
')';
3629 $where =
'WHERE ' . implode(
' AND ', $where);
3633 SELECT COUNT(user_id) num, user_id, firstname, lastname, title, login, last_login, MAX(ctime) ctime, context, agree_date 3635 LEFT JOIN usr_data u 3636 ON user_id = u.usr_id 3637 LEFT JOIN usr_pref p 3638 ON (p.usr_id = u.usr_id AND p.keyword = %s) 3640 GROUP BY user_id, firstname, lastname, title, login, last_login, context, agree_date 3641 ORDER BY lastname, firstname 3644 array(
'hide_own_online_status')
3651 if ($atime <= 0 ||
$user[
'ctime'] + $atime > $ctime) {
3656 $log->
debug(
"Found users: " . count($users));
3659 $users = array_filter($users,
static function (array
$user) {
3660 if ($user[
'agree_date'] || $user[
'user_id'] ==
SYSTEM_USER_ID ||
'root' === $user[
'login']) {
3667 $log->
debug(
"TOS filtered to users: " . count($users));
3681 $ilDB = $DIC[
'ilDB'];
3686 $hashcode = substr(md5(uniqid(mt_rand(),
true)), 0, 16);
3690 SELECT COUNT(usr_id) cnt FROM usr_data 3691 WHERE reg_hash = %s',
3696 if ($row->cnt > 0) {
3711 array(
'text',
'integer'),
3712 array($hashcode, $a_usr_id)
3731 $ilDB = $DIC[
'ilDB'];
3735 SELECT usr_id, create_date FROM usr_data 3736 WHERE reg_hash = %s',
3740 while ($row =
$ilDB->fetchAssoc(
$res)) {
3743 if ($oRegSettigs->getRegistrationHashLifetime() != 0 &&
3744 time() - $oRegSettigs->getRegistrationHashLifetime() > strtotime($row[
'create_date'])) {
3746 'reg_confirmation_hash_life_time_expired',
3747 (
int) $row[
'usr_id']
3756 array(
'text',
'integer'),
3757 array(
'', (
int) $row[
'usr_id'])
3760 return (
int) $row[
'usr_id'];
3768 if (strlen($a_birthday)) {
3772 $this->birthday = null;
3792 if ($periodInDays < 1) {
3796 $date = date(
'Y-m-d H:i:s', (time() - ($periodInDays * 24 * 60 * 60)));
3798 $query =
"SELECT usr_id FROM usr_data WHERE last_login IS NOT NULL AND last_login < %s";
3802 $types = [
'timestamp'];
3805 $res = $DIC->database()->queryF(
$query, $types, $values);
3806 while ($row = $DIC->database()->fetchAssoc(
$res)) {
3807 $ids[] = (
int) $row[
'usr_id'];
3819 int $thresholdInDays
3823 $date = date(
'Y-m-d H:i:s', (time() - ($thresholdInDays * 24 * 60 * 60)));
3825 $query =
"SELECT usr_id FROM usr_data WHERE last_login IS NULL AND create_date < %s";
3829 $types = [
'timestamp'];
3832 $res = $DIC->database()->queryF(
$query, $types, $values);
3833 while ($row = $DIC->database()->fetchAssoc(
$res)) {
3834 $ids[] = (
int) $row[
'usr_id'];
3850 $field =
'inactivation_date';
3859 $ilDB = $DIC[
'ilDB'];
3861 $date = date(
'Y-m-d H:i:s', (time() - ($period * 24 * 60 * 60)));
3863 $query =
"SELECT usr_id FROM usr_data WHERE $field < %s AND active = %s";
3869 $ids[] = (
int) $row->usr_id;
3879 $query =
"UPDATE object_data SET owner = 0 " .
3880 "WHERE owner = " .
$ilDB->quote($this->
getId(),
'integer');
3889 ?array $user_ids = null
3893 $ilDB = $DIC->database();
3895 $q =
"SELECT DISTINCT " .
$ilDB->upper(
$ilDB->substr(
"lastname", 1, 1)) .
" let" .
3898 ($user_ids !== null ?
" AND " .
$ilDB->in(
'usr_id', $user_ids,
false,
"integer") :
"") .
3900 $let_set =
$ilDB->query($q);
3903 while ($let_rec =
$ilDB->fetchAssoc($let_set)) {
3904 $let[$let_rec[
"let"]] = $let_rec[
"let"];
3910 array $a_usr_ids = array()
3914 $ilDB = $DIC[
'ilDB'];
3916 $query =
'SELECT count(*) num FROM object_data od ' .
3917 'JOIN usr_data ud ON obj_id = usr_id ' .
3918 'WHERE ' .
$ilDB->in(
'obj_id', $a_usr_ids,
false,
'integer') .
' ';
3921 return $num_rows == count($a_usr_ids);
3943 if (!is_dir($dir)) {
3947 if (is_int(strpos($entry[
"entry"],
".zip"))) {
3948 return $entry[
"entry"];
3959 if (is_file($file)) {
3966 bool $a_profile_data,
3973 $imp->addSkipImporter(
"Services/Bookmarks");
3974 if (!$a_profile_data) {
3975 $imp->addSkipEntity(
"Services/User",
"usr_profile");
3978 $imp->addSkipEntity(
"Services/User",
"usr_setting");
3981 $imp->addSkipEntity(
"Services/Notes",
"user_notes");
3984 $imp->addSkipEntity(
"Services/Calendar",
"calendar");
3987 $a_file[
"tmp_name"],
4008 null == $this->agree_date &&
4009 'root' != $this->
login &&
4025 bool $a_agreed =
true,
4026 ?array $a_users = null
4030 $ilDB = $DIC[
'ilDB'];
4032 $date_is = ($a_agreed)
4036 $users = (is_array($a_users))
4037 ?
" AND " .
$ilDB->in(
"usr_id", $a_users,
false,
"integer")
4040 $set =
$ilDB->query(
"SELECT usr_id FROM usr_data " .
4041 " WHERE agree_date " . $date_is .
4044 while ($rec =
$ilDB->fetchAssoc($set)) {
4045 $ret[] = (
int) $rec[
"usr_id"];
4051 ?
bool $status = null
4053 if (null === $status) {
4065 return self::_isAnonymous($this->
getId());
4085 return (
bool) $this->
getPref(
"delete_flag");
4090 $this->is_self_registered = $status;
4108 $this->interests_general = $value ?? [];
4132 $this->interests_help_offered = $value ?? [];
4156 $this->interests_help_looking = $value ?? [];
4182 if (count($a_attr) > 0) {
4183 return implode(
", ", $a_attr);
4192 $ilDB = $DIC[
'ilDB'];
4194 if (!$this->
getId()) {
4198 $set =
$ilDB->query(
"SELECT field_id,value" .
4199 " FROM usr_data_multi" .
4200 " WHERE usr_id = " .
$ilDB->quote($this->getId(),
"integer") .
4202 while ($row =
$ilDB->fetchAssoc($set)) {
4203 $values[$row[
"field_id"]][] = $row[
"value"];
4206 if (isset($values[
"interests_general"])) {
4211 if (isset($values[
"interests_help_offered"])) {
4216 if (isset($values[
"interests_help_looking"])) {
4227 $ilDB = $DIC[
'ilDB'];
4229 if (!$this->
getId()) {
4243 foreach ($map as
$id => $values) {
4244 if (is_array($values) && count($values)) {
4245 foreach ($values as $value) {
4246 $value = trim($value);
4248 $uniq_id =
$ilDB->nextId(
'usr_data_multi');
4250 $ilDB->manipulate(
"INSERT usr_data_multi" .
4251 " (id,usr_id,field_id,value) VALUES" .
4252 " (" .
$ilDB->quote($uniq_id,
"integer") .
4253 "," .
$ilDB->quote($this->
getId(),
"integer") .
4255 "," .
$ilDB->quote($value,
"text") .
4267 $ilDB = $DIC[
'ilDB'];
4269 if (!$this->
getId()) {
4273 $ilDB->manipulate(
"DELETE FROM usr_data_multi" .
4274 " WHERE usr_id = " .
$ilDB->quote($this->getId(),
"integer"));
4279 ?
int $a_user_id = null,
4280 string $a_field_id = null
4284 $ilDB = $DIC[
'ilDB'];
4288 $sql =
"SELECT DISTINCT(value)" .
4289 " FROM usr_data_multi" .
4290 " WHERE " .
$ilDB->like(
"value",
"text",
"%" . $a_term .
"%");
4292 $sql .=
" AND field_id = " .
$ilDB->quote($a_field_id,
"text");
4295 $sql .=
" AND usr_id <> " .
$ilDB->quote($a_user_id,
"integer");
4297 $sql .=
" ORDER BY value";
4298 $set =
$ilDB->query($sql);
4299 while ($row =
$ilDB->fetchAssoc($set)) {
4300 $res[] = $row[
"value"];
4319 $ilDB = $DIC->database();
4321 $set =
$ilDB->query(
4322 "SELECT * FROM usr_pref " .
4323 " WHERE keyword = " .
$ilDB->quote(
"public_profile",
"text") .
4324 " AND " .
$ilDB->in(
"usr_id", $a_user_ids,
false,
"integer")
4327 "global" => array(),
4329 "public" => array(),
4330 "not_public" => array()
4332 while ($rec =
$ilDB->fetchAssoc($set)) {
4333 if ($rec[
"value"] ==
"g") {
4334 $r[
"global"][] = $rec[
"usr_id"];
4335 $r[
"public"][] = $rec[
"usr_id"];
4337 if ($rec[
"value"] ==
"y") {
4338 $r[
"local"][] = $rec[
"usr_id"];
4339 $r[
"public"][] = $rec[
"usr_id"];
4342 foreach ($a_user_ids as
$id) {
4343 if (!in_array($id, $r[
"public"])) {
4344 $r[
"not_public"][] =
$id;
getCurrentLanguage()
returns the current language (may differ from user's pref setting!)
static getWebspaceDir(string $mode="filesystem")
get webspace directory
static hasActiveSession(int $a_user_id, string $a_session_id)
setUTitle(string $a_str)
set user title (note: don't mix up this method with setTitle() that is derived from ilObject and sets...
setProfileIncomplete(bool $a_prof_inc)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static get(string $a_var)
setTimeLimitUnlimited(bool $a_unlimited)
static _setFeedPass(int $a_user_id, string $a_password)
Set news feed password for user.
Class ilMailOptions this class handles user mails.
setClientIP(string $a_str)
getStoredActive(int $a_id)
get user active state
setLastLogin(string $a_str)
static _getUsersForRole(int $role_id, int $active=-1)
return array of complete users which belong to a specific role
resetPassword(string $raw, string $raw_retype)
Resets the user password.
refreshLogin()
updates the login data of a "user"
static _getLoginAttempts(int $a_usr_id)
static _destroyByUserId(int $a_user_id)
Destroy session.
static copyProfilePicturesToDirectory(int $a_user_id, string $a_dir)
static _deleteUser(int $a_usr_id)
static _lookupLanguage(int $a_usr_id)
buildTextFromArray(array $a_attr)
Convert multi-text values to plain text.
static getLogger(string $a_component_id)
Get component logger.
static _getAllUserData(?array $a_fields=null, int $active=-1)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getAuthMode(?string $a_auth_mode)
writePref(string $a_keyword, string $a_value)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setAgreeDate(?string $a_str)
array $interests_help_looking
static styleExists(string $style_id)
static getUserIdsByInactivityPeriod(int $periodInDays)
Get ids of all users that have been inactive for at least the given period.
static lookupMatriculation(int $a_usr_id)
static getFirstLettersOfLastnames(?array $user_ids=null)
Get first letters of all lastnames.
__construct(int $a_user_id=0, bool $a_call_by_reference=false)
static getProfileStatusOfUsers(array $a_user_ids)
Get profile status.
static _verifyRegistrationHash(string $a_hash)
Verifies a registration hash.
assignData(array $a_data)
loads a record "user" from array
fetchAssoc(ilDBStatement $statement)
static _externalAccountExists(string $a_external_account, string $a_auth_mode)
Check if an external account name already exists.
setMatriculation(string $a_str)
static _lookupFullname(int $a_user_id)
isPasswordChangeDemanded()
getGeneralInterestsAsText()
Get general interests as plain text.
getDefaultLanguage()
Return default language.
getOrgUnitsRepresentation()
Class for user related exception handling in ILIAS.
setPhoneOffice(string $a_str)
addToPCClipboard(string $a_content, string $a_time, int $a_nr)
Add a page content item to PC clipboard (should go to another class)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _moveUsersToStyle(string $a_from_skin, string $a_from_style, string $a_to_skin, string $a_to_style)
static isConvertVersionAtLeast(string $a_version)
Compare convert version numbers.
static _getPreferences(int $user_id)
get preferences for user
removeObjectFromClipboard(int $a_item_id, string $a_type)
getPasswordPolicyResetStatus()
static _removeTrackingDataForUser(int $user_id)
to be called from IlObjUser
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
updateLogin(string $a_login)
update login name
setSelectedCountry(string $a_val)
Set selected country (selection drop down)
deletePref(string $a_keyword)
static _lookupLastLogin(int $a_user_id)
array $interests_help_offered
string $time_limit_message
static array $personal_image_cache
setFullname()
builds a string with title + firstname + lastname method is used to build fullname in member variable...
debug(string $a_message, array $a_context=array())
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _writeAuthMode(int $a_usr_id, string $a_auth_mode)
static _lookupName(int $a_user_id)
lookup user name
static resetToDefaults()
reset to defaults
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupId($a_user_str)
static lookupTitle(int $a_page_id)
static _deleteSettingsOfUser(int $a_user)
getFullname(int $a_max_strlen=0)
removeUserPicture(bool $a_do_update=true)
static getUserIdsByEmail(string $a_email)
loadLanguageModule(string $a_module)
Load language module.
static _lookupPref(int $a_usr_id, string $a_keyword)
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
static getUserSubsetByPreferenceValue(array $a_user_ids, string $a_keyword, string $a_val)
For a given set of user IDs return a subset that has a given user preference set. ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCreateDate()
Get create date in YYYY-MM-DD HH-MM-SS format.
static _lookupExternalAccount(int $a_user_id)
static _getUsersForGroup(array $a_mem_ids, int $active=-1)
return user data for group members
static _deleteByUser(int $a_usr_id)
static _needsExternalAccountByAuthMode($a_auth_mode)
Check if chosen auth mode needs an external account entry.
static setLanguage(ilLanguage $a_lng)
static _lookupAuthMode(int $a_usr_id)
setPasswordSalt(?string $password_salt)
static lookupOrgUnitsRepresentation(int $a_usr_id)
lookup org unit representation
static _lookupGender(int $a_user_id)
setTimeLimitUntil(?int $a_until)
static _getAuthModeName($a_auth_key)
static _uploadPersonalPicture(string $tmp_file, int $obj_id)
Create a personal picture image file from a temporary image file.
setLoginAttempts(int $a_login_attempts)
static now()
Return current timestamp in Y-m-d H:i:s format.
static _deleteAllPref(int $a_user_id)
Deletes a userpref value of the user from the database.
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object.
setInstitution(string $a_str)
getPublicName()
returns firstname lastname and login if profile is public, login otherwise
deleteUserDefinedFieldEntries()
getAuthMode(bool $a_auth_key=false)
static _deleteUser(int $a_usr_id)
getOfferingHelpAsText()
Get help offering as plain text.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setLatitude(?string $a_latitude)
setComment(string $a_str)
setPasswd(string $a_str, string $a_type=ilObjUser::PASSWD_PLAIN)
addObjectToClipboard(int $a_item_id, string $a_type, string $a_title, int $a_parent=0, string $a_time="", int $a_order_nr=0)
add an item to user's personal clipboard
updateUserDefinedFields()
int $last_password_change_ts
static _getAvatar(int $a_usr_id)
setExternalAccount(string $a_str)
static _getNumberOfUsersForStyle(string $a_skin, string $a_style)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
setPasswordPolicyResetStatus(bool $status)
static findInterests(string $a_term, ?int $a_user_id=null, string $a_field_id=null)
static getUsersAgreed(bool $a_agreed=true, ?array $a_users=null)
Get users that have or have not agreed to the user agreement.
setBirthday(?string $a_birthday)
static _writeExternalAccount(int $a_usr_id, string $a_ext_id)
static _getInstance()
Get singleton instance of this class.
bool $time_limit_unlimited
static _getExternalAccountsByAuthMode(string $a_auth_mode, bool $a_read_auth_default=false)
Get list of external account by authentication method Note: If login == ext_account for two user with...
static getUserIdByLogin(string $a_login)
writeAccepted()
write accept date of user agreement
static _getLastHistoryDataByUserId(int $a_usr_id)
Returns the last used loginname and the changedate of the passed user_id.
ilAppEventHandler $app_event_handler
setActive(bool $a_active, int $a_owner=0)
set user active state and updates system fields appropriately
resetLastPasswordChange()
static _lookupClientIP(int $a_user_id)
setDepartment(string $a_str)
static _lookupTitle(int $obj_id)
static deleteEntriesOfUser(int $a_user_id)
setOfferingHelp(?array $value=null)
getLastPasswordChangeTS()
static getLoginFromAuth()
Gets the username from $ilAuth, and converts it into an ILIAS login name.
clipboardDeleteObjectsOfType(string $a_type)
static getUserLoginsByEmail(string $a_email)
getLoginByUserId(int $a_userid)
This describes how a letter or a picture avatar could be modified during construction of UI...
static _getFeedPass(int $a_user_id)
Lookup news feed password for user.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static _generateRegistrationHash(int $a_usr_id)
Generates a unique hashcode for activating a user profile after registration.
static styleExistsForSkinId(string $skin_id, string $style_id)
setApproveDate(?string $a_str)
set date the user account was activated null indicates that the user has not yet been activated ...
Mail Box class Base class for creating and handling mail boxes.
static _setUserInactive(int $a_usr_id)
setPhoneHome(string $a_str)
static _getNumberOfUsersPerAuthMode()
get number of users per auth mode
static _toggleActiveStatusOfUsers(array $a_usr_ids, bool $a_status)
static _loginExists(string $a_login, int $a_user_id=0)
check if a login name already exists You may exclude a user from the check by giving his user id as 2...
static removeForUser(int $user_id)
Remove all notifications for given user.
getPref(string $a_keyword)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
setInactivationDate(?string $inactivation_date)
syncActive()
synchronizes current and stored user active values for the owner value to be set correctly, this function should only be called when an admin is approving a user account
static _getUsersOnline(int $a_user_id=0, bool $a_no_anonymous=false)
reads all active sessions from db and returns users that are online OR returns only one active user i...
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
updateOwner()
update owner of object in db
static _deletePref(int $a_user_id, string $a_keyword)
static _getUserData(array $a_internalids)
return user data for given user ids
checkUserId()
check user id with login name
header include for all ilias files.
static _writeHistory(int $a_usr_id, string $a_login)
getLookingForHelpAsText()
Get help looking for as plain text.
setIsSelfRegistered(bool $status)
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
static _lookupFields(int $a_user_id)
lookup fields (deprecated; use more specific methods instead)
bool $passwd_policy_reset
setPref(string $a_keyword, ?string $a_value)
Class ilUserAvatarResolver.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getUserIdsByInactivationPeriod(int $period)
get ids of all users that have been inactivated since at least the given period
setFirstLogin(string $a_str)
static userExists(array $a_usr_ids=array())
setCountry(string $a_str)
queryF(string $query, array $types, array $values)
getPCClipboardContent()
Add a page content item to PC clipboard (should go to another class)
static _isAnonymous(int $usr_id)
existsPref(string $a_keyword)
static _getPersonalPicturePath(int $a_usr_id, string $a_size="small", bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
importPersonalData(array $a_file, bool $a_profile_data, bool $a_settings, bool $a_notes, bool $a_calendar)
foreach($mandatory_scripts as $file) $timestamp
setPhoneMobile(string $a_str)
getSelectedCountry()
Get selected country (selection drop down)
static deleteByUserId(int $a_user_id)
setLastPasswordChangeTS(int $a_last_password_change_ts)
setLastname(string $a_str)
setPasswordEncodingType(?string $password_encryption_type)
getPersonalPicturePath(string $a_size="small", bool $a_force_pic=false)
static _doesLoginnameExistInHistory(string $a_login)
Checks whether the passed loginname already exists in history.
static _getUsersForClipboadObject(string $a_type, int $a_id)
get all users, that have a certain object within their clipboard
static deleteUserPortfolios(int $a_user_id)
Delete all portfolio data for user.
Class ilObjAuthSettingsGUI.
getPersonalDataExportFile()
static skinExists(string $skin_id, ?ilSystemStyleConfig $system_style_config=null)
Check whether a skin exists.
static _incrementLoginAttempts(int $a_usr_id)
string $last_profile_prompt
static _lookupFeedHash(int $a_user_id, bool $a_create=false)
Lookup news feed hash for user.
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
hasToAcceptTermsOfServiceInSession(?bool $status=null)
setLastProfilePrompt(string $a_str)
static _getImportedUserId(string $i2_id)
static _getUsersForFolder(int $ref_id, int $active)
get users for a category or from system folder
setLanguage(string $a_str)
static _readUsersProfileData(array $a_user_ids)
static _lookup(int $a_user_id, string $a_field)
static __extractId(string $ilias_id, int $inst_id)
extract ref id from role title, e.g.
static toUsernameWithoutDomain(string $a_login)
Static function removes Microsoft domain name from username webdav related.
__construct(Container $dic, ilPlugin $plugin)
setTimeLimitOwner(int $a_owner)
updateMultiTextFields(bool $a_create=false)
setSecondEmail(?string $second_email)
string $password_encoding_type
static signFile(string $path_to_file)
static _writePref(int $a_usr_id, string $a_keyword, string $a_value)
setLongitude(?string $a_longitude)
setLocationZoom(?int $a_locationzoom)
setLastPasswordChangeToNow()
setZipcode(string $a_str)
setTimeLimitMessage(string $a_time_limit_message)
static _lookupFirstLogin(int $a_user_id)
Class for user related exception handling in ILIAS.
setUserDefinedData(array $a_data)
static removeSingleUserFromTable(int $usr_id)
static _lookupType(int $id, bool $reference=false)
static setUseRelativeDates(bool $a_status)
set use relative dates
setGeneralInterests(?array $value=null)
setTimeLimitFrom(?int $a_from)
getClipboardChilds(int $a_parent, string $a_insert_time)
Get children of an item.
setFirstname(string $a_str)
string $inactivation_date
hasToAcceptTermsOfService()
static _lookupEmail(int $a_user_id)
static clear(string $a_var)
static _getInstance()
Get instance of ilSecuritySettings.
getPasswordEncodingType()
static getInstance()
Singleton method to reduce footprint (included files, created instances)
static set(string $a_var, $a_val)
Set a value.
static _getUsersForIds(array $a_mem_ids, int $active=-1, int $timelimitowner=-1)
return user data for given user id
setAuthMode(?string $a_str)
static execConvert(string $args)
execute convert command
setCurrentLanguage(string $a_val)
Set current language.
static _lookupActive(int $a_usr_id)
hasPublicProfile()
returns true if public is profile, false otherwise
static _getAllUserAssignedStyles()
setLastUpdate(string $a_str)
static getUserIdsNeverLoggedIn(int $thresholdInDays)
Get ids of all users that have never logged in.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static _removeTrackingDataForUser(int $user_id)
getClipboardObjects(string $a_type="", bool $a_top_nodes_only=false)
get all clipboard objects of user and specified type
static _getLocalAccountsForEmail(string $a_email)
clipboardHasObjectsOfType(string $a_type)
Check whether clipboard has objects of a certain type.
static _lookupLogin(int $a_user_id)
setLookingForHelp(?array $value=null)