ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InformationDBRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
33 {
34  public const TABLE_NAME = 'il_resource_info';
35  public const IDENTIFICATION = 'rid';
36 
40  protected array $cache = [];
41 
42  public function __construct(protected \ilDBInterface $db)
43  {
44  }
45 
49  public function getNamesForLocking(): array
50  {
51  return [self::TABLE_NAME];
52  }
53 
57  public function blank(): Information
58  {
59  return new FileInformation();
60  }
61 
65  public function store(Information $information, Revision $revision): void
66  {
67  $rid = $revision->getIdentification()->serialize();
68  $r = $this->db->queryF(
69  "SELECT " . self::IDENTIFICATION . " FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s AND version_number = %s",
70  [
71  'text',
72  'integer'
73  ],
74  [
75  $rid,
76  $revision->getVersionNumber()
77  ]
78  );
79 
80  if ($r->numRows() > 0) {
81  // UPDATE
82  $this->db->update(
83  self::TABLE_NAME,
84  [
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()],
90  ],
91  [
92  self::IDENTIFICATION => ['text', $rid],
93  'version_number' => ['integer', $revision->getVersionNumber()]
94  ]
95  );
96  } else {
97  // CREATE
98  $this->db->insert(
99  self::TABLE_NAME,
100  [
101  self::IDENTIFICATION => ['text', $rid],
102  'version_number' => ['integer', $revision->getVersionNumber()],
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()],
108  ]
109  );
110  }
111  $this->cache[$rid][$revision->getVersionNumber()] = $information;
112  }
113 
117  public function get(Revision $revision): Information
118  {
119  $rid = $revision->getIdentification()->serialize();
120  if (isset($this->cache[$rid][$revision->getVersionNumber()])) {
121  return $this->cache[$rid][$revision->getVersionNumber()];
122  }
123  $r = $this->db->queryF(
124  "SELECT * FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s AND version_number = %s",
125  [
126  'text',
127  'integer'
128  ],
129  [
130  $rid,
131  $revision->getVersionNumber()
132  ]
133  );
134 
135  $d = $this->db->fetchAssoc($r);
136  $i = $this->getFileInfoFromArrayData($d);
137 
138  $this->cache[$rid][$revision->getVersionNumber()] = $i;
139 
140  return $i;
141  }
142 
143  public function delete(Information $information, Revision $revision): void
144  {
145  $rid = $revision->getIdentification()->serialize();
146  $this->db->manipulateF(
147  "DELETE FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s AND version_number = %s",
148  [
149  'text',
150  'integer'
151  ],
152  [
153  $rid,
154  $revision->getVersionNumber()
155  ]
156  );
157  unset($this->cache[$rid][$revision->getVersionNumber()]);
158  }
159 
160  public function preload(array $identification_strings): void
161  {
162  $r = $this->db->query(
163  "SELECT * FROM " . self::TABLE_NAME . " WHERE " . $this->db->in(
164  self::IDENTIFICATION,
165  $identification_strings,
166  false,
167  'text'
168  )
169  );
170 
171  while ($d = $this->db->fetchAssoc($r)) {
172  $this->populateFromArray($d);
173  }
174  }
175 
176  public function populateFromArray(array $data): void
177  {
178  $this->cache[$data['rid']][$data['version_number']] = $this->getFileInfoFromArrayData($data);
179  }
180 
182  {
183  $i = new FileInformation();
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));
189 
190  return $i;
191  }
192 }
$r