38 parent::initByExporter($xml_exporter);
40 $config = $this->export->getExportConfigs()->getElementByClassName(
'ilUserExportConfig');
41 $this->export_config = $config;
46 return [
"4.3.0",
"4.5.0",
"5.1.0",
"5.2.0",
"5.3.0"];
49 protected function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
51 return "https://www.ilias.de/xml/Services/User/" . $a_entity;
54 protected function getTypes(
string $a_entity,
string $a_version): array
57 if ($a_entity ==
"usr_profile") {
67 "Firstname" =>
"text",
72 "Institution" =>
"text",
73 "Department" =>
"text",
78 "SelCountry" =>
"text",
79 "PhoneOffice" =>
"text",
80 "PhoneHome" =>
"text",
81 "PhoneMobile" =>
"text",
84 "SecondEmail" =>
"text",
86 "ReferralComment" =>
"text",
87 "Matriculation" =>
"text",
89 "Longitude" =>
"text",
91 "Picture" =>
"directory" 96 if ($a_entity ==
"usr_setting") {
104 "UserId" =>
"integer",
111 if ($this->export_config->getExportType() ==
"personal_data") {
112 switch ($a_version) {
124 if ($a_entity ==
"usr_multi") {
125 switch ($a_version) {
131 "UserId" =>
"integer",
140 public function getXmlRecord(
string $a_entity,
string $a_version, array $a_set): array
144 if ($a_entity ==
"usr_profile") {
159 $this->temp_picture_dirs[$a_set[
"Id"]] = $tmp_dir;
161 $a_set[
"Picture"] = $tmp_dir;
169 if ($a_entity ==
"usr_profile") {
171 $tmp_dir = $this->temp_picture_dirs[$a_set[
"Id"]];
172 if ($tmp_dir !=
"" && is_dir($tmp_dir)) {
178 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
182 $ilDB = $DIC[
'ilDB'];
184 if (!is_array($a_ids)) {
188 if ($this->export_config->getExportType() ==
"personal_data") {
189 switch ($a_version) {
196 foreach ($a_ids as
$id) {
197 $this->data[] = [
"Id" =>
$id];
203 if ($a_entity ==
"usr_profile") {
204 switch ($a_version) {
209 " title, birthday, gender, institution, department, street, city, zipcode, country, sel_country, " .
210 " phone_office, phone_home, phone_mobile, fax, email, hobby, referral_comment, matriculation, " .
211 " delicious, latitude, longitude, loc_zoom" .
212 " FROM usr_data u " .
214 $ilDB->in(
"u.usr_id", $a_ids,
false,
"integer"));
219 " title, birthday, gender, institution, department, street, city, zipcode, country, sel_country, " .
220 " phone_office, phone_home, phone_mobile, fax, email, hobby, referral_comment, matriculation, " .
221 " latitude, longitude, loc_zoom" .
222 " FROM usr_data u " .
224 $ilDB->in(
"u.usr_id", $a_ids,
false,
"integer"));
228 " title, birthday, gender, institution, department, street, city, zipcode, country, sel_country, " .
229 " phone_office, phone_home, phone_mobile, fax, email, second_email, hobby, referral_comment, matriculation, " .
230 " latitude, longitude, loc_zoom" .
231 " FROM usr_data u " .
233 $ilDB->in(
"u.usr_id", $a_ids,
false,
"integer"));
238 if ($a_entity ==
"usr_setting") {
239 switch ($a_version) {
246 $prefs = [
"date_format",
"day_end",
"day_start",
"bs_allow_to_contact_me",
"chat_osc_accept_msg",
"hide_own_online_status",
"language",
247 "public_birthday",
"puplic_city",
"public_country",
"public_delicious",
"public_department",
"public_email",
"public_second_email",
248 "public_fax",
"public_gender",
"public_hobby",
"public_im_aim",
"public_im_icq",
"public_im_jabber",
249 "public_im_msn",
"public_im_skype",
"public_im_voip",
"public_im_yahoo",
"public_institution",
"public_location",
250 "public_matriculation",
"public_phone_home",
"public_phone_mobile",
"public_phone_office",
251 "public_profile",
"public_sel_country",
"public_street",
"public_title",
"public_upload",
"public_zipcode",
252 "screen_reader_optimization",
"show_users_online",
253 "store_last_visited",
"time_format",
"user_tz",
"weekstart",
254 "session_reminder_lead_time",
"usr_starting_point",
255 "chat_broadcast_typing"];
257 if (version_compare($a_version,
'5.2.0',
'>=')) {
259 $prefs[
'public_im_aim'], $prefs[
'public_im_icq'], $prefs[
'public_im_jabber'],
260 $prefs[
'public_im_msn'], $prefs[
'public_im_skype'], $prefs[
'public_im_voip'],
261 $prefs[
'public_im_yahoo'], $prefs[
'public_delicious']
266 $set =
$ilDB->query(
"SELECT * FROM usr_pref " .
267 " WHERE " .
$ilDB->in(
"keyword", $prefs,
false,
"text") .
268 " AND " .
$ilDB->in(
"usr_id", $a_ids,
false,
"integer"));
269 while ($rec =
$ilDB->fetchAssoc($set)) {
270 $this->data[] = [
"UserId" => $rec[
"usr_id"],
"Keyword" => $rec[
"keyword"],
"Value" => $rec[
"value"]];
276 if ($a_entity ==
"usr_multi") {
277 switch ($a_version) {
283 $set =
$ilDB->query(
"SELECT * FROM usr_data_multi" .
284 " WHERE " .
$ilDB->in(
"usr_id", $a_ids,
false,
"integer"));
285 while ($rec =
$ilDB->fetchAssoc($set)) {
286 $this->data[] = [
"UserId" => $rec[
"usr_id"],
"FieldId" => $rec[
"field_id"],
"Value" => $rec[
"value"]];
298 string $a_schema_version
303 $ilUser = $DIC[
'ilUser'];
309 $a_mapping->
addMapping(
"components/ILIAS/User",
"usr", $a_rec[
"Id"], $ilUser->getId());
313 $usr_id = $a_mapping->
getMapping(
"components/ILIAS/User",
"usr", $a_rec[
"Id"]);
315 if (!isset($this->users[$usr_id])) {
316 $this->users[$usr_id] =
new ilObjUser($usr_id);
318 $user = $this->users[$usr_id];
320 $prof->skipField(
"username");
321 $prof->skipField(
"password");
322 $prof->skipField(
"roles");
323 $prof->skipGroup(
"settings");
324 $fields = $prof->getStandardFields();
325 foreach ($fields as $k =>
$f) {
328 if ($this->user_profile->userSettingVisible($k) &&
329 !
$ilSetting->get(
"usr_settings_disable_" . $k) &&
330 (
$f[
"method"] ??
"") !=
"" && isset($a_rec[$up_k])) {
331 $set_method =
"set" . substr(
$f[
"method"], 3);
336 $user->setLatitude($a_rec[
"Latitude"] ??
null);
337 $user->setLongitude($a_rec[
"Longitude"] ?? null);
338 $zoom = isset($a_rec[
"LocZoom"]) ? (
int) $a_rec[
"LocZoom"] : null;
339 $user->setLocationZoom($zoom);
344 $pic_dir = $this->
getImportDirectory() .
"/" . str_replace(
"..",
"", $a_rec[
"Picture"]);
345 if ($pic_dir !=
"" && is_dir($pic_dir)) {
346 $upload_file = $pic_dir .
"/usr_" . $a_rec[
"Id"] .
".jpg";
347 if (!is_file($upload_file)) {
348 $upload_file = $pic_dir .
"/upload_" . $a_rec[
"Id"] .
"pic";
350 if (is_file($upload_file)) {
358 $usr_id = $a_mapping->
getMapping(
"components/ILIAS/User",
"usr", $a_rec[
"UserId"]);
360 if (!isset($this->users[$usr_id])) {
361 $this->users[$usr_id] =
new ilObjUser($usr_id);
363 $user = $this->users[$usr_id];
369 $usr_id = $a_mapping->
getMapping(
"components/ILIAS/User",
"usr", $a_rec[
"UserId"]);
static copyProfilePicturesToDirectory(int $a_user_id, string $a_dir)
convertToLeadingUpper(string $a_str)
Make xyz_abc a XyzAbc string.
initByExporter(ilXmlExporter $xml_exporter)
afterXmlRecordWriting(string $a_entity, string $a_version, array $a_set)
static secureString(string $a_str, bool $a_strip_html=true, string $a_allow="")
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
static _uploadPersonalPicture(string $tmp_file, int $obj_id)
Create a personal picture image file from a temporary image file.
readData(string $a_entity, string $a_version, array $a_ids)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getTypes(string $a_entity, string $a_version)
getXmlRecord(string $a_entity, string $a_version, array $a_set)
ilUserExportConfig $export_config
getMapping(string $a_comp, string $a_entity, string $a_old_id)
ilUserProfile $user_profile
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
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)
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
getXmlNamespace(string $a_entity, string $a_schema_version)
static _lookupType(int $id, bool $reference=false)
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...