1: <?php
2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17:
18:
19: App::uses('TaskCollection', 'Console');
20: App::uses('ConsoleOutput', 'Console');
21: App::uses('ConsoleInput', 'Console');
22: App::uses('ConsoleInputSubcommand', 'Console');
23: App::uses('ConsoleOptionParser', 'Console');
24: App::uses('File', 'Utility');
25:
26: 27: 28: 29: 30:
31: class Shell extends Object {
32:
33: 34: 35:
36: const VERBOSE = 2;
37: const NORMAL = 1;
38: const QUIET = 0;
39:
40: 41: 42: 43: 44:
45: public $OptionParser;
46:
47: 48: 49: 50: 51:
52: public $interactive = true;
53:
54: 55: 56: 57: 58:
59: public $params = array();
60:
61: 62: 63: 64: 65:
66: public $command;
67:
68: 69: 70: 71: 72:
73: public $args = array();
74:
75: 76: 77: 78: 79:
80: public $name = null;
81:
82: 83: 84: 85: 86: 87:
88: public $plugin = null;
89:
90: 91: 92: 93: 94: 95:
96: public $tasks = array();
97:
98: 99: 100: 101: 102:
103: public $taskNames = array();
104:
105: 106: 107: 108: 109: 110:
111: public $uses = array();
112:
113: 114: 115: 116: 117:
118: public $Tasks;
119:
120: 121: 122: 123: 124:
125: protected $_taskMap = array();
126:
127: 128: 129: 130: 131:
132: public $stdout;
133:
134: 135: 136: 137: 138:
139: public $stderr;
140:
141: 142: 143: 144: 145:
146: public $stdin;
147:
148: 149: 150: 151: 152: 153: 154: 155:
156: public function __construct($stdout = null, $stderr = null, $stdin = null) {
157: if ($this->name == null) {
158: $this->name = Inflector::camelize(str_replace(array('Shell', 'Task'), '', get_class($this)));
159: }
160: $this->Tasks = new TaskCollection($this);
161:
162: $this->stdout = $stdout;
163: $this->stderr = $stderr;
164: $this->stdin = $stdin;
165: if ($this->stdout == null) {
166: $this->stdout = new ConsoleOutput('php://stdout');
167: }
168: if ($this->stderr == null) {
169: $this->stderr = new ConsoleOutput('php://stderr');
170: }
171: if ($this->stdin == null) {
172: $this->stdin = new ConsoleInput('php://stdin');
173: }
174:
175: $parent = get_parent_class($this);
176: if ($this->tasks !== null && $this->tasks !== false) {
177: $this->_mergeVars(array('tasks'), $parent, true);
178: }
179: if ($this->uses !== null && $this->uses !== false) {
180: $this->_mergeVars(array('uses'), $parent, false);
181: }
182: }
183:
184: 185: 186: 187: 188: 189: 190: 191:
192: public function initialize() {
193: $this->_loadModels();
194: }
195:
196: 197: 198: 199: 200: 201: 202: 203: 204: 205:
206: public function startup() {
207: $this->_welcome();
208: }
209:
210: 211: 212: 213: 214:
215: protected function _welcome() {
216: $this->out();
217: $this->out(__d('cake_console', '<info>Welcome to CakePHP %s Console</info>', 'v' . Configure::version()));
218: $this->hr();
219: $this->out(__d('cake_console', 'App : %s', APP_DIR));
220: $this->out(__d('cake_console', 'Path: %s', APP));
221: $this->hr();
222: }
223:
224: 225: 226: 227: 228: 229: 230: 231:
232: protected function _loadModels() {
233: if ($this->uses === null || $this->uses === false) {
234: return;
235: }
236: App::uses('ClassRegistry', 'Utility');
237:
238: if ($this->uses !== true && !empty($this->uses)) {
239: $uses = is_array($this->uses) ? $this->uses : array($this->uses);
240:
241: $modelClassName = $uses[0];
242: if (strpos($uses[0], '.') !== false) {
243: list($plugin, $modelClassName) = explode('.', $uses[0]);
244: }
245: $this->modelClass = $modelClassName;
246:
247: foreach ($uses as $modelClass) {
248: list($plugin, $modelClass) = pluginSplit($modelClass, true);
249: $this->{$modelClass} = ClassRegistry::init($plugin . $modelClass);
250: }
251: return true;
252: }
253: return false;
254: }
255:
256: 257: 258: 259: 260:
261: public function loadTasks() {
262: if ($this->tasks === true || empty($this->tasks) || empty($this->Tasks)) {
263: return true;
264: }
265: $this->_taskMap = TaskCollection::normalizeObjectArray((array)$this->tasks);
266: foreach ($this->_taskMap as $task => $properties) {
267: $this->taskNames[] = $task;
268: }
269: return true;
270: }
271:
272: 273: 274: 275: 276: 277: 278:
279: public function hasTask($task) {
280: return isset($this->_taskMap[Inflector::camelize($task)]);
281: }
282:
283: 284: 285: 286: 287: 288: 289:
290: public function hasMethod($name) {
291: try {
292: $method = new ReflectionMethod($this, $name);
293: if (!$method->isPublic() || substr($name, 0, 1) === '_') {
294: return false;
295: }
296: if ($method->getDeclaringClass()->name == 'Shell') {
297: return false;
298: }
299: return true;
300: } catch (ReflectionException $e) {
301: return false;
302: }
303: }
304:
305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325:
326: public function dispatchShell() {
327: $args = func_get_args();
328: if (is_string($args[0]) && count($args) == 1) {
329: $args = explode(' ', $args[0]);
330: }
331:
332: $Dispatcher = new ShellDispatcher($args, false);
333: return $Dispatcher->dispatch();
334: }
335:
336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354:
355: public function runCommand($command, $argv) {
356: $isTask = $this->hasTask($command);
357: $isMethod = $this->hasMethod($command);
358: $isMain = $this->hasMethod('main');
359:
360: if ($isTask || $isMethod && $command !== 'execute') {
361: array_shift($argv);
362: }
363:
364: try {
365: $this->OptionParser = $this->getOptionParser();
366: list($this->params, $this->args) = $this->OptionParser->parse($argv, $command);
367: } catch (ConsoleException $e) {
368: $this->out($this->OptionParser->help($command));
369: return false;
370: }
371:
372: $this->command = $command;
373: if (!empty($this->params['help'])) {
374: return $this->_displayHelp($command);
375: }
376:
377: if (($isTask || $isMethod || $isMain) && $command !== 'execute') {
378: $this->startup();
379: }
380:
381: if ($isTask) {
382: $command = Inflector::camelize($command);
383: return $this->{$command}->runCommand('execute', $argv);
384: }
385: if ($isMethod) {
386: return $this->{$command}();
387: }
388: if ($isMain) {
389: return $this->main();
390: }
391: $this->out($this->OptionParser->help($command));
392: return false;
393: }
394:
395: 396: 397: 398: 399: 400:
401: protected function _displayHelp($command) {
402: $format = 'text';
403: if (!empty($this->args[0]) && $this->args[0] == 'xml') {
404: $format = 'xml';
405: $this->stdout->outputAs(ConsoleOutput::RAW);
406: } else {
407: $this->_welcome();
408: }
409: return $this->out($this->OptionParser->help($command, $format));
410: }
411:
412: 413: 414: 415: 416: 417: 418:
419: public function getOptionParser() {
420: $name = ($this->plugin ? $this->plugin . '.' : '') . $this->name;
421: $parser = new ConsoleOptionParser($name);
422: return $parser;
423: }
424:
425: 426: 427: 428: 429: 430:
431: public function __get($name) {
432: if (empty($this->{$name}) && in_array($name, $this->taskNames)) {
433: $properties = $this->_taskMap[$name];
434: $this->{$name} = $this->Tasks->load($properties['class'], $properties['settings']);
435: $this->{$name}->args =& $this->args;
436: $this->{$name}->params =& $this->params;
437: $this->{$name}->initialize();
438: $this->{$name}->loadTasks();
439: }
440: return $this->{$name};
441: }
442:
443: 444: 445: 446: 447: 448: 449: 450: 451:
452: public function in($prompt, $options = null, $default = null) {
453: if (!$this->interactive) {
454: return $default;
455: }
456: $in = $this->_getInput($prompt, $options, $default);
457:
458: if ($options && is_string($options)) {
459: if (strpos($options, ',')) {
460: $options = explode(',', $options);
461: } elseif (strpos($options, '/')) {
462: $options = explode('/', $options);
463: } else {
464: $options = array($options);
465: }
466: }
467: if (is_array($options)) {
468: $options = array_merge(
469: array_map('strtolower', $options),
470: array_map('strtoupper', $options),
471: $options
472: );
473: while ($in === '' || !in_array($in, $options)) {
474: $in = $this->_getInput($prompt, $options, $default);
475: }
476: }
477: return $in;
478: }
479:
480: 481: 482: 483: 484: 485: 486: 487:
488: protected function _getInput($prompt, $options, $default) {
489: if (!is_array($options)) {
490: $printOptions = '';
491: } else {
492: $printOptions = '(' . implode('/', $options) . ')';
493: }
494:
495: if ($default === null) {
496: $this->stdout->write('<question>' . $prompt . '</question>' . " $printOptions \n" . '> ', 0);
497: } else {
498: $this->stdout->write('<question>' . $prompt . '</question>' . " $printOptions \n" . "[$default] > ", 0);
499: }
500: $result = $this->stdin->read();
501:
502: if ($result === false) {
503: $this->_stop(1);
504: }
505: $result = trim($result);
506:
507: if ($default !== null && ($result === '' || $result === null)) {
508: return $default;
509: }
510: return $result;
511: }
512:
513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528:
529: public function wrapText($text, $options = array()) {
530: return String::wrap($text, $options);
531: }
532:
533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549:
550: public function out($message = null, $newlines = 1, $level = Shell::NORMAL) {
551: $currentLevel = Shell::NORMAL;
552: if (!empty($this->params['verbose'])) {
553: $currentLevel = Shell::VERBOSE;
554: }
555: if (!empty($this->params['quiet'])) {
556: $currentLevel = Shell::QUIET;
557: }
558: if ($level <= $currentLevel) {
559: return $this->stdout->write($message, $newlines);
560: }
561: return true;
562: }
563:
564: 565: 566: 567: 568: 569: 570: 571: 572:
573: public function err($message = null, $newlines = 1) {
574: $this->stderr->write($message, $newlines);
575: }
576:
577: 578: 579: 580: 581: 582: 583:
584: public function nl($multiplier = 1) {
585: return str_repeat(ConsoleOutput::LF, $multiplier);
586: }
587:
588: 589: 590: 591: 592: 593: 594: 595:
596: public function hr($newlines = 0, $width = 63) {
597: $this->out(null, $newlines);
598: $this->out(str_repeat('-', $width));
599: $this->out(null, $newlines);
600: }
601:
602: 603: 604: 605: 606: 607: 608: 609: 610:
611: public function error($title, $message = null) {
612: $this->err(__d('cake_console', '<error>Error:</error> %s', $title));
613:
614: if (!empty($message)) {
615: $this->err($message);
616: }
617: $this->_stop(1);
618: }
619:
620: 621: 622: 623: 624: 625:
626: public function clear() {
627: if (empty($this->params['noclear'])) {
628: if (DS === '/') {
629: passthru('clear');
630: } else {
631: passthru('cls');
632: }
633: }
634: }
635:
636: 637: 638: 639: 640: 641: 642: 643:
644: public function createFile($path, $contents) {
645: $path = str_replace(DS . DS, DS, $path);
646:
647: $this->out();
648:
649: if (is_file($path) && $this->interactive === true) {
650: $this->out(__d('cake_console', '<warning>File `%s` exists</warning>', $path));
651: $key = $this->in(__d('cake_console', 'Do you want to overwrite?'), array('y', 'n', 'q'), 'n');
652:
653: if (strtolower($key) == 'q') {
654: $this->out(__d('cake_console', '<error>Quitting</error>.'), 2);
655: $this->_stop();
656: } elseif (strtolower($key) != 'y') {
657: $this->out(__d('cake_console', 'Skip `%s`', $path), 2);
658: return false;
659: }
660: } else {
661: $this->out(__d('cake_console', 'Creating file %s', $path));
662: }
663:
664: $File = new File($path, true);
665: if ($File->exists() && $File->writable()) {
666: $data = $File->prepare($contents);
667: $File->write($data);
668: $this->out(__d('cake_console', '<success>Wrote</success> `%s`', $path));
669: return true;
670: } else {
671: $this->err(__d('cake_console', '<error>Could not write to `%s`</error>.', $path), 2);
672: return false;
673: }
674: }
675:
676: 677: 678: 679: 680:
681: protected function _checkUnitTest() {
682: if (App::import('Vendor', 'phpunit', array('file' => 'PHPUnit' . DS . 'Autoload.php'))) {
683: return true;
684: }
685: if (@include 'PHPUnit' . DS . 'Autoload.php') {
686: return true;
687: }
688: $prompt = __d('cake_console', 'PHPUnit is not installed. Do you want to bake unit test files anyway?');
689: $unitTest = $this->in($prompt, array('y', 'n'), 'y');
690: $result = strtolower($unitTest) == 'y' || strtolower($unitTest) == 'yes';
691:
692: if ($result) {
693: $this->out();
694: $this->out(__d('cake_console', 'You can download PHPUnit from %s', 'http://phpunit.de'));
695: }
696: return $result;
697: }
698:
699: 700: 701: 702: 703: 704: 705:
706: public function shortPath($file) {
707: $shortPath = str_replace(ROOT, null, $file);
708: $shortPath = str_replace('..' . DS, '', $shortPath);
709: return str_replace(DS . DS, DS, $shortPath);
710: }
711:
712: 713: 714: 715: 716: 717:
718: protected function _controllerPath($name) {
719: return Inflector::underscore($name);
720: }
721:
722: 723: 724: 725: 726: 727:
728: protected function _controllerName($name) {
729: return Inflector::pluralize(Inflector::camelize($name));
730: }
731:
732: 733: 734: 735: 736: 737:
738: protected function _modelName($name) {
739: return Inflector::camelize(Inflector::singularize($name));
740: }
741:
742: 743: 744: 745: 746: 747:
748: protected function _modelKey($name) {
749: return Inflector::underscore($name) . '_id';
750: }
751:
752: 753: 754: 755: 756: 757:
758: protected function _modelNameFromKey($key) {
759: return Inflector::camelize(str_replace('_id', '', $key));
760: }
761:
762: 763: 764: 765: 766: 767:
768: protected function _singularName($name) {
769: return Inflector::variable(Inflector::singularize($name));
770: }
771:
772: 773: 774: 775: 776: 777:
778: protected function _pluralName($name) {
779: return Inflector::variable(Inflector::pluralize($name));
780: }
781:
782: 783: 784: 785: 786: 787:
788: protected function _singularHumanName($name) {
789: return Inflector::humanize(Inflector::underscore(Inflector::singularize($name)));
790: }
791:
792: 793: 794: 795: 796: 797:
798: protected function _pluralHumanName($name) {
799: return Inflector::humanize(Inflector::underscore($name));
800: }
801:
802: 803: 804: 805: 806: 807:
808: protected function _pluginPath($pluginName) {
809: if (CakePlugin::loaded($pluginName)) {
810: return CakePlugin::path($pluginName);
811: }
812: return current(App::path('plugins')) . $pluginName . DS;
813: }
814: }
815: