ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDCopyrightSelectionEntry.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 
34 {
35  protected ilLogger $logger;
36  protected ilDBInterface $db;
40 
41  private int $entry_id;
42  private string $title = '';
43  private string $description = '';
44  private string $copyright = '';
45  private int $usage = 0;
46 
47  protected bool $outdated = false;
48 
49  protected int $order_position = 0;
50 
51  public function __construct(int $a_entry_id)
52  {
53  global $DIC;
54 
55  $this->renderer = new Renderer(
56  $DIC->ui()->factory(),
57  $DIC->resourceStorage()
58  );
59  $this->repository = new DatabaseRepository(new Wrapper($DIC->database()));
60  $this->ui_renderer = $DIC->ui()->renderer();
61  $this->logger = $DIC->logger()->meta();
62  $this->db = $DIC->database();
63  $this->entry_id = $a_entry_id;
64  $this->read();
65  }
66 
70  public static function _getEntries(): array
71  {
72  global $DIC;
73 
74  $ilDB = $DIC->database();
75 
76  $query = "SELECT entry_id FROM il_md_cpr_selections ORDER BY is_default DESC, position ASC";
77  $res = $ilDB->query($query);
78 
79  $entries = [];
80  while ($row = $ilDB->fetchObject($res)) {
81  $entries[] = new ilMDCopyrightSelectionEntry((int) $row->entry_id);
82  }
83  return $entries;
84  }
85 
86  public static function lookupCopyyrightTitle(string $a_cp_string): string
87  {
88  global $DIC;
89 
90  $ilDB = $DIC->database();
91 
92  if (!$entry_id = self::_extractEntryId($a_cp_string)) {
93  return $a_cp_string;
94  }
95 
96  $query = "SELECT title FROM il_md_cpr_selections " .
97  "WHERE entry_id = " . $ilDB->quote($entry_id, ilDBConstants::T_INTEGER) . " ";
98  $res = $ilDB->query($query);
99  $row = $ilDB->fetchObject($res);
100  return $row->title ?? '';
101  }
102 
103  public static function _lookupCopyright(string $a_cp_string): string
104  {
105  global $DIC;
106 
107  $renderer = new Renderer(
108  $DIC->ui()->factory(),
109  $DIC->resourceStorage()
110  );
111  $repository = new DatabaseRepository(new Wrapper($DIC->database()));
112  $ui_renderer = $DIC->ui()->renderer();
113 
114  if (!$entry_id = self::_extractEntryId($a_cp_string)) {
115  return $a_cp_string;
116  }
117 
118  $entry = $repository->getEntry($entry_id);
119  $components = $renderer->toUIComponents($entry->copyrightData());
120 
121  return $ui_renderer->render($components);
122  }
123 
124  public static function _lookupCopyrightForExport(string $a_cp_string): string
125  {
126  global $DIC;
127 
128  $repository = new DatabaseRepository(new Wrapper($DIC->database()));
129 
130  if (!$entry_id = self::_extractEntryId($a_cp_string)) {
131  return $a_cp_string;
132  }
133 
134  $data = $repository->getEntry($entry_id)->copyrightData();
135 
136  return (string) ($data->link() ?? $data->fullName());
137  }
138 
139  public static function lookupCopyrightFromImport(string $copyright_text): int
140  {
141  global $DIC;
142 
143  $repository = new DatabaseRepository(new Wrapper($DIC->database()));
144 
145  // url should be made to match regardless of scheme
146  $normalized_copyright = str_replace('https://', 'http://', $copyright_text);
147 
148  $matches_by_name = null;
149  foreach ($repository->getAllEntries() as $entry) {
150  $entry_link = (string) $entry->copyrightData()->link();
151  $normalized_link = str_replace('https://', 'http://', $entry_link);
152  if ($normalized_link !== '' && str_contains($normalized_copyright, $normalized_link)) {
153  return $entry->id();
154  }
155 
156  if (
157  is_null($matches_by_name) &&
158  trim($copyright_text) === trim($entry->copyrightData()->fullName())
159  ) {
160  $matches_by_name = $entry->id();
161  }
162  }
163 
164  if (!is_null($matches_by_name)) {
165  return $matches_by_name;
166  }
167  return 0;
168  }
169 
170  public static function _extractEntryId(string $a_cp_string): int
171  {
172  if (!preg_match('/il_copyright_entry__([0-9]+)__([0-9]+)/', $a_cp_string, $matches)) {
173  return 0;
174  }
175  if ($matches[1] != IL_INST_ID) {
176  return 0;
177  }
178  return (int) ($matches[2] ?? 0);
179  }
180 
181  public static function isEntry($a_cp_string): bool
182  {
183  if (!preg_match('/il_copyright_entry__([0-9]+)__([0-9]+)/', $a_cp_string)) {
184  return false;
185  }
186  return true;
187  }
188 
189  public function getUsage(): int
190  {
191  return $this->usage;
192  }
193 
194  public function getEntryId(): int
195  {
196  return $this->entry_id;
197  }
198 
203  public function getIsDefault(): bool
204  {
205  $query = "SELECT is_default FROM il_md_cpr_selections " .
206  "WHERE entry_id = " . $this->db->quote($this->entry_id, 'integer');
207 
208  $res = $this->db->query($query);
209  $row = $this->db->fetchAssoc($res);
210 
211  return (bool) ($row['is_default'] ?? false);
212  }
213 
214  public function setOutdated(bool $a_value): void
215  {
216  $this->outdated = $a_value;
217  }
218 
219  public function getOutdated(): bool
220  {
221  return $this->outdated;
222  }
223 
224  public static function getDefault(): int
225  {
226  global $DIC;
227 
228  $db = $DIC->database();
229 
230  $query = "SELECT entry_id FROM il_md_cpr_selections " .
231  "WHERE is_default = " . $db->quote(1, 'integer');
232 
233  $res = $db->query($query);
234  $row = $db->fetchAssoc($res);
235 
236  return (int) $row['entry_id'];
237  }
238 
239  public function setTitle(string $a_title): void
240  {
241  $this->title = $a_title;
242  }
243 
244  public function getTitle(): string
245  {
246  return $this->title;
247  }
248 
249  public function setDescription(string $a_desc): void
250  {
251  $this->description = $a_desc;
252  }
253 
254  public function getDescription(): string
255  {
256  return $this->description;
257  }
258 
259  public function setCopyright(string $a_copyright): void
260  {
261  $this->copyright = $a_copyright;
262  }
263 
264  public function getCopyright(): string
265  {
266  return $this->copyright;
267  }
268 
269  public function setOrderPosition(int $a_position): void
270  {
271  $this->order_position = $a_position;
272  }
273 
274  public function getOrderPosition(): int
275  {
276  return $this->order_position;
277  }
278 
279  protected function getNextOrderPosition(): int
280  {
281  $query = "SELECT count(entry_id) total FROM il_md_cpr_selections";
282  $res = $this->db->query($query);
283  $row = $this->db->fetchAssoc($res);
284 
285  return $row['total'] + 1;
286  }
287 
288  public function add(): bool
289  {
290  $next_id = $this->db->nextId('il_md_cpr_selections');
291 
292  $this->db->insert('il_md_cpr_selections', array(
293  'entry_id' => array('integer', $next_id),
294  'title' => array('text', $this->getTitle()),
295  'description' => array('clob', $this->getDescription()),
296  //'copyright' => array('clob', $this->getCopyright()),
297  'outdated' => array('integer', $this->getOutdated()),
298  'position' => array('integer', $this->getNextOrderPosition())
299  ));
300  $this->entry_id = $next_id;
301  return true;
302  }
303 
304  public function update(): bool
305  {
306  $this->db->update('il_md_cpr_selections', array(
307  'title' => array('text', $this->getTitle()),
308  'description' => array('clob', $this->getDescription()),
309  //'copyright' => array('clob', $this->getCopyright()),
310  'outdated' => array('integer', $this->getOutdated()),
311  'position' => array('integer', $this->getOrderPosition())
312  ), array(
313  'entry_id' => array('integer', $this->getEntryId())
314  ));
315  return true;
316  }
317 
318  public function delete(): void
319  {
320  /*$query = "DELETE FROM il_md_cpr_selections " .
321  "WHERE entry_id = " . $this->db->quote($this->getEntryId(), 'integer') . " ";
322  $res = $this->db->manipulate($query);*/
323  }
324 
325  public function validate(): bool
326  {
327  return $this->getTitle() !== '';
328  }
329 
330  private function read(): void
331  {
332  $entry = $this->repository->getEntry($this->entry_id);
333 
334  $rendered_cp = $this->ui_renderer->render(
335  $this->renderer->toUIComponents($entry->copyrightData())
336  );
337 
338  $this->setTitle($entry->title());
339  $this->setDescription($entry->description());
340  $this->setCopyright($rendered_cp);
341  $this->setOutdated($entry->isOutdated());
342  $this->setOrderPosition($entry->position());
343 
344  $query = "SELECT count(meta_rights_id) used FROM il_meta_rights " .
345  "WHERE description = " . $this->db->quote(
346  'il_copyright_entry__' . IL_INST_ID . '__' . $this->getEntryId(),
347  'text'
348  );
349 
350  $res = $this->db->query($query);
351  $row = $this->db->fetchObject($res);
352  $this->usage = (int) $row->used;
353  }
354 
355  public static function createIdentifier(int $a_entry_id): string
356  {
357  return 'il_copyright_entry__' . IL_INST_ID . '__' . $a_entry_id;
358  }
359 }
$res
Definition: ltiservices.php:66
const IL_INST_ID
Definition: constants.php:40
fetchAssoc(ilDBStatement $statement)
static _lookupCopyrightForExport(string $a_cp_string)
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
renderer()
quote($value, string $type)
$components
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getAllEntries()
The default entry is returned first, and the remaining entries are returned according to their positi...
global $DIC
Definition: shib_login.php:22
query(string $query)
Run a (read-only) Query on the database.
static lookupCopyrightFromImport(string $copyright_text)
toUIComponents(CopyrightDataInterface $copyright)
Returns a string in a legacy UI component if only a string can be returned.
getIsDefault()
Get if the entry is default No setter for this.
static lookupCopyyrightTitle(string $a_cp_string)