-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCommandScanner.php
More file actions
140 lines (125 loc) · 4.14 KB
/
CommandScanner.php
File metadata and controls
140 lines (125 loc) · 4.14 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.5.0
* @license https://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\Utility\Filesystem;
use Cake\Utility\Inflector;
use ReflectionClass;
/**
* 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
{
return $this->scanDir(
dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Command' . DIRECTORY_SEPARATOR,
'Cake\Command\\',
'',
['command_list'],
);
}
/**
* Scan the application for shells & commands.
*
* @return array A list of command metadata.
*/
public function scanApp(): array
{
$appNamespace = Configure::read('App.namespace');
return $this->scanDir(
App::classPath('Command')[0],
$appNamespace . '\Command\\',
'',
[],
);
}
/**
* 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) . '.';
return $this->scanDir($path . 'Command', $namespace . '\Command\\', $prefix, []);
}
/**
* 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 array<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 = '/Command\.php$/';
$fs = new Filesystem();
/** @var \Iterator<\SplFileInfo> $files */
$files = $fs->find($path, $classPattern);
$commands = [];
foreach ($files as $fileInfo) {
$file = $fileInfo->getFilename();
$name = Inflector::underscore((string)preg_replace($classPattern, '', $file));
if (in_array($name, $hide, true)) {
continue;
}
$class = $namespace . $fileInfo->getBasename('.php');
if (!is_subclass_of($class, CommandInterface::class)) {
continue;
}
$reflection = new ReflectionClass($class);
if ($reflection->isAbstract()) {
continue;
}
if (is_subclass_of($class, BaseCommand::class)) {
$name = $class::defaultName();
}
$commands[$path . $file] = [
'file' => $path . $file,
'fullName' => $prefix . $name,
'name' => $name,
'class' => $class,
];
}
ksort($commands);
return array_values($commands);
}
}