ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUserDefinedData.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  public ?ilDBInterface $db = null;
26  public array $user_data = []; // Missing array type.
27  public ?int $usr_id = null;
28 
29  public function __construct(int $a_usr_id)
30  {
31  global $DIC;
32 
33  $ilDB = $DIC['ilDB'];
34 
35  $this->db = $ilDB;
36  $this->usr_id = $a_usr_id;
37 
38  $this->__read();
39  }
40 
44  public static function lookupData(array $a_user_ids, array $a_field_ids): array // Missing array type.
45  {
46  global $DIC;
47 
48  $ilDB = $DIC['ilDB'];
49 
50  $query = "SELECT * FROM udf_text " .
51  "WHERE " . $ilDB->in('usr_id', $a_user_ids, false, 'integer') . ' ' .
52  'AND ' . $ilDB->in('field_id', $a_field_ids, false, 'integer');
53  $res = $ilDB->query($query);
54 
55  $udfd = [];
56  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) {
57  $udfd[$row['usr_id']][$row['field_id']] = $row['value'];
58  }
59 
61  foreach ($def_helper->getActivePlugins() as $plugin) {
62  foreach ($plugin->lookupUserData($a_user_ids, $a_field_ids) as $user_id => $usr_data) {
63  foreach ($usr_data as $field_id => $value) {
64  $udfd[$user_id][$field_id] = $value;
65  }
66  }
67  }
68 
69  return $udfd;
70  }
71 
72  public function getUserId(): int
73  {
74  return $this->usr_id;
75  }
76 
77  public function set(string $a_field, string $a_value): void
78  {
79  $this->user_data[$a_field] = $a_value;
80  }
81 
82  public function get(string $a_field): string
83  {
84  return $this->user_data[$a_field] ?? '';
85  }
86 
90  public function getAll(): array
91  {
92  return array_map(
93  static fn($value): string => $value ?? '',
94  $this->user_data
95  );
96  }
97 
98  public function update(): void
99  {
100  global $DIC;
101 
102  $ilDB = $DIC['ilDB'];
103 
105 
106  foreach ($udf_obj->getDefinitions() as $definition) {
107  if ($definition["field_type"] == UDF_TYPE_WYSIWYG) {
108  $ilDB->replace(
109  "udf_clob",
110  [
111  "usr_id" => ["integer", $this->getUserId()],
112  "field_id" => ["integer", $definition['field_id']]],
113  [
114  "value" => ["clob", $this->get("f_" . $definition['field_id'])]
115  ]
116  );
117  } else {
118  $ilDB->replace(
119  "udf_text",
120  [
121  "usr_id" => ["integer", $this->getUserId()],
122  "field_id" => ["integer", $definition['field_id']]],
123  [
124  "value" => ["text", $this->get("f_" . $definition['field_id'])]
125  ]
126  );
127  }
128  }
129  }
130 
131  public static function deleteEntriesOfUser(int $a_user_id): void
132  {
133  global $DIC;
134 
135  $ilDB = $DIC['ilDB'];
136 
137  $ilDB->manipulate(
138  "DELETE FROM udf_text WHERE "
139  . " usr_id = " . $ilDB->quote($a_user_id, "integer")
140  );
141  $ilDB->manipulate(
142  "DELETE FROM udf_clob WHERE "
143  . " usr_id = " . $ilDB->quote($a_user_id, "integer")
144  );
145  }
146 
150  public static function deleteEntriesOfField(int $a_field_id): void
151  {
152  global $DIC;
153 
154  $ilDB = $DIC['ilDB'];
155 
156  $ilDB->manipulate(
157  "DELETE FROM udf_text WHERE "
158  . " field_id = " . $ilDB->quote($a_field_id, "integer")
159  );
160  $ilDB->manipulate(
161  "DELETE FROM udf_clob WHERE "
162  . " field_id = " . $ilDB->quote($a_field_id, "integer")
163  );
164  }
165 
169  public static function deleteFieldValue(
170  int $a_field_id,
171  string $a_value
172  ): void {
173  global $DIC;
174 
175  $ilDB = $DIC['ilDB'];
176 
177  $ilDB->manipulate(
178  "UPDATE udf_text SET value = " . $ilDB->quote("", "text") . " WHERE "
179  . " field_id = " . $ilDB->quote($a_field_id, "integer")
180  . " AND value = " . $ilDB->quote($a_value, "text")
181  );
182  }
183 
184  public function toXML(): string
185  {
186  $xml_writer = new ilXmlWriter();
187 
188  $this->addToXML($xml_writer);
189 
190  return $xml_writer->xmlDumpMem(false);
191  }
192 
196  public function addToXML(ilXmlWriter $xml_writer): void
197  {
199 
200  foreach ($udf_obj->getDefinitions() as $definition) {
201  if ($definition["export"] != false) {
202  $xml_writer->xmlElement(
203  'UserDefinedField',
204  ['Id' => $definition['il_id'],
205  'Name' => $definition['field_name']],
206  (string) ($this->user_data['f_' . (int) $definition['field_id']] ?? '')
207  );
208  }
209  }
210  }
211 
212  // Private
213  public function __read(): void
214  {
215  $this->user_data = [];
216  $query = "SELECT * FROM udf_text " .
217  "WHERE usr_id = " . $this->db->quote($this->usr_id, 'integer');
218  $res = $this->db->query($query);
219  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) {
220  $this->user_data["f_" . $row["field_id"]] = $row["value"];
221  }
222  $query = "SELECT * FROM udf_clob " .
223  "WHERE usr_id = " . $this->db->quote($this->usr_id, 'integer');
224  $res = $this->db->query($query);
225  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) {
226  $this->user_data["f_" . $row["field_id"]] = $row["value"];
227  }
228  }
229 }
static lookupData(array $a_user_ids, array $a_field_ids)
Lookup data.
$res
Definition: ltiservices.php:66
static deleteEntriesOfField(int $a_field_id)
Delete data of particular field.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addToXML(ilXmlWriter $xml_writer)
add user defined field data to xml (using usr dtd)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static deleteEntriesOfUser(int $a_user_id)
global $DIC
Definition: shib_login.php:22
const UDF_TYPE_WYSIWYG
static deleteFieldValue(int $a_field_id, string $a_value)
Delete data of particular value of a (selection) field.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)