ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclBaseRecordFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected ?int $id = null;
29  protected $value;
30  protected ilObjUser $user;
31  protected ilCtrl $ctrl;
32  protected ilDBInterface $db;
33  protected ilLanguage $lng;
36 
41  public function __construct(ilDclBaseRecordModel $record, ilDclBaseFieldModel $field)
42  {
43  global $DIC;
44 
45  $this->record = $record;
46  $this->field = $field;
47  $this->ctrl = $DIC->ctrl();
48  $this->user = $DIC->user();
49  $this->db = $DIC->database();
50  $this->lng = $DIC->language();
51  $this->http = $DIC->http();
52  $this->refinery = $DIC->refinery();
53  $this->doRead();
54  }
55 
59  protected function doRead(): void
60  {
61  if (!$this->getRecord()->getId()) {
62  return;
63  }
64 
65  $query = "SELECT * FROM il_dcl_record_field WHERE field_id = " . $this->db->quote(
66  $this->getField()->getId(),
67  "integer"
68  ) . " AND record_id = "
69  . $this->db->quote($this->getRecord()->getId(), "integer");
70  $set = $this->db->query($query);
71  $rec = $this->db->fetchAssoc($set);
72  $this->id = $rec['id'] ?? null;
73 
74  $this->loadValue();
75  }
76 
80  public function doCreate(): void
81  {
82  $id = $this->db->nextId("il_dcl_record_field");
83  $query = "INSERT INTO il_dcl_record_field (id, record_id, field_id) VALUES (" . $this->db->quote(
84  $id,
85  "integer"
86  ) . ", "
87  . $this->db->quote(
88  $this->getRecord()->getId(),
89  "integer"
90  ) . ", " . $this->db->quote($this->getField()->getId(), "text") . ")";
91  $this->db->manipulate($query);
92  $this->id = $id;
93  }
94 
98  public function doUpdate(): void
99  {
100  //$this->loadValue(); //Removed Mantis #0011799
101  $datatype = $this->getField()->getDatatype();
102  $storage_location = ($this->getField()->getStorageLocationOverride() !== null) ? $this->getField()->getStorageLocationOverride() : $datatype->getStorageLocation();
103 
104  if ($storage_location != 0) {
105  $query = "DELETE FROM il_dcl_stloc" . $storage_location . "_value WHERE record_field_id = "
106  . $this->db->quote($this->id, "integer");
107  $this->db->manipulate($query);
108 
109  $next_id = $this->db->nextId("il_dcl_stloc" . $storage_location . "_value");
110 
111  $value = $this->serializeData($this->value);
112 
113  if (empty($this->getId())) {
114  $this->doCreate();
115  }
116 
117  $insert_params = [
118  "value" => [$datatype->getDbType(), $value],
119  "record_field_id" => ["integer", $this->getId()],
120  "id" => ["integer", $next_id],
121  ];
122 
123  $this->db->insert("il_dcl_stloc" . $storage_location . "_value", $insert_params);
124  }
125  }
126 
130  public function delete(): void
131  {
132  $datatype = $this->getField()->getDatatype();
133  $storage_location = ($this->getField()->getStorageLocationOverride() !== null) ? $this->getField()->getStorageLocationOverride() : $datatype->getStorageLocation();
134 
135  if ($storage_location != 0) {
136  $query = "DELETE FROM il_dcl_stloc" . $storage_location . "_value WHERE record_field_id = "
137  . $this->db->quote($this->id, "integer");
138  $this->db->manipulate($query);
139  }
140 
141  $query2 = "DELETE FROM il_dcl_record_field WHERE id = " . $this->db->quote($this->id, "integer");
142  $this->db->manipulate($query2);
143  }
144 
148  public function getValue()
149  {
150  $this->loadValue();
151 
152  return $this->value;
153  }
154 
158  public function getValueForRepresentation()
159  {
160  return $this->getValue();
161  }
162 
168  public function serializeData($value)
169  {
170  if (is_array($value)) {
171  $value = json_encode($value);
172  }
173 
174  return $value;
175  }
176 
182  public function deserializeData($value)
183  {
184  $deserialize = json_decode((string) $value, true);
185  if (is_array($deserialize)) {
186  return $deserialize;
187  }
188 
189  return $value;
190  }
191 
197  public function setValue($value, bool $omit_parsing = false): void
198  {
199  $this->loadValue();
200  if (!$omit_parsing) {
201  $tmp = $this->parseValue($value);
202  //if parse value fails keep the old value
203  if ($tmp !== false) {
204  $this->value = $tmp;
205  }
206  } else {
207  $this->value = $value;
208  }
209  }
210 
211  public function setValueFromForm(ilPropertyFormGUI $form): void
212  {
213  $value = $form->getInput("field_" . $this->getField()->getId());
214 
215  $this->setValue($value);
216  }
217 
218  public function getFormulaValue(): string
219  {
220  return (string) $this->getExportValue();
221  }
222 
228  public function parseExportValue($value)
229  {
230  return $value;
231  }
232 
236  public function getValueFromExcel(ilExcel $excel, int $row, int $col)
237  {
238  return (string) $excel->getCell($row, $col);
239  }
240 
246  public function parseValue($value)
247  {
248  return $value;
249  }
250 
254  public function getExportValue()
255  {
256  return $this->parseExportValue($this->getValue());
257  }
258 
259  public function fillExcelExport(ilExcel $worksheet, int &$row, int &$col): void
260  {
261  $worksheet->setCell($row, $col, $this->getExportValue());
262  $col++;
263  }
264 
268  public function getPlainText()
269  {
270  return $this->getExportValue();
271  }
272 
277  public function getSortingValue(bool $link = true)
278  {
279  return $this->parseSortingValue($this->getValue(), $link);
280  }
281 
285  public function addHiddenItemsToConfirmation(ilConfirmationGUI $confirmation)
286  {
287  if (!is_array($this->getValue())) {
288  $confirmation->addHiddenItem('field_' . $this->field->getId(), (string) $this->getValue());
289  } else {
290  foreach ($this->getValue() as $key => $value) {
291  $confirmation->addHiddenItem('field_' . $this->field->getId() . "[$key]", (string) $value);
292  }
293  }
294  }
295 
301  public function parseSortingValue($value, bool $link = true)
302  {
303  return $value;
304  }
305 
309  protected function loadValue(): void
310  {
311  if ($this->value === null) {
312  $datatype = $this->getField()->getDatatype();
313 
314  $storage_location = ($this->getField()->getStorageLocationOverride() !== null) ? $this->getField()->getStorageLocationOverride() : $datatype->getStorageLocation();
315  if ($storage_location != 0) {
316  $query = "SELECT * FROM il_dcl_stloc" . $storage_location . "_value WHERE record_field_id = "
317  . $this->db->quote($this->id, "integer");
318 
319  $set = $this->db->query($query);
320  $rec = $this->db->fetchAssoc($set);
321  $value = $this->deserializeData($rec['value'] ?? null);
322  $this->value = $value;
323  }
324  }
325  }
326 
330  public function cloneStructure(ilDclBaseRecordFieldModel $old_record_field): void
331  {
332  $this->setValue($old_record_field->getValue());
333  $this->doUpdate();
334  }
335 
339  public function afterClone(): void
340  {
341  }
342 
343  public function getField(): ilDclBaseFieldModel
344  {
345  return $this->field;
346  }
347 
348  public function getId(): ?int
349  {
350  return $this->id;
351  }
352 
353  public function getRecord(): ilDclBaseRecordModel
354  {
355  return $this->record;
356  }
357 
359  {
361  }
362 
363  public function setRecordRepresentation(ilDclBaseRecordRepresentation $record_representation): void
364  {
365  $this->record_representation = $record_representation;
366  }
367 
369  {
371  }
372 
373  public function setFieldRepresentation(ilDclBaseFieldRepresentation $field_representation): void
374  {
375  $this->field_representation = $field_representation;
376  }
377 }
parseValue($value)
Function to parse incoming data from form input value $value.
ilDclBaseRecordRepresentation $record_representation
fillExcelExport(ilExcel $worksheet, int &$row, int &$col)
setValue($value, bool $omit_parsing=false)
Set value for record field.
__construct(ilDclBaseRecordModel $record, ilDclBaseFieldModel $field)
addHiddenItem(string $a_post_var, string $a_value)
doRead()
Read object data from database.
getValueFromExcel(ilExcel $excel, int $row, int $col)
doCreate()
Creates an Id and a database entry.
cloneStructure(ilDclBaseRecordFieldModel $old_record_field)
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
deserializeData($value)
Deserialize data before applying to field.
ilDclBaseFieldRepresentation $field_representation
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
parseExportValue($value)
Function to parse incoming data from form input value $value.
setRecordRepresentation(ilDclBaseRecordRepresentation $record_representation)
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
static http()
Fetches the global http state from ILIAS.
addHiddenItemsToConfirmation(ilConfirmationGUI $confirmation)
doUpdate()
Update object in database.
global $DIC
Definition: shib_login.php:22
setFieldRepresentation(ilDclBaseFieldRepresentation $field_representation)
parseSortingValue($value, bool $link=true)
Returns sortable value for the specific field-types.
serializeData($value)
Serialize data before storing to db.
getCell(int $a_row, int $a_col)
Returns the value of a cell.