19 declare(strict_types=1);
47 $this->response_factory =
new Factory();
49 $this->handlers[$handler->getNamespace()] =
$handler;
58 $http = $this->context->http();
59 $ctrl = $this->context->refinery();
61 $request = $this->request_builder->buildRequest(
63 $this->context->refinery(),
66 if (!$request instanceof
Request) {
67 throw new \RuntimeException(
'No request could be built');
70 $handler = $this->handlers[$request->getNamespace()] ??
null;
72 throw new \InvalidArgumentException(
'No handler found for namespace ' . $request->getNamespace());
75 if (!$response->targetCanBeReached()) {
76 throw new \RuntimeException(
77 'Handler ' .
$handler->getNamespace() .
' did not return a URI' 84 || (!$this->context->isUserLoggedIn() && !$this->context->isPublicSectionActive())
87 $target = $uri_builder->buildTarget(
88 $request->getNamespace(),
89 $request->getReferenceId(),
90 $request->getAdditionalParameters()
92 $full_uri = $base_uri .
"/login.php?target=";
93 $full_uri .= str_replace(
'/',
'_', rtrim($target,
'/'));
94 $full_uri .=
'&cmd=force_login&lang=' . $this->context->getUserLanguage();
98 $uri_path = $response->getURIPath();
99 $full_uri = $base_uri .
'/' . trim((
string) $uri_path,
'/');
103 $http->response()->withAddedHeader(
'Location', $full_uri)
105 $http->sendResponse();
115 if ($context->
http()->wrapper()->query()->has(
'soap_pw')) {
116 return \ilUtil::appendUrlParameterString(
118 'soap_pw=' . $context->
http()->wrapper()->query()->retrieve(
120 $context->refineryttp()->kindlyTo()->string()
124 if ($context->
http()->wrapper()->query()->has(
'ext_uid')) {
127 'ext_uid=' . $context->
http()->wrapper()->query()->retrieve(
129 $context->refineryttp()->kindlyTo()->string()
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
performRedirect(URI $base_uri)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
appendUnknownParameters(Context $context, string $full_uri)
__construct(private RequestBuilder $request_builder, private Context $context, Handler ... $handlers,)
Factory $response_factory