19 declare(strict_types=1);
41 protected \ilDBInterface
$db;
53 return [self::TABLE_NAME];
70 $r = $this->db->queryF(
71 "SELECT " . self::IDENTIFICATION .
" FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s AND version_number = %s",
82 if ($r->numRows() > 0) {
87 'title' => [
'text', $information->
getTitle()],
88 'mime_type' => [
'text', $information->
getMimeType()],
89 'suffix' => [
'text', $information->
getSuffix()],
90 'size' => [
'integer', $information->
getSize()],
91 'creation_date' => [
'integer', $information->
getCreationDate()->getTimestamp()],
94 self::IDENTIFICATION => [
'text', $rid],
103 self::IDENTIFICATION => [
'text', $rid],
105 'title' => [
'text', $information->
getTitle()],
106 'mime_type' => [
'text', $information->
getMimeType()],
107 'suffix' => [
'text', $information->
getSuffix()],
108 'size' => [
'integer', $information->
getSize()],
109 'creation_date' => [
'integer', $information->
getCreationDate()->getTimestamp()],
121 $rid = $revision->getIdentification()->serialize();
122 if (isset($this->cache[$rid][$revision->getVersionNumber()])) {
123 return $this->cache[$rid][$revision->getVersionNumber()];
125 $r = $this->db->queryF(
126 "SELECT * FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s AND version_number = %s",
133 $revision->getVersionNumber()
137 $d = $this->db->fetchAssoc($r);
140 $this->cache[$rid][$revision->getVersionNumber()] =
$i;
147 $rid = $revision->getIdentification()->serialize();
148 $this->db->manipulateF(
149 "DELETE FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s AND version_number = %s",
156 $revision->getVersionNumber()
159 unset($this->cache[$rid][$revision->getVersionNumber()]);
162 public function preload(array $identification_strings): void
164 $r = $this->db->query(
165 "SELECT * FROM " . self::TABLE_NAME .
" WHERE " . $this->db->in(
166 self::IDENTIFICATION,
167 $identification_strings,
173 while (
$d = $this->db->fetchAssoc($r)) {
186 $i->setTitle((
string)$data[
'title']);
187 $i->setSize((
int)$data[
'size']);
188 $i->setMimeType((
string)$data[
'mime_type']);
189 $i->setSuffix((
string)$data[
'suffix']);
190 $i->setCreationDate((
new \
DateTimeImmutable())->setTimestamp((
int)$data[
'creation_date'] ?? 0));
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d