2010-03-05 01:50:52 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Base class for Bake Tasks.
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2010-03-05 01:50:52 +00:00
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2011-05-29 21:31:39 +00:00
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc.
|
2010-03-05 01:50:52 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2011-05-29 21:31:39 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-03-05 01:50:52 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
* @since CakePHP(tm) v 1.3
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
2011-09-30 06:25:33 +00:00
|
|
|
|
|
|
|
App::uses('Shell', 'Console');
|
2011-07-26 01:46:52 +00:00
|
|
|
/**
|
|
|
|
* Base class for Bake Tasks.
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Console.Command.Task
|
2011-07-26 01:46:52 +00:00
|
|
|
*/
|
2010-03-05 01:50:52 +00:00
|
|
|
class BakeTask extends Shell {
|
|
|
|
|
2010-03-05 02:30:26 +00:00
|
|
|
/**
|
|
|
|
* Name of plugin
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $plugin = null;
|
2010-03-05 02:30:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The db connection being used for baking
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $connection = null;
|
2010-03-05 02:30:26 +00:00
|
|
|
|
2010-03-05 02:57:48 +00:00
|
|
|
/**
|
|
|
|
* Flag for interactive mode
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $interactive = false;
|
2010-03-05 02:57:48 +00:00
|
|
|
|
2011-08-19 16:35:59 +00:00
|
|
|
/**
|
2011-10-05 02:25:18 +00:00
|
|
|
* Disable caching and enable debug for baking.
|
2011-08-19 16:35:59 +00:00
|
|
|
* This forces the most current database schema to be used.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function startup() {
|
2011-10-05 02:25:18 +00:00
|
|
|
Configure::write('debug', 2);
|
2011-08-19 16:35:59 +00:00
|
|
|
Configure::write('Cache.disable', 1);
|
|
|
|
parent::startup();
|
|
|
|
}
|
|
|
|
|
2010-03-05 01:50:52 +00:00
|
|
|
/**
|
|
|
|
* Gets the path for output. Checks the plugin property
|
|
|
|
* and returns the correct path.
|
|
|
|
*
|
|
|
|
* @return string Path to output.
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function getPath() {
|
2010-03-05 01:50:52 +00:00
|
|
|
$path = $this->path;
|
|
|
|
if (isset($this->plugin)) {
|
2011-04-12 02:45:51 +00:00
|
|
|
$path = $this->_pluginPath($this->plugin) . $this->name . DS;
|
2010-03-05 01:50:52 +00:00
|
|
|
}
|
|
|
|
return $path;
|
|
|
|
}
|
2010-10-19 03:09:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Base execute method parses some parameters and sets some properties on the bake tasks.
|
|
|
|
* call when overriding execute()
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function execute() {
|
|
|
|
foreach($this->args as $i => $arg) {
|
|
|
|
if (strpos($arg, '.')) {
|
|
|
|
list($this->params['plugin'], $this->args[$i]) = pluginSplit($arg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($this->params['plugin'])) {
|
|
|
|
$this->plugin = $this->params['plugin'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-10 22:07:49 +00:00
|
|
|
}
|