ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWebDAVMountInstructionsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
31  protected Services $http;
32 
33  public function __construct(
34  protected ilWebDAVBaseMountInstructions $mount_instruction,
35  protected ilLanguage $lang,
36  protected UIServices $ui,
37  Services $http
38  ) {
39  $this->uri_builder = new ilWebDAVUriBuilder($http->request());
40  $this->http = $http;
41  }
42 
46  public function buildGUIFromGivenMountInstructions(array $mount_instructions, bool $render_async = false): string
47  {
48  $os = $this->determineOSfromUserAgent();
49 
50  $f = $this->ui->factory();
51  $r = $this->ui->renderer();
52 
53  $components = [];
54 
55  $js_function_legacy = $f->legacy(
56  '<script>'
57  . 'il.UI.showMountInstructions = function (e, id){'
58  . "obj = $(e['target']);"
59  . "obj.siblings().removeClass('engaged disabled ilSubmitInactive').attr('aria-pressed', 'false');"
60  . "obj.siblings().removeAttr('disabled');"
61  . "obj.addClass('engaged ilSubmitInactive').attr('aria-pressed', 'true');"
62  . '$(".instructions").hide();'
63  . '$("#"+id).show();}</script>'
64  );
65 
66  if (count($mount_instructions) === 1) {
67  $content = $f->legacy("<div class='instructions'>" . array_shift($mount_instructions) . "</div>");
68 
69  return $render_async ? $r->renderAsync($content) : $r->render($content);
70  }
71 
72  $view_control_actions = [];
73 
74  $selected = array_key_first($mount_instructions);
75 
76  foreach ($mount_instructions as $title => $text) {
77  foreach ($os as $os_string) {
78  if (stristr($title, (string) $os_string) !== false) {
79  $selected = $title;
80  break 2;
81  }
82  }
83  }
84 
85  foreach ($mount_instructions as $title => $text) {
86  $hidden = $title == $selected ? '' : 'style="display: none;"';
87 
88  $legacy = $f->legacy("<div id='$title' class='instructions' $hidden>$text</div>")
89  ->withCustomSignal($title, "il.UI.showMountInstructions(event, '$title');");
90 
91  $view_control_actions[$title] = $legacy->getCustomSignal($title);
92 
93  $components[] = $legacy;
94  }
95 
96  $view_control = $f->viewControl()->mode($view_control_actions, "mount-instruction-buttons")->withActive(
97  $selected
98  );
99 
100  // Add view control and legacy add the beginning of the array (so they will be rendered first)
101  $header_components = [
102  $f->legacy("<div class='webdav-view-control'>"),
103  $view_control,
104  $f->legacy("</div>"),
105  $js_function_legacy
106  ];
107 
108  $components = array_merge($header_components, $components);
109 
110  return $render_async ? $r->renderAsync($components) : $r->render($components);
111  }
112 
113  public function renderMountInstructionsContent(): void
114  {
115  try {
116  $instructions = $this->mount_instruction->getMountInstructionsAsArray();
117  } catch (InvalidArgumentException) {
118  $document_processor = new ilWebDAVMountInstructionsHtmlDocumentProcessor(
120  );
121  $instructions = $document_processor->processMountInstructions(
122  $this->lang->txt('webfolder_instructions_text')
123  );
124  $instructions = $this->mount_instruction->getMountInstructionsAsArray($instructions);
125  if ($instructions == '' || $instructions == '-webfolder_instructions_text-') {
126  $instructions = [
127  "<div class='alert alert-danger'>" . $this->lang->txt(
128  'error'
129  ) . ": " . $this->lang->txt('webdav_missing_lang') . "</div>"
130  ];
131  }
132  }
133 
134  echo $this->buildGUIFromGivenMountInstructions($instructions, true);
135  exit;
136  }
137 
138  private function determineOSfromUserAgent(): array
139  {
140  $ua = $this->http->request()->getHeader('User-Agent')[0];
141 
142  if (stristr($ua, 'windows') !== false
143  || str_contains($ua, 'microsoft')) {
144  return ['win'];
145  }
146 
147  if (stristr($ua, 'darwin') !== false
148  || stristr($ua, 'macintosh') !== false) {
149  return ['mac', 'osx'];
150  }
151 
152  if (stristr($ua, 'linux') !== false
153  || stristr($ua, 'solaris') !== false
154  || stristr($ua, 'aix') !== false
155  || stristr($ua, 'unix') !== false
156  || stristr($ua, 'gvfs') !== false // nautilus browser uses this ID
157  ) {
158  return ['linux'];
159  }
160 
161  return ['unknown'];
162  }
163 }
buildGUIFromGivenMountInstructions(array $mount_instructions, bool $render_async=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$components
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
__construct(protected ilWebDAVBaseMountInstructions $mount_instruction, protected ilLanguage $lang, protected UIServices $ui, Services $http)
static http()
Fetches the global http state from ILIAS.
$lang
Definition: xapiexit.php:25
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$r