ClassAliasAutoloader.php
2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
namespace Laravel\Tinker;
use Psy\Shell;
use Illuminate\Support\Str;
class ClassAliasAutoloader
{
/**
* The shell instance.
*
* @var \Psy\Shell
*/
protected $shell;
/**
* All of the discovered classes.
*
* @var array
*/
protected $classes = [];
/**
* Register a new alias loader instance.
*
* @param \Psy\Shell $shell
* @param string $classMapPath
* @return static
*/
public static function register(Shell $shell, $classMapPath)
{
return tap(new static($shell, $classMapPath), function ($loader) {
spl_autoload_register([$loader, 'aliasClass']);
});
}
/**
* Create a new alias loader instance.
*
* @param \Psy\Shell $shell
* @param string $classMapPath
* @return void
*/
public function __construct(Shell $shell, $classMapPath)
{
$this->shell = $shell;
$vendorPath = dirname(dirname($classMapPath));
$classes = require $classMapPath;
$excludedAliases = collect(config('tinker.dont_alias', []));
foreach ($classes as $class => $path) {
if (! Str::contains($class, '\\') || Str::startsWith($path, $vendorPath)) {
continue;
}
if (! $excludedAliases->filter(function ($alias) use ($class) {
return Str::startsWith($class, $alias);
})->isEmpty()) {
continue;
}
$name = class_basename($class);
if (! isset($this->classes[$name])) {
$this->classes[$name] = $class;
}
}
}
/**
* Find the closest class by name.
*
* @param string $class
* @return void
*/
public function aliasClass($class)
{
if (Str::contains($class, '\\')) {
return;
}
$fullName = isset($this->classes[$class])
? $this->classes[$class]
: false;
if ($fullName) {
$this->shell->writeStdout("[!] Aliasing '{$class}' to '{$fullName}' for this Tinker session.\n");
class_alias($fullName, $class);
}
}
/**
* Unregister the alias loader instance.
*
* @return void
*/
public function unregister()
{
spl_autoload_unregister([$this, 'aliasClass']);
}
/**
* Handle the destruction of the instance.
*
* @return void
*/
public function __destruct()
{
$this->unregister();
}
}