19 declare(strict_types=1);
48 $this->irss = $DIC->resourceStorage();
49 $this->
logger = $DIC->logger()->cal();
59 new SingleType(ilCalendarRessourceStorageCopyDefinition::class)
85 $cal_copy_def = $input[0];
87 $this->
logger->info(
'Called copy files job');
89 $this->target_directory = $cal_copy_def->getTempDir();
98 $this->
copyFiles($targetdir, $cal_copy_def);
103 $this->
logger->debug(
'Returning new tempdirectory: ' . $targetdir);
106 $out->setValue($targetdir);
119 $this->
logger->info(
'New temp directory: ' . $tmpdir);
127 $this->
logger->info(
'New final directory: ' . $final_dir);
149 $resource_identification = $this->irss->manage()->find($rid);
151 if(is_null($resource_identification)) {
152 $this->
logger->notice(
'Cannot ressource identification of rid: ' . $rid);
156 $this->
logger->debug(
'Creating directory: ' . $tmpdir .
'/' . dirname($target_dir));
158 $this->
logger->debug(
'Copying ressource with id: ' . $rid .
' to ' . $tmpdir .
'/' . $target_dir);
162 $this->irss->consume()->stream($resource_identification)->getStream()
171 if (!file_exists($absolute_path)) {
172 $this->
logger->notice(
'Cannot find file: ' . $absolute_path);
176 $this->
logger->debug(
'Creating directory: ' . $tmpdir .
'/' . dirname($target_dir));
178 $this->
logger->debug(
'Copying from: ' . $absolute_path .
' to ' . $tmpdir .
'/' . $target_dir);
180 copy($absolute_path, $tmpdir .
'/' . $target_dir);
run(array $input, Observer $observer)
ILIAS ResourceStorage Services $irss
createTargetDirectory(string $a_tmpdir)
getExpectedTimeOfTaskInSeconds()
int the amount of seconds this task usually taskes. If your task-duration scales with the the amount ...
createUniqueTempDirectory()
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
copyWithRId(string $tmpdir, array $copy_task)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCopyDefinitions()
Get copy definitions.
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
Description of class class.
copyWithAbsolutePath(string $tmpdir, array $copy_task)
copyFiles(string $tmpdir, ilCalendarRessourceStorageCopyDefinition $definition)
Copy files.
__construct()
Constructor.