51 return [self::TABLE_NAME];
61 return match ($type) {
72 if (isset($this->cache[$identification->serialize()])) {
73 return $this->cache[$identification->serialize()];
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);
81 $resource->setStorageID(
$d->storage_id);
83 $this->cache[$identification->serialize()] = $resource;
93 if (isset($this->cache[$identification->
serialize()])) {
96 $q =
"SELECT " . self::IDENTIFICATION .
" FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s";
97 $r = $this->db->queryF(
$q, [
'text'], [$identification->
serialize()]);
99 return (
bool)
$r->numRows() > 0;
113 self::IDENTIFICATION => [
'text', $rid],
115 'rtype' => [
'text', $resource->
getType()->value],
118 self::IDENTIFICATION => [
'text', $rid],
126 self::IDENTIFICATION => [
'text', $rid],
128 'rtype' => [
'text', $resource->
getType()->value],
132 $this->cache[$rid] = $resource;
141 $this->db->manipulateF(
142 "DELETE FROM " . self::TABLE_NAME .
" WHERE " . self::IDENTIFICATION .
" = %s",
146 unset($this->cache[$rid]);
157 public function preload(array $identification_strings): void
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')
163 while (
$d = $this->db->fetchAssoc(
$r)) {
170 $resource = $this->
blank(
174 $resource->setStorageID($data[
'storage_id']);
175 $this->cache[$data[
'rid']] = $resource;
Interface StorageResource.
__construct(protected \ilDBInterface $db)
Class ResourceDBRepository.
store(StorableResource $resource)
blank(ResourceIdentification $identification, ResourceType $type=ResourceType::SINGLE_FILE)
has(ResourceIdentification $identification)
preload(array $identification_strings)
Class ResourceIdentification.
populateFromArray(array $data)
Interface ResourceRepository.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...