59 public function __construct(
int $a_usr_id, array $a_object_wsp_ids,
bool $a_initiated_by_folder_action =
false)
63 $this->user_id = $a_usr_id;
64 $this->object_wsp_ids = $a_object_wsp_ids;
65 $this->initiated_by_folder_action = $a_initiated_by_folder_action;
66 $this->task_factory = $DIC->backgroundTasks()->taskFactory();
67 $this->lng = $DIC->language();
78 $this->bucket_title = $a_title;
92 if (substr($this->bucket_title, 0, 1) ===
"-") {
93 $this->bucket_title = ltrim($this->bucket_title,
"-");
108 $this->logger->info(
'Started download workspace files background task');
110 $bucket->setUserId($this->user_id);
111 $this->logger->debug(
'Created bucket and set the following user id: ' . $this->user_id);
116 $definition->setTempDir($normalized_name);
117 $definition->setObjectWspIds($this->object_wsp_ids);
118 $this->logger->debug(
'Created copy definition and added the following tempdir: ' . $normalized_name);
121 $collect_job = $this->task_factory->createTask(ilCollectWorkspaceFilesJob::class, [$definition, $this->initiated_by_folder_action]);
122 $this->logger->debug(
'Collected files based on the following object ids: ');
123 $this->logger->dump($this->object_wsp_ids);
126 $file_size_job = $this->task_factory->createTask(ilCheckSumOfWorkspaceFileSizesJob::class, [$collect_job]);
129 $file_size_interaction = $this->task_factory->createTask(ilSumOfWorkspaceFileSizesTooLargeInteraction::class, [$file_size_job]);
130 $this->logger->debug(
'Determined the sum of all file sizes');
133 $copy_job = $this->task_factory->createTask(ilCopyWorkspaceFilesToTempDirectoryJob::class, [$file_size_interaction]);
136 $zip_job = $this->task_factory->createTask(ilZipJob::class, [$copy_job]);
137 $this->logger->debug(
'Moved files from source- to target-directory');
141 $download_name->setValue($normalized_name .
'.zip');
142 $download_interaction = $this->task_factory->createTask(ilDownloadZipInteraction::class, [$zip_job, $download_name]);
143 $this->logger->debug(
'Created a download interaction with the following download name: ' . $download_name->getValue());
146 $bucket->setTask($download_interaction);
148 $this->logger->debug(
'Added last task to bucket and set the following title: ' . $this->
getBucketTitle());
150 $task_manager =
$GLOBALS[
'DIC']->backgroundTasks()->taskManager();
151 $task_manager->run($bucket);
152 $this->logger->debug(
'Ran bucket in task manager');
setBucketTitle($a_title)
set bucket title.
static getASCIIFilename($a_filename)
convert utf8 to ascii filename
Background task for downloads.
Copy definition for worspace folders.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
$initiated_by_folder_action
static getLogger($a_component_id)
Get component logger.
__construct(int $a_usr_id, array $a_object_wsp_ids, bool $a_initiated_by_folder_action=false)
Constructor.
getBucketTitle()
return bucket title.