50 return [self::COLLECTION_TABLE_NAME, self::COLLECTION_ASSIGNMENT_TABLE_NAME];
55 ?
int $owner_id =
null,
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);
71 $title = (string) (
$d->title ??
'');
73 return $this->
blank($identification, $owner_id, $title);
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()]);
82 return (
$r->numRows() === 1);
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];
99 $q =
"DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME .
" WHERE " . self::C_IDENTIFICATION .
" = %s";
100 $r = $this->db->manipulateF(
$q, [
'text'], [$identification->
serialize()]);
107 $owner_id = $collection->
getOwner();
110 $resource_identification_strings =
array_map(
112 $resource_identifications
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()]);
119 $missing_resource_identification_string = array_diff(
120 $resource_identification_strings,
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],
129 $event_data_container->
append(
130 new CollectionData([
'rid' => $resource_identification_string,
'rcid' => $identification->serialize()])
133 foreach ($resource_identification_strings as $position => $resource_identification_string) {
135 self::COLLECTION_ASSIGNMENT_TABLE_NAME,
137 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
138 self::R_IDENTIFICATION => [
'text', $resource_identification_string],
139 'position' => [
'integer', (
int) $position + 1],
142 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
143 self::R_IDENTIFICATION => [
'text', $resource_identification_string],
147 if ($this->
has($identification)) {
149 self::COLLECTION_TABLE_NAME,
151 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
152 'title' => [
'text', $title ??
''],
153 'owner_id' => [
'integer', $owner_id],
156 self::C_IDENTIFICATION => [
'text', $identification->serialize()]
161 self::COLLECTION_TABLE_NAME,
163 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
164 'title' => [
'text', $title ??
''],
165 'owner_id' => [
'integer', $owner_id],
173 $this->db->manipulateF(
174 "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME .
" WHERE " . self::R_IDENTIFICATION .
" = %s",
182 $this->db->manipulateF(
183 "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME .
" WHERE " . self::C_IDENTIFICATION .
" = %s",
185 [$identification->serialize()]
187 $this->db->manipulateF(
188 "DELETE FROM " . self::COLLECTION_TABLE_NAME .
" WHERE " . self::C_IDENTIFICATION .
" = %s",
190 [$identification->serialize()]
195 public function preload(array $identification_strings): void
removeResourceFromAllCollections(ResourceIdentification $resource_identification)
update(ResourceCollection $collection, DataContainer $event_data_container)
const COLLECTION_ASSIGNMENT_TABLE_NAME
Class ResourceCollectionIdentification.
Interface CollectionRepository.
Class ResourceCollection.
Class CollectionDBRepository.
clear(ResourceCollectionIdentification $identification)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ResourceIdentification.
getResourceIdentifications()
__construct(protected \ilDBInterface $db)
preload(array $identification_strings)
getResourceIdStrings(ResourceCollectionIdentification $identification)
existing(ResourceCollectionIdentification $identification)
has(ResourceCollectionIdentification $identification)
const COLLECTION_TABLE_NAME
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)
populateFromArray(array $data)