mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
477 lines
No EOL
14 KiB
PHP
477 lines
No EOL
14 KiB
PHP
<?php
|
|
/**
|
|
* The ControllerTask handles creating and updating controller files.
|
|
*
|
|
* Long description for file
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org)
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc.
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
* @package cake
|
|
* @subpackage cake.cake.console.libs.tasks
|
|
* @since CakePHP(tm) v 1.2
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
|
|
/**
|
|
* Task class for creating and updating controller files.
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.cake.console.libs.tasks
|
|
*/
|
|
class ControllerTask extends Shell {
|
|
|
|
/**
|
|
* Name of plugin
|
|
*
|
|
* @var string
|
|
* @access public
|
|
*/
|
|
var $plugin = null;
|
|
|
|
/**
|
|
* Tasks to be loaded by this Task
|
|
*
|
|
* @var array
|
|
* @access public
|
|
*/
|
|
var $tasks = array('Model', 'Test', 'Template', 'DbConfig', 'Project');
|
|
|
|
/**
|
|
* path to CONTROLLERS directory
|
|
*
|
|
* @var array
|
|
* @access public
|
|
*/
|
|
var $path = CONTROLLERS;
|
|
|
|
/**
|
|
* Override initialize
|
|
*
|
|
* @access public
|
|
*/
|
|
function initialize() {
|
|
}
|
|
|
|
/**
|
|
* Execution method always used for tasks
|
|
*
|
|
* @access public
|
|
*/
|
|
function execute() {
|
|
if (empty($this->args)) {
|
|
$this->__interactive();
|
|
}
|
|
|
|
if (isset($this->args[0])) {
|
|
if (!isset($this->connection)) {
|
|
$this->connection = 'default';
|
|
}
|
|
if (strtolower($this->args[0]) == 'all') {
|
|
return $this->all();
|
|
}
|
|
$controller = Inflector::camelize($this->args[0]);
|
|
$actions = null;
|
|
if (isset($this->args[1]) && $this->args[1] == 'scaffold') {
|
|
$this->out(__('Baking scaffold for ', true) . $controller);
|
|
$actions = $this->bakeActions($controller);
|
|
} else {
|
|
$actions = 'scaffold';
|
|
}
|
|
if ((isset($this->args[1]) && $this->args[1] == 'admin') || (isset($this->args[2]) && $this->args[2] == 'admin')) {
|
|
if ($admin = $this->Project->getAdmin()) {
|
|
$this->out('Adding ' . Configure::read('Routing.admin') .' methods');
|
|
if ($actions == 'scaffold') {
|
|
$actions = $this->bakeActions($controller, $admin);
|
|
} else {
|
|
$actions .= $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(join("\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, $wannaBakeCrud) = $this->_askAboutMethods();
|
|
}
|
|
|
|
if (strtolower($wannaBakeCrud) == 'y') {
|
|
$actions = $this->bakeActions($controllerName, null, strtolower($wannaUseSession) == 'y');
|
|
}
|
|
if (strtolower($wannaBakeAdminCrud) == 'y') {
|
|
$admin = $this->Project->getAdmin();
|
|
$actions .= $this->bakeActions($controllerName, $admin, strtolower($wannaUseSession) == 'y');
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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);
|
|
if ($this->plugin) {
|
|
$modelImport = $this->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 = Inflector::humanize($currentModelName);
|
|
$pluralHumanName = Inflector::humanize($controllerName);
|
|
|
|
$this->Template->set(compact('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->path;
|
|
if (isset($this->plugin)) {
|
|
$path = $this->_pluginPath($this->plugin) . 'controllers' . DS;
|
|
}
|
|
$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;
|
|
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 <arg1> <arg2>...");
|
|
$this->hr();
|
|
$this->out('Commands:');
|
|
$this->out('');
|
|
$this->out("controller <name>");
|
|
$this->out("\tbakes controller with var \$scaffold");
|
|
$this->out('');
|
|
$this->out("controller <name> scaffold");
|
|
$this->out("\tbakes controller with scaffold actions.");
|
|
$this->out("\t(index, view, add, edit, delete)");
|
|
$this->out('');
|
|
$this->out("controller <name> scaffold admin");
|
|
$this->out("\tbakes a controller with scaffold actions for both public");
|
|
$this->out("\tand Configure::read('Routing.admin')");
|
|
$this->out('');
|
|
$this->out("controller <name> admin");
|
|
$this->out("\tbakes a controller with scaffold actions only for");
|
|
$this->out("\tConfigure::read('Routing.admin')");
|
|
$this->out('');
|
|
$this->out("controller all");
|
|
$this->out("\tbakes all controllers with CRUD methods.");
|
|
$this->out("");
|
|
$this->_stop();
|
|
}
|
|
}
|
|
?>
|