ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilZipJob.php
Go to the documentation of this file.
1 <?php
25 
32 class ilZipJob extends AbstractJob
33 {
34  private ?ilLogger $logger;
36 
40  public function __construct()
41  {
42  global $DIC;
43  $this->logger = $DIC->logger()->cal();
44  $this->archives = $DIC->archives();
45  }
46 
47 
51  public function getInputTypes(): array
52  {
53  return
54  [
55  new SingleType(StringValue::class),
56  ];
57  }
58 
59 
63  public function getOutputType(): Type
64  {
65  return new SingleType(StringValue::class);
66  }
67 
68 
72  public function isStateless(): bool
73  {
74  return true;
75  }
76 
77 
82  public function run(array $input, Observer $observer): Value
83  {
84  $this->logger->debug('Start zipping input dir!');
85  $this->logger->dump($input);
86  $string = $input[0]->getValue();
87  $tmpdir = rtrim((string) $string, "/");
88  $this->logger->debug('Zipping directory:' . $tmpdir);
89  $zip_name = $tmpdir . '.zip';
90 
91  $zip = $this->archives->zip([]);
92  $zip->addDirectory($tmpdir);
93  $zip_stream = $zip->get();
94  stream_copy_to_stream($zip_stream->detach(), fopen($zip_name, 'wb')); // we currently have to write to disk
95 
96  // delete temp directory
97  ilFileUtils::delDir($tmpdir);
98 
99  $zip_file_name = new StringValue();
100  $zip_file_name->setValue($zip_name);
101 
102  return $zip_file_name;
103  }
104 
105 
110  {
111  return 30;
112  }
113 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct()
Construct.
Archives $archives
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
global $DIC
Definition: shib_login.php:22
getExpectedTimeOfTaskInSeconds()
int the amount of seconds this task usually taskes. If your task-duration scales with the the amount ...
ilLogger $logger
run(array $input, Observer $observer)
Description of class class.