19 declare(strict_types=1);
54 throw new \InvalidArgumentException(
'File does not exist');
57 $relative_uri = $this->unhash($this->access_key);
58 if (strpos($this->uri, $relative_uri) ===
false) {
59 throw new \InvalidArgumentException(
'Access key does not match');
61 if ($this->stream !== null && $this->stream->getMetadata()[
'uri'] !==
$this->uri) {
62 throw new \InvalidArgumentException(
'Stream does not match');
64 if ($this->stream !== null && strpos((
string)$this->stream->getMetadata()[
'uri'], $relative_uri) ===
false) {
65 throw new \InvalidArgumentException(
'Stream does not match');
74 return $this->locked = $this->encrypt->check($this, $unlock_key);
97 throw new \BadMethodCallException(
'Token is locked und must be unlocked before resolving the stream.');
100 if ($this->stream === null) {
101 $this->stream =
new TokenStream(fopen($this->uri,
'rb'));
unlock(UnlockKey $unlock_key)
This Method will be used to unlock Streams in the future and will be a replacement for WAC tokens ...
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(string $uri, string $access_key, ?\ILIAS\ResourceStorage\Consumer\StreamAccess\TokenStream $stream=null)
ILIAS ResourceStorage Consumer StreamAccess TokenStream $stream