19 declare(strict_types=1);
56 $DIC->ui()->factory(),
57 $DIC->resourceStorage()
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;
74 $ilDB = $DIC->database();
76 $query =
"SELECT entry_id FROM il_md_cpr_selections ORDER BY is_default DESC, position ASC";
90 $ilDB = $DIC->database();
92 if (!$entry_id = self::_extractEntryId($a_cp_string)) {
96 $query =
"SELECT title FROM il_md_cpr_selections " .
100 return $row->title ??
'';
108 $DIC->ui()->factory(),
109 $DIC->resourceStorage()
112 $ui_renderer = $DIC->ui()->renderer();
114 if (!$entry_id = self::_extractEntryId($a_cp_string)) {
118 $entry = $repository->getEntry($entry_id);
130 if (!$entry_id = self::_extractEntryId($a_cp_string)) {
136 return (
string) (
$data->link() ??
$data->fullName());
146 $normalized_copyright = str_replace(
'https://',
'http://', $copyright_text);
148 $matches_by_name =
null;
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)) {
157 is_null($matches_by_name) &&
158 trim($copyright_text) === trim($entry->copyrightData()->fullName())
160 $matches_by_name = $entry->id();
164 if (!is_null($matches_by_name)) {
165 return $matches_by_name;
172 if (!preg_match(
'/il_copyright_entry__([0-9]+)__([0-9]+)/', $a_cp_string, $matches)) {
178 return (
int) ($matches[2] ?? 0);
181 public static function isEntry($a_cp_string): bool
183 if (!preg_match(
'/il_copyright_entry__([0-9]+)__([0-9]+)/', $a_cp_string)) {
205 $query =
"SELECT is_default FROM il_md_cpr_selections " .
206 "WHERE entry_id = " . $this->db->quote($this->entry_id,
'integer');
208 $res = $this->db->query($query);
209 $row = $this->db->fetchAssoc(
$res);
211 return (
bool) ($row[
'is_default'] ??
false);
216 $this->outdated = $a_value;
228 $db = $DIC->database();
230 $query =
"SELECT entry_id FROM il_md_cpr_selections " .
231 "WHERE is_default = " . $db->
quote(1,
'integer');
236 return (
int) $row[
'entry_id'];
241 $this->title = $a_title;
251 $this->description = $a_desc;
261 $this->copyright = $a_copyright;
271 $this->order_position = $a_position;
281 $query =
"SELECT count(entry_id) total FROM il_md_cpr_selections";
282 $res = $this->db->query($query);
283 $row = $this->db->fetchAssoc(
$res);
285 return $row[
'total'] + 1;
288 public function add(): bool
290 $next_id = $this->db->nextId(
'il_md_cpr_selections');
292 $this->db->insert(
'il_md_cpr_selections', array(
293 'entry_id' => array(
'integer', $next_id),
294 'title' => array(
'text', $this->
getTitle()),
297 'outdated' => array(
'integer', $this->
getOutdated()),
300 $this->entry_id = $next_id;
306 $this->db->update(
'il_md_cpr_selections', array(
307 'title' => array(
'text', $this->
getTitle()),
310 'outdated' => array(
'integer', $this->
getOutdated()),
313 'entry_id' => array(
'integer', $this->
getEntryId())
318 public function delete():
void 332 $entry = $this->
repository->getEntry($this->entry_id);
334 $rendered_cp = $this->ui_renderer->render(
335 $this->
renderer->toUIComponents($entry->copyrightData())
344 $query =
"SELECT count(meta_rights_id) used FROM il_meta_rights " .
345 "WHERE description = " . $this->db->quote(
350 $res = $this->db->query($query);
351 $row = $this->db->fetchObject(
$res);
352 $this->usage = (
int) $row->used;
357 return 'il_copyright_entry__' .
IL_INST_ID .
'__' . $a_entry_id;
static _extractEntryId(string $a_cp_string)
fetchAssoc(ilDBStatement $statement)
static _lookupCopyrightForExport(string $a_cp_string)
repository()
description: > Example for rendering a repository card
setCopyright(string $a_copyright)
quote($value, string $type)
RepositoryInterface $repository
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static isEntry($a_cp_string)
setDescription(string $a_desc)
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)
setOrderPosition(int $a_position)
getIsDefault()
Get if the entry is default No setter for this.
RendererInterface $renderer
setTitle(string $a_title)
static createIdentifier(int $a_entry_id)
static lookupCopyyrightTitle(string $a_cp_string)
setOutdated(bool $a_value)