-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCommandScanner.php
157 lines (140 loc) · 4.71 KB
/
CommandScanner.php
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 3.5.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Console;
use Cake\Core\App;
use Cake\Core\Configure;
use Cake\Core\Plugin;
use Cake\Filesystem\Filesystem;
use Cake\Utility\Inflector;
/**
* Used by CommandCollection and CommandTask to scan the filesystem
* for command classes.
*
* @internal
*/
class CommandScanner
{
/**
* Scan CakePHP internals for shells & commands.
*
* @return array A list of command metadata.
*/
public function scanCore(): array
{
$coreShells = $this->scanDir(
dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Shell' . DIRECTORY_SEPARATOR,
'Cake\Shell\\',
'',
['command_list']
);
$coreCommands = $this->scanDir(
dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Command' . DIRECTORY_SEPARATOR,
'Cake\Command\\',
'',
['command_list']
);
return array_merge($coreShells, $coreCommands);
}
/**
* Scan the application for shells & commands.
*
* @return array A list of command metadata.
*/
public function scanApp(): array
{
$appNamespace = Configure::read('App.namespace');
$appShells = $this->scanDir(
App::classPath('Shell')[0],
$appNamespace . '\Shell\\',
'',
[]
);
$appCommands = $this->scanDir(
App::classPath('Command')[0],
$appNamespace . '\Command\\',
'',
[]
);
return array_merge($appShells, $appCommands);
}
/**
* Scan the named plugin for shells and commands
*
* @param string $plugin The named plugin.
* @return array A list of command metadata.
*/
public function scanPlugin(string $plugin): array
{
if (!Plugin::isLoaded($plugin)) {
return [];
}
$path = Plugin::classPath($plugin);
$namespace = str_replace('/', '\\', $plugin);
$prefix = Inflector::underscore($plugin) . '.';
$commands = $this->scanDir($path . 'Command', $namespace . '\Command\\', $prefix, []);
$shells = $this->scanDir($path . 'Shell', $namespace . '\Shell\\', $prefix, []);
return array_merge($shells, $commands);
}
/**
* Scan a directory for .php files and return the class names that
* should be within them.
*
* @param string $path The directory to read.
* @param string $namespace The namespace the shells live in.
* @param string $prefix The prefix to apply to commands for their full name.
* @param string[] $hide A list of command names to hide as they are internal commands.
* @return array The list of shell info arrays based on scanning the filesystem and inflection.
*/
protected function scanDir(string $path, string $namespace, string $prefix, array $hide): array
{
if (!is_dir($path)) {
return [];
}
// This ensures `Command` class is not added to the list.
$hide[] = '';
$classPattern = '/(Shell|Command)\.php$/';
$fs = new Filesystem();
/** @var \SplFileInfo[] $files */
$files = $fs->find($path, $classPattern);
$shells = [];
foreach ($files as $fileInfo) {
$file = $fileInfo->getFilename();
$name = Inflector::underscore(preg_replace($classPattern, '', $file));
if (in_array($name, $hide, true)) {
continue;
}
$class = $namespace . $fileInfo->getBasename('.php');
/** @psalm-suppress DeprecatedClass */
if (
!is_subclass_of($class, Shell::class)
&& !is_subclass_of($class, CommandInterface::class)
) {
continue;
}
if (is_subclass_of($class, BaseCommand::class)) {
$name = $class::defaultName();
}
$shells[$path . $file] = [
'file' => $path . $file,
'fullName' => $prefix . $name,
'name' => $name,
'class' => $class,
];
}
ksort($shells);
return array_values($shells);
}
}