ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HandlerService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\StaticURL\Handler;
22 
25 use ILIAS\Data\URI;
30 
35 {
39  private array $handlers = [];
41 
42  public function __construct(
43  private RequestBuilder $request_builder,
44  private Context $context,
45  Handler ...$handlers,
46  ) {
47  $this->response_factory = new Factory();
48  foreach ($handlers as $handler) {
49  $this->handlers[$handler->getNamespace()] = $handler;
50  }
51  }
52 
56  public function performRedirect(URI $base_uri): void
57  {
58  $http = $this->context->http();
59  $ctrl = $this->context->refinery();
60 
61  $request = $this->request_builder->buildRequest(
62  $http,
63  $this->context->refinery(),
65  );
66  if (!$request instanceof Request) {
67  throw new \RuntimeException('No request could be built');
68  }
69 
70  $handler = $this->handlers[$request->getNamespace()] ?? null;
71  if (!$handler instanceof Handler) {
72  throw new \InvalidArgumentException('No handler found for namespace ' . $request->getNamespace());
73  }
74  $response = $handler->handle($request, $this->context, $this->response_factory);
75  if (!$response->targetCanBeReached()) {
76  throw new \RuntimeException(
77  'Handler ' . $handler->getNamespace() . ' did not return a URI'
78  ); // TODO: we shoud redirect somewhere
79  }
80 
81  // Check access to target
82  if (
83  $response instanceof MaybeCanHandlerAfterLogin
84  || (!$this->context->isUserLoggedIn() && !$this->context->isPublicSectionActive())
85  ) {
86  $uri_builder = new StandardURIBuilder(ILIAS_HTTP_PATH, false);
87  $target = $uri_builder->buildTarget(
88  $request->getNamespace(),
89  $request->getReferenceId(),
90  $request->getAdditionalParameters()
91  );
92  $full_uri = $base_uri . "/login.php?target=";
93  $full_uri .= str_replace('/', '_', rtrim($target, '/')); // TODO: ILIAS currently need this like this
94  $full_uri .= '&cmd=force_login&lang=' . $this->context->getUserLanguage();
95  $full_uri = $this->appendUnknownParameters($this->context, $full_uri); // Read the comment below
96  } else {
97  // Perform Redirect
98  $uri_path = $response->getURIPath();
99  $full_uri = $base_uri . '/' . trim((string) $uri_path, '/');
100  }
101 
102  $http->saveResponse(
103  $http->response()->withAddedHeader('Location', $full_uri)
104  );
105  $http->sendResponse();
106  $http->close();
107  }
108 
113  private function appendUnknownParameters(Context $context, string $full_uri): string
114  {
115  if ($context->http()->wrapper()->query()->has('soap_pw')) {
116  return \ilUtil::appendUrlParameterString(
117  $full_uri,
118  'soap_pw=' . $context->http()->wrapper()->query()->retrieve(
119  'soap_pw',
120  $context->refineryttp()->kindlyTo()->string()
121  )
122  );
123  }
124  if ($context->http()->wrapper()->query()->has('ext_uid')) {
126  $full_uri,
127  'ext_uid=' . $context->http()->wrapper()->query()->retrieve(
128  'ext_uid',
129  $context->refineryttp()->kindlyTo()->string()
130  )
131  );
132  }
133 
134  return $full_uri;
135  }
136 }
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
$context
Definition: webdav.php:31
$response
Definition: xapitoken.php:93
$http
Definition: deliver.php:30
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$handler
Definition: oai.php:30
appendUnknownParameters(Context $context, string $full_uri)
__construct(private RequestBuilder $request_builder, private Context $context, Handler ... $handlers,)