19 declare(strict_types=1);
54 protected function checkZIP(
bool|
string $mimetype): void
56 if (!in_array($mimetype, [
'application/zip',
'application/x-zip-compressed'])) {
57 throw new \LogicException(
"Cant create container resource since stream is not a ZIP");
67 $this->resource_builder->publish($this->resource_builder->get($rid));
76 $this->resource_builder->unpublish($this->resource_builder->get($rid));
83 ?
string $revision_title =
null 89 $revision_title ?? $stream->getMetadata()[
'uri']
92 $resource = $this->resource_builder->newFromStream(
98 $resource->addStakeholder($stakeholder);
99 $this->resource_builder->store($resource);
101 return $resource->getIdentification();
108 if ($this->resource_builder->has($resource_identification)) {
109 return $resource_identification;
119 $this->preloader->preload([$i->
serialize()]);
120 return $this->resource_builder->get($i);
125 $this->resource_builder->remove($this->resource_builder->get($identification), $stakeholder);
126 if (!$this->resource_builder->has($identification)) {
127 $this->collection_builder->notififyResourceDeletion($identification);
133 $resource = $this->resource_builder->clone($this->resource_builder->get($identification));
135 return $resource->getIdentification();
150 ?
string $revision_title =
null,
153 if ($result->
isOK()) {
154 if (!$this->resource_builder->has($identification)) {
155 throw new \LogicException(
156 "Resource not found, can't append new version in: " . $identification->
serialize()
159 $resource = $this->resource_builder->get($identification);
166 $resource->getMaxRevision(
true) + 1,
168 $revision_title ?? $result->
getName()
171 $this->resource_builder->append(
177 $resource->addStakeholder($stakeholder);
179 $this->resource_builder->store($resource);
181 return $resource->getCurrentRevisionIncludingDraft();
183 throw new \LogicException(
"Can't handle UploadResult: " . $result->
getStatus()->getMessage());
196 ?
string $revision_title =
null 198 if ($result->
isOK()) {
199 if (!$this->resource_builder->has($identification)) {
200 throw new \LogicException(
201 "Resource not found, can't append new version in: " . $identification->
serialize()
204 $resource = $this->resource_builder->get($identification);
209 throw new \LogicException(
210 "Can't replace DRAFT revision, use appendNewRevision instead to update the DRAFT" 215 $resource->getMaxRevision(
true) + 1,
217 $revision_title ?? $result->
getName()
219 $this->resource_builder->replaceWithUpload(
224 $resource->addStakeholder($stakeholder);
226 $this->resource_builder->store($resource);
228 return $resource->getCurrentRevisionIncludingDraft();
230 throw new \LogicException(
"Can't handle UploadResult: " . $result->
getStatus()->getMessage());
243 ?
string $revision_title =
null,
246 if (!$this->resource_builder->has($identification)) {
247 throw new \LogicException(
248 "Resource not found, can't append new version in: " . $identification->
serialize()
252 $resource = $this->resource_builder->get($identification);
254 $this->
checkZIP(mime_content_type($stream->getMetadata()[
'uri']));
258 $resource->getMaxRevision(
true) + 1,
260 $revision_title ?? $stream->getMetadata()[
'uri']
263 $this->resource_builder->appendFromStream(
271 $resource->addStakeholder($stakeholder);
273 $this->resource_builder->store($resource);
275 return $resource->getCurrentRevisionIncludingDraft();
288 ?
string $revision_title =
null 290 if (!$this->resource_builder->has($identification)) {
291 throw new \LogicException(
292 "Resource not found, can't append new version in: " . $identification->
serialize()
296 $resource = $this->resource_builder->get($identification);
298 throw new \LogicException(
299 "Can't replace DRAFT revision, use appendNewRevisionFromStream instead to update the DRAFT" 303 $this->
checkZIP(mime_content_type($stream->getMetadata()[
'uri']));
307 $resource->getMaxRevision(
true) + 1,
309 $revision_title ?? $stream->getMetadata()[
'uri']
312 $this->resource_builder->replaceWithStream(
318 $resource->addStakeholder($stakeholder);
320 $this->resource_builder->store($resource);
322 return $resource->getCurrentRevisionIncludingDraft();
328 return $this->resource_builder->get($identification)->getCurrentRevision();
334 return $this->resource_builder->get($identification)->getCurrentRevisionIncludingDraft();
339 $this->resource_builder->storeRevision($revision);
346 $resource = $this->resource_builder->get($identification);
347 $this->resource_builder->appendFromRevision($resource, $revision_number);
348 $this->resource_builder->store($resource);
355 $resource = $this->resource_builder->get($identification);
356 $this->resource_builder->removeRevision($resource, $revision_number);
357 $this->resource_builder->store($resource);
publish(ResourceIdentification $rid)
Publish a resource.
Interface StorageResource.
removeRevision(ResourceIdentification $identification, int $revision_number)
getCurrentRevision(ResourceIdentification $identification)
checkZIP(bool|string $mimetype)
appendNewRevisionFromStream(ResourceIdentification $identification, FileStream $stream, ResourceStakeholder $stakeholder, ?string $revision_title=null, bool $draft=false)
Append a new revision from a stream.
replaceWithStream(ResourceIdentification $identification, FileStream $stream, ResourceStakeholder $stakeholder, ?string $revision_title=null)
__construct(protected ResourceBuilder $resource_builder, protected CollectionBuilder $collection_builder, protected RepositoryPreloader $preloader)
Manager constructor.
unpublish(ResourceIdentification $rid)
Unpublish a resource.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
clone(ResourceIdentification $identification)
replaceWithUpload(ResourceIdentification $identification, UploadResult $result, ResourceStakeholder $stakeholder, ?string $revision_title=null)
getResource(ResourceIdentification $i)
updateRevision(Revision $revision)
Class ResourceIdentification.
appendNewRevision(ResourceIdentification $identification, UploadResult $result, ResourceStakeholder $stakeholder, ?string $revision_title=null, bool $draft=false)
Append a new revision from an UploadResult.
getCurrentRevisionIncludingDraft(ResourceIdentification $identification)
Interface ResourceStakeholder.
rollbackRevision(ResourceIdentification $identification, int $revision_number)
find(string $identification)
Interface RepositoryPreloader.
The base interface for all filesystem streams.
newStreamBased(FileStream $stream, ResourceStakeholder $stakeholder, ResourceType $type, ?string $revision_title=null)