19 declare(strict_types=1);
93 $this->primary_storage_handler = $storage_handler_factory->
getPrimary();
111 $resource = $this->resource_repository->blank(
112 $this->primary_storage_handler->getIdentificationGenerator()->getUniqueResourceIdentification()
115 return $this->
append($resource, $result, $info_resolver);
121 bool $keep_original =
false 123 $resource = $this->resource_repository->blank(
124 $this->primary_storage_handler->getIdentificationGenerator()->getUniqueResourceIdentification()
127 return $this->
appendFromStream($resource, $stream, $info_resolver, $keep_original);
133 $resource = $this->resource_repository->blank(
134 $this->primary_storage_handler->getIdentificationGenerator()->getUniqueResourceIdentification()
136 $resource->
setStorageID($this->primary_storage_handler->getID());
150 $revision = $this->revision_repository->blankFromUpload($info_resolver, $resource, $result);
169 $revision = $this->revision_repository->blankFromUpload($info_resolver, $resource, $result);
188 bool $keep_original =
false 190 $revision = $this->revision_repository->blankFromStream($info_resolver, $resource, $stream, $keep_original);
205 bool $keep_original =
false 207 $revision = $this->revision_repository->blankFromStream($info_resolver, $resource, $stream, $keep_original);
233 $cloned_revision = $this->revision_repository->blankFromClone(
255 return $this->resource_repository->has($identification);
266 $this->file_name_policy->check($revision->getInformation()->getSuffix());
269 $r = $this->lock_handler->lockTables(
271 $this->resource_repository->getNamesForLocking(),
272 $this->revision_repository->getNamesForLocking(),
273 $this->information_repository->getNamesForLocking(),
274 $this->stakeholder_repository->getNamesForLocking()
276 function () use ($resource):
void {
277 $this->resource_repository->store($resource);
284 $this->stakeholder_repository->register($resource->
getIdentification(), $stakeholder);
300 $stakeholder =
clone $stakeholder;
301 $new_resource->addStakeholder($stakeholder);
309 $existing_revision->getVersionNumber(),
314 $existing_revision = $this->stream_access->populateRevision($existing_revision);
317 $new_resource->getIdentification(),
318 $existing_revision->maybeGetToken()->resolveStream(),
323 $cloned_revision->setVersionNumber($existing_revision->getVersionNumber());
325 $new_resource->addRevision($cloned_revision);
327 $this->
store($new_resource);
328 return $new_resource;
339 $this->file_name_policy->check($revision->
getInformation()->getSuffix());
340 $this->primary_storage_handler->storeUpload($revision);
343 $this->primary_storage_handler->storeStream($revision);
346 $this->primary_storage_handler->cloneRevision($revision);
348 $this->revision_repository->store($revision);
349 $this->information_repository->store($revision->
getInformation(), $revision);
358 if (isset($this->resource_cache[$identification->serialize()])) {
359 return $this->resource_cache[$identification->serialize()];
361 $resource = $this->resource_repository->get($identification);
367 return $this->resource_cache[$identification->serialize()];
376 return $revision->getRevisionToClone()->getStream();
379 return $this->storage_handler_factory->getHandlerForRevision(
381 )->getStream($revision);
383 return $this->storage_handler_factory->getHandlerForResource(
385 )->getStream($revision);
389 throw new \LogicException(
'This revision type is not supported');
402 $this->stakeholder_repository->deregister($resource->
getIdentification(), $stakeholder);
403 $sucessful = $stakeholder->resourceHasBeenDeleted($resource->
getIdentification());
410 $sucessful = $s->resourceHasBeenDeleted($resource->
getIdentification()) && $sucessful;
417 $this->storage_handler_factory->getHandlerForResource($resource)->deleteResource($resource);
418 $this->resource_repository->delete($resource);
426 if ($reveision_to_delete !== null) {
429 $this->
store($resource);
435 $this->storage_handler_factory->getHandlerForResource($resource)->deleteRevision($revision);
439 $this->information_repository->delete($revision->
getInformation(), $revision);
440 $this->revision_repository->delete($revision);
447 public function getAll(): \Iterator
452 foreach ($this->resource_repository->getAll() as $resource) {
459 $revisions = $this->revision_repository->get($resource);
462 foreach ($revisions->getAll() as
$i => $revision) {
463 $information = $this->information_repository->get($revision);
464 $revision->setInformation($information);
469 foreach ($this->stakeholder_repository->getStakeholders($resource->
getIdentification()) as $s) {
480 $info->setTitle($this->secure($info_resolver->
getFileName()));
482 $info->setSuffix($this->secure($info_resolver->
getSuffix()));
483 $info->setSize($info_resolver->
getSize());
488 $revision->setOwnerId($info_resolver->
getOwnerId());
populateRevisionInfo(Revision $revision, InfoResolver $info_resolver)
appendFromStream(StorableResource $resource, FileStream $stream, InfoResolver $info_resolver, bool $keep_original=false)
newFromStream(FileStream $stream, InfoResolver $info_resolver, bool $keep_original=false)
StorageHandlerFactory $storage_handler_factory
removeRevision(StorableResource $resource, int $revision_number)
removeRevision(Revision $revision)
getInformationRepository()
replaceWithUpload(StorableResource $resource, UploadResult $result, InfoResolver $info_resolver)
Interface StorageResource.
append(StorableResource $resource, UploadResult $result, InfoResolver $info_resolver)
addRevision(Revision $revision)
clone(StorableResource $resource)
Clone anexisting resource with all it's revisions, stakeholders and information
__construct(StorageHandlerFactory $storage_handler_factory, Repositories $repositories, LockHandler $lock_handler, StreamAccess $stream_access, FileNamePolicy $file_name_policy=null)
ResourceBuilder constructor.
Class UploadedFileRevision.
StreamAccess $stream_access
Class UploadedFileRevision.
setRevisions(RevisionCollection $collection)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface FileNamePolicy.
ILIAS ResourceStorage Revision Repository RevisionRepository $revision_repository
ILIAS ResourceStorage Resource Repository ResourceRepository $resource_repository
getStakeholderRepository()
Class NoneFileNamePolicy.
setStorageID(string $storage_id)
setInformation(Information $information)
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
deleteRevision(StorableResource $resource, Revision $revision)
populateNakedResourceWithRevisionsAndStakeholders(StorableResource $resource)
Class ResourceIdentification.
replaceWithStream(StorableResource $resource, FileStream $stream, InfoResolver $info_resolver, bool $keep_original=false)
storeRevision(Revision $revision)
Store one Revision
extractStream(Revision $revision)
store(StorableResource $resource)
after you have modified a resource, you can store it here
ILIAS ResourceStorage Policy FileNamePolicy $file_name_policy
getSpecificRevision(int $number)
Class StorageHandlerFactory.
has(ResourceIdentification $identification)
check if a resource exists
ILIAS ResourceStorage Information Repository InformationRepository $information_repository
removeStakeholder(ResourceStakeholder $s)
Interface ResourceStakeholder.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS ResourceStorage StorageHandler StorageHandler $primary_storage_handler
addStakeholder(ResourceStakeholder $s)
appendFromRevision(StorableResource $resource, int $revision_number)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
LockHandler $lock_handler
ILIAS ResourceStorage Stakeholder Repository StakeholderRepository $stakeholder_repository