ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CollectionDBRepository.php
Go to the documentation of this file.
1 <?php
2 
20 
27 
35 {
36  public const COLLECTION_TABLE_NAME = 'il_resource_rc';
37  public const COLLECTION_ASSIGNMENT_TABLE_NAME = 'il_resource_rca';
38  public const R_IDENTIFICATION = 'rid';
39  public const C_IDENTIFICATION = 'rcid';
40 
41  public function __construct(protected \ilDBInterface $db)
42  {
43  }
44 
48  public function getNamesForLocking(): array
49  {
50  return [self::COLLECTION_TABLE_NAME, self::COLLECTION_ASSIGNMENT_TABLE_NAME];
51  }
52 
53  public function blank(
54  ResourceCollectionIdentification $identification,
55  ?int $owner_id = null,
56  ?string $title = null
58  return new ResourceCollection(
59  $identification,
61  $title ?? ''
62  );
63  }
64 
66  {
67  $q = "SELECT owner_id, title FROM " . self::COLLECTION_TABLE_NAME . " WHERE " . self::C_IDENTIFICATION . " = %s";
68  $r = $this->db->queryF($q, ['text'], [$identification->serialize()]);
69  $d = $this->db->fetchObject($r);
70  $owner_id = (int) ($d->owner_id ?? ResourceCollection::NO_SPECIFIC_OWNER);
71  $title = (string) ($d->title ?? '');
72 
73  return $this->blank($identification, $owner_id, $title);
74  }
75 
76 
77  public function has(ResourceCollectionIdentification $identification): bool
78  {
79  $q = "SELECT " . self::C_IDENTIFICATION . " FROM " . self::COLLECTION_TABLE_NAME . " WHERE " . self::C_IDENTIFICATION . " = %s";
80  $r = $this->db->queryF($q, ['text'], [$identification->serialize()]);
81 
82  return ($r->numRows() === 1);
83  }
84 
89  {
90  $q = "SELECT " . self::R_IDENTIFICATION . " FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME . " WHERE " . self::C_IDENTIFICATION . " = %s ORDER BY position ASC";
91  $r = $this->db->queryF($q, ['text'], [$identification->serialize()]);
92  while ($d = $this->db->fetchAssoc($r)) {
93  yield (string) $d[self::R_IDENTIFICATION];
94  }
95  }
96 
97  public function clear(ResourceCollectionIdentification $identification): void
98  {
99  $q = "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME . " WHERE " . self::C_IDENTIFICATION . " = %s";
100  $r = $this->db->manipulateF($q, ['text'], [$identification->serialize()]);
101  }
102 
103  public function update(ResourceCollection $collection, DataContainer $event_data_container): void
104  {
105  $identification = $collection->getIdentification();
106  $resource_identifications = $collection->getResourceIdentifications();
107  $owner_id = $collection->getOwner();
108  $title = $collection->getTitle();
109 
110  $resource_identification_strings = array_map(
111  fn(ResourceIdentification $i): string => $i->serialize(),
112  $resource_identifications
113  );
114 
115  $q = "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME . " WHERE " . self::C_IDENTIFICATION . " = %s AND "
116  . $this->db->in(self::R_IDENTIFICATION, $resource_identification_strings, true, 'text');
117  $r = $this->db->manipulateF($q, ['text'], [$identification->serialize()]);
118 
119  $missing_resource_identification_string = array_diff(
120  $resource_identification_strings,
121  iterator_to_array($this->getResourceIdStrings($identification))
122  );
123  foreach ($missing_resource_identification_string as $position => $resource_identification_string) {
124  $this->db->insert(self::COLLECTION_ASSIGNMENT_TABLE_NAME, [
125  self::C_IDENTIFICATION => ['text', $identification->serialize()],
126  self::R_IDENTIFICATION => ['text', $resource_identification_string],
127  'position' => ['integer', (int) $position + 1],
128  ]);
129  $event_data_container->append(
130  new CollectionData(['rid' => $resource_identification_string, 'rcid' => $identification->serialize()])
131  );
132  }
133  foreach ($resource_identification_strings as $position => $resource_identification_string) {
134  $this->db->update(
135  self::COLLECTION_ASSIGNMENT_TABLE_NAME,
136  [
137  self::C_IDENTIFICATION => ['text', $identification->serialize()],
138  self::R_IDENTIFICATION => ['text', $resource_identification_string],
139  'position' => ['integer', (int) $position + 1],
140  ],
141  [
142  self::C_IDENTIFICATION => ['text', $identification->serialize()],
143  self::R_IDENTIFICATION => ['text', $resource_identification_string],
144  ]
145  );
146  }
147  if ($this->has($identification)) {
148  $this->db->update(
149  self::COLLECTION_TABLE_NAME,
150  [
151  self::C_IDENTIFICATION => ['text', $identification->serialize()],
152  'title' => ['text', $title ?? ''],
153  'owner_id' => ['integer', $owner_id],
154  ],
155  [
156  self::C_IDENTIFICATION => ['text', $identification->serialize()]
157  ]
158  );
159  } else {
160  $this->db->insert(
161  self::COLLECTION_TABLE_NAME,
162  [
163  self::C_IDENTIFICATION => ['text', $identification->serialize()],
164  'title' => ['text', $title ?? ''],
165  'owner_id' => ['integer', $owner_id],
166  ]
167  );
168  }
169  }
170 
171  public function removeResourceFromAllCollections(ResourceIdentification $resource_identification): void
172  {
173  $this->db->manipulateF(
174  "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME . " WHERE " . self::R_IDENTIFICATION . " = %s",
175  ['text'],
176  [$resource_identification->serialize()]
177  );
178  }
179 
180  public function delete(ResourceCollectionIdentification $identification): void
181  {
182  $this->db->manipulateF(
183  "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME . " WHERE " . self::C_IDENTIFICATION . " = %s",
184  ['text'],
185  [$identification->serialize()]
186  );
187  $this->db->manipulateF(
188  "DELETE FROM " . self::COLLECTION_TABLE_NAME . " WHERE " . self::C_IDENTIFICATION . " = %s",
189  ['text'],
190  [$identification->serialize()]
191  );
192  }
193 
194 
195  public function preload(array $identification_strings): void
196  {
197  // TODO: Implement preload() method.
198  }
199 
200  public function populateFromArray(array $data): void
201  {
202  // TODO: Implement populateFromArray() method.
203  }
204 }
removeResourceFromAllCollections(ResourceIdentification $resource_identification)
update(ResourceCollection $collection, DataContainer $event_data_container)
clear(ResourceCollectionIdentification $identification)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getResourceIdStrings(ResourceCollectionIdentification $identification)
$q
Definition: shib_logout.php:21
existing(ResourceCollectionIdentification $identification)
has(ResourceCollectionIdentification $identification)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
blank(ResourceCollectionIdentification $identification, ?int $owner_id=null, ?string $title=null)
$r