24 define(
"IL_EXTRACT_ROLES", 1);
25 define(
"IL_USER_IMPORT", 2);
26 define(
"IL_VERIFY", 3);
28 define(
"IL_FAIL_ON_CONFLICT", 1);
29 define(
"IL_UPDATE_ON_CONFLICT", 2);
30 define(
"IL_IGNORE_ON_CONFLICT", 3);
32 define(
"IL_IMPORT_SUCCESS", 1);
33 define(
"IL_IMPORT_WARNING", 2);
34 define(
"IL_IMPORT_FAILURE", 3);
36 define(
"IL_USER_MAPPING_LOGIN", 1);
37 define(
"IL_USER_MAPPING_ID", 2);
39 require_once(
"./Services/Xml/classes/class.ilSaxParser.php");
40 require_once(
'Services/User/classes/class.ilUserXMLWriter.php');
293 $global_settings = $DIC->settings();
295 $this->roles = array();
296 $this->mode = $a_mode;
297 $this->conflict_rule = $a_conflict_rule;
299 $this->protocol = array();
300 $this->logins = array();
301 $this->userCount = 0;
302 $this->localRoleCache = array();
303 $this->parentRolesCache = array();
304 $this->send_mail =
false;
310 $this->userStyles = array();
311 include_once
'./Services/Style/System/classes/class.ilStyleDefinition.php';
312 $skins = ilStyleDefinition::getAllSkins();
314 if (is_array($skins)) {
315 foreach ($skins as
$skin) {
316 foreach ($skin->getStyles() as
$style) {
317 include_once(
"./Services/Style/System/classes/class.ilSystemStyleSettings.php");
321 $this->userStyles [] = $skin->getId() .
":" .
$style->getId();
326 $this->hideSkin = (!$this->user_settings_config->isVisible(
"skin_style"));
327 $this->disableSkin = (!$this->user_settings_config->isChangeable(
"skin_style"));
329 include_once(
"Services/Mail/classes/class.ilAccountMail.php");
331 $this->acc_mail->setAttachConfiguredFiles(
true);
332 $this->acc_mail->useLangVariablesAsFallback(
true);
346 $this->folder_id = $a_folder_id;
361 xml_set_object($a_xml_parser, $this);
362 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
363 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
371 parent::startParsing();
381 $this->role_assign = $a_assign;
395 if (
$type ==
"end") {
401 if (is_array($attr)) {
402 foreach ($attr as $k => $v) {
403 $tag .=
" " . $k .
"=\"$v\"";
417 switch ($this->mode) {
440 $this->current_role_id = $a_attribs[
"Id"];
442 $this->current_role_id = $internal_id;
444 $this->current_role_type = $a_attribs[
"Type"];
461 $this->current_role_id = $a_attribs[
"Id"];
463 $this->current_role_id = $internal_id;
465 $this->current_role_type = $a_attribs[
"Type"];
466 $this->current_role_action = (is_null($a_attribs[
"Action"])) ?
"Assign" : $a_attribs[
"Action"];
469 case "PersonalPicture":
470 $this->personalPicture = array(
471 "encoding" => $a_attribs[
"encoding"],
472 "imagetype" => $a_attribs[
"imagetype"],
478 $this->skin = $a_attribs[
"Skin"];
479 $this->style = $a_attribs[
"Style"];
483 $this->acc_mail->reset();
484 $this->prefs = array();
485 $this->currentPrefKey = null;
486 $this->auth_mode_set =
false;
487 $this->approve_date_set =
false;
488 $this->time_limit_set =
false;
489 $this->time_limit_owner_set =
false;
490 $this->updateLookAndSkin =
false;
493 $this->personalPicture = null;
498 $this->udf_data = array();
503 if (is_numeric($a_attribs[
"Id"])) {
504 $this->user_id = $a_attribs[
"Id"];
506 $this->user_id = $id;
510 $this->userObj->setPref(
512 $ilias->ini->readVariable(
"layout",
"skin")
514 $this->userObj->setPref(
516 $ilias->ini->readVariable(
"layout",
"style")
519 $this->userObj->setLanguage($a_attribs[
"Language"]);
520 $this->userObj->setImportId($a_attribs[
"Id"]);
521 $this->action = (is_null($a_attribs[
"Action"])) ?
"Insert" : $a_attribs[
"Action"];
522 $this->currPassword = null;
523 $this->currPasswordType = null;
524 $this->currActive = null;
525 $this->multi_values = array();
529 $this->currPasswordType = $a_attribs[
'Type'];
532 if (array_key_exists(
"type", $a_attribs)) {
533 switch ($a_attribs[
"type"]) {
536 if (strcmp(
'saml', $a_attribs[
'type']) === 0) {
538 if (count($list) === 1) {
539 $this->auth_mode_set =
true;
540 $idp = current($list);
541 $this->userObj->setAuthMode(
'saml_' . $idp->getIdpId());
545 if (strcmp(
'ldap', $a_attribs[
'type']) === 0) {
547 include_once
'./Services/LDAP/classes/class.ilLDAPServer.php';
549 if (count($list) == 1) {
550 $this->auth_mode_set =
true;
551 $ldap_id = current($list);
552 $this->userObj->setAuthMode(
'ldap_' . $ldap_id);
567 $this->auth_mode_set =
true;
568 $this->userObj->setAuthMode($a_attribs[
"type"]);
579 $this->userObj->getLogin(),
580 sprintf(
$lng->txt(
"usrimport_xml_element_inapplicable"),
"AuthMode", $a_attribs[
"type"])
585 case 'UserDefinedField':
586 $this->tmp_udf_id = $a_attribs[
'Id'];
587 $this->tmp_udf_name = $a_attribs[
'Name'];
591 $this->current_messenger_type = strtolower($a_attribs[
"Type"]);
594 $this->userObj->setLatitude($a_attribs[
"latitude"]);
595 $this->userObj->setLongitude($a_attribs[
"longitude"]);
596 $this->userObj->setLocationZoom($a_attribs[
"zoom"]);
599 $this->currentPrefKey = $a_attribs[
"key"];
614 if (is_null($a_attribs[
'Id'])
615 || $a_attribs[
'Id'] ==
"") {
616 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_attribute_missing"),
"Role",
"Id"));
618 $this->current_role_id = $a_attribs[
"Id"];
619 $this->current_role_type = $a_attribs[
"Type"];
620 if ($this->current_role_type !=
'Global' 621 && $this->current_role_type !=
'Local') {
622 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_attribute_missing"),
"Role",
"Type"));
624 $this->current_role_action = (is_null($a_attribs[
"Action"])) ?
"Assign" : $a_attribs[
"Action"];
625 if ($this->current_role_action !=
"Assign" 626 && $this->current_role_action !=
"AssignWithParents" 627 && $this->current_role_action !=
"Detach") {
628 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_attribute_value_illegal"),
"Role",
"Action", $a_attribs[
"Action"]));
630 if ($this->action ==
"Insert" 631 && $this->current_role_action ==
"Detach") {
632 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_attribute_value_inapplicable"),
"Role",
"Action", $this->current_role_action,
$this->action));
634 if ($this->action ==
"Delete") {
635 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_inapplicable"),
"Role",
"Delete"));
642 $this->userObj->setLanguage($a_attribs[
"Language"]);
643 $this->userObj->setImportId($a_attribs[
"Id"]);
644 $this->currentPrefKey = null;
649 if (is_numeric($a_attribs[
"Id"])) {
650 $this->user_id = $a_attribs[
"Id"];
652 $this->user_id = $id;
656 $this->action = (is_null($a_attribs[
"Action"])) ?
"Insert" : $a_attribs[
"Action"];
657 if ($this->action !=
"Insert" 658 && $this->action !=
"Update" 659 && $this->action !=
"Delete") {
660 $this->
logFailure($this->userObj->getImportId(), sprintf(
$lng->txt(
"usrimport_xml_attribute_value_illegal"),
"User",
"Action", $a_attribs[
"Action"]));
662 $this->currPassword = null;
663 $this->currPasswordType = null;
667 $this->currPasswordType = $a_attribs[
'Type'];
670 if (array_key_exists(
"type", $a_attribs)) {
671 switch ($a_attribs[
"type"]) {
674 if (strcmp(
'saml', $a_attribs[
'type']) === 0) {
676 if (count($list) !== 1) {
678 $this->userObj->getImportId(),
679 sprintf(
$lng->txt(
"usrimport_xml_attribute_value_illegal"),
"AuthMode",
"type", $a_attribs[
'type'])
684 if (strcmp(
'ldap', $a_attribs[
'type']) === 0) {
686 include_once
'./Services/LDAP/classes/class.ilLDAPServer.php';
688 if (count($list) != 1) {
690 $this->userObj->getImportId(),
691 sprintf(
$lng->txt(
"usrimport_xml_attribute_value_illegal"),
"AuthMode",
"type", $a_attribs[
'type'])
707 $this->userObj->setAuthMode($a_attribs[
"type"]);
717 $this->
logFailure($this->userObj->getImportId(), sprintf(
$lng->txt(
"usrimport_xml_attribute_value_illegal"),
"AuthMode",
"type",
""));
721 $this->currentPrefKey = $a_attribs[
"key"];
732 switch ($this->mode) {
752 $this->roles[$this->current_role_id][
"name"] = $this->cdata;
753 $this->roles[$this->current_role_id][
"type"] =
754 $this->current_role_type;
764 if (array_key_exists($a_role_id, $this->localRoleCache)) {
765 return $this->localRoleCache[$a_role_id];
767 $role_obj =
new ilObjRole($a_role_id,
false);
769 $this->localRoleCache[$a_role_id] = $role_obj;
780 $rbacreview = $DIC[
'rbacreview'];
781 $rbacadmin = $DIC[
'rbacadmin'];
782 $tree = $DIC[
'tree'];
784 if (array_key_exists($a_role_id .
'_courseMembersObject', $this->localRoleCache)) {
785 return $this->localRoleCache[$a_role_id .
'_courseMembersObject'];
787 require_once(
"Modules/Course/classes/class.ilObjCourse.php");
788 require_once(
"Modules/Course/classes/class.ilCourseParticipants.php");
789 $course_refs = $rbacreview->getFoldersAssignedToRole($a_role_id,
true);
790 $course_ref = $course_refs[0];
793 $this->localRoleCache[$a_role_id .
'_courseMembersObject'] = $crsmembers_obj;
794 return $crsmembers_obj;
803 require_once
"./Services/AccessControl/classes/class.ilObjRole.php";
804 include_once(
'./Services/Object/classes/class.ilObject.php');
805 #require_once "Modules/Course/classes/class.ilObjCourse.php"; 806 #require_once "Modules/Course/classes/class.ilCourseParticipants.php"; 810 $rbacreview = $DIC[
'rbacreview'];
811 $rbacadmin = $DIC[
'rbacadmin'];
812 $tree = $DIC[
'tree'];
818 if ($rbacreview->isAssigned($a_user_obj->getId(), $a_role_id)) {
825 $rbacadmin->assignUser($a_role_id, $a_user_obj->getId(),
true);
826 $obj_id = $rbacreview->getObjectOfRole($a_role_id);
831 $ref_id = current((array) $ref_ids);
850 $rbacreview = $DIC[
'rbacreview'];
852 if (!array_key_exists($a_role_id, $this->parentRolesCache)) {
853 $parent_role_ids = array();
856 $short_role_title = substr($role_obj->getTitle(), 0, 12);
857 $folders = $rbacreview->getFoldersAssignedToRole($a_role_id,
true);
858 if (count($folders) > 0) {
859 $all_parent_role_ids = $rbacreview->getParentRoleIds($folders[0]);
860 foreach ($all_parent_role_ids as $parent_role_id => $parent_role_data) {
861 if ($parent_role_id != $a_role_id) {
862 switch (substr($parent_role_data[
'title'], 0, 12)) {
865 if ($short_role_title ==
'il_crs_admin' || $short_role_title ==
'il_grp_admin') {
866 $parent_role_ids[] = $parent_role_id;
871 if ($short_role_title ==
'il_crs_tutor' || $short_role_title ==
'il_grp_tutor') {
872 $parent_role_ids[] = $parent_role_id;
877 if ($short_role_title ==
'il_crs_membe' || $short_role_title ==
'il_grp_membe') {
878 $parent_role_ids[] = $parent_role_id;
887 $this->parentRolesCache[$a_role_id] = $parent_role_ids;
889 return $this->parentRolesCache[$a_role_id];
899 foreach ($parent_role_ids as $parent_role_id) {
910 $rbacreview = $DIC[
'rbacreview'];
911 $rbacadmin = $DIC[
'rbacadmin'];
912 $tree = $DIC[
'tree'];
914 $rbacadmin->deassignUser($a_role_id, $a_user_obj->getId());
918 $obj = $rbacreview->getObjectOfRole($a_role_id);
921 $this->recommended_content_manager->removeObjectRecommendation($a_user_obj->getId(), $ref_id);
933 $rbacadmin = $DIC[
'rbacadmin'];
934 $rbacreview = $DIC[
'rbacreview'];
941 $this->roles[$this->current_role_id][
"name"] = $this->cdata;
942 $this->roles[$this->current_role_id][
"type"] = $this->current_role_type;
943 $this->roles[$this->current_role_id][
"action"] = $this->current_role_action;
946 case "PersonalPicture":
947 switch ($this->personalPicture[
"encoding"]) {
949 $this->personalPicture[
"content"] = base64_decode($this->cdata);
952 $this->personalPicture[
"content"] = convert_uudecode($this->cdata);
958 $this->userObj->setFullname();
961 if ($this->user_id == -1 || $this->action ==
"Insert") {
970 switch ($this->conflict_rule) {
975 switch ($this->action) {
978 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_action_replaced"),
"Insert",
"Update"));
979 $this->action =
"Update";
984 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_action_replaced"),
"Update",
"Insert"));
985 $this->action =
"Insert";
990 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_action_ignored"),
"Delete"));
991 $this->action =
"Ignore";
997 switch ($this->action) {
1000 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_action_ignored"),
"Insert"));
1001 $this->action =
"Ignore";
1006 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_action_ignored"),
"Update"));
1007 $this->action =
"Ignore";
1012 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_action_ignored"),
"Delete"));
1013 $this->action =
"Ignore";
1024 $am = ($this->userObj->getAuthMode() ==
"default" || $this->userObj->getAuthMode() ==
"")
1026 : $this->userObj->getAuthMode();
1027 $loginForExternalAccount = ($this->userObj->getExternalAccount() ==
"")
1030 switch ($this->action) {
1032 if ($loginForExternalAccount !=
"") {
1033 $this->
logWarning($this->userObj->getLogin(),
$lng->txt(
"usrimport_no_insert_ext_account_exists") .
" (" . $this->userObj->getExternalAccount() .
")");
1034 $this->action =
"Ignore";
1043 if ($loginForExternalAccount !=
"") {
1047 if ($externalAccountHasChanged && trim($loginForExternalAccount) != trim($this->userObj->getLogin())) {
1048 $this->
logWarning($this->userObj->getLogin(),
$lng->txt(
"usrimport_no_update_ext_account_exists") .
" (" . $this->userObj->getExternalAccount() .
")");
1049 $this->action =
"Ignore";
1055 if (
sizeof($this->multi_values)) {
1056 if (isset($this->multi_values[
"GeneralInterest"])) {
1057 $this->userObj->setGeneralInterests($this->multi_values[
"GeneralInterest"]);
1059 if (isset($this->multi_values[
"OfferingHelp"])) {
1060 $this->userObj->setOfferingHelp($this->multi_values[
"OfferingHelp"]);
1062 if (isset($this->multi_values[
"LookingForHelp"])) {
1063 $this->userObj->setLookingForHelp($this->multi_values[
"LookingForHelp"]);
1068 switch ($this->action) {
1071 $this->
logFailure($this->userObj->getLogin(),
$lng->txt(
"usrimport_cant_insert"));
1073 if (!strlen($this->currPassword) == 0) {
1074 switch (strtoupper($this->currPasswordType)) {
1077 $this->userObj->setPasswordEncodingType(
'bcryptphp');
1078 $this->userObj->setPasswordSalt(null);
1083 $this->acc_mail->setUserPassword($this->currPassword);
1099 $this->userObj->setTitle($this->userObj->getFullname());
1100 $this->userObj->setDescription($this->userObj->getEmail());
1102 if (!$this->time_limit_owner_set) {
1103 $this->userObj->setTimeLimitOwner($this->
getFolderId());
1107 if (!$this->time_limit_set) {
1108 $this->userObj->setTimeLimitUnlimited(1);
1109 $this->userObj->setTimeLimitMessage(0);
1111 if (!$this->approve_date_set) {
1112 $this->userObj->setApproveDate(date(
"Y-m-d H:i:s"));
1117 $this->userObj->setActive($this->currActive ==
'true' || is_null($this->currActive));
1123 if (count($this->udf_data)) {
1124 $this->userObj->setUserDefinedData($this->udf_data);
1127 if (!$this->userObj->getLanguage()) {
1128 $this->userObj->setLanguage($this->lng->getDefaultLanguage());
1132 $this->userObj->create();
1135 $this->userObj->saveAsNew(
false);
1138 $this->userObj->setPref(
'hits_per_page',
$ilSetting->get(
'hits_per_page', 30));
1141 if (count($this->prefs)) {
1142 foreach ($this->prefs as $key => $value) {
1143 if ($key !=
"mail_incoming_type" &&
1144 $key !=
"mail_signature" &&
1145 $key !=
"mail_linebreak" 1147 $this->userObj->setPref($key, $value);
1152 if (!is_array($this->prefs) || array_search(
'chat_osc_accept_msg', $this->prefs) ===
false) {
1153 $this->userObj->setPref(
'chat_osc_accept_msg',
$ilSetting->get(
'chat_osc_accept_msg',
'n'));
1155 if (!is_array($this->prefs) || array_search(
'bs_allow_to_contact_me', $this->prefs) ===
false) {
1156 $this->userObj->setPref(
'bs_allow_to_contact_me',
$ilSetting->get(
'bs_allow_to_contact_me',
'n'));
1159 $this->userObj->writePrefs();
1164 if (is_array($this->personalPicture)) {
1165 if (strlen($this->personalPicture[
"content"])) {
1167 if (preg_match(
"/.*(png|jpg|gif|jpeg)$/", $this->personalPicture[
"imagetype"], $matches)) {
1168 $extension = $matches[1];
1170 $tmp_name = $this->
saveTempImage($this->personalPicture[
"content"],
".$extension");
1171 if (strlen($tmp_name)) {
1179 foreach ($this->roles as $role_id => $role) {
1180 if ($this->role_assign[$role_id]) {
1181 $this->
assignToRole($this->userObj, $this->role_assign[$role_id]);
1185 if (count($this->udf_data)) {
1186 include_once
'./Services/User/classes/class.ilUserDefinedData.php';
1188 foreach ($this->udf_data as $field => $value) {
1189 $udd->
set(
"f_" . $field, $value);
1195 $this->
logSuccess($this->userObj->getLogin(), $this->userObj->getId(),
"Insert");
1197 $this->acc_mail->reset();
1203 $this->
logFailure($this->userObj->getLogin(),
$lng->txt(
"usrimport_cant_update"));
1206 $updateUser->read();
1207 $updateUser->readPrefs();
1208 if ($this->currPassword != null) {
1209 switch (strtoupper($this->currPasswordType)) {
1212 $updateUser->setPasswordEncodingType(
'bcryptphp');
1213 $updateUser->setPasswordSalt(null);
1218 $this->acc_mail->setUserPassword($this->currPassword);
1226 if (!is_null($this->userObj->getFirstname())) {
1227 $updateUser->setFirstname($this->userObj->getFirstname());
1229 if (!is_null($this->userObj->getLastname())) {
1230 $updateUser->setLastname($this->userObj->getLastname());
1232 if (!is_null($this->userObj->getUTitle())) {
1233 $updateUser->setUTitle($this->userObj->getUTitle());
1235 if (!is_null($this->userObj->getGender())) {
1236 $updateUser->setGender($this->userObj->getGender());
1238 if (!is_null($this->userObj->getEmail())) {
1239 $updateUser->setEmail($this->userObj->getEmail());
1241 if (!is_null($this->userObj->getSecondEmail())) {
1242 $updateUser->setSecondEmail($this->userObj->getSecondEmail());
1244 if (!is_null($this->userObj->getBirthday())) {
1245 $updateUser->setBirthday($this->userObj->getBirthday());
1247 if (!is_null($this->userObj->getInstitution())) {
1248 $updateUser->setInstitution($this->userObj->getInstitution());
1250 if (!is_null($this->userObj->getStreet())) {
1251 $updateUser->setStreet($this->userObj->getStreet());
1253 if (!is_null($this->userObj->getCity())) {
1254 $updateUser->setCity($this->userObj->getCity());
1256 if (!is_null($this->userObj->getZipCode())) {
1257 $updateUser->setZipCode($this->userObj->getZipCode());
1259 if (!is_null($this->userObj->getCountry())) {
1260 $updateUser->setCountry($this->userObj->getCountry());
1262 if (!is_null($this->userObj->getSelectedCountry())) {
1263 $updateUser->setSelectedCountry($this->userObj->getSelectedCountry());
1265 if (!is_null($this->userObj->getPhoneOffice())) {
1266 $updateUser->setPhoneOffice($this->userObj->getPhoneOffice());
1268 if (!is_null($this->userObj->getPhoneHome())) {
1269 $updateUser->setPhoneHome($this->userObj->getPhoneHome());
1271 if (!is_null($this->userObj->getPhoneMobile())) {
1272 $updateUser->setPhoneMobile($this->userObj->getPhoneMobile());
1274 if (!is_null($this->userObj->getFax())) {
1275 $updateUser->setFax($this->userObj->getFax());
1277 if (!is_null($this->userObj->getHobby())) {
1278 $updateUser->setHobby($this->userObj->getHobby());
1280 if (!is_null($this->userObj->getGeneralInterests())) {
1281 $updateUser->setGeneralInterests($this->userObj->getGeneralInterests());
1283 if (!is_null($this->userObj->getOfferingHelp())) {
1284 $updateUser->setOfferingHelp($this->userObj->getOfferingHelp());
1286 if (!is_null($this->userObj->getLookingForHelp())) {
1287 $updateUser->setLookingForHelp($this->userObj->getLookingForHelp());
1289 if (!is_null($this->userObj->getComment())) {
1290 $updateUser->setComment($this->userObj->getComment());
1292 if (!is_null($this->userObj->getDepartment())) {
1293 $updateUser->setDepartment($this->userObj->getDepartment());
1295 if (!is_null($this->userObj->getMatriculation())) {
1296 $updateUser->setMatriculation($this->userObj->getMatriculation());
1298 if (!is_null($this->currActive)) {
1299 $updateUser->setActive($this->currActive ==
"true", is_object(
$ilUser) ?
$ilUser->getId() : 0);
1301 if (!is_null($this->userObj->getClientIP())) {
1302 $updateUser->setClientIP($this->userObj->getClientIP());
1304 if (!is_null($this->userObj->getTimeLimitUnlimited())) {
1305 $updateUser->setTimeLimitUnlimited($this->userObj->getTimeLimitUnlimited());
1307 if (!is_null($this->userObj->getTimeLimitFrom())) {
1308 $updateUser->setTimeLimitFrom($this->userObj->getTimeLimitFrom());
1310 if (!is_null($this->userObj->getTimeLimitUntil())) {
1311 $updateUser->setTimeLimitUntil($this->userObj->getTimeLimitUntil());
1313 if (!is_null($this->userObj->getTimeLimitMessage())) {
1314 $updateUser->setTimeLimitMessage($this->userObj->getTimeLimitMessage());
1316 if (!is_null($this->userObj->getApproveDate())) {
1317 $updateUser->setApproveDate($this->userObj->getApproveDate());
1319 if (!is_null($this->userObj->getAgreeDate())) {
1320 $updateUser->setAgreeDate($this->userObj->getAgreeDate());
1322 if (!is_null($this->userObj->getLanguage())) {
1323 $updateUser->setLanguage($this->userObj->getLanguage());
1325 if (!is_null($this->userObj->getExternalAccount())) {
1326 $updateUser->setExternalAccount($this->userObj->getExternalAccount());
1330 #if (! is_null($this->userObj->getAuthMode())) $updateUser->setAuthMode($this->userObj->getAuthMode()); 1331 if ($this->auth_mode_set) {
1332 $updateUser->setAuthMode($this->userObj->getAuthMode());
1336 if ($this->time_limit_owner_set) {
1337 $updateUser->setTimeLimitOwner($this->userObj->getTimeLimitOwner());
1341 if (count($this->prefs)) {
1342 foreach ($this->prefs as $key => $value) {
1343 if ($key !=
"mail_incoming_type" &&
1344 $key !=
"mail_signature" &&
1345 $key !=
"mail_linebreak" 1347 $updateUser->setPref($key, $value);
1353 if ($this->updateLookAndSkin) {
1354 $updateUser->setPref(
"skin", $this->userObj->getPref(
"skin"));
1355 $updateUser->setPref(
"style", $this->userObj->getPref(
"style"));
1359 $updateUser->writePrefs();
1365 if (count($this->udf_data)) {
1366 $updateUser->setUserDefinedData($this->udf_data);
1370 $updateUser->setFullname();
1371 $updateUser->setTitle($updateUser->getFullname());
1372 $updateUser->setDescription($updateUser->getEmail());
1373 $updateUser->update();
1375 if (count($this->udf_data)) {
1376 include_once
'./Services/User/classes/class.ilUserDefinedData.php';
1378 foreach ($this->udf_data as $field => $value) {
1379 $udd->
set(
"f_" . $field, $value);
1385 if (!is_null($this->userObj->getLogin()) && $this->user_id != -1) {
1387 $updateUser->updateLogin($this->userObj->getLogin());
1395 if (is_array($this->personalPicture)) {
1396 if (strlen($this->personalPicture[
"content"])) {
1398 if (preg_match(
"/.*(png|jpg|gif|jpeg)$/", $this->personalPicture[
"imagetype"], $matches)) {
1399 $extension = $matches[1];
1401 $tmp_name = $this->
saveTempImage($this->personalPicture[
"content"],
".$extension");
1402 if (strlen($tmp_name)) {
1412 foreach ($this->roles as $role_id => $role) {
1413 if ($this->role_assign[$role_id]) {
1414 switch ($role[
"action"]) {
1416 $this->
assignToRole($updateUser, $this->role_assign[$role_id]);
1418 case "AssignWithParents":
1422 $this->
detachFromRole($updateUser, $this->role_assign[$role_id]);
1432 $this->
logFailure($this->userObj->getLogin(),
$lng->txt(
"usrimport_cant_delete"));
1435 $deleteUser->delete();
1443 $this->roles = array();
1447 $this->userObj->setLogin($this->cdata);
1451 $this->currPassword = $this->cdata;
1455 $this->userObj->setFirstname($this->cdata);
1459 $this->userObj->setLastname($this->cdata);
1463 $this->userObj->setUTitle($this->cdata);
1467 $this->userObj->setGender($this->cdata);
1471 $this->userObj->setEmail($this->cdata);
1474 $this->userObj->setSecondEmail($this->cdata);
1479 $this->userObj->setBirthday($this->cdata);
1483 $this->userObj->setInstitution($this->cdata);
1487 $this->userObj->setStreet($this->cdata);
1491 $this->userObj->setCity($this->cdata);
1495 $this->userObj->setZipCode($this->cdata);
1499 $this->userObj->setCountry($this->cdata);
1503 $this->userObj->setSelectedCountry($this->cdata);
1507 $this->userObj->setPhoneOffice($this->cdata);
1511 $this->userObj->setPhoneHome($this->cdata);
1515 $this->userObj->setPhoneMobile($this->cdata);
1519 $this->userObj->setFax($this->cdata);
1523 $this->userObj->setHobby($this->cdata);
1526 case "GeneralInterest":
1527 case "OfferingHelp":
1528 case "LookingForHelp":
1529 $this->multi_values[$a_name][] = $this->cdata;
1533 $this->userObj->setComment($this->cdata);
1537 $this->userObj->setDepartment($this->cdata);
1540 case "Matriculation":
1541 $this->userObj->setMatriculation($this->cdata);
1545 $this->currActive = $this->cdata;
1549 $this->userObj->setClientIP($this->cdata);
1552 case "TimeLimitOwner":
1553 $this->time_limit_owner_set =
true;
1554 $this->userObj->setTimeLimitOwner($this->cdata);
1557 case "TimeLimitUnlimited":
1558 $this->time_limit_set =
true;
1559 $this->userObj->setTimeLimitUnlimited($this->cdata);
1562 case "TimeLimitFrom":
1563 if (is_numeric($this->cdata)) {
1565 $this->userObj->setTimeLimitFrom($this->cdata);
1569 if (
$timestamp !==
false && trim($this->cdata) !=
"0000-00-00 00:00:00") {
1570 $this->userObj->setTimeLimitFrom(
$timestamp);
1571 } elseif ($this->cdata ==
"0000-00-00 00:00:00") {
1572 $this->userObj->setTimeLimitFrom(null);
1577 case "TimeLimitUntil":
1578 if (is_numeric($this->cdata)) {
1580 $this->userObj->setTimeLimitUntil($this->cdata);
1584 if (
$timestamp !==
false && trim($this->cdata) !=
"0000-00-00 00:00:00") {
1585 $this->userObj->setTimeLimitUntil(
$timestamp);
1586 } elseif ($this->cdata ==
"0000-00-00 00:00:00") {
1587 $this->userObj->setTimeLimitUntil(null);
1592 case "TimeLimitMessage":
1593 $this->userObj->setTimeLimitMessage($this->cdata);
1597 $this->approve_date_set =
true;
1598 if (is_numeric($this->cdata)) {
1605 if (
$timestamp !==
false && trim($this->cdata) !=
"0000-00-00 00:00:00") {
1608 } elseif ($this->cdata ==
"0000-00-00 00:00:00") {
1609 $this->userObj->setApproveDate(null);
1615 if (is_numeric($this->cdata)) {
1622 if (
$timestamp !==
false && trim($this->cdata) !=
"0000-00-00 00:00:00") {
1625 } elseif ($this->cdata ==
"0000-00-00 00:00:00") {
1626 $this->userObj->setAgreeDate(null);
1631 case "ExternalAccount":
1632 $this->userObj->setExternalAccount($this->cdata);
1636 $this->updateLookAndSkin =
false;
1637 if (!$this->hideSkin) {
1639 if ((strlen($this->skin) > 0) && (strlen($this->style) > 0)) {
1640 if (is_array($this->userStyles)) {
1641 if (in_array($this->skin .
":" . $this->style, $this->userStyles)) {
1642 $this->userObj->setPref(
"skin", $this->skin);
1643 $this->userObj->setPref(
"style", $this->style);
1644 $this->updateLookAndSkin =
true;
1651 case 'UserDefinedField':
1652 include_once
'./Services/User/classes/class.ilUserDefinedFields.php';
1654 if ($field_id = $udf->fetchFieldIdFromImportId($this->tmp_udf_id)) {
1655 $this->udf_data[$field_id] = $this->cdata;
1656 } elseif ($field_id = $udf->fetchFieldIdFromName($this->tmp_udf_name)) {
1657 $this->udf_data[$field_id] = $this->cdata;
1661 if ($this->current_messenger_type ==
"external") {
1662 $this->userObj->setExternalAccount($this->cdata);
1666 if ($this->currentPrefKey != null && strlen(trim($this->cdata)) > 0
1668 $this->prefs[$this->currentPrefKey] = trim($this->cdata);
1670 $this->currentPrefKey = null;
1682 $fh = fopen($tempname,
"wb");
1686 $imagefile = fwrite($fh, $image_data);
1699 $ilAccess = $DIC[
'ilAccess'];
1701 $ilObjDataCache = $DIC[
'ilObjDataCache'];
1705 $this->roles[$this->current_role_id][
"name"] = $this->cdata;
1706 $this->roles[$this->current_role_id][
"type"] = $this->current_role_type;
1707 $this->roles[$this->current_role_id][
"action"] = $this->current_role_action;
1711 $this->userObj->setFullname();
1712 if ($this->user_id != -1 && ($this->action ==
"Update" || $this->action ==
"Delete")) {
1718 if (is_null($this->userObj->getLogin())) {
1719 $this->
logFailure(
"---", sprintf(
$lng->txt(
"usrimport_xml_element_for_action_required"),
"Login",
"Insert"));
1722 switch ($this->action) {
1725 $this->
logWarning($this->userObj->getLogin(),
$lng->txt(
"usrimport_cant_insert"));
1727 if (is_null($this->userObj->getGender()) && $this->
isFieldRequired(
"gender")) {
1728 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_for_action_required"),
"Gender",
"Insert"));
1730 if (is_null($this->userObj->getFirstname())) {
1731 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_for_action_required"),
"Firstname",
"Insert"));
1733 if (is_null($this->userObj->getLastname())) {
1734 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_for_action_required"),
"Lastname",
"Insert"));
1736 if (count($this->roles) == 0) {
1737 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_for_action_required"),
"Role",
"Insert"));
1739 $has_global_role =
false;
1740 foreach ($this->roles as $role) {
1741 if ($role[
'type'] ==
'Global') {
1742 $has_global_role =
true;
1746 if (!$has_global_role) {
1747 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_global_role_for_action_required"),
"Insert"));
1752 if (!$user_exists) {
1753 $this->
logWarning($this->userObj->getLogin(),
$lng->txt(
"usrimport_cant_update"));
1754 } elseif ($this->user_id != -1 && !is_null($this->userObj->getLogin())) {
1759 $this->
logFailure($this->userObj->getLogin(),
$lng->txt(
"usrimport_login_is_not_unique"));
1764 if (!$user_exists) {
1765 $this->
logWarning($this->userObj->getLogin(),
$lng->txt(
"usrimport_cant_delete"));
1771 $this->roles = array();
1775 if (array_key_exists($this->cdata, $this->logins)) {
1776 $this->
logWarning($this->cdata,
$lng->txt(
"usrimport_login_is_not_unique"));
1778 $this->logins[$this->cdata] = $this->cdata;
1780 $this->userObj->setLogin($this->cdata);
1784 switch ($this->currPasswordType) {
1787 $this->userObj->setPasswordEncodingType(
'bcryptphp');
1788 $this->userObj->setPasswordSalt(null);
1793 $this->acc_mail->setUserPassword($this->currPassword);
1803 $this->userObj->setFirstname($this->cdata);
1807 $this->userObj->setLastname($this->cdata);
1811 $this->userObj->setUTitle($this->cdata);
1815 if (!in_array(strtolower($this->cdata), [
'n',
'm',
'f'])) {
1817 $this->userObj->getLogin(),
1818 sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"Gender", $this->cdata)
1821 $this->userObj->setGender($this->cdata);
1825 $this->userObj->setEmail($this->cdata);
1828 $this->userObj->setSecondEmail($this->cdata);
1831 $this->userObj->setInstitution($this->cdata);
1835 $this->userObj->setStreet($this->cdata);
1839 $this->userObj->setCity($this->cdata);
1843 $this->userObj->setZipCode($this->cdata);
1847 $this->userObj->setCountry($this->cdata);
1851 $this->userObj->setSelectedCountry($this->cdata);
1855 $this->userObj->setPhoneOffice($this->cdata);
1859 $this->userObj->setPhoneHome($this->cdata);
1863 $this->userObj->setPhoneMobile($this->cdata);
1867 $this->userObj->setFax($this->cdata);
1871 $this->userObj->setHobby($this->cdata);
1874 case "GeneralInterest":
1875 case "OfferingHelp":
1876 case "LookingForHelp":
1877 $this->multi_values[$a_name][] = $this->cdata;
1881 $this->userObj->setComment($this->cdata);
1885 $this->userObj->setDepartment($this->cdata);
1888 case "Matriculation":
1889 $this->userObj->setMatriculation($this->cdata);
1892 case "ExternalAccount":
1894 $am = ($this->userObj->getAuthMode() ==
"default" || $this->userObj->getAuthMode() ==
"")
1896 : $this->userObj->getAuthMode();
1897 $loginForExternalAccount = (trim($this->cdata) ==
"")
1900 switch ($this->action) {
1902 if ($loginForExternalAccount !=
"") {
1903 $this->
logWarning($this->userObj->getLogin(),
$lng->txt(
"usrimport_no_insert_ext_account_exists") .
" (" . $this->cdata .
")");
1908 if ($loginForExternalAccount !=
"") {
1910 if ($externalAccountHasChanged && trim($loginForExternalAccount) != trim($this->userObj->getLogin())) {
1912 $this->userObj->getLogin(),
1913 $lng->txt(
"usrimport_no_update_ext_account_exists") .
" (" . $this->cdata .
" for " . $loginForExternalAccount .
")" 1920 if ($externalAccountHasChanged) {
1921 $this->userObj->setExternalAccount(trim($this->cdata));
1926 if ($this->cdata !=
"true" 1927 && $this->cdata !=
"false") {
1929 $this->userObj->getLogin(),
1930 sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"Active", $this->cdata)
1933 $this->currActive = $this->cdata;
1935 case "TimeLimitOwner":
1936 if (!preg_match(
"/\d+/", $this->cdata)) {
1938 $this->userObj->getLogin(),
1939 sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitOwner", $this->cdata)
1941 } elseif (!$ilAccess->checkAccess(
'cat_administrate_users',
'', $this->cdata)) {
1943 $this->userObj->getLogin(),
1944 sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitOwner", $this->cdata)
1946 } elseif ($ilObjDataCache->lookupType($ilObjDataCache->lookupObjId($this->cdata)) !=
'cat' && !(
int) $this->cdata ==
USER_FOLDER_ID) {
1948 $this->userObj->getLogin(),
1949 sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitOwner", $this->cdata)
1952 $this->userObj->setTimeLimitOwner($this->cdata);
1954 case "TimeLimitUnlimited":
1955 switch (strtolower($this->cdata)) {
1958 $this->userObj->setTimeLimitUnlimited(1);
1962 $this->userObj->setTimeLimitUnlimited(0);
1965 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitUnlimited", $this->cdata));
1969 case "TimeLimitFrom":
1971 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata)) {
1972 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitFrom", $this->cdata));
1974 $this->userObj->setTimeLimitFrom($this->cdata);
1976 case "TimeLimitUntil":
1978 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata)) {
1979 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitUntil", $this->cdata));
1981 $this->userObj->setTimeLimitUntil($this->cdata);
1983 case "TimeLimitMessage":
1984 switch (strtolower($this->cdata)) {
1986 $this->userObj->setTimeLimitMessage(1);
1989 $this->userObj->setTimeLimitMessage(0);
1992 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitMessage", $this->cdata));
1998 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata) && !$this->cdata ==
"0000-00-00 00:00:00") {
1999 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"ApproveDate", $this->cdata));
2004 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata) && !$this->cdata ==
"0000-00-00 00:00:00") {
2005 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->txt(
"usrimport_xml_element_content_illegal"),
"AgreeDate", $this->cdata));
2009 if ($this->currentPrefKey != null) {
2010 $this->
verifyPref($this->currentPrefKey, $this->cdata);
2012 $this->currentPrefKey == null;
2024 if ($a_data !=
"\n") {
2025 $a_data = preg_replace(
"/\t+/",
" ", $a_data);
2028 if (strlen($a_data) > 0) {
2029 $this->cdata .= $a_data;
2056 if (!array_key_exists($aLogin, $this->protocol)) {
2057 $this->protocol[$aLogin] = array();
2060 $this->protocol[$aLogin][] = $aMessage;
2074 if (!array_key_exists($aLogin, $this->protocol)) {
2075 $this->protocol[$aLogin] = array();
2078 $this->protocol[$aLogin][] = $aMessage;
2092 $this->user_mapping[$userid] = array(
"login" => $aLogin,
"action" =>
$action,
"message" =>
"successful");
2117 $block =
new ilTemplate(
"tpl.usr_import_log_block.html",
true,
true,
"Services/User");
2118 $block->setVariable(
"TXT_LOG_TITLE", $a_log_title);
2119 $block->setVariable(
"TXT_MESSAGE_ID",
$lng->txt(
"login"));
2120 $block->setVariable(
"TXT_MESSAGE_TEXT",
$lng->txt(
"message"));
2122 $block->setCurrentBlock(
"log_row");
2125 if ($reason ==
"") {
2128 $reason = $reason .
"<br>" .
$message;
2131 $block->setVariable(
"MESSAGE_ID", $login);
2132 $block->setVariable(
"MESSAGE_TEXT", $reason);
2133 $block->parseCurrentBlock();
2135 return $block->get();
2170 if (
$_POST[
"send_mail"] !=
"" ||
2171 ($this->
isSendMail() && $this->userObj->getEmail() !=
"")) {
2172 $this->acc_mail->setUser($this->userObj);
2173 $this->acc_mail->send();
2184 $this->send_mail = $value ?
true:
false;
2205 $this->mapping_mode = $value;
2207 die(
"wrong argument using methode setUserMappingMethod in " . __FILE__);
2233 if (is_array($this->required_fields)) {
2234 return $this->required_fields;
2236 foreach (
$ilSetting->getAll() as $field => $value) {
2237 if (substr($field, 0, 8) ==
'require_' and $value == 1) {
2238 $value = substr($field, 8);
2239 $this->required_fields[$value] = $value;
2242 return $this->required_fields ? $this->required_fields : array();
2255 include_once
"Services/User/classes/class.ilUserProfile.php";
2268 $fieldname = strtolower(trim($fieldname));
2269 return array_key_exists($fieldname, $requiredFields);
2275 case 'mail_linebreak':
2276 case 'hits_per_page':
2277 if (!is_numeric($value) || $value < 0) {
2278 $this->
logFailure(
"---",
"Wrong value '$value': Positiv numeric value expected for preference $key.");
2284 case 'ilPageEditor_HTMLMode':
2285 case 'ilPageEditor_JavaScript':
2286 case 'ilPageEditor_MediaMode':
2287 case 'tst_javascript':
2288 case 'tst_lastquestiontype':
2289 case 'tst_multiline_answers':
2290 case 'tst_use_previous_answers':
2291 case 'graphicalAnswerSetting':
2292 case 'priv_feed_pass':
2293 $this->
logFailure(
"---",
"Preference $key is not supported.");
2296 case 'public_country':
2297 case 'public_department':
2298 case 'public_email':
2299 case 'public_second_email':
2301 case 'public_hobby':
2302 case 'public_institution':
2303 case 'public_matriculation':
2304 case 'public_phone':
2305 case 'public_phone_home':
2306 case 'public_phone_mobile':
2307 case 'public_phone_office':
2308 case 'public_street':
2309 case 'public_upload':
2311 case 'public_interests_general':
2312 case 'public_interests_help_offered':
2313 case 'public_interests_help_looking':
2314 case 'send_info_mails':
2315 case 'hide_own_online_status':
2316 if (!in_array($value, array(
'y',
'n'))) {
2317 $this->
logFailure(
"---",
"Wrong value '$value': Value 'y' or 'n' expected for preference $key.");
2320 case 'bs_allow_to_contact_me':
2321 if (!in_array($value, array(
'y',
'n'))) {
2322 $this->
logFailure(
"---",
"Wrong value '$value': Value 'y' or 'n' expected for preference $key.");
2325 case 'chat_osc_accept_msg':
2326 if (!in_array($value, array(
'y',
'n'))) {
2327 $this->
logFailure(
"---",
"Wrong value '$value': Value 'y' or 'n' expected for preference $key.");
2330 case 'public_profile':
2331 if (!in_array($value, array(
'y',
'n',
'g'))) {
2332 $this->
logFailure(
"---",
"Wrong value '$value': Value 'y', 'g' or 'n' expected for preference $key.");
2335 case 'show_users_online':
2336 if (!in_array($value, array(
'y',
'n',
'associated'))) {
2337 $this->
logFailure(
"---",
"Wrong value '$value': Value 'y' or 'n' or 'associated' expected for preference $key.");
2340 case 'mail_incoming_type':
2341 if (!in_array((
int) $value, array(
"0",
"1",
"2"))) {
2342 $this->
logFailure(
"---",
"Wrong value '$value': Value \"0\" (LOCAL),\"1\" (EMAIL) or \"2\" (BOTH) expected for preference $key.");
2346 if (!in_array($value, array(
"0",
"1"))) {
2347 $this->
logFailure(
"---",
"Wrong value '$value': Value \"0\" (Sunday) or \"1\" (Monday) expected for preference $key.");
2351 case 'mail_signature':
2354 include_once(
'Services/Calendar/classes/class.ilTimeZone.php');
2359 $this->
logFailure(
"---",
"Wrong value '$value': Invalid timezone $value detected for preference $key.");
2364 $this->
logFailure(
"---",
"Preference $key is not supported.");
2372 if (array_key_exists(
"mail_incoming_type", $this->prefs) ||
2373 array_key_exists(
"mail_signature", $this->prefs) ||
2374 array_key_exists(
"mail_linebreak", $this->prefs)
2376 include_once(
"Services/Mail/classes/class.ilMailOptions.php");
2379 $mailOptions->setLinebreak(array_key_exists(
"mail_linebreak", $this->prefs) ? $this->prefs[
"mail_linebreak"] : $mailOptions->getLinebreak());
2380 $mailOptions->setSignature(array_key_exists(
"mail_signature", $this->prefs) ? $this->prefs[
"mail_signature"] : $mailOptions->getSignature());
2381 $mailOptions->setIncomingType(array_key_exists(
"mail_incoming_type", $this->prefs) ? $this->prefs[
"mail_incoming_type"] : $mailOptions->getIncomingType());
2382 $mailOptions->updateOptions();
$hideSkin
Indicates if the skins are hidden.
static _lookupLogin($a_user_id)
lookup login
static isProfileIncomplete($a_user, $a_include_udf=true, $a_personal_data_only=true)
Check if all required personal data fields are set.
Class for user related exception handling in ILIAS.
static getUserIdByLogin($a_login)
Class ilMailOptions this class handles user mails.
static _lookupExternalAccount($a_user_id)
lookup external account for login and authmethod
setRoleAssignment($a_assign)
set import to local role assignemt
sendAccountMail()
send account mail
$parentRolesCache
Cached parent roles.
verifyBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
const IL_USER_MAPPING_LOGIN
getCollectedRoles()
get collected roles
static _getInstance()
Get instance.
getParentRoleIds($a_role_id)
Get array of parent role ids from cache.
$currPassword
The password of the current user.
$updateLookAndSkin
boolean to determine if look and skin should be updated
getUserMappingMode()
read access to user mapping mode
extractRolesEndTag($a_xml_parser, $a_name)
handler for end of element when in extract roles mode.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
static _lookupId($a_user_str)
Lookup id by login.
verifyEndTag($a_xml_parser, $a_name)
handler for end of element when in verify mode.
isFieldRequired($fieldname)
determine if a field $fieldname is to a required field (global setting)
static _lookupTitle($a_id)
lookup object title
const IL_FAIL_ON_CONFLICT
buildTag($type, $name, $attr="")
generate a tag with given name and attributes
isSuccess()
Returns true, if the import was successful.
$error_level
This variable is used to report the error level of the validation process or the importing process...
readRequiredFields()
read required fields
assignToRole($a_user_obj, $a_role_id)
Assigns a user to a role.
checkProfileIncomplete($user_obj)
Check if profile is incomplete Will set the usr_data field profile_incomplete if any required field i...
static _lookupActivatedStyle($a_skin, $a_style)
lookup if a style is activated
static _getActiveServerList()
Get active server list.
$currActive
The active state of the current user.
$currPasswordType
The password type of the current user.
static isPrefExportable($key)
returns wether a key from db is exportable or not
$personalPicture
Cached personal picture of the actual user This is used because the ilObjUser object has no field for...
setSendMail($value)
write access to property send mail
static _getAuthModeName($a_auth_key)
logWarning($aLogin, $aMessage)
Writes a warning log message to the protocol.
importBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element in user import mode
static _getAllReferences($a_id)
get all reference ids of object
handlerEndTag($a_xml_parser, $a_name)
handler for end of element
assignToRoleWithParents($a_user_obj, $a_role_id)
Assigns a user to a role and to all parent roles.
$userStyles
User assigned styles.
startParsing()
start the parser
Base class for sax-based expat parsing extended classes need to overwrite the method setHandlers and ...
isSendMail()
read access to property send mail
__construct($a_xml_file='', $a_mode=IL_USER_IMPORT, $a_conflict_rule=IL_FAIL_ON_CONFLICT)
Constructor.
$action
The Action attribute determines what to do for the current User element.
extractRolesBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element in extract roles mode
setHandlers($a_xml_parser)
set event handler should be overwritten by inherited class private
getProtocol()
Returns the protocol.
getRoleObject($a_role_id)
Returns the parent object of the role folder object which contains the specified role.
Class for TimeZone exceptions.
$recommended_content_manager
$logins
This variable is used to collect each login that we encounter in the import data. ...
getUserCount()
get count of User elements
static _uploadPersonalPicture($tmp_file, $obj_id)
Create a personal picture image file from a temporary image file.
$localRoleCache
Cached local roles.
getUserMapping()
returns a map user_id <=> login
logFailure($aLogin, $aMessage)
Writes a failure log message to the protocol.
static _lookupType($a_id, $a_reference=false)
lookup object type
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
static _checkExternalAuthAccount($a_auth, $a_account, $tryFallback=true)
check whether external account and authentication method matches with a user
getCourseMembersObjectForRole($a_role_id)
Returns the parent object of the role folder object which contains the specified role.
foreach($mandatory_scripts as $file) $timestamp
logSuccess($aLogin, $userid, $action)
Writes a success log message to the protocol.
static ilTempnam($a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
getErrorLevel()
Returns the error level.
$protocol
The variable holds the protocol of the import.
saveTempImage($image_data, $filename)
Saves binary image data to a temporary image file and returns the name of the image file on success...
static _getInstance($a_tz='')
get instance by timezone
setUserMappingMode($value)
write access to user mapping mode
detachFromRole($a_user_obj, $a_role_id)
Detachs a user from a role.
setFolderId($a_folder_id)
assign users to this folder (normally the usr_folder) But if called from local admin => the ref_id of...
$conflict_rule
Conflict handling rule.
__construct(Container $dic, ilPlugin $plugin)
importEndTag($a_xml_parser, $a_name)
handler for end of element when in import user mode.
$disableSkin
Indicates if the skins are enabled.
User settings configuration (what preferences can be visible/changed/...)
const USER_FOLDER_ID
Class ilObjUserFolder.
static getActiveIdpList()
static __extractId($ilias_id, $inst_id)
extract ref id from role title, e.g.
Recommended content manager (business logic)
$userCount
The count of user elements in the XML file.
const IL_UPDATE_ON_CONFLICT
updateMailPreferences($usr_id)
getProtocolAsHTML($a_log_title)
Returns the protocol as a HTML table.
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
const IL_IGNORE_ON_CONFLICT