| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <?php
- /**
- * CommandListTest file
- *
- * PHP 5
- *
- * CakePHP : Rapid Development Framework (http://cakephp.org)
- * Copyright 2006-2010, Cake Software Foundation, Inc.
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2006-2010, Cake Software Foundation, Inc.
- * @link http://cakephp.org CakePHP Project
- * @since CakePHP v 2.0
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Inflector', 'Utility');
- /**
- * Shows a list of commands available from the console.
- *
- * @package cake.console.shells
- */
- class CommandListShell extends Shell {
- /**
- * startup
- *
- * @return void
- */
- public function startup() {
- if (empty($this->params['xml'])) {
- parent::startup();
- }
- }
- /**
- * Main function Prints out the list of shells.
- *
- * @return void
- */
- public function main() {
- if (empty($this->params['xml'])) {
- $this->out("<info>Current Paths:</info>", 2);
- $this->out(" -app: ". APP_DIR);
- $this->out(" -working: " . rtrim(APP_PATH, DS));
- $this->out(" -root: " . rtrim(ROOT, DS));
- $this->out(" -core: " . rtrim(CORE_PATH, DS));
- $this->out("");
- $this->out("<info>Changing Paths:</info>", 2);
- $this->out("Your working path should be the same as your application path");
- $this->out("to change your path use the '-app' param.");
- $this->out("Example: -app relative/path/to/myapp or -app /absolute/path/to/myapp", 2);
- $this->out("<info>Available Shells:</info>", 2);
- }
- $shellList = $this->_getShellList();
- if ($shellList) {
- ksort($shellList);
- if (empty($this->params['xml'])) {
- if (!empty($this->params['sort'])) {
- $this->_asSorted($shellList);
- } else {
- $this->_asText($shellList);
- }
- } else {
- $this->_asXml($shellList);
- }
- }
- }
- /**
- * Gets the shell command listing.
- *
- * @return array
- */
- protected function _getShellList() {
- $shellList = array();
- $shells = App::objects('file', App::core('Console/Command'));
- $shellList = $this->_appendShells('CORE', $shells, $shellList);
- $appShells = App::objects('Console/Command', null, false);
- $shellList = $this->_appendShells('app', $appShells, $shellList);
- $plugins = App::objects('plugin');
- foreach ($plugins as $plugin) {
- $pluginShells = App::objects($plugin . '.Console/Command');
- $shellList = $this->_appendShells($plugin, $pluginShells, $shellList);
- }
- return $shellList;
- }
- /**
- * Scan the provided paths for shells, and append them into $shellList
- *
- * @return array
- */
- protected function _appendShells($type, $shells, $shellList) {
- foreach ($shells as $shell) {
- $shell = Inflector::underscore(str_replace('Shell', '', $shell));
- $shellList[$shell][$type] = $type;
- }
- return $shellList;
- }
- /**
- * Output text.
- *
- * @return void
- */
- protected function _asText($shellList) {
- if (DS === '/') {
- $width = exec('tput cols') - 2;
- }
- if (empty($width)) {
- $width = 80;
- }
- $columns = max(1, floor($width / 30));
- $rows = ceil(count($shellList) / $columns);
- foreach ($shellList as $shell => $types) {
- sort($types);
- $shellList[$shell] = str_pad($shell . ' [' . implode ($types, ', ') . ']', $width / $columns);
- }
- $out = array_chunk($shellList, $rows);
- for ($i = 0; $i < $rows; $i++) {
- $row = '';
- for ($j = 0; $j < $columns; $j++) {
- if (!isset($out[$j][$i])) {
- continue;
- }
- $row .= $out[$j][$i];
- }
- $this->out(" " . $row);
- }
- $this->out();
- $this->out("To run a command, type <info>cake shell_name [args]</info>");
- $this->out("To get help on a specific command, type <info>cake shell_name --help</info>", 2);
- }
- /**
- * Generates the shell list sorted by where the shells are found.
- *
- * @return void
- */
- protected function _asSorted($shellList) {
- $grouped = array();
- foreach ($shellList as $shell => $types) {
- foreach ($types as $type) {
- $type = Inflector::camelize($type);
- if (empty($grouped[$type])) {
- $grouped[$type] = array();
- }
- $grouped[$type][] = $shell;
- }
- }
- if (!empty($grouped['App'])) {
- sort($grouped['App'], SORT_STRING);
- $this->out('[ App ]');
- $this->out(' ' . implode(', ', $grouped['App']), 2);
- unset($grouped['App']);
- }
- foreach ($grouped as $section => $shells) {
- if ($section == 'CORE') {
- continue;
- }
- sort($shells, SORT_STRING);
- $this->out('[ ' . $section . ' ]');
- $this->out(' ' . implode(', ', $shells), 2);
- }
- if (!empty($grouped['CORE'])) {
- sort($grouped['CORE'], SORT_STRING);
- $this->out('[ Core ]');
- $this->out(' ' . implode(', ', $grouped['CORE']), 2);
- }
- $this->out();
- }
- /**
- * Output as XML
- *
- * @return void
- */
- protected function _asXml($shellList) {
- $plugins = App::objects('plugin');
- $shells = new SimpleXmlElement('<shells></shells>');
- foreach ($shellList as $name => $location) {
- $source = current($location);
- $callable = $name;
- if (in_array($source, $plugins)) {
- $callable = Inflector::underscore($source) . '.' . $name;
- }
- $shell = $shells->addChild('shell');
- $shell->addAttribute('name', $name);
- $shell->addAttribute('call_as', $callable);
- $shell->addAttribute('provider', $source);
- $shell->addAttribute('help', $callable . ' -h');
- }
- $this->out($shells->saveXml());
- }
- /**
- * get the option parser
- *
- * @return void
- */
- public function getOptionParser() {
- $parser = parent::getOptionParser();
- return $parser->description('Get the list of available shells for this CakePHP application.')
- ->addOption('xml', array(
- 'help' => __('Get the listing as XML.'),
- 'boolean' => true
- ))->addOption('sort', array(
- 'help' => __('Sorts the commands by where they are located.'),
- 'boolean' => true
- ));
- }
- }
|