59 public string $mode = self::MODE_OBJECT;
69 public function __construct(
int $a_id = 0,
bool $a_call_by_reference =
true)
75 $this->manager = $DIC->resourceStorage()->manage();
78 $this->
upload = $DIC->upload();
80 $this->max_version = 0;
91 $this->file_info = $repository->getByRefId($id);
93 $this->file_info = ($repository)->getByObjectId($id);
99 return $this->file_info->getHeaderTitle();
104 if ($this->resource_id && (
$id = $this->manager->find($this->resource_id)) !== null) {
105 $resource = $this->manager->getResource(
$id);
107 $this->max_version = $resource->getMaxRevision();
108 $this->version = $resource->getMaxRevision();
116 $this->manager->getCurrentRevision($this->manager->find($this->getResourceId())),
132 if ($create_previews) {
133 $this->createPreview(
true);
139 $suffix = $this->file_info->getSuffix();
141 if (empty($suffix) || $suffix !== $filename_suffix) {
142 $suffix = $filename_suffix;
155 if ($this->
getResourceId() &&
$i = $this->manager->find($this->getResourceId())) {
156 $revision = $this->manager->appendNewRevisionFromStream(
$i, $stream, $this->stakeholder, $title);
158 $i = $this->manager->stream($stream, $this->stakeholder, $title);
159 $revision = $this->manager->getCurrentRevision(
$i);
165 return $revision->getVersionNumber();
175 $revision = $this->manager->appendNewRevision(
$i, $result, $this->stakeholder, $title);
177 $i = $this->manager->upload($result, $this->stakeholder, $title);
178 $revision = $this->manager->getCurrentRevision(
$i);
187 return $revision->getVersionNumber();
195 if ($this->
getResourceId() &&
$i = $this->manager->find($this->getResourceId())) {
196 $revision = $this->manager->replaceWithStream(
$i, $stream, $this->stakeholder, $title);
198 throw new LogicException(
'only files with existing resource and revision can be replaced');
202 return $revision->getVersionNumber();
212 $revision = $this->manager->replaceWithUpload(
$i, $result, $this->stakeholder, $title);
214 throw new LogicException(
'only files with existing resource and revision can be replaced');
221 return $revision->getVersionNumber();
227 public function getFile(?
int $a_hist_entry_id = null): string
230 return $this->implementation->getFile($a_hist_entry_id);
235 return $this->implementation->getDirectory($a_version);
240 return $this->implementation->getVersion();
245 $this->version = $a_version;
255 $this->filename = $a_name;
260 $this->rating = $a_value;
271 return $this->resource_id ??
'-';
276 return $this->implementation->getStorageID();
289 $this->mode = $a_mode;
294 return $this->implementation->getFileSize();
304 return $this->implementation->getFileType();
356 $new_title = $this->
ensureSuffix($new_title, $this->file_info->getSuffix());
358 $this->implementation->handleChangedObjectTitle($new_title);
362 protected function doCreate(
bool $clone_mode =
false): void
368 protected function doRead():
void 375 $q =
"SELECT * FROM file_data WHERE file_id = %s";
376 $r = $DIC->database()->queryF($q, [
'integer'], [$this->
getId()]);
377 $row = $r->fetchObject();
379 $this->filename = $this->secure($row->file_name ??
'');
380 $this->filetype = $row->file_type ??
'';
381 $this->filesize = $row->file_size ?? 0;
382 $this->version = $row->version ?? 1;
383 $this->max_version = $row->max_version ?? 1;
384 $this->mode = $row->f_mode ?? self::MODE_OBJECT;
385 $this->rating = (bool) ($row->rating ??
false);
386 $this->page_count = (
int) ($row->page_count ?? 0);
387 $this->resource_id = $row->rid ?? null;
395 $identification = $this->manager->find($this->resource_id);
396 if ($identification === null) {
397 throw new RuntimeException(
'Cannot clone file since no corresponding resource identification was found');
402 $new_obj->updateFileData();
405 $cloned_title = $new_obj->
getTitle();
406 $new_resource_identification = $this->manager->clone($identification);
407 $new_current_revision = $this->manager->getCurrentRevision($new_resource_identification);
408 $new_obj->setResourceId($new_resource_identification->serialize());
409 $new_obj->initImplementation();
410 $new_obj->updateObjectFromRevision($new_current_revision,
false);
417 $obj_settings->cloneSettings($new_obj->
getId());
418 unset($obj_settings);
426 $DIC->database()->update(
'file_data', $a_columns, [
434 $meta_version_column = [
'meta_version' => [
'integer', $this->
getVersion()]];
435 $DIC->database()->update(
'il_meta_lifecycle', $meta_version_column, [
451 if ($this->
getMode() !== self::MODE_FILELIST) {
461 $usages = $this->getUsages();
462 return count($usages) === 0;
470 $DIC->database()->manipulateF(
"DELETE FROM file_data WHERE file_id = %s", [
'integer'], [$this->
getId()]);
476 if ($this->
getMode() != self::MODE_FILELIST) {
481 $this->deletePreview();
485 if ($identification && $identification !=
'-') {
486 $resource = $this->manager->find($identification);
487 if ($resource !== null) {
488 $this->manager->remove($resource, $this->stakeholder);
496 'file_id' => [
'integer', $this->
getId()],
498 'f_mode' => [
'text', $this->
getMode()],
500 'rating' => [
'integer', $this->
hasRating()],
501 'rid' => [
'text', $this->resource_id ??
''],
507 $this->type = self::OBJECT_TYPE;
522 if (!$this->
upload->hasBeenProcessed()) {
523 if (defined(
'PATH_TO_GHOSTSCRIPT') && PATH_TO_GHOSTSCRIPT !==
"") {
562 $this->implementation->clearDataDirectory();
571 $this->implementation->deleteVersions($a_hist_entry_ids);
574 public function sendFile(?
int $a_hist_entry_id = null,
bool $inline =
true): void
578 $this->implementation->sendFile($a_hist_entry_id, $info->shouldDeliverInline());
584 public function export(
string $a_target_dir): void
596 return $this->implementation->getVersions($version_ids);
605 if ($this->
getResourceId() &&
$i = $this->manager->find($this->getResourceId())) {
606 $this->manager->rollbackRevision(
$i, $version_id);
607 $latest_revision = $this->manager->getCurrentRevision(
$i);
610 throw new LogicException(
'only files with existing resource and revision can be replaced');
627 return $this->implementation->getFileExtension();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjFileStakeholder.
Class ilObjFileImplementationStorage.
setFileName(string $a_name)
static getLogger(string $a_component_id)
Get component logger.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
cloneMetaData(ilObject $target_obj)
replaceWithUpload(UploadResult $result, string $title)
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=0)
appendSuffixToTitle(string $title, string $filename)
rollback(int $version_id)
Makes the specified version the current one.
static _isFileHidden(string $a_file_name)
Returns true, if a file with the specified name, is usually hidden from the user. ...
getDirectory($a_version=0)
updateObjectFromRevision(Revision $r, bool $create_previews=true)
updateObjectFromCurrentRevision()
appendUpload(UploadResult $result, string $title)
doCreate(bool $clone_mode=false)
ilObjFileImplementationInterface $implementation
replaceFile($a_upload_file, $a_filename)
setAction(string $a_action)
initFileInfo(int $id, bool $is_ref_id)
static _removeEntriesForObject(int $a_obj_id)
remove all history entries for an object
appendStream(FileStream $stream, string $title)
ilObjFileStakeholder $stakeholder
getUploadFile($a_upload_file, string $title, bool $a_prevent_preview=false)
This Method is used to append a fileupload by it's POST-name to the current ilObjFile ...
setPageCount(int $page_count)
extractSuffixFromFilename(string $filename)
setVersion(int $a_version)
setMaxVersion(int $a_max_version)
deleteVersions($a_hist_entry_ids=null)
trait ilObjFileSecureString
Trait ilObjFileSecureString.
notifyUpdate(int $obj_id, string $additional_message=null)
replaceWithStream(FileStream $stream, string $title)
__construct(Container $dic, ilPlugin $plugin)
notifyCreation(int $obj_id, string $additional_message=null)
sendFile(?int $a_hist_entry_id=null, bool $inline=true)
checkFileExtension(string $new_filename, string $new_title)
Class ilCountPDFPagesPreProcessors.
setFileType(string $a_type)
setResourceId(?string $resource_id)
handleChangedObjectTitle(string $new_title)
__construct(int $a_id=0, bool $a_reference=true)
Constructor.
getVersions($version_ids=null)
export(string $a_target_dir)
ensureSuffix(string $title, ?string $suffix=null)
trait ilObjFileNews
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)