ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCheckSumOfFileSizesJob.php
Go to the documentation of this file.
1 <?php
25 
33 {
34  private readonly ?ilLogger $logger;
35  protected \ilSetting $settings;
36 
37 
41  public function __construct()
42  {
43  global $DIC;
44  $this->logger = $DIC->logger()->cal();
45  $this->settings = new ilSetting("fold");
46  }
47 
48 
52  public function getInputTypes(): array
53  {
54  return
55  [
56  new SingleType(ilCopyDefinition::class),
57  ];
58  }
59 
60 
64  public function getOutputType(): Type
65  {
66  return new SingleType(ilCopyDefinition::class);
67  }
68 
69 
73  public function isStateless(): bool
74  {
75  return true;
76  }
77 
78 
83  public function run(array $input, Observer $observer): Value
84  {
85  $this->logger->debug('Start checking adherence to maxsize!');
86  $this->logger->dump($input);
87  $definition = $input[0];
88  $object_ref_ids = $definition->getObjectRefIds();
89 
90  // get global limit (max sum of individual file-sizes) from file settings
91  $general = new General();
92  $size_limit = $general->getDownloadLimitinMB();
93  $size_limit_bytes = $size_limit * 1024 * 1024;
94  $this->logger->debug('Global limit (max sum of all file-sizes) in file-settings: ' . $size_limit_bytes . ' bytes');
95  // get sum of individual file-sizes
96  $total_bytes = 0;
97  $this->calculateRecursive($object_ref_ids, $total_bytes);
98  $this->logger->debug('Calculated sum of all file-sizes: ' . $total_bytes . 'MB');
99  // check if calculated total size adheres top global limit
100  $adheres_to_limit = new BooleanValue();
101  $adheres_to_limit->setValue(true);
102  if ($total_bytes > $size_limit_bytes) {
103  $adheres_to_limit->setValue(false);
104  }
105 
106  $definition->setSumFileSizes($total_bytes);
107  $definition->setAdheresToLimit($adheres_to_limit);
108 
109  return $definition;
110  }
111 
112 
117  protected function calculateRecursive(array $a_ref_ids, int &$a_file_size): void
118  {
119  global $DIC;
120  $tree = $DIC['tree'];
121 
122  // parse folders
123  foreach ($a_ref_ids as $ref_id) {
124  if (!$this->validateAccess($ref_id)) {
125  continue;
126  }
127 
128  // we are only interested in folders and files
129  switch (ilObject::_lookupType($ref_id, true)) {
130  case "fold":
131  // get child objects
132  $subtree = $tree->getChildsByTypeFilter($ref_id, ["fold", "file"]);
133  if (count($subtree) > 0) {
134  $child_ref_ids = [];
135  foreach ($subtree as $child) {
136  $child_ref_ids[] = $child["ref_id"];
137  }
138  $this->calculateRecursive($child_ref_ids, $a_file_size);
139  }
140  break;
141 
142  case "file":
143  $a_file_size += ilObjFileAccess::_lookupFileSize($ref_id);
144  break;
145  }
146  }
147  }
148 
149 
155  protected function validateAccess(int $ref_id): bool
156  {
157  global $DIC;
158  $ilAccess = $DIC['ilAccess'];
159 
160  if (!$ilAccess->checkAccess("read", "", $ref_id)) {
161  return false;
162  }
163  return !ilObject::_isInTrash($ref_id);
164  }
165 
166 
171  {
172  return 30;
173  }
174 }
static _lookupFileSize(int $a_id, bool $by_reference=true)
$ref_id
Definition: ltiauth.php:65
$general
SECTIONS.
static _isInTrash(int $ref_id)
getExpectedTimeOfTaskInSeconds()
int the amount of seconds this task usually taskes. If your task-duration scales with the the amount ...
global $DIC
Definition: shib_login.php:22
calculateRecursive(array $a_ref_ids, int &$a_file_size)
Calculates the number and size of the files being downloaded recursively.
run(array $input, Observer $observer)
static _lookupType(int $id, bool $reference=false)
validateAccess(int $ref_id)
Check file access.