19 declare(strict_types=1);
56 $this->
logger = $DIC->logger()->meta();
57 $this->db = $DIC->database();
58 $this->entry_id = $a_entry_id;
69 $ilDB = $DIC->database();
71 $query =
"SELECT entry_id FROM il_md_cpr_selections ORDER BY is_default DESC, position ASC";
85 $ilDB = $DIC->database();
87 if (!$entry_id = self::_extractEntryId($a_cp_string)) {
91 $query =
"SELECT title FROM il_md_cpr_selections " .
95 return $row->title ??
'';
101 $row->full_name ??
'',
102 !empty($row->link ??
'') ?
new URI($row->link) : null,
103 !empty($row->image_link ??
'') ?
new URI($row->image_link) : null,
113 $DIC->ui()->factory()
115 $ui_renderer = $DIC->ui()->renderer();
117 $data = self::getCopyrightDataFromRow($row);
118 return $ui_renderer->render($renderer->toUIComponents(
$data));
125 $ilDB = $DIC->database();
127 if (!$entry_id = self::_extractEntryId($a_cp_string)) {
131 $query =
"SELECT full_name, link, image_link, alt_text FROM il_md_cpr_selections " .
136 return self::renderCopyrightFromRow($row);
143 $ilDB = $DIC->database();
145 if (!$entry_id = self::_extractEntryId($a_cp_string)) {
149 $query =
"SELECT full_name, link, image_link, alt_text FROM il_md_cpr_selections " .
154 $data = self::getCopyrightDataFromRow($row);
156 return (
string) (
$data->link() ??
$data->fullName());
163 $db = $DIC->database();
166 $normalized_copyright = str_replace(
'https://',
'http://', $copyright_text);
167 $matches_by_name = null;
169 $query =
'SELECT entry_id, full_name, link, image_link, alt_text FROM il_md_cpr_selections';
172 $entry_id = (
int) $row->entry_id;
173 $data = self::getCopyrightDataFromRow($row);
175 $entry_link = (string)
$data->link();
176 $normalized_link = str_replace(
'https://',
'http://', $entry_link);
177 if ($normalized_link !==
'' && str_contains($normalized_copyright, $normalized_link)) {
182 is_null($matches_by_name) &&
183 trim($copyright_text) === trim(
$data->fullName())
189 if (!is_null($matches_by_name)) {
190 return $matches_by_name;
197 if (!preg_match(
'/il_copyright_entry__([0-9]+)__([0-9]+)/', $a_cp_string, $matches)) {
203 return (
int) ($matches[2] ?? 0);
206 public static function isEntry($a_cp_string): bool
208 if (!preg_match(
'/il_copyright_entry__([0-9]+)__([0-9]+)/', $a_cp_string)) {
230 $query =
"SELECT is_default FROM il_md_cpr_selections " .
231 "WHERE entry_id = " . $this->db->quote($this->entry_id,
'integer');
234 $row = $this->db->fetchAssoc(
$res);
236 return (
bool) ($row[
'is_default'] ??
false);
241 $this->outdated = $a_value;
253 $db = $DIC->database();
255 $query =
"SELECT entry_id FROM il_md_cpr_selections " .
256 "WHERE is_default = " . $db->
quote(1,
'integer');
261 return (
int) $row[
'entry_id'];
266 $this->title = $a_title;
276 $this->description = $a_desc;
286 if (isset($this->copyright_data)) {
308 $this->copyright = $a_copyright;
318 $this->costs = $a_costs;
338 $this->copyright_and_other_restrictions = $a_status;
348 $this->order_position = $a_position;
358 $query =
"SELECT count(entry_id) total FROM il_md_cpr_selections";
360 $row = $this->db->fetchAssoc(
$res);
362 return $row[
'total'] + 1;
365 public function add(): bool
367 $next_id = $this->db->nextId(
'il_md_cpr_selections');
369 $this->db->insert(
'il_md_cpr_selections', array(
370 'entry_id' => array(
'integer', $next_id),
371 'title' => array(
'text', $this->
getTitle()),
375 'image_link' => array(
'clob', (
string) $this->
getCopyrightData()->imageLink()),
378 'costs' => array(
'integer', $this->
getCosts()),
382 $this->entry_id = $next_id;
388 $this->db->update(
'il_md_cpr_selections', array(
389 'title' => array(
'text', $this->
getTitle()),
393 'image_link' => array(
'clob', (
string) $this->
getCopyrightData()->imageLink()),
396 'costs' => array(
'integer', $this->
getCosts()),
398 'outdated' => array(
'integer', $this->
getOutdated()),
401 'entry_id' => array(
'integer', $this->
getEntryId())
406 public function delete():
void 408 $query =
"DELETE FROM il_md_cpr_selections " .
409 "WHERE entry_id = " . $this->db->quote($this->
getEntryId(),
'integer') .
" ";
420 $query =
"SELECT * FROM il_md_cpr_selections " .
421 "WHERE entry_id = " . $this->db->quote($this->entry_id,
'integer') .
" " .
422 "ORDER BY is_default DESC, position ASC ";
425 while ($row = $this->db->fetchObject(
$res)) {
429 $data = self::getCopyrightDataFromRow($row);
436 $this->
setCopyright(self::renderCopyrightFromRow($row));
439 $this->
setCosts((
bool) $row->costs);
446 $query =
"SELECT count(meta_rights_id) used FROM il_meta_rights " .
447 "WHERE description = " . $this->db->quote(
453 $row = $this->db->fetchObject(
$res);
454 $this->usage = (
int) ($row->used ?? 0);
459 return 'il_copyright_entry__' .
IL_INST_ID .
'__' . $a_entry_id;
static _extractEntryId(string $a_cp_string)
getCopyrightAndOtherRestrictions()
fetchAssoc(ilDBStatement $statement)
CopyrightDataInterface $copyright_data
static _lookupCopyrightForExport(string $a_cp_string)
setCopyright(string $a_copyright)
quote($value, string $type)
setLanguage(string $a_lang_key)
static renderCopyrightFromRow(stdClass $row)
bool $copyright_and_other_restrictions
static isEntry($a_cp_string)
setDescription(string $a_desc)
setCopyrightData(string $full_name, ?URI $link, ?URI $image_link, string $alt_text)
fetchObject(ilDBStatement $query_result)
The scope of this class is split ilias-conform URI's into components.
query(string $query)
Run a (read-only) Query on the database.
__construct(int $a_entry_id)
static _lookupCopyright(string $a_cp_string)
static lookupCopyrightFromImport(string $copyright_text)
setCopyrightAndOtherRestrictions(bool $a_status)
static getCopyrightDataFromRow(stdClass $row)
setOrderPosition(int $a_position)
getIsDefault()
Get if the entry is default No setter for this.
setTitle(string $a_title)
static createIdentifier(int $a_entry_id)
static lookupCopyyrightTitle(string $a_cp_string)
setOutdated(bool $a_value)