19 declare(strict_types=1);
51 return [self::TABLE_NAME];
68 $r = $this->db->queryF(
69 "SELECT " . self::IDENTIFICATION .
" FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s AND version_number = %s",
80 if (
$r->numRows() > 0) {
85 'title' => [
'text', $information->
getTitle()],
86 'mime_type' => [
'text', $information->
getMimeType()],
87 'suffix' => [
'text', $information->
getSuffix()],
88 'size' => [
'integer', $information->
getSize()],
89 'creation_date' => [
'integer', $information->
getCreationDate()->getTimestamp()],
92 self::IDENTIFICATION => [
'text', $rid],
101 self::IDENTIFICATION => [
'text', $rid],
103 'title' => [
'text', $information->
getTitle()],
104 'mime_type' => [
'text', $information->
getMimeType()],
105 'suffix' => [
'text', $information->
getSuffix()],
106 'size' => [
'integer', $information->
getSize()],
107 'creation_date' => [
'integer', $information->
getCreationDate()->getTimestamp()],
119 $rid = $revision->getIdentification()->serialize();
120 if (isset($this->cache[$rid][$revision->getVersionNumber()])) {
121 return $this->cache[$rid][$revision->getVersionNumber()];
123 $r = $this->db->queryF(
124 "SELECT * FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s AND version_number = %s",
131 $revision->getVersionNumber()
135 $d = $this->db->fetchAssoc(
$r);
138 $this->cache[$rid][$revision->getVersionNumber()] = $i;
145 $rid = $revision->getIdentification()->serialize();
146 $this->db->manipulateF(
147 "DELETE FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s AND version_number = %s",
154 $revision->getVersionNumber()
157 unset($this->cache[$rid][$revision->getVersionNumber()]);
160 public function preload(array $identification_strings): void
162 $r = $this->db->query(
163 "SELECT * FROM " . self::TABLE_NAME .
" WHERE " . $this->db->in(
164 self::IDENTIFICATION,
165 $identification_strings,
171 while (
$d = $this->db->fetchAssoc(
$r)) {
184 $i->setTitle((
string) $data[
'title']);
185 $i->setSize((
int) $data[
'size']);
186 $i->setMimeType((
string) $data[
'mime_type']);
187 $i->setSuffix((
string) $data[
'suffix']);
188 $i->setCreationDate((
new \
DateTimeImmutable())->setTimestamp((
int) $data[
'creation_date'] ?? 0));