36 $obj =
new self($httpState, $cookieFactory);
37 $obj->handleRequest();
47 $this->
http = $httpState;
55 $queries = $this->
http->request()->getQueryParams();
59 $this->wac->setDisposition($queries[ilWebAccessChecker::DISPOSITION]);
62 $this->wac->setSendStatusCode($queries[ilWebAccessChecker::STATUS_CODE]);
65 $this->wac->setRevalidateFolderTokens($queries[ilWebAccessChecker::REVALIDATE]);
70 if ($this->wac->check()) {
76 switch ($e->getCode()) {
89 $this->handleErrors($e);
99 protected function deny(): void
101 if (!$this->wac->isChecked()) {
110 $ilFileDelivery =
new Delivery(
'./Services/WebAccessChecker/templates/images/access_denied.png', $this->
http);
111 $ilFileDelivery->setDisposition($this->wac->getDisposition());
112 $ilFileDelivery->deliver();
118 $ilFileDelivery =
new Delivery(
'./Services/WebAccessChecker/templates/images/access_denied.mp4', $this->
http);
119 $ilFileDelivery->setDisposition($this->wac->getDisposition());
120 $ilFileDelivery->stream();
142 if ($this->wac->getPathObject()->isImage()) {
145 if ($this->wac->getPathObject()->isVideo()) {
149 $this->wac->initILIAS();
165 $stream->write($e->getMessage());
176 if (!$this->wac->isChecked()) {
180 $ilFileDelivery =
new Delivery($this->wac->getPathObject()->getCleanURLdecodedPath(),
$this->http);
182 $ilFileDelivery->setDisposition($this->wac->getDisposition());
183 if ($this->wac->getPathObject()->isStreamable()) {
184 $ilFileDelivery->stream();
186 $ilFileDelivery->deliver();
const NO_CHECKING_INSTANCE
const ACCESS_DENIED_NO_LOGIN
handleAccessErrors(ilWACException $e)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ACCESS_WITHOUT_CHECK
handleNotFoundError(ilWACException $e)
static http()
Fetches the global http state from ILIAS.
Class ilWebAccessChecker.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilWebAccessCheckerDelivery.
const ACCESS_DENIED_NO_PUB
const INITIALISATION_FAILED
static run(Services $httpState, CookieFactory $cookieFactory)
static handleErrorReporting()
Set error reporting level.
__construct(Services $httpState, CookieFactory $cookieFactory)
ilWebAccessCheckerDelivery constructor.