6 include_once(
'Services/BackgroundTasks/classes/class.ilCopyDefinition.php');
7 include_once(
'Services/BackgroundTasks/classes/Jobs/class.ilCollectFilesJob.php');
8 include_once(
'Services/BackgroundTasks/classes/Jobs/class.ilCheckSumOfFileSizesJob.php');
9 include_once(
'Services/BackgroundTasks/classes/UserInteractions/class.ilSumOfFileSizesTooLargeInteraction.php');
10 include_once(
'Services/BackgroundTasks/classes/Jobs/class.ilCopyFilesToTempDirectoryJob.php');
11 include_once(
'Services/BackgroundTasks/classes/Jobs/class.ilZipJob.php');
12 include_once(
'Services/BackgroundTasks/classes/UserInteractions/class.ilDownloadZipInteraction.php');
67 public function __construct($a_usr_id, $a_object_ref_ids, $a_initiated_by_folder_action)
70 $this->logger = $DIC->logger()->cal();
71 $this->user_id = $a_usr_id;
72 $this->object_ref_ids = $a_object_ref_ids;
73 $this->initiated_by_folder_action = $a_initiated_by_folder_action;
74 $this->task_factory = $DIC->backgroundTasks()->taskFactory();
75 $this->lng = $DIC->language();
86 $this->bucket_title = $a_title;
100 if (substr($this->bucket_title, 0, 1) ===
"-") {
101 $this->bucket_title = ltrim($this->bucket_title,
"-");
116 $this->logger->info(
'Started download container files background task');
118 $bucket->setUserId($this->user_id);
119 $this->logger->debug(
'Created bucket and set the following user id: ' . $this->user_id);
124 $definition->setTempDir($normalized_name);
125 $definition->setObjectRefIds($this->object_ref_ids);
126 $this->logger->debug(
'Created copy definition and added the following tempdir: ' . $normalized_name);
129 $collect_job = $this->task_factory->createTask(ilCollectFilesJob::class, [$definition, $this->initiated_by_folder_action]);
130 $this->logger->debug(
'Collected files based on the following object ids: ');
131 $this->logger->dump($this->object_ref_ids);
134 $file_size_job = $this->task_factory->createTask(ilCheckSumOfFileSizesJob::class, [$collect_job]);
137 $file_size_interaction = $this->task_factory->createTask(ilSumOfFileSizesTooLargeInteraction::class, [$file_size_job]);
138 $this->logger->debug(
'Determined the sum of all file sizes');
141 $copy_job = $this->task_factory->createTask(ilCopyFilesToTempDirectoryJob::class, [$file_size_interaction]);
144 $zip_job = $this->task_factory->createTask(ilZipJob::class, [$copy_job]);
145 $this->logger->debug(
'Moved files from source- to target-directory');
149 $download_name->setValue($normalized_name .
'.zip');
150 $download_interaction = $this->task_factory->createTask(ilDownloadZipInteraction::class, [$zip_job, $download_name]);
151 $this->logger->debug(
'Created a download interaction with the following download name: ' . $download_name->getValue());
154 $bucket->setTask($download_interaction);
156 $this->logger->debug(
'Added last task to bucket and set the following title: ' . $this->
getBucketTitle());
158 $task_manager =
$GLOBALS[
'DIC']->backgroundTasks()->taskManager();
159 $task_manager->run($bucket);
160 $this->logger->debug(
'Ran bucket in task manager');
Class ilDownloadContainerFilesBackgroundTask.
__construct($a_usr_id, $a_object_ref_ids, $a_initiated_by_folder_action)
Constructor.
static getASCIIFilename($a_filename)
convert utf8 to ascii filename
$initiated_by_folder_action
getBucketTitle()
return bucket title.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Description of class class.
setBucketTitle($a_title)
set bucket title.