<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\VarDumper\Caster; /** * Represents a file or a URL. * * @author Nicolas Grekas <p@tchwork.com> */ class LinkStub extends ConstStub { public $inVendor = false; private static array $vendorRoots; private static array $composerRoots = []; public function __construct(string $label, int $line = 0, string $href = null) { $this->value = $label; if (!\is_string($href ??= $label)) { return; } if (str_starts_with($href, 'file://')) { if ($href === $label) { $label = substr($label, 7); } $href = substr($href, 7); } elseif (str_contains($href, '://')) { $this->attr['href'] = $href; return; } if (!is_file($href)) { return; } if ($line) { $this->attr['line'] = $line; } if ($label !== $this->attr['file'] = realpath($href) ?: $href) { return; } if ($composerRoot = $this->getComposerRoot($href, $this->inVendor)) { $this->attr['ellipsis'] = \strlen($href) - \strlen($composerRoot) + 1; $this->attr['ellipsis-type'] = 'path'; $this->attr['ellipsis-tail'] = 1 + ($this->inVendor ? 2 + \strlen(implode('', \array_slice(explode(\DIRECTORY_SEPARATOR, substr($href, 1 - $this->attr['ellipsis'])), 0, 2))) : 0); } elseif (3 < \count($ellipsis = explode(\DIRECTORY_SEPARATOR, $href))) { $this->attr['ellipsis'] = 2 + \strlen(implode('', \array_slice($ellipsis, -2))); $this->attr['ellipsis-type'] = 'path'; $this->attr['ellipsis-tail'] = 1; } } private function getComposerRoot(string $file, bool &$inVendor) { if (!isset(self::$vendorRoots)) { self::$vendorRoots = []; foreach (get_declared_classes() as $class) { if ('C' === $class[0] && str_starts_with($class, 'ComposerAutoloaderInit')) { $r = new \ReflectionClass($class); $v = \dirname($r->getFileName(), 2); if (is_file($v.'/composer/installed.json')) { self::$vendorRoots[] = $v.\DIRECTORY_SEPARATOR; } } } } $inVendor = false; if (isset(self::$composerRoots[$dir = \dirname($file)])) { return self::$composerRoots[$dir]; } foreach (self::$vendorRoots as $root) { if ($inVendor = str_starts_with($file, $root)) { return $root; } } $parent = $dir; while (!@is_file($parent.'/composer.json')) { if (!@file_exists($parent)) { // open_basedir restriction in effect break; } if ($parent === \dirname($parent)) { return self::$composerRoots[$dir] = false; } $parent = \dirname($parent); } return self::$composerRoots[$dir] = $parent.\DIRECTORY_SEPARATOR; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
AmqpCaster.php | File | 6.74 KB | 0644 |
|
ArgsStub.php | File | 2.32 KB | 0644 |
|
Caster.php | File | 6.01 KB | 0644 |
|
ClassStub.php | File | 3.87 KB | 0644 |
|
ConstStub.php | File | 768 B | 0644 |
|
CutArrayStub.php | File | 726 B | 0644 |
|
CutStub.php | File | 1.95 KB | 0644 |
|
DOMCaster.php | File | 9.07 KB | 0644 |
|
DateCaster.php | File | 4.89 KB | 0644 |
|
DoctrineCaster.php | File | 1.69 KB | 0644 |
|
DsCaster.php | File | 1.62 KB | 0644 |
|
DsPairStub.php | File | 658 B | 0644 |
|
EnumStub.php | File | 667 B | 0644 |
|
ExceptionCaster.php | File | 16.2 KB | 0644 |
|
FFICaster.php | File | 5.32 KB | 0644 |
|
FiberCaster.php | File | 1.08 KB | 0644 |
|
FrameStub.php | File | 770 B | 0644 |
|
GmpCaster.php | File | 781 B | 0644 |
|
ImagineCaster.php | File | 986 B | 0644 |
|
ImgStub.php | File | 663 B | 0644 |
|
IntlCaster.php | File | 8.89 KB | 0644 |
|
LinkStub.php | File | 3.38 KB | 0644 |
|
MemcachedCaster.php | File | 2.31 KB | 0644 |
|
MysqliCaster.php | File | 724 B | 0644 |
|
PdoCaster.php | File | 3.59 KB | 0644 |
|
PgSqlCaster.php | File | 5.51 KB | 0644 |
|
ProxyManagerCaster.php | File | 754 B | 0644 |
|
RdKafkaCaster.php | File | 4.72 KB | 0644 |
|
RedisCaster.php | File | 5.25 KB | 0644 |
|
ReflectionCaster.php | File | 15.08 KB | 0644 |
|
ResourceCaster.php | File | 2.97 KB | 0644 |
|
SplCaster.php | File | 7.46 KB | 0644 |
|
StubCaster.php | File | 2.17 KB | 0644 |
|
SymfonyCaster.php | File | 3.59 KB | 0644 |
|
TraceStub.php | File | 999 B | 0644 |
|
UuidCaster.php | File | 698 B | 0644 |
|
XmlReaderCaster.php | File | 3.31 KB | 0644 |
|
XmlResourceCaster.php | File | 2.55 KB | 0644 |
|