42 protected int $type = PathType::FILE;
60 if ($this->
getType() !== PathType::FILE) {
80 return $path .
'&' . self::WAC_TIMESTAMP_ID .
'=' 86 $this->httpService->cookieJar();
88 $this->
setType(PathType::FOLDER);
90 $name = $plain_token->getHashedId();
94 $token_cookie_value = $this->httpService->request()->getCookieParams()[$name] ?? $default_token;
96 $default_timestamp = 0;
97 $timestamp_cookie_value = $this->httpService->request()->getCookieParams()[$name . self::TS_SUFFIX] ?? $default_timestamp;
98 $timestamp_cookie_value = (
int) $timestamp_cookie_value;
101 $ttl_cookie_value = $this->httpService->request()->getCookieParams()[$name . self::TTL_SUFFIX] ?? $default_ttl;
102 $ttl_cookie_value = (
int) $ttl_cookie_value;
105 $this->
getPathObject()->setTimestamp($timestamp_cookie_value);
127 $cookie_lifetime = $ttl !== 0 ? $ttl : self::getCookieMaxLifetimeInSeconds();
129 $expire = time() + $cookie_lifetime + 3600;
136 ->withExpires($expire)
138 ->withSecure($secure)
139 ->withDomain($domain)
140 ->withHttpOnly($http_only);
142 $timestampCookie = $this->cookieFactory->create(
$id . self::TS_SUFFIX, time())
143 ->withExpires($expire)
145 ->withDomain($domain)
146 ->withSecure($secure)
147 ->withHttpOnly($http_only);
149 $ttlCookie = $this->cookieFactory->create(
$id . self::TTL_SUFFIX, $cookie_lifetime)
150 ->withExpires($expire)
152 ->withDomain($domain)
153 ->withSecure($secure)
154 ->withHttpOnly($http_only);
156 $jar = $this->httpService->cookieJar()->with($tokenCookie)
157 ->with($timestampCookie)
161 foreach ($jar->getAll() as $cookie) {
164 (string) $cookie->getValue(),
165 [
'expires' => $cookie->getExpires(),
'path' => $cookie->getPath() ??
'/',
'domain' => $cookie->getDomain() ??
$_SERVER[
'REQUEST_URI'],
'secure' => $cookie->getSecure(),
'httponly' => $cookie->getHttpOnly()]
172 if ($this->
getType() !== PathType::FOLDER) {
206 public static function signFile(
string $path_to_file): string
209 if ($path_to_file ===
'' || $path_to_file ===
'0') {
212 $ilWACPath =
new ilWACPath($path_to_file);
213 if ($ilWACPath->getClient() ===
'' || $ilWACPath->getClient() ===
'0') {
214 return $path_to_file;
217 $obj->setType(PathType::FILE);
218 $obj->buildAndSetTokenInstance(time(), self::getTokenMaxLifetimeInSeconds());
220 return $obj->getSignedPath();
227 $obj->setType(PathType::FOLDER);
228 $obj->buildAndSetTokenInstance(time(), self::getCookieMaxLifetimeInSeconds());
229 $obj->saveFolderToken();
270 $current_timestamp = time();
272 $timestamp_valid = ($current_timestamp < ($request_timestamp + $request_ttl));
274 if (!$timestamp_valid) {
281 $simulated_token_string = $simulated_token->getToken();
282 $token_valid = ($simulated_token_string === $request_token_string);
326 return self::$token_max_lifetime_in_seconds;
335 if ($token_max_lifetime_in_seconds > self::MAX_LIFETIME) {
343 return self::$cookie_max_lifetime_in_seconds;
353 if ($cookie_max_lifetime_in_seconds > self::MAX_LIFETIME) {
362 if ($request_ttl > 0) {
365 $life_time = match ($this->
getType()) {
366 PathType::FOLDER => self::getCookieMaxLifetimeInSeconds(),
367 PathType::FILE => self::getTokenMaxLifetimeInSeconds(),
static getCookieMaxLifetimeInSeconds()
setTokenInstance(ilWACToken $token_instance)
revalidatingFolderToken()
ilWACToken $token_instance
buildAndSetTokenInstance(int $timestamp=0, int $ttl=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static setTokenMaxLifetimeInSeconds(int $token_max_lifetime_in_seconds)
static setCookieMaxLifetimeInSeconds(int $cookie_max_lifetime_in_seconds)
static int $token_max_lifetime_in_seconds
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static signFolderOfStartFile(string $start_file_path)
setPathObject(ilWACPath $path_object)
__construct(ilWACPath $ilWACPath, private GlobalHttpState $httpService, private CookieFactory $cookieFactory)
ilWACSignedPath constructor.
buildTokenInstance(int $timestamp=0, int $ttl=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
foreach($mandatory_scripts as $file) $timestamp
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static int $cookie_max_lifetime_in_seconds
static signFile(string $path_to_file)
static getTokenMaxLifetimeInSeconds()
setChecked(bool $checked)