38 protected \ilDBInterface
$db;
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],
130 foreach ($resource_identification_strings as $position => $resource_identification_string) {
132 self::COLLECTION_ASSIGNMENT_TABLE_NAME,
134 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
135 self::R_IDENTIFICATION => [
'text', $resource_identification_string],
136 'position' => [
'integer', (
int)$position + 1],
139 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
140 self::R_IDENTIFICATION => [
'text', $resource_identification_string],
144 if ($this->
has($identification)) {
146 self::COLLECTION_TABLE_NAME,
148 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
149 'title' => [
'text', $title ??
''],
150 'owner_id' => [
'integer', $owner_id],
153 self::C_IDENTIFICATION => [
'text', $identification->serialize()]
158 self::COLLECTION_TABLE_NAME,
160 self::C_IDENTIFICATION => [
'text', $identification->serialize()],
161 'title' => [
'text', $title ??
''],
162 'owner_id' => [
'integer', $owner_id],
170 $this->db->manipulateF(
171 "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME .
" WHERE " . self::R_IDENTIFICATION .
" = %s",
179 $this->db->manipulateF(
180 "DELETE FROM " . self::COLLECTION_ASSIGNMENT_TABLE_NAME .
" WHERE " . self::C_IDENTIFICATION .
" = %s",
182 [$identification->serialize()]
184 $this->db->manipulateF(
185 "DELETE FROM " . self::COLLECTION_TABLE_NAME .
" WHERE " . self::C_IDENTIFICATION .
" = %s",
187 [$identification->serialize()]
192 public function preload(array $identification_strings): void
getResourceIdentifications()
removeResourceFromAllCollections(ResourceIdentification $resource_identification)
const COLLECTION_ASSIGNMENT_TABLE_NAME
Class ResourceCollectionIdentification.
Interface CollectionRepository.
Class ResourceCollection.
Class CollectionDBRepository.
clear(ResourceCollectionIdentification $identification)
update(ResourceCollection $collection)
Class ResourceIdentification.
__construct(\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)
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
populateFromArray(array $data)