19 declare(strict_types=1);
61 string $revision_title = null
63 if ($result->
isOK()) {
68 $revision_title ?? $result->
getName()
71 $resource = $this->resource_builder->new(
75 $resource->addStakeholder($stakeholder);
76 $this->resource_builder->store($resource);
78 return $resource->getIdentification();
80 throw new \LogicException(
"Can't handle UploadResult: " . $result->
getStatus()->getMessage());
86 string $revision_title = null
92 $revision_title ?? $stream->getMetadata()[
'uri']
95 $resource = $this->resource_builder->newFromStream(
100 $resource->addStakeholder($stakeholder);
101 $this->resource_builder->store($resource);
103 return $resource->getIdentification();
110 if ($this->resource_builder->has($resource_identification)) {
111 return $resource_identification;
121 $this->preloader->preload([$i->
serialize()]);
122 return $this->resource_builder->get($i);
128 $this->resource_builder->remove($this->resource_builder->get($identification), $stakeholder);
129 if (!$this->resource_builder->has($identification)) {
130 $this->collection_builder->notififyResourceDeletion($identification);
136 $resource = $this->resource_builder->clone($this->resource_builder->get($identification));
138 return $resource->getIdentification();
147 string $revision_title = null
149 if ($result->
isOK()) {
150 if (!$this->resource_builder->has($identification)) {
151 throw new \LogicException(
152 "Resource not found, can't append new version in: " . $identification->
serialize()
155 $resource = $this->resource_builder->get($identification);
158 $resource->getMaxRevision() + 1,
160 $revision_title ?? $result->
getName()
163 $this->resource_builder->append(
168 $resource->addStakeholder($stakeholder);
170 $this->resource_builder->store($resource);
172 return $resource->getCurrentRevision();
174 throw new \LogicException(
"Can't handle UploadResult: " . $result->
getStatus()->getMessage());
181 string $revision_title = null
183 if ($result->
isOK()) {
184 if (!$this->resource_builder->has($identification)) {
185 throw new \LogicException(
186 "Resource not found, can't append new version in: " . $identification->
serialize()
189 $resource = $this->resource_builder->get($identification);
192 $resource->getMaxRevision() + 1,
194 $revision_title ?? $result->
getName()
196 $this->resource_builder->replaceWithUpload(
201 $resource->addStakeholder($stakeholder);
203 $this->resource_builder->store($resource);
205 return $resource->getCurrentRevision();
207 throw new \LogicException(
"Can't handle UploadResult: " . $result->
getStatus()->getMessage());
214 string $revision_title = null
216 if (!$this->resource_builder->has($identification)) {
217 throw new \LogicException(
218 "Resource not found, can't append new version in: " . $identification->
serialize()
222 $resource = $this->resource_builder->get($identification);
225 $resource->getMaxRevision() + 1,
227 $revision_title ?? $stream->getMetadata()[
'uri']
230 $this->resource_builder->appendFromStream(
236 $resource->addStakeholder($stakeholder);
238 $this->resource_builder->store($resource);
240 return $resource->getCurrentRevision();
247 string $revision_title = null
249 if (!$this->resource_builder->has($identification)) {
250 throw new \LogicException(
251 "Resource not found, can't append new version in: " . $identification->
serialize()
255 $resource = $this->resource_builder->get($identification);
258 $resource->getMaxRevision() + 1,
260 $revision_title ?? $stream->getMetadata()[
'uri']
263 $this->resource_builder->replaceWithStream(
269 $resource->addStakeholder($stakeholder);
271 $this->resource_builder->store($resource);
273 return $resource->getCurrentRevision();
278 return $this->resource_builder->get($identification)->getCurrentRevision();
283 $this->resource_builder->storeRevision($revision);
290 $resource = $this->resource_builder->get($identification);
291 $this->resource_builder->appendFromRevision($resource, $revision_number);
292 $this->resource_builder->store($resource);
299 $resource = $this->resource_builder->get($identification);
300 $this->resource_builder->removeRevision($resource, $revision_number);
301 $this->resource_builder->store($resource);
upload(UploadResult $result, ResourceStakeholder $stakeholder, string $revision_title=null)
Interface StorageResource.
__construct(ResourceBuilder $resource_builder, CollectionBuilder $collection_builder, RepositoryPreloader $preloader)
Manager constructor.
find(string $identification)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
CollectionBuilder $collection_builder
Class ResourceIdentification.
replaceWithUpload(ResourceIdentification $identification, UploadResult $result, ResourceStakeholder $stakeholder, string $revision_title=null)
appendNewRevisionFromStream(ResourceIdentification $identification, FileStream $stream, ResourceStakeholder $stakeholder, string $revision_title=null)
rollbackRevision(ResourceIdentification $identification, int $revision_number)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getResource(ResourceIdentification $i)
updateRevision(Revision $revision)
ResourceBuilder $resource_builder
appendNewRevision(ResourceIdentification $identification, UploadResult $result, ResourceStakeholder $stakeholder, string $revision_title=null)
clone(ResourceIdentification $identification)
RepositoryPreloader $preloader
Interface ResourceStakeholder.
getCurrentRevision(ResourceIdentification $identification)
replaceWithStream(ResourceIdentification $identification, FileStream $stream, ResourceStakeholder $stakeholder, string $revision_title=null)
removeRevision(ResourceIdentification $identification, int $revision_number)
Interface RepositoryPreloader.
stream(FileStream $stream, ResourceStakeholder $stakeholder, string $revision_title=null)