ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ResourceDBRepository.php
Go to the documentation of this file.
1 <?php
2 
20 
26 
33 {
34  public const TABLE_NAME = 'il_resource';
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(
58  ResourceIdentification $identification,
59  ResourceType $type = ResourceType::SINGLE_FILE
60  ): StorableResource {
61  return match ($type) {
62  ResourceType::SINGLE_FILE => new StorableFileResource($identification),
63  ResourceType::CONTAINER => new StorableContainerResource($identification),
64  };
65  }
66 
70  public function get(ResourceIdentification $identification): StorableResource
71  {
72  if (isset($this->cache[$identification->serialize()])) {
73  return $this->cache[$identification->serialize()];
74  }
75 
76  $q = "SELECT " . self::IDENTIFICATION . ", storage_id, rtype FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s";
77  $r = $this->db->queryF($q, ['text'], [$identification->serialize()]);
78  $d = $this->db->fetchObject($r);
79 
80  $resource = $this->blank($identification, ResourceType::from($d->rtype));
81  $resource->setStorageID($d->storage_id);
82 
83  $this->cache[$identification->serialize()] = $resource;
84 
85  return $resource;
86  }
87 
91  public function has(ResourceIdentification $identification): bool
92  {
93  if (isset($this->cache[$identification->serialize()])) {
94  return true;
95  }
96  $q = "SELECT " . self::IDENTIFICATION . " FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s";
97  $r = $this->db->queryF($q, ['text'], [$identification->serialize()]);
98 
99  return (bool) $r->numRows() > 0;
100  }
101 
105  public function store(StorableResource $resource): void
106  {
107  $rid = $resource->getIdentification()->serialize();
108  if ($this->has($resource->getIdentification())) {
109  // UPDATE
110  $this->db->update(
111  self::TABLE_NAME,
112  [
113  self::IDENTIFICATION => ['text', $rid],
114  'storage_id' => ['text', $resource->getStorageID()],
115  'rtype' => ['text', $resource->getType()->value],
116  ],
117  [
118  self::IDENTIFICATION => ['text', $rid],
119  ]
120  );
121  } else {
122  // CREATE
123  $this->db->insert(
124  self::TABLE_NAME,
125  [
126  self::IDENTIFICATION => ['text', $rid],
127  'storage_id' => ['text', $resource->getStorageID()],
128  'rtype' => ['text', $resource->getType()->value],
129  ]
130  );
131  }
132  $this->cache[$rid] = $resource;
133  }
134 
138  public function delete(StorableResource $resource): void
139  {
140  $rid = $resource->getIdentification()->serialize();
141  $this->db->manipulateF(
142  "DELETE FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s",
143  ['text'],
144  [$rid]
145  );
146  unset($this->cache[$rid]);
147  }
148 
152  public function getAll(): \Generator
153  {
154  yield from [];
155  }
156 
157  public function preload(array $identification_strings): void
158  {
159  $r = $this->db->query(
160  "SELECT rid, storage_id, rtype FROM " . self::TABLE_NAME . " WHERE "
161  . $this->db->in(self::IDENTIFICATION, $identification_strings, false, 'text')
162  );
163  while ($d = $this->db->fetchAssoc($r)) {
164  $this->populateFromArray($d);
165  }
166  }
167 
168  public function populateFromArray(array $data): void
169  {
170  $resource = $this->blank(
171  new ResourceIdentification($data['rid']),
172  ResourceType::from($data['rtype'] ?? ResourceType::SINGLE_FILE->value)
173  );
174  $resource->setStorageID($data['storage_id']);
175  $this->cache[$data['rid']] = $resource;
176  }
177 }
blank(ResourceIdentification $identification, ResourceType $type=ResourceType::SINGLE_FILE)
$q
Definition: shib_logout.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$r