ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLearningModuleExportOptionHTML.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 use ILIAS\Export\ExportHandler\I\Consumer\Context\HandlerInterface as ilExportHandlerConsumerContextInterface;
26 use ILIAS\Export\ExportHandler\I\Consumer\File\Identifier\CollectionInterface as ilExportHandlerConsumerFileIdentifierCollectionInterface;
27 use ILIAS\Export\ExportHandler\I\Consumer\File\Identifier\HandlerInterface as ilExportHandlerConsumerFileIdentifierInterface;
28 use ILIAS\Export\ExportHandler\I\Info\File\CollectionInterface as ilExportHandlerFileInfoCollectionInterface;
30 
31 class ilLearningModuleExportOptionHTML extends \ILIAS\Export\HTML\ExportOptionBase
32 {
33  protected ilLanguage $lng;
34  protected ilCtrl $ctrl;
36 
37  public function init(Container $DIC): void
38  {
39  parent::init($DIC);
40  $this->lng = $DIC->language();
41  $this->ctrl = $DIC->ctrl();
42  $this->lom_services = $DIC->learningObjectMetadata();
43  }
44 
45  public function isPublicAccessPossible(): bool
46  {
47  return true;
48  }
49 
50  public function getExportType(): string
51  {
52  return "html";
53  }
54 
55  public function getExportOptionId(): string
56  {
57  return "lm_exp_option_html";
58  }
59 
60  public function getSupportedRepositoryObjectTypes(): array
61  {
62  return ["lm"];
63  }
64 
65  public function getLabel(): string
66  {
67  $this->lng->loadLanguageModule('exp');
68  return $this->lng->txt("exp_format_dropdown-html");
69  }
70 
71  /*
72  public function onDeleteFiles(
73  ilExportHandlerConsumerContextInterface $context,
74  ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers
75  ): void {
76  $this->lng->loadLanguageModule("meta");
77  foreach ($file_identifiers as $file_identifier) {
78  $file = explode(":", $file_identifier->getIdentifier());
79  $file[1] = basename($file[1]);
80  $export_dir = ilExport::_getExportDirectory(
81  $context->exportObject()->getId(),
82  "",
83  $context->exportObject()->getType()
84  );
85  $export_dir = substr($export_dir, 0, strlen($export_dir) - 1);
86  foreach ($this->getSubDirs($context->exportObject()->getId()) as $sub_dir) {
87  $target_dir = $export_dir . $sub_dir;
88  $exp_file = $target_dir . DIRECTORY_SEPARATOR . str_replace("..", "", $file[1]);
89  if (is_file($exp_file)) {
90  unlink($exp_file);
91  }
92  if (is_dir($target_dir) and count(scandir($target_dir)) === 2) {
93  ilFileUtils::delDir($target_dir);
94  }
95  }
96  $lm_dir = substr($export_dir, 0, strlen($export_dir) - strlen("/export_html"));
97  if (is_dir($lm_dir) and count(scandir($lm_dir)) === 2) {
98  ilFileUtils::delDir($lm_dir);
99  }
100  }
101  }*/
102 
103  /*
104  public function onDownloadFiles(
105  ilExportHandlerConsumerContextInterface $context,
106  ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers
107  ): void {
108  foreach ($file_identifiers as $file_identifier) {
109  $file = explode(":", trim($file_identifier->getIdentifier()));
110  $export_dir = ilExport::_getExportDirectory(
111  $context->exportObject()->getId(),
112  "",
113  $context->exportObject()->getType()
114  );
115  $export_dir = substr($export_dir, 0, strlen($export_dir) - 1);
116  foreach ($this->getSubDirs($context->exportObject()->getId()) as $sub_dir) {
117  $target_dir = $export_dir . $sub_dir;
118  $file_path = $target_dir . "/" . basename($file[1]);
119  if (!is_file($file_path)) {
120  continue;
121  }
122  ilFileDelivery::deliverFileLegacy(
123  $file_path,
124  $file[1]
125  );
126  break;
127  }
128  }
129  }*/
130 
131  /*
132  public function onDownloadWithLink(
133  ReferenceId $reference_id,
134  ilExportHandlerConsumerFileIdentifierInterface $file_identifier
135  ): void {
136  $object_id = $reference_id->toObjectId()->toInt();
137  $type = ilObject::_lookupType($object_id);
138  $file = explode(":", trim($file_identifier->getIdentifier()));
139  $export_dir = ilExport::_getExportDirectory(
140  $object_id,
141  "",
142  $type
143  );
144  $export_dir = substr($export_dir, 0, strlen($export_dir) - 1);
145  foreach ($this->getSubDirs($object_id) as $sub_dir) {
146  $target_dir = $export_dir . $sub_dir;
147  $file_path = $target_dir . "/" . basename($file[1]);
148  if (!is_file($file_path)) {
149  continue;
150  }
151  ilFileDelivery::deliverFileLegacy(
152  $file_path,
153  $file[1]
154  );
155  break;
156  }
157  }*/
158 
159  /*
160  public function getFiles(
161  ilExportHandlerConsumerContextInterface $context
162  ): \ILIAS\Export\ExportHandler\I\Info\File\CollectionInterface {
163  $collection_builder = $context->fileCollectionBuilder();
164  $export_dir = ilExport::_getExportDirectory(
165  $context->exportObject()->getId(),
166  "",
167  $context->exportObject()->getType()
168  );
169  $export_dir = substr($export_dir, 0, strlen($export_dir) - 1);
170  $files = [];
171  foreach ($this->getSubDirs($context->exportObject()->getId()) as $sub_dir) {
172  $target_dir = $export_dir . $sub_dir;
173  if (!is_dir($target_dir)) {
174  continue;
175  }
176  $new_files = array_filter(scandir($target_dir), function ($file) { return str_ends_with($file, ".zip"); });
177  $files[$target_dir] = $new_files;
178  }
179  $object_id = new ObjectId($context->exportObject()->getId());
180  foreach ($files as $lang_dir => $file_names) {
181  foreach ($file_names as $file_name) {
182  // alternative withResourceIdentifier
183  $collection_builder = $collection_builder->withSPLFileInfo(
184  new SplFileInfo($lang_dir . DIRECTORY_SEPARATOR . $file_name),
185  $object_id,
186  $this
187  );
188  }
189  }
190  return $collection_builder->collection();
191  }*/
192 
193  public function getFileSelection(
194  ilExportHandlerConsumerContextInterface $context,
195  ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers
196  ): ilExportHandlerFileInfoCollectionInterface {
197  $collection_builder = $context->fileCollectionBuilder();
198  $file_identifiers_array = $file_identifiers->toStringArray();
199  foreach ($this->getFiles($context) as $file) {
200  if (in_array($file->getFileIdentifier(), $file_identifiers_array)) {
201  $collection_builder = $collection_builder->withFileInfo($file);
202  }
203  }
204  return $collection_builder->collection();
205  }
206 
207  public function onExportOptionSelected(
208  ilExportHandlerConsumerContextInterface $context
209  ): void {
210  $this->ctrl->redirectByClass(ilObjContentObjectGUI::class, "showExportOptionsHTML");
211  }
212 
213  protected function getSubDirs(int $object_id): array
214  {
215  $langs = [];
216  foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
217  $langs[] = $language->value();
218  }
219  $default_dirs = ["_html"];
220  $default_dirs = array_merge($default_dirs, ["_html_all"]);
221  return array_merge($default_dirs, array_map(function ($la) { return "_html_" . $la; }, $langs));
222  }
223 }
$context
Definition: webdav.php:31
getFileSelection(ilExportHandlerConsumerContextInterface $context, ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers)
onExportOptionSelected(ilExportHandlerConsumerContextInterface $context)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
getFiles(ilExportHandlerConsumerContextInterface $context)
global $DIC
Definition: shib_login.php:22
language()
Get interface to the i18n service.
Definition: Container.php:95
ctrl()
Get the interface to the control structure.
Definition: Container.php:63