![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/codeception/codeception/src/Codeception/Util/ |
<?php declare(strict_types=1); namespace Codeception\Util; use Codeception\Exception\ConfigurationException; use function array_fill; use function array_filter; use function array_merge; use function array_shift; use function count; use function explode; use function implode; use function preg_match; use function preg_quote; use function preg_replace; use function strlen; use function substr; class PathResolver { /** * Returns path to a given directory relative to $projDir. */ public static function getRelativeDir(string $path, string $projDir, string $dirSep = DIRECTORY_SEPARATOR): string { // ensure $projDir ends with a trailing $dirSep $projDir = preg_replace('/' . preg_quote($dirSep, '/') . '*$/', $dirSep, $projDir); // if $path is a within $projDir if (self::fsCaseStrCmp(substr($path, 0, strlen($projDir)), $projDir, $dirSep) == 0) { // simply chop it off the front return substr($path, strlen($projDir)); } // Identify any absoluteness prefix (like '/' in Unix or "C:\\" in Windows) $pathAbsPrefix = self::getPathAbsolutenessPrefix($path, $dirSep); $projDirAbsPrefix = self::getPathAbsolutenessPrefix($projDir, $dirSep); $sameAbsoluteness = (self::fsCaseStrCmp($pathAbsPrefix['wholePrefix'], $projDirAbsPrefix['wholePrefix'], $dirSep) == 0); if (!$sameAbsoluteness) { // if the $projDir and $path aren't relative to the same // thing, we can't make a relative path. // if we're relative to the same device ... if ( strlen($pathAbsPrefix['devicePrefix']) && (self::fsCaseStrCmp($pathAbsPrefix['devicePrefix'], $projDirAbsPrefix['devicePrefix'], $dirSep) == 0) ) { // ... shave that off return substr($path, strlen($pathAbsPrefix['devicePrefix'])); } // Return the input unaltered return $path; } // peel off optional absoluteness prefixes and convert // $path and $projDir to an subdirectory path array $relPathParts = array_filter(explode($dirSep, substr($path, strlen($pathAbsPrefix['wholePrefix']))), 'strlen'); $relProjDirParts = array_filter(explode($dirSep, substr($projDir, strlen($projDirAbsPrefix['wholePrefix']))), 'strlen'); // While there are any, peel off any common parent directories // from the beginning of the $projDir and $path while ( ($relPathParts !== []) && ($relProjDirParts !== []) && (self::fsCaseStrCmp($relPathParts[0], $relProjDirParts[0], $dirSep) == 0) ) { array_shift($relPathParts); array_shift($relProjDirParts); } if ($relProjDirParts !== []) { // prefix $relPath with '..' for all remaining unmatched $projDir // subdirectories $relPathParts = array_merge(array_fill(0, count($relProjDirParts), '..'), $relPathParts); } // only append a trailing seperator if one is already present $trailingSep = preg_match('/' . preg_quote($dirSep, '/') . '$/', $path) ? $dirSep : ''; // convert array of dir paths back into a string path return implode($dirSep, $relPathParts) . $trailingSep; } /** * FileSystem Case String Compare * compare two strings with the filesystem's case-sensitiveness * * @return int -1 / 0 / 1 for < / = / > respectively */ private static function fsCaseStrCmp(string $str1, string $str2, string $dirSep = DIRECTORY_SEPARATOR): int { $cmpFn = self::isWindows($dirSep) ? 'strcasecmp' : 'strcmp'; return $cmpFn($str1, $str2); } /** * What part of this path (leftmost 0-3 characters) what * it is absolute relative to: * * On Unix: * This is simply '/' for an absolute path or * '' for a relative path * * On Windows this is more complicated: * If the first two characters are a letter followed * by a ':', this indicates that the path is * on a specific device. * With or without a device specified, a path MAY * start with a '\\' to indicate an absolute path * on the device or '' to indicate a path relative * to the device's CWD * * @return array<string, string> */ private static function getPathAbsolutenessPrefix(string $path, string $dirSep = DIRECTORY_SEPARATOR): array { $devLetterPrefixPattern = ''; if (self::isWindows($dirSep)) { $devLetterPrefixPattern = '([A-Za-z]:|)'; } $matches = []; if (!preg_match('/^' . $devLetterPrefixPattern . preg_quote($dirSep, '/') . '?/', $path, $matches)) { // This should match, even if it matches 0 characters throw new ConfigurationException("INTERNAL ERROR: This must be a regex problem."); } return [ 'wholePrefix' => $matches[0], // The optional device letter followed by the optional $dirSep 'devicePrefix' => self::isWindows($dirSep) ? $matches[1] : '']; } /** * Are we in a Windows style filesystem? */ private static function isWindows(string $dirSep = DIRECTORY_SEPARATOR): bool { return ($dirSep == '\\'); } public static function isPathAbsolute(string $path): bool { if (DIRECTORY_SEPARATOR === '/') { return substr($path, 0, 1) === DIRECTORY_SEPARATOR; } return preg_match('#^[A-Z]:(?![^/\\\])#i', $path) === 1; } }