19 declare(strict_types=1);
42 $uri = $this->unhash($access_key);
43 $expanded_uri = $this->expandUri($uri);
46 return new Token($expanded_uri, $access_key);
51 $uri = $stream->getMetadata()[
'uri'] ??
'';
54 $access_key = $this->
hash($reduced_uri);
56 if ($with_stream_attached) {
59 return new Token($uri, $access_key, $token_stream);
62 return new Token($uri, $access_key);
68 if (!is_dir($this->storage_dir)) {
69 throw new \InvalidArgumentException(
'Storage directory does not exist');
76 strpos($uri, $this->storage_dir) ===
false 80 throw new \InvalidArgumentException(
"Invalid access key or path: $uri");
87 return str_replace($this->storage_dir,
'', $uri);
95 return $this->storage_dir . $uri;
isMemoryStream(string $path)
check(string $access_key)
lease(FileStream $stream, bool $with_stream_attached=false)
__construct(string $storage_dir)