63 $path_object =
new ilWACPath($this->
http->request()->getRequestTarget());
68 if ($ilWACSignedPath->isSignedPath()) {
70 if ($ilWACSignedPath->isSignedPathValid()) {
79 if ($ilWACSignedPath->isFolderSigned()) {
81 if ($ilWACSignedPath->isFolderTokenValid()) {
83 $ilWACSignedPath->revalidatingFolderToken();
86 $this->
sendHeader(
'checked using secure folder');
98 $path = realpath(__DIR__ .
'/../../../../public/' . $clean_path);
110 $checkingInstance = ilWACSecurePath::getCheckingInstance($path_object);
112 $canBeDelivered = $checkingInstance->canBeDelivered($path_object);
113 if ($canBeDelivered) {
116 $ilWACSignedPath->revalidatingFolderToken();
120 return $canBeDelivered;
131 $response = $this->
http->response()->withHeader(
'X-ILIAS-WebAccessChecker', $message);
145 $cookie = $this->cookieFactory->create(
'ilClientId', $this->
getPathObject()->getClient())
151 ->renderIntoResponseHeader($this->
http->response());
165 if (($e instanceof
Exception && $e->getMessage() ===
'Authentication failed.')
167 $this->initAnonymousSession();
177 if ($DIC->user()->getId() === 0) {
189 $is_null_user = ($DIC->user()->getId() === 0);
190 $pub_section_activated = (bool) $DIC[
'ilSetting']->
get(
'pub_section');
191 $isset = isset($DIC[
'ilSetting']);
192 $instanceof = $DIC[
'ilSetting'] instanceof
ilSetting;
194 if (!$isset || !$instanceof) {
198 if ($pub_section_activated && ($is_null_user || $is_anonymous)) {
203 if ($is_anonymous || $is_null_user) {
212 $is_user = $DIC->user() instanceof
ilObjUser;
213 $user_id_is_zero = ((
int) $DIC->user()->getId() === 0);
214 if (!$is_user || $user_id_is_zero) {
291 return self::$use_seperate_logfile;
317 $this->applied_checking_methods[] = $method;
320 protected function initAnonymousSession():
void 329 $ilAuthSession = $DIC[
'ilAuthSession'];
330 $ilAuthSession->regenerateId();
setPathObject(ilWACPath $path_object)
sendHeader(string $message)
getAppliedCheckingMethods()
bool $revalidate_folder_tokens
setAppliedCheckingMethods(array $applied_checking_methods)
setInitialized(bool $initialized)
const CM_CHECKINGINSTANCE
const ACCESS_DENIED_NO_LOGIN
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addAppliedCheckingMethod(int $method)
setOverrideMimetype(string $override_mimetype)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static initILIAS()
ilias initialisation
setSendStatusCode(bool $send_status_code)
static http()
Fetches the global http state from ILIAS.
array $applied_checking_methods
isRevalidateFolderTokens()
Class ilWebAccessChecker.
string $override_mimetype
setChecked(bool $checked)
static isUseSeperateLogfile()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRevalidateFolderTokens(bool $revalidate_folder_tokens)
static hasCheckingInstanceRegistered(ilWACPath $ilWACPath)
Searches a checking instance for the given wac path.
static init(string $a_type)
Init context by type.
static setUseSeperateLogfile(bool $use_seperate_logfile)
setDisposition(string $disposition)
const ACCESS_DENIED_NO_PUB
static bool $use_seperate_logfile
getCleanURLdecodedPath()
Returns a clean (everything behind ? is removed and rawurldecoded path.
__construct(private Services $http, private CookieFactory $cookieFactory)
ilWebAccessChecker constructor.