args)) { return $this->__interactive(); } if (isset($this->args[0])) { if (!isset($this->connection)) { $this->connection = 'default'; } if (strtolower($this->args[0]) == 'all') { return $this->all(); } $controller = $this->_controllerName($this->args[0]); $actions = 'scaffold'; if (!empty($this->args[1]) && ($this->args[1] == 'public' || $this->args[1] == 'scaffold')) { $this->out(__('Baking basic crud methods for ', true) . $controller); $actions = $this->bakeActions($controller); } elseif (!empty($this->args[1]) && $this->args[1] == 'admin') { $admin = $this->Project->getPrefix(); if ($admin) { $this->out(sprintf(__('Adding %s methods', true), $admin)); $actions = $this->bakeActions($controller, $admin); } } if (!empty($this->args[2]) && $this->args[2] == 'admin') { $admin = $this->Project->getPrefix(); if ($admin) { $this->out(sprintf(__('Adding %s methods', true), $admin)); $actions .= "\n" . $this->bakeActions($controller, $admin); } } if ($this->bake($controller, $actions)) { if ($this->_checkUnitTest()) { $this->bakeTest($controller); } } } } /** * Bake All the controllers at once. Will only bake controllers for models that exist. * * @access public * @return void */ function all() { $this->interactive = false; $this->listAll($this->connection, false); ClassRegistry::config('Model', array('ds' => $this->connection)); $unitTestExists = $this->_checkUnitTest(); foreach ($this->__tables as $table) { $model = $this->_modelName($table); $controller = $this->_controllerName($model); if (App::import('Model', $model)) { $actions = $this->bakeActions($controller); if ($this->bake($controller, $actions) && $unitTestExists) { $this->bakeTest($controller); } } } } /** * Interactive * * @access private */ function __interactive() { $this->interactive = true; $this->hr(); $this->out(sprintf(__("Bake Controller\nPath: %s", true), $this->path)); $this->hr(); if (empty($this->connection)) { $this->connection = $this->DbConfig->getConfig(); } $controllerName = $this->getName(); $this->hr(); $this->out(sprintf(__('Baking %sController', true), $controllerName)); $this->hr(); $helpers = $components = array(); $actions = ''; $wannaUseSession = 'y'; $wannaBakeAdminCrud = 'n'; $useDynamicScaffold = 'n'; $wannaBakeCrud = 'y'; $controllerFile = strtolower(Inflector::underscore($controllerName)); $question[] = __("Would you like to build your controller interactively?", true); if (file_exists($this->path . $controllerFile .'_controller.php')) { $question[] = sprintf(__("Warning: Choosing no will overwrite the %sController.", true), $controllerName); } $doItInteractive = $this->in(implode("\n", $question), array('y','n'), 'y'); if (strtolower($doItInteractive) == 'y') { $this->interactive = true; $useDynamicScaffold = $this->in( __("Would you like to use dynamic scaffolding?", true), array('y','n'), 'n' ); if (strtolower($useDynamicScaffold) == 'y') { $wannaBakeCrud = 'n'; $actions = 'scaffold'; } else { list($wannaBakeCrud, $wannaBakeAdminCrud) = $this->_askAboutMethods(); $helpers = $this->doHelpers(); $components = $this->doComponents(); $wannaUseSession = $this->in( __("Would you like to use Session flash messages?", true), array('y','n'), 'y' ); } } else { list($wannaBakeCrud, $wannaBakeAdminCrud) = $this->_askAboutMethods(); } if (strtolower($wannaBakeCrud) == 'y') { $actions = $this->bakeActions($controllerName, null, strtolower($wannaUseSession) == 'y'); } if (strtolower($wannaBakeAdminCrud) == 'y') { $admin = $this->Project->getPrefix(); $actions .= $this->bakeActions($controllerName, $admin, strtolower($wannaUseSession) == 'y'); } $baked = false; if ($this->interactive === true) { $this->confirmController($controllerName, $useDynamicScaffold, $helpers, $components); $looksGood = $this->in(__('Look okay?', true), array('y','n'), 'y'); if (strtolower($looksGood) == 'y') { $baked = $this->bake($controllerName, $actions, $helpers, $components); if ($baked && $this->_checkUnitTest()) { $this->bakeTest($controllerName); } } } else { $baked = $this->bake($controllerName, $actions, $helpers, $components); if ($baked && $this->_checkUnitTest()) { $this->bakeTest($controllerName); } } return $baked; } /** * Confirm a to be baked controller with the user * * @return void */ function confirmController($controllerName, $useDynamicScaffold, $helpers, $components) { $this->out(); $this->hr(); $this->out(__('The following controller will be created:', true)); $this->hr(); $this->out(sprintf(__("Controller Name:\n\t%s", true), $controllerName)); if (strtolower($useDynamicScaffold) == 'y') { $this->out("var \$scaffold;"); } $properties = array( 'helpers' => __("Helpers:", true), 'components' => __('Components:', true), ); foreach ($properties as $var => $title) { if (count($$var)) { $output = ''; $length = count($$var); foreach ($$var as $i => $propElement) { if ($i != $length -1) { $output .= ucfirst($propElement) . ', '; } else { $output .= ucfirst($propElement); } } $this->out($title . "\n\t" . $output); } } $this->hr(); } /** * Interact with the user and ask about which methods (admin or regular they want to bake) * * @return array Array containing (bakeRegular, bakeAdmin) answers */ function _askAboutMethods() { $wannaBakeCrud = $this->in( __("Would you like to create some basic class methods \n(index(), add(), view(), edit())?", true), array('y','n'), 'n' ); $wannaBakeAdminCrud = $this->in( __("Would you like to create the basic class methods for admin routing?", true), array('y','n'), 'n' ); return array($wannaBakeCrud, $wannaBakeAdminCrud); } /** * Bake scaffold actions * * @param string $controllerName Controller name * @param string $admin Admin route to use * @param boolean $wannaUseSession Set to true to use sessions, false otherwise * @return string Baked actions * @access private */ function bakeActions($controllerName, $admin = null, $wannaUseSession = true) { $currentModelName = $modelImport = $this->_modelName($controllerName); $plugin = $this->plugin; if ($plugin) { $modelImport = $plugin . '.' . $modelImport; } if (!App::import('Model', $modelImport)) { $this->err(__('You must have a model for this class to build basic methods. Please try again.', true)); $this->_stop(); } $modelObj =& ClassRegistry::init($currentModelName); $controllerPath = $this->_controllerPath($controllerName); $pluralName = $this->_pluralName($currentModelName); $singularName = Inflector::variable($currentModelName); $singularHumanName = $this->_singularHumanName($controllerName); $pluralHumanName = $this->_pluralName($controllerName); $this->Template->set(compact('plugin', 'admin', 'controllerPath', 'pluralName', 'singularName', 'singularHumanName', 'pluralHumanName', 'modelObj', 'wannaUseSession', 'currentModelName')); $actions = $this->Template->generate('actions', 'controller_actions'); return $actions; } /** * Assembles and writes a Controller file * * @param string $controllerName Controller name * @param string $actions Actions to add, or set the whole controller to use $scaffold (set $actions to 'scaffold') * @param array $helpers Helpers to use in controller * @param array $components Components to use in controller * @param array $uses Models to use in controller * @return string Baked controller * @access private */ function bake($controllerName, $actions = '', $helpers = null, $components = null) { $isScaffold = ($actions === 'scaffold') ? true : false; $this->Template->set('plugin', Inflector::camelize($this->plugin)); $this->Template->set(compact('controllerName', 'actions', 'helpers', 'components', 'isScaffold')); $contents = $this->Template->generate('classes', 'controller'); $path = $this->getPath(); $filename = $path . $this->_controllerPath($controllerName) . '_controller.php'; if ($this->createFile($filename, $contents)) { return $contents; } return false; } /** * Assembles and writes a unit test file * * @param string $className Controller class name * @return string Baked test * @access private */ function bakeTest($className) { $this->Test->plugin = $this->plugin; $this->Test->connection = $this->connection; $this->Test->interactive = $this->interactive; return $this->Test->bake('Controller', $className); } /** * Interact with the user and get a list of additional helpers * * @return array Helpers that the user wants to use. */ function doHelpers() { return $this->_doPropertyChoices( __("Would you like this controller to use other helpers\nbesides HtmlHelper and FormHelper?", true), __("Please provide a comma separated list of the other\nhelper names you'd like to use.\nExample: 'Ajax, Javascript, Time'", true) ); } /** * Interact with the user and get a list of additional components * * @return array Components the user wants to use. */ function doComponents() { return $this->_doPropertyChoices( __("Would you like this controller to use any components?", true), __("Please provide a comma separated list of the component names you'd like to use.\nExample: 'Acl, Security, RequestHandler'", true) ); } /** * Common code for property choice handling. * * @param string $prompt A yes/no question to precede the list * @param sting $example A question for a comma separated list, with examples. * @return array Array of values for property. */ function _doPropertyChoices($prompt, $example) { $proceed = $this->in($prompt, array('y','n'), 'n'); $property = array(); if (strtolower($proceed) == 'y') { $propertyList = $this->in($example); $propertyListTrimmed = str_replace(' ', '', $propertyList); $property = explode(',', $propertyListTrimmed); } return array_filter($property); } /** * Outputs and gets the list of possible controllers from database * * @param string $useDbConfig Database configuration name * @param boolean $interactive Whether you are using listAll interactively and want options output. * @return array Set of controllers * @access public */ function listAll($useDbConfig = null) { if (is_null($useDbConfig)) { $useDbConfig = $this->connection; } $this->__tables = $this->Model->getAllTables($useDbConfig); if ($this->interactive == true) { $this->out(__('Possible Controllers based on your current database:', true)); $this->_controllerNames = array(); $count = count($this->__tables); for ($i = 0; $i < $count; $i++) { $this->_controllerNames[] = $this->_controllerName($this->_modelName($this->__tables[$i])); $this->out($i + 1 . ". " . $this->_controllerNames[$i]); } return $this->_controllerNames; } return $this->__tables; } /** * Forces the user to specify the controller he wants to bake, and returns the selected controller name. * * @param string $useDbConfig Connection name to get a controller name for. * @return string Controller name * @access public */ function getName($useDbConfig = null) { $controllers = $this->listAll($useDbConfig); $enteredController = ''; while ($enteredController == '') { $enteredController = $this->in(__("Enter a number from the list above,\ntype in the name of another controller, or 'q' to exit", true), null, 'q'); if ($enteredController === 'q') { $this->out(__("Exit", true)); $this->_stop(); } if ($enteredController == '' || intval($enteredController) > count($controllers)) { $this->err(__("The Controller name you supplied was empty,\nor the number you selected was not an option. Please try again.", true)); $enteredController = ''; } } if (intval($enteredController) > 0 && intval($enteredController) <= count($controllers) ) { $controllerName = $controllers[intval($enteredController) - 1]; } else { $controllerName = Inflector::camelize($enteredController); } return $controllerName; } /** * Displays help contents * * @access public */ function help() { $this->hr(); $this->out("Usage: cake bake controller ..."); $this->hr(); $this->out('Arguments:'); $this->out(); $this->out(""); $this->out("\tName of the controller to bake. Can use Plugin.name"); $this->out("\tas a shortcut for plugin baking."); $this->out(); $this->out('Commands:'); $this->out(); $this->out("controller "); $this->out("\tbakes controller with var \$scaffold"); $this->out(); $this->out("controller public"); $this->out("\tbakes controller with basic crud actions"); $this->out("\t(index, view, add, edit, delete)"); $this->out(); $this->out("controller admin"); $this->out("\tbakes a controller with basic crud actions for one of the"); $this->out("\tConfigure::read('Routing.prefixes') methods."); $this->out(); $this->out("controller public admin"); $this->out("\tbakes a controller with basic crud actions for one"); $this->out("\tConfigure::read('Routing.prefixes') and non admin methods."); $this->out("\t(index, view, add, edit, delete,"); $this->out("\tadmin_index, admin_view, admin_edit, admin_add, admin_delete)"); $this->out(); $this->out("controller all"); $this->out("\tbakes all controllers with CRUD methods."); $this->out(); $this->_stop(); } }