2 declare(strict_types=1);
33 $webRelativeWithLeadingDot,
34 $webRelativeWithoutLeadingDot,
37 $customizingRelativeWithLeadingDot,
39 $libsRelativeWithLeadingDot,
42 $nodeModulesWithLeadingDot
43 ) = self::listPaths();
46 case self::checkPossiblePath($temp, $absolute_path):
48 case self::checkPossiblePath($web, $absolute_path):
50 case self::checkPossiblePath($webRelativeWithLeadingDot, $absolute_path):
52 case self::checkPossiblePath($webRelativeWithoutLeadingDot, $absolute_path):
54 case self::checkPossiblePath($storage, $absolute_path):
56 case self::checkPossiblePath($customizing, $absolute_path):
58 case self::checkPossiblePath($customizingRelativeWithLeadingDot, $absolute_path):
60 case self::checkPossiblePath($libs, $absolute_path):
62 case self::checkPossiblePath($libsRelativeWithLeadingDot, $absolute_path):
64 case self::checkPossiblePath($nodeModules, $absolute_path):
66 case self::checkPossiblePath($nodeModulesWithLeadingDot, $absolute_path):
69 throw new \InvalidArgumentException(
"Invalid path supplied. Path must start with the web, storage, temp, customizing or libs storage location. Path given: '{$absolute_path}'");
85 $webRelativeWithLeadingDot,
86 $webRelativeWithoutLeadingDot,
89 $customizingRelativeWithLeadingDot,
91 $libsRelativeWithLeadingDot,
94 $nodeModulesWithLeadingDot
95 ) = self::listPaths();
99 case self::checkPossiblePath($webRelativeWithoutLeadingDot, $absolute_path):
100 return self::resolveRelativePath($webRelativeWithoutLeadingDot, $absolute_path);
102 case self::checkPossiblePath($webRelativeWithLeadingDot, $absolute_path):
103 return self::resolveRelativePath($webRelativeWithLeadingDot, $absolute_path);
105 case self::checkPossiblePath($web, $absolute_path):
106 return self::resolveRelativePath($web, $absolute_path);
108 case self::checkPossiblePath($temp, $absolute_path):
109 return self::resolveRelativePath($temp, $absolute_path);
111 case self::checkPossiblePath($storage, $absolute_path):
112 return self::resolveRelativePath($storage, $absolute_path);
114 case self::checkPossiblePath($customizing, $absolute_path):
115 return self::resolveRelativePath($customizing, $absolute_path);
117 case self::checkPossiblePath($customizingRelativeWithLeadingDot, $absolute_path):
118 return self::resolveRelativePath($customizingRelativeWithLeadingDot, $absolute_path);
120 case self::checkPossiblePath($libs, $absolute_path):
122 case self::checkPossiblePath($libsRelativeWithLeadingDot, $absolute_path):
123 return self::resolveRelativePath($libsRelativeWithLeadingDot, $absolute_path);
125 case self::checkPossiblePath($nodeModules, $absolute_path):
127 case self::checkPossiblePath($nodeModulesWithLeadingDot, $absolute_path):
128 return self::resolveRelativePath($nodeModulesWithLeadingDot, $absolute_path);
130 throw new \InvalidArgumentException(
"Invalid path supplied. Path must start with the web, storage, temp, customizing or libs storage location. Path given: '{$absolute_path}'");
136 $real_possible_path = realpath($possible_path);
139 case $possible_path === $absolute_path:
140 case $real_possible_path === $absolute_path:
142 case strpos($absolute_path, $possible_path) === 0:
143 return substr($absolute_path,
144 strlen($possible_path) + 1);
145 case strpos($absolute_path, $real_possible_path) === 0:
146 return substr($absolute_path,
147 strlen($real_possible_path) + 1);
149 throw new \InvalidArgumentException(
"Invalid path supplied. Path must start with the web, storage, temp, customizing or libs storage location. Path given: '{$absolute_path}'");
160 $real_possible_path = realpath($possible_path);
163 case $possible_path === $absolute_path:
165 case $real_possible_path === $absolute_path:
167 case is_string($possible_path) && strpos($absolute_path, $possible_path) === 0:
169 case is_string($real_possible_path) && strpos($absolute_path, $real_possible_path) === 0:
185 $customizing = ILIAS_ABSOLUTE_PATH .
'/Customizing';
186 $customizingRelativeWithLeadingDot =
'./Customizing';
187 $libs = ILIAS_ABSOLUTE_PATH .
'/libs';
188 $libsRelativeWithLeadingDot =
"./libs";
190 $nodeModules = ILIAS_ABSOLUTE_PATH .
'/node_modules';
191 $nodeModulesWithLeadingDot =
'./node_modules';
194 $webRelativeWithLeadingDot,
195 $webRelativeWithoutLeadingDot,
198 $customizingRelativeWithLeadingDot,
200 $libsRelativeWithLeadingDot,
203 $nodeModulesWithLeadingDot
static createRelativePath(string $absolute_path)
Creates a relative path from an absolute path which starts with a valid storage location.
trait FilesystemsAware
Trait FilesystemsAware.
static resolveRelativePath(string $possible_path, string $absolute_path)
static checkPossiblePath(string $possible_path, string $absolute_path)
static filesystems()
Returns the loaded filesystems.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deriveFilesystemFrom(string $absolute_path)
Tries to fetch the filesystem responsible for the absolute path.
Class LegacyPathHelper The legacy path helper provides convenient functions for the integration of th...
Class FlySystemFileAccessTest disabled disabled disabled.