ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclTextFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
26  public function getRecordQueryFilterObject(
27  $filter_value = "",
28  ?ilDclBaseFieldModel $sort_field = null
30  $join_str
31  = "INNER JOIN il_dcl_record_field AS filter_record_field_{$this->getId()} ON (filter_record_field_{$this->getId()}.record_id = record.id AND filter_record_field_{$this->getId()}.field_id = "
32  . $this->db->quote($this->getId(), 'integer') . ") ";
33  $join_str .= "INNER JOIN il_dcl_stloc{$this->getStorageLocation()}_value AS filter_stloc_{$this->getId()} ON (filter_stloc_{$this->getId()}.record_field_id = filter_record_field_{$this->getId()}.id AND filter_stloc_{$this->getId()}.value LIKE "
34  . $this->db->quote("%$filter_value%", 'text') . ") ";
35 
36  $sql_obj = new ilDclRecordQueryObject();
37  $sql_obj->setJoinStatement($join_str);
38 
39  return $sql_obj;
40  }
41 
42  public function getRecordQuerySortObject(
43  string $direction = "asc",
44  bool $sort_by_status = false
46  // use custom record sorting for url-fields
48  return new ilDclTextRecordQueryObject();
49  } else {
50  return parent::getRecordQuerySortObject($direction, $sort_by_status);
51  }
52  }
53 
57  public function checkValidityFromForm(ilPropertyFormGUI &$form, ?int $record_id = null): void
58  {
59  $has_url_property = $this->getProperty(ilDclBaseFieldModel::PROP_URL);
60  if ($has_url_property) {
61  $values = [
62  'link' => $form->getInput("field_" . $this->getId()),
63  'title' => $form->getInput("field_" . $this->getId() . "_title"),
64  ];
65  $this->checkValidityOfURLField($values, $record_id);
66  } else {
67  parent::checkValidityFromForm($form, $record_id);
68  }
69  }
70 
77  protected function checkValidityOfURLField($value, ?int $record_id): bool
78  {
79  //Don't check empty values
80  if (!$value['link']) {
81  return true;
82  }
83 
84  // TODO: value should always be an array with url fields, can we remove the check & json_decode?
85  if (!is_array($value)) {
86  $value = ['link' => $value, 'title' => ''];
87  }
88 
89  //check url/email
90  $link = (substr($value['link'], 0, 3) === 'www') ? 'https://' . $value['link'] : $value['link'];
91  if (!filter_var($link, FILTER_VALIDATE_URL) && !filter_var($link, FILTER_VALIDATE_EMAIL) && $link != '') {
93  }
94 
95  if ($this->isUnique()) {
96  $table = ilDclCache::getTableCache($this->getTableId());
97  foreach ($table->getRecords() as $record) {
98  if (($record->getId() !== $record_id) && !empty($record_id)) {
99  $record_value = $record->getRecordFieldValue($this->getId());
100  if (!empty($record_value['link']) && $record_value['link'] === $link) {
102  }
103  }
104  }
105  }
106 
107  return true;
108  }
109 
110  public function checkFieldCreationInput(ilPropertyFormGUI $form): bool
111  {
112  $return = true;
113  // Additional check for text fields: The length property should be max 200 if the textarea option is not set
114  if ((int) $form->getInput('prop_' . ilDclBaseFieldModel::PROP_LENGTH) > 200 && !$form->getInput('prop_' . ilDclBaseFieldModel::PROP_TEXTAREA)) {
115  $inputObj = $form->getItemByPostVar('prop_' . ilDclBaseFieldModel::PROP_LENGTH);
116  $inputObj->setAlert($this->lng->txt("form_msg_value_too_high"));
117  $return = false;
118  }
119 
120  return $return;
121  }
122 
126  public function getValidFieldProperties(): array
127  {
128  return [
134  ];
135  }
136 
137  protected function checkRegexAndLength(string $value): void
138  {
139  if ($this->getProperty(ilDclBaseFieldModel::PROP_LENGTH) < $this->strlen($value)
140  && is_numeric($this->getProperty(ilDclBaseFieldModel::PROP_LENGTH))
141  ) {
143  }
144 
147  if (substr($regex, 0, 1) != "/") {
148  $regex = "/" . $regex;
149  }
150  if (substr($regex, -1) != "/") {
151  $regex .= "/";
152  }
153 
154  try {
155  $preg_match = preg_match($regex, $value);
156  } catch (ErrorException) {
158  }
159 
160  if ($preg_match == false) {
162  }
163  }
164  }
165 
166  public function strlen(string $value, string $encoding = 'UTF-8'): int
167  {
168  switch (true) {
169  case function_exists('mb_strlen'):
170  return mb_strlen($value, $encoding);
171  case function_exists('iconv_strlen'):
172  return iconv_strlen($value, $encoding);
173  default:
174  return strlen($value);
175  }
176  }
177 
178  public function fillHeaderExcel(ilExcel $worksheet, int &$row, int &$col): void
179  {
180  parent::fillHeaderExcel($worksheet, $row, $col);
182  $worksheet->setCell($row, $col, $this->getTitle() . '_title');
183  $col++;
184  }
185  }
186 
187  public function checkTitlesForImport(array &$titles, array &$import_fields): void
188  {
189  foreach ($titles as $k => $title) {
190  if (!mb_detect_encoding($title, "UTF-8", true) == "UTF-8") {
191  $title = mb_convert_encoding($title, 'UTF-8', 'ISO-8859-1');
192  }
193  if ($title == $this->getTitle()) {
194  $import_fields[$k] = $this;
195  if ($this->hasProperty(ilDclBaseFieldModel::PROP_URL) && $titles[$k + 1] == $this->getTitle() . '_title') {
196  unset($titles[$k + 1]);
197  }
198  }
199  }
200  }
201 }
hasProperty(string $key)
Checks if a certain property for a field is set.
fillHeaderExcel(ilExcel $worksheet, int &$row, int &$col)
checkTitlesForImport(array &$titles, array &$import_fields)
getItemByPostVar(string $a_post_var)
checkFieldCreationInput(ilPropertyFormGUI $form)
getRecordQueryFilterObject( $filter_value="", ?ilDclBaseFieldModel $sort_field=null)
checkValidityOfURLField($value, ?int $record_id)
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-...
getRecordQuerySortObject(string $direction="asc", bool $sort_by_status=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
strlen(string $value, string $encoding='UTF-8')
const PROP_LENGTH
General properties.
static getTableCache(?int $table_id=null)
checkValidityFromForm(ilPropertyFormGUI &$form, ?int $record_id=null)