44 $this->storage = $DIC->resourceStorage();
45 $this->download_with_uploaded_filename = (bool) $DIC->clientIni()->readVariable(
47 'download_with_uploaded_filename' 53 $current_revision = $this->resource->getCurrentRevision();
54 $current_revision->setTitle($new_title);
55 $this->storage->manage()->updateRevision($current_revision);
61 public function getFile(?
int $a_hist_entry_id = null): string
63 $stream = $this->storage->consume()->stream($this->resource->getIdentification());
64 if ($a_hist_entry_id) {
65 $stream = $stream->setRevisionNumber($a_hist_entry_id);
67 return $stream->getStream()->getMetadata(
'uri');
72 return $this->resource->getCurrentRevision()->getInformation()->getSize() ?: 0;
80 return $this->resource->getCurrentRevision()->getInformation()->getMimeType();
85 $consumer = $this->storage->consume()->stream($this->resource->getIdentification());
87 $consumer->setRevisionNumber($a_version);
89 $stream = $consumer->getStream();
91 return dirname($stream->getMetadata(
'uri'));
94 public function sendFile(?
int $a_hist_entry_id = null,
bool $inline =
true): void
97 $consumer = $this->storage->consume()->inline($this->resource->getIdentification());
99 $consumer = $this->storage->consume()->download($this->resource->getIdentification());
102 if ($a_hist_entry_id) {
103 $revision = $this->resource->getSpecificRevision($a_hist_entry_id);
104 $consumer->setRevisionNumber($a_hist_entry_id);
106 $revision = $this->resource->getCurrentRevision();
109 if ($this->download_with_uploaded_filename) {
110 $consumer->overrideFileName($revision->getInformation()->getTitle());
112 $consumer->overrideFileName($revision->getTitle());
121 if (is_array($a_hist_entry_ids)) {
122 foreach ($a_hist_entry_ids as
$id) {
123 $this->storage->manage()->removeRevision($this->resource->getIdentification(),
$id);
130 return $this->resource->getCurrentRevision()->getInformation()->getSuffix();
139 foreach ($this->resource->getAllRevisions() as $revision) {
140 if (is_array($version_ids) && !in_array($revision->getVersionNumber(), $version_ids)) {
143 $information = $revision->getInformation();
145 $v->setVersion($revision->getVersionNumber());
146 $v->setHistEntryId($revision->getVersionNumber());
147 $v->setFilename($information->getTitle());
148 $v->setAction($revision->getVersionNumber() === 1 ?
'create' :
'new_version');
149 $v->setTitle($revision->getTitle());
150 $v->setDate($information->getCreationDate()->format(DATE_ATOM));
151 $v->setUserId($revision->getOwnerId() !== 0 ? $revision->getOwnerId() : 6);
152 $v->setSize($information->getSize());
162 return $this->resource->getStorageID();
167 return $this->resource->getCurrentRevision()->getVersionNumber();
172 return $this->resource->getMaxRevision();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getVersions(?array $version_ids=null)
StorableResource $resource
Class ilObjFileImplementationStorage.
Interface StorageResource.
deleteVersions(?array $a_hist_entry_ids=null)
Deletes the specified history entries or all entries if no ids are specified.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getFileExtension()
Returns the extension of the file name converted to lower-case.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
sendFile(?int $a_hist_entry_id=null, bool $inline=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getFile(?int $a_hist_entry_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
getDirectory(int $a_version=0)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
handleChangedObjectTitle(string $new_title)
bool $download_with_uploaded_filename