44 $this->
logger = $DIC->logger()->cal();
81 $definition = $input[0];
83 $this->
logger->info(
'Called copy files job');
85 $this->target_directory = $definition->getTempDir();
93 $this->
copyFiles($targetdir, $definition);
98 $this->
logger->debug(
'Returning new tempdirectory: ' . $targetdir);
101 $out->setValue($targetdir);
116 $this->
logger->info(
'New temp directory: ' . $tmpdir);
126 $this->
logger->info(
'New final directory: ' . $final_dir);
140 $absolute_path_of_target_dir_or_file = $tmpdir .
'/' . $target_dir_or_file;
141 $absolute_directory_of_target_dir_or_file = $tmpdir .
'/' . dirname($target_dir_or_file);
143 $this->
logger->debug(
'Creating directory: ' . $tmpdir .
'/' . dirname($target_dir_or_file));
146 $absolute_directory_of_target_dir_or_file
149 if (!file_exists($source_dir_or_file)) {
151 $is_empty_folder = preg_match_all(
"/\/$/", $target_dir_or_file);
152 if ($is_empty_folder && !file_exists($absolute_path_of_target_dir_or_file)) {
153 mkdir($absolute_path_of_target_dir_or_file);
154 $this->
logger->notice(
'Empty folder has been created: ' . $tmpdir .
'/' . $source_dir_or_file);
156 $this->
logger->notice(
'Cannot find file: ' . $source_dir_or_file);
163 $source_dir_or_file .
165 $absolute_path_of_target_dir_or_file
168 !is_dir($source_dir_or_file) && is_file($source_dir_or_file)
169 && !is_dir($absolute_path_of_target_dir_or_file)
173 $absolute_path_of_target_dir_or_file
createTargetDirectory(string $a_tmpdir)
createUniqueTempDirectory()
getCopyDefinitions()
Get copy definitions.
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
__construct()
Constructor.
copyFiles(string $tmpdir, ilCopyDefinition $definition)
Copy files.
Description of class class.
run(array $input, Observer $observer)
run the job
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
Description of class class.
getExpectedTimeOfTaskInSeconds()
int the amount of seconds this task usually taskes. If your task-duration scales with the the amount ...