ClassNotFoundErrorEnhancer.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\ErrorHandler\ErrorEnhancer;
  11. use Composer\Autoload\ClassLoader;
  12. use Symfony\Component\ErrorHandler\DebugClassLoader;
  13. use Symfony\Component\ErrorHandler\Error\ClassNotFoundError;
  14. use Symfony\Component\ErrorHandler\Error\FatalError;
  15. /**
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. */
  18. class ClassNotFoundErrorEnhancer implements ErrorEnhancerInterface
  19. {
  20. public function enhance(\Throwable $error): ?\Throwable
  21. {
  22. // Some specific versions of PHP produce a fatal error when extending a not found class.
  23. $message = !$error instanceof FatalError ? $error->getMessage() : $error->getError()['message'];
  24. if (!preg_match('/^(Class|Interface|Trait) [\'"]([^\'"]+)[\'"] not found$/', $message, $matches)) {
  25. return null;
  26. }
  27. $typeName = strtolower($matches[1]);
  28. $fullyQualifiedClassName = $matches[2];
  29. if (false !== $namespaceSeparatorIndex = strrpos($fullyQualifiedClassName, '\\')) {
  30. $className = substr($fullyQualifiedClassName, $namespaceSeparatorIndex + 1);
  31. $namespacePrefix = substr($fullyQualifiedClassName, 0, $namespaceSeparatorIndex);
  32. $message = sprintf('Attempted to load %s "%s" from namespace "%s".', $typeName, $className, $namespacePrefix);
  33. $tail = ' for another namespace?';
  34. } else {
  35. $className = $fullyQualifiedClassName;
  36. $message = sprintf('Attempted to load %s "%s" from the global namespace.', $typeName, $className);
  37. $tail = '?';
  38. }
  39. if ($candidates = $this->getClassCandidates($className)) {
  40. $tail = array_pop($candidates).'"?';
  41. if ($candidates) {
  42. $tail = ' for e.g. "'.implode('", "', $candidates).'" or "'.$tail;
  43. } else {
  44. $tail = ' for "'.$tail;
  45. }
  46. }
  47. $message .= "\nDid you forget a \"use\" statement".$tail;
  48. return new ClassNotFoundError($message, $error);
  49. }
  50. /**
  51. * Tries to guess the full namespace for a given class name.
  52. *
  53. * By default, it looks for PSR-0 and PSR-4 classes registered via a Symfony or a Composer
  54. * autoloader (that should cover all common cases).
  55. *
  56. * @param string $class A class name (without its namespace)
  57. *
  58. * Returns an array of possible fully qualified class names
  59. */
  60. private function getClassCandidates(string $class): array
  61. {
  62. if (!\is_array($functions = spl_autoload_functions())) {
  63. return [];
  64. }
  65. // find Symfony and Composer autoloaders
  66. $classes = [];
  67. foreach ($functions as $function) {
  68. if (!\is_array($function)) {
  69. continue;
  70. }
  71. // get class loaders wrapped by DebugClassLoader
  72. if ($function[0] instanceof DebugClassLoader) {
  73. $function = $function[0]->getClassLoader();
  74. if (!\is_array($function)) {
  75. continue;
  76. }
  77. }
  78. if ($function[0] instanceof ClassLoader) {
  79. foreach ($function[0]->getPrefixes() as $prefix => $paths) {
  80. foreach ($paths as $path) {
  81. $classes[] = $this->findClassInPath($path, $class, $prefix);
  82. }
  83. }
  84. foreach ($function[0]->getPrefixesPsr4() as $prefix => $paths) {
  85. foreach ($paths as $path) {
  86. $classes[] = $this->findClassInPath($path, $class, $prefix);
  87. }
  88. }
  89. }
  90. }
  91. return array_unique(array_merge([], ...$classes));
  92. }
  93. private function findClassInPath(string $path, string $class, string $prefix): array
  94. {
  95. $path = realpath($path.'/'.strtr($prefix, '\\_', '//')) ?: realpath($path.'/'.\dirname(strtr($prefix, '\\_', '//'))) ?: realpath($path);
  96. if (!$path || !is_dir($path)) {
  97. return [];
  98. }
  99. $classes = [];
  100. $filename = $class.'.php';
  101. foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path, \RecursiveDirectoryIterator::SKIP_DOTS), \RecursiveIteratorIterator::LEAVES_ONLY) as $file) {
  102. if ($filename == $file->getFileName() && $class = $this->convertFileToClass($path, $file->getPathName(), $prefix)) {
  103. $classes[] = $class;
  104. }
  105. }
  106. return $classes;
  107. }
  108. private function convertFileToClass(string $path, string $file, string $prefix): ?string
  109. {
  110. $candidates = [
  111. // namespaced class
  112. $namespacedClass = str_replace([$path.\DIRECTORY_SEPARATOR, '.php', '/'], ['', '', '\\'], $file),
  113. // namespaced class (with target dir)
  114. $prefix.$namespacedClass,
  115. // namespaced class (with target dir and separator)
  116. $prefix.'\\'.$namespacedClass,
  117. // PEAR class
  118. str_replace('\\', '_', $namespacedClass),
  119. // PEAR class (with target dir)
  120. str_replace('\\', '_', $prefix.$namespacedClass),
  121. // PEAR class (with target dir and separator)
  122. str_replace('\\', '_', $prefix.'\\'.$namespacedClass),
  123. ];
  124. if ($prefix) {
  125. $candidates = array_filter($candidates, function ($candidate) use ($prefix) { return 0 === strpos($candidate, $prefix); });
  126. }
  127. // We cannot use the autoloader here as most of them use require; but if the class
  128. // is not found, the new autoloader call will require the file again leading to a
  129. // "cannot redeclare class" error.
  130. foreach ($candidates as $candidate) {
  131. if ($this->classExists($candidate)) {
  132. return $candidate;
  133. }
  134. }
  135. try {
  136. require_once $file;
  137. } catch (\Throwable $e) {
  138. return null;
  139. }
  140. foreach ($candidates as $candidate) {
  141. if ($this->classExists($candidate)) {
  142. return $candidate;
  143. }
  144. }
  145. return null;
  146. }
  147. private function classExists(string $class): bool
  148. {
  149. return class_exists($class, false) || interface_exists($class, false) || trait_exists($class, false);
  150. }
  151. }