ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
EmbeddedApplication.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\Data\URI;
30 
35 {
39  private const WOPI_SRC = 'WOPISrc';
40  private int $ttl = 3600;
41  private string $token;
42 
43  public function __construct(
44  protected ResourceIdentification $identification,
45  protected Action $action,
46  protected ResourceStakeholder $stakeholder,
47  protected URI $back_target,
48  protected bool $inline = false,
49  protected ?bool $edit = null,
50  private URI $ilias_base_url = new URI(ILIAS_HTTP_PATH)
51  ) {
52  global $DIC;
54  $data_signer = $DIC['file_delivery.data_signer'];
55 
56  $payload = [
57  'resource_id' => $this->identification->serialize(),
58  'user_id' => $DIC->user()->getId(),
59  'stakeholder' => $this->stakeholder::class,
60  'editable' => $edit ?? ($this->action->getName() === ActionTarget::EDIT->value)
61  ];
62  $this->token = $data_signer->sign($payload, 'wopi', new \DateTimeImmutable("now + $this->ttl seconds"));
63  }
64 
65  public function getToken(): string
66  {
67  return $this->token;
68  }
69 
70  public function getTTL(): int
71  {
72  return $this->ttl;
73  }
74 
75  public function getBackTarget(): URI
76  {
77  return $this->back_target;
78  }
79 
80  public function isInline(): bool
81  {
82  return $this->inline;
83  }
84 
85  public function getActionLauncherURL(): ?URI
86  {
87  if ($this->action === null) {
88  return null;
89  }
90 
91  $appendices = $this->getAppendices();
92 
93  $url = rtrim((string) $this->action->getLauncherUrl(), '/?#')
94  . '?'
95  . self::WOPI_SRC
96  . '='
97  . urlencode(rtrim((string) $this->ilias_base_url, '/')
100  . '/'
101  . $this->identification->serialize());
102 
103  if ($appendices !== []) {
104  $url .= '&' . implode('&', $appendices);
105  }
106 
107  return new URI($url);
108  }
109 
113  protected function getAppendices(): array
114  {
115  // appendix sanitizer
116  $appendix = $this->action->getUrlAppendix();
117  $appendices = [];
118  try {
119  if ($appendix !== null) {
120  preg_match_all('/([^<]*)=([^>&]*)/m', $appendix, $appendices, PREG_SET_ORDER, 0);
121 
122  $appendices = array_filter($appendices, static fn($appendix): true => isset($appendix[1], $appendix[2]));
123 
124  // we set the wopisrc ourselves
125  $appendices = array_filter($appendices, static fn($appendix): bool => strtolower((string) $appendix[1]) !== 'wopisrc');
126 
127  // we remove all those placeholders
128  $appendices = array_filter($appendices, static fn($appendix): bool => !preg_match('/([A-Z\_]*)/m', (string) $appendix[2]));
129 
130  $appendices = array_map(static fn($appendix): string => $appendix[1] . '=' . $appendix[2], $appendices);
131  }
132  } catch (\Throwable) {
133  return $appendices;
134  }
135 
136  return $appendices;
137  }
138 }
if(count($parts) !=3) $payload
Definition: ltitoken.php:67
$url
Definition: shib_logout.php:66
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct()
Constructor setup ILIAS global object public.
Definition: class.ilias.php:76
global $DIC
Definition: shib_login.php:22
ActionTarget
Officialy supported action targets, see https://learn.microsoft.com/en-us/openspecs/office_protocols/...