forked from cakephp/cakephp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelpShell.php
More file actions
172 lines (153 loc) · 4.64 KB
/
Copy pathHelpShell.php
File metadata and controls
172 lines (153 loc) · 4.64 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
/**
* 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://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Shell;
use Cake\Console\CommandCollection;
use Cake\Console\CommandCollectionAwareInterface;
use Cake\Console\ConsoleOutput;
use Cake\Console\Shell;
use Cake\Shell\Task\CommandTask;
use Cake\Utility\Inflector;
use SimpleXMLElement;
/**
* Print out command list
*/
class HelpShell extends Shell implements CommandCollectionAwareInterface
{
/**
* The command collection to get help on.
*
* @var \Cake\Console\CommandCollection
*/
protected $commands;
/**
* startup
*
* @return void
*/
public function startup()
{
if (!$this->param('xml')) {
parent::startup();
}
}
/**
* {@inheritDoc}
*/
public function setCommandCollection(CommandCollection $commands)
{
$this->commands = $commands;
}
/**
* Main function Prints out the list of shells.
*
* @return void
*/
public function main()
{
if (!$this->param('xml')) {
$this->out('<info>Current Paths:</info>', 2);
$this->out('* app: ' . APP_DIR);
$this->out('* root: ' . rtrim(ROOT, DIRECTORY_SEPARATOR));
$this->out('* core: ' . rtrim(CORE_PATH, DIRECTORY_SEPARATOR));
$this->out('');
$this->out('<info>Available Commands:</info>', 2);
}
if (!$this->commands) {
$this->commands = new CommandCollection($this->getCommands());
}
$commands = $this->commands->getIterator();
$commands->ksort();
$commands = new CommandCollection((array)$commands);
if ($this->param('xml')) {
$this->asXml($commands);
return;
}
$this->asText($commands);
}
/**
* Get the list of commands using the CommandTask
*
* Provides backwards compatibility when an application doesn't use
* CommandRunner.
*
* @return array
*/
protected function getCommands()
{
$task = new CommandTask($this->getIo());
$nested = $task->getShellList();
$out = [];
foreach ($nested as $section => $commands) {
$prefix = '';
if ($section !== 'CORE' && $section !== 'app') {
$prefix = Inflector::underscore($section) . '.';
}
foreach ($commands as $command) {
$out[$prefix . $command] = $command;
}
}
return $out;
}
/**
* Output text.
*
* @param \Cake\Console\CommandCollection $commands The command collection to output.
* @return void
*/
protected function asText($commands)
{
foreach ($commands as $name => $class) {
$this->out('- ' . $name);
}
$this->out('');
$this->out('To run a command, type <info>`cake shell_name [args|options]`</info>');
$this->out('To get help on a specific command, type <info>`cake shell_name --help`</info>', 2);
}
/**
* Output as XML
*
* @param \Cake\Console\CommandCollection $commands The command collection to output
* @return void
*/
protected function asXml($commands)
{
$shells = new SimpleXMLElement('<shells></shells>');
foreach ($commands as $name => $class) {
$shell = $shells->addChild('shell');
$shell->addAttribute('name', $name);
$shell->addAttribute('call_as', $name);
$shell->addAttribute('provider', $class);
$shell->addAttribute('help', $name . ' -h');
}
$this->_io->setOutputAs(ConsoleOutput::RAW);
$this->out($shells->saveXML());
}
/**
* Gets the option parser instance and configures it.
*
* @return \Cake\Console\ConsoleOptionParser
*/
public function getOptionParser()
{
$parser = parent::getOptionParser();
$parser->setDescription(
'Get the list of available shells for this application.'
)->addOption('xml', [
'help' => 'Get the listing as XML.',
'boolean' => true
]);
return $parser;
}
}