You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
437 lines
12 KiB
437 lines
12 KiB
11 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\gii\generators\crud;
|
||
|
|
||
11 years ago
|
use Yii;
|
||
11 years ago
|
use yii\db\ActiveRecord;
|
||
11 years ago
|
use yii\db\BaseActiveRecord;
|
||
11 years ago
|
use yii\db\Schema;
|
||
11 years ago
|
use yii\gii\CodeFile;
|
||
11 years ago
|
use yii\helpers\Inflector;
|
||
11 years ago
|
use yii\web\Controller;
|
||
|
|
||
11 years ago
|
/**
|
||
|
*
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class Generator extends \yii\gii\Generator
|
||
|
{
|
||
11 years ago
|
public $modelClass;
|
||
11 years ago
|
public $moduleID;
|
||
|
public $controllerClass;
|
||
11 years ago
|
public $baseControllerClass = 'yii\web\Controller';
|
||
11 years ago
|
public $indexWidgetType = 'grid';
|
||
|
public $searchModelClass;
|
||
11 years ago
|
|
||
11 years ago
|
public function getName()
|
||
|
{
|
||
|
return 'CRUD Generator';
|
||
|
}
|
||
|
|
||
|
public function getDescription()
|
||
|
{
|
||
|
return 'This generator generates a controller and views that implement CRUD (Create, Read, Update, Delete)
|
||
|
operations for the specified data model.';
|
||
|
}
|
||
11 years ago
|
|
||
11 years ago
|
public function rules()
|
||
|
{
|
||
11 years ago
|
return array_merge(parent::rules(), [
|
||
11 years ago
|
[['moduleID', 'controllerClass', 'modelClass', 'searchModelClass', 'baseControllerClass'], 'filter', 'filter' => 'trim'],
|
||
|
[['modelClass', 'searchModelClass', 'controllerClass', 'baseControllerClass', 'indexWidgetType'], 'required'],
|
||
|
[['searchModelClass'], 'compare', 'compareAttribute' => 'modelClass', 'operator' => '!==', 'message' => 'Search Model Class must not be equal to Model Class.'],
|
||
|
[['modelClass', 'controllerClass', 'baseControllerClass', 'searchModelClass'], 'match', 'pattern' => '/^[\w\\\\]*$/', 'message' => 'Only word characters and backslashes are allowed.'],
|
||
11 years ago
|
[['modelClass'], 'validateClass', 'params' => ['extends' => BaseActiveRecord::className()]],
|
||
11 years ago
|
[['baseControllerClass'], 'validateClass', 'params' => ['extends' => Controller::className()]],
|
||
|
[['controllerClass'], 'match', 'pattern' => '/Controller$/', 'message' => 'Controller class name must be suffixed with "Controller".'],
|
||
|
[['controllerClass', 'searchModelClass'], 'validateNewClass'],
|
||
|
[['indexWidgetType'], 'in', 'range' => ['grid', 'list']],
|
||
|
[['modelClass'], 'validateModelClass'],
|
||
|
[['moduleID'], 'validateModuleID'],
|
||
11 years ago
|
]);
|
||
11 years ago
|
}
|
||
|
|
||
|
public function attributeLabels()
|
||
|
{
|
||
11 years ago
|
return array_merge(parent::attributeLabels(), [
|
||
11 years ago
|
'modelClass' => 'Model Class',
|
||
11 years ago
|
'moduleID' => 'Module ID',
|
||
|
'controllerClass' => 'Controller Class',
|
||
11 years ago
|
'baseControllerClass' => 'Base Controller Class',
|
||
11 years ago
|
'indexWidgetType' => 'Widget Used in Index Page',
|
||
|
'searchModelClass' => 'Search Model Class',
|
||
11 years ago
|
]);
|
||
11 years ago
|
}
|
||
|
|
||
|
/**
|
||
11 years ago
|
* @inheritdoc
|
||
11 years ago
|
*/
|
||
|
public function hints()
|
||
|
{
|
||
11 years ago
|
return [
|
||
11 years ago
|
'modelClass' => 'This is the ActiveRecord class associated with the table that CRUD will be built upon.
|
||
|
You should provide a fully qualified class name, e.g., <code>app\models\Post</code>.',
|
||
11 years ago
|
'controllerClass' => 'This is the name of the controller class to be generated. You should
|
||
|
provide a fully qualified namespaced class, .e.g, <code>app\controllers\PostController</code>.',
|
||
11 years ago
|
'baseControllerClass' => 'This is the class that the new CRUD controller class will extend from.
|
||
|
You should provide a fully qualified class name, e.g., <code>yii\web\Controller</code>.',
|
||
11 years ago
|
'moduleID' => 'This is the ID of the module that the generated controller will belong to.
|
||
|
If not set, it means the controller will belong to the application.',
|
||
11 years ago
|
'indexWidgetType' => 'This is the widget type to be used in the index page to display list of the models.
|
||
|
You may choose either <code>GridView</code> or <code>ListView</code>',
|
||
11 years ago
|
'searchModelClass' => 'This is the class representing the data being collected in the search form.
|
||
11 years ago
|
A fully qualified namespaced class name is required, e.g., <code>app\models\search\PostSearch</code>.',
|
||
11 years ago
|
];
|
||
11 years ago
|
}
|
||
|
|
||
|
public function requiredTemplates()
|
||
|
{
|
||
11 years ago
|
return ['controller.php'];
|
||
11 years ago
|
}
|
||
|
|
||
|
/**
|
||
11 years ago
|
* @inheritdoc
|
||
11 years ago
|
*/
|
||
|
public function stickyAttributes()
|
||
|
{
|
||
11 years ago
|
return ['baseControllerClass', 'moduleID', 'indexWidgetType'];
|
||
11 years ago
|
}
|
||
|
|
||
|
public function validateModelClass()
|
||
|
{
|
||
|
/** @var ActiveRecord $class */
|
||
|
$class = $this->modelClass;
|
||
|
$pk = $class::primaryKey();
|
||
|
if (empty($pk)) {
|
||
|
$this->addError('modelClass', "The table associated with $class must have primary key(s).");
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
11 years ago
|
public function validateModuleID()
|
||
|
{
|
||
|
if (!empty($this->moduleID)) {
|
||
|
$module = Yii::$app->getModule($this->moduleID);
|
||
|
if ($module === null) {
|
||
|
$this->addError('moduleID', "Module '{$this->moduleID}' does not exist.");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
11 years ago
|
/**
|
||
11 years ago
|
* @inheritdoc
|
||
11 years ago
|
*/
|
||
|
public function generate()
|
||
|
{
|
||
11 years ago
|
$controllerFile = Yii::getAlias('@' . str_replace('\\', '/', ltrim($this->controllerClass, '\\')) . '.php');
|
||
|
$searchModel = Yii::getAlias('@' . str_replace('\\', '/', ltrim($this->searchModelClass, '\\') . '.php'));
|
||
11 years ago
|
$files = [
|
||
11 years ago
|
new CodeFile($controllerFile, $this->render('controller.php')),
|
||
|
new CodeFile($searchModel, $this->render('search.php')),
|
||
11 years ago
|
];
|
||
11 years ago
|
|
||
11 years ago
|
$viewPath = $this->getViewPath();
|
||
11 years ago
|
$templatePath = $this->getTemplatePath() . '/views';
|
||
|
foreach (scandir($templatePath) as $file) {
|
||
|
if (is_file($templatePath . '/' . $file) && pathinfo($file, PATHINFO_EXTENSION) === 'php') {
|
||
|
$files[] = new CodeFile("$viewPath/$file", $this->render("views/$file"));
|
||
11 years ago
|
}
|
||
|
}
|
||
|
|
||
11 years ago
|
|
||
11 years ago
|
return $files;
|
||
11 years ago
|
}
|
||
11 years ago
|
|
||
|
/**
|
||
|
* @return string the controller ID (without the module ID prefix)
|
||
|
*/
|
||
|
public function getControllerID()
|
||
|
{
|
||
11 years ago
|
$pos = strrpos($this->controllerClass, '\\');
|
||
|
$class = substr(substr($this->controllerClass, $pos + 1), 0, -10);
|
||
|
return Inflector::camel2id($class);
|
||
11 years ago
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string the action view file path
|
||
|
*/
|
||
|
public function getViewPath()
|
||
|
{
|
||
11 years ago
|
$module = empty($this->moduleID) ? Yii::$app : Yii::$app->getModule($this->moduleID);
|
||
11 years ago
|
return $module->getViewPath() . '/' . $this->getControllerID() ;
|
||
|
}
|
||
11 years ago
|
|
||
|
public function getNameAttribute()
|
||
|
{
|
||
11 years ago
|
foreach ($this->getColumnNames() as $name) {
|
||
11 years ago
|
if (!strcasecmp($name, 'name') || !strcasecmp($name, 'title')) {
|
||
|
return $name;
|
||
|
}
|
||
|
}
|
||
11 years ago
|
/** @var \yii\db\ActiveRecord $class */
|
||
|
$class = $this->modelClass;
|
||
11 years ago
|
$pk = $class::primaryKey();
|
||
|
return $pk[0];
|
||
|
}
|
||
11 years ago
|
|
||
|
/**
|
||
|
* @param string $attribute
|
||
|
* @return string
|
||
|
*/
|
||
11 years ago
|
public function generateActiveField($attribute)
|
||
11 years ago
|
{
|
||
11 years ago
|
$tableSchema = $this->getTableSchema();
|
||
11 years ago
|
if ($tableSchema === false || !isset($tableSchema->columns[$attribute])) {
|
||
|
if (preg_match('/^(password|pass|passwd|passcode)$/i', $attribute)) {
|
||
|
return "\$form->field(\$model, '$attribute')->passwordInput();";
|
||
|
} else {
|
||
|
return "\$form->field(\$model, '$attribute');";
|
||
|
}
|
||
11 years ago
|
}
|
||
|
$column = $tableSchema->columns[$attribute];
|
||
|
if ($column->phpType === 'boolean') {
|
||
11 years ago
|
return "\$form->field(\$model, '$attribute')->checkbox()";
|
||
11 years ago
|
} elseif ($column->type === 'text') {
|
||
11 years ago
|
return "\$form->field(\$model, '$attribute')->textarea(['rows' => 6])";
|
||
11 years ago
|
} else {
|
||
|
if (preg_match('/^(password|pass|passwd|passcode)$/i', $column->name)) {
|
||
|
$input = 'passwordInput';
|
||
|
} else {
|
||
|
$input = 'textInput';
|
||
|
}
|
||
|
if ($column->phpType !== 'string' || $column->size === null) {
|
||
11 years ago
|
return "\$form->field(\$model, '$attribute')->$input()";
|
||
11 years ago
|
} else {
|
||
11 years ago
|
return "\$form->field(\$model, '$attribute')->$input(['maxlength' => $column->size])";
|
||
11 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
11 years ago
|
* @param string $attribute
|
||
|
* @return string
|
||
|
*/
|
||
|
public function generateActiveSearchField($attribute)
|
||
|
{
|
||
|
$tableSchema = $this->getTableSchema();
|
||
11 years ago
|
if ($tableSchema === false) {
|
||
|
return "\$form->field(\$model, '$attribute')";
|
||
|
}
|
||
11 years ago
|
$column = $tableSchema->columns[$attribute];
|
||
|
if ($column->phpType === 'boolean') {
|
||
11 years ago
|
return "\$form->field(\$model, '$attribute')->checkbox()";
|
||
11 years ago
|
} else {
|
||
11 years ago
|
return "\$form->field(\$model, '$attribute')";
|
||
11 years ago
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
11 years ago
|
* @param \yii\db\ColumnSchema $column
|
||
|
* @return string
|
||
|
*/
|
||
|
public function generateColumnFormat($column)
|
||
|
{
|
||
|
if ($column->phpType === 'boolean') {
|
||
|
return 'boolean';
|
||
|
} elseif ($column->type === 'text') {
|
||
|
return 'ntext';
|
||
|
} elseif (stripos($column->name, 'time') !== false && $column->phpType === 'integer') {
|
||
|
return 'datetime';
|
||
|
} elseif (stripos($column->name, 'email') !== false) {
|
||
|
return 'email';
|
||
|
} elseif (stripos($column->name, 'url') !== false) {
|
||
|
return 'url';
|
||
|
} else {
|
||
|
return 'text';
|
||
|
}
|
||
|
}
|
||
11 years ago
|
|
||
|
/**
|
||
|
* Generates validation rules for the search model.
|
||
|
* @return array the generated validation rules
|
||
|
*/
|
||
|
public function generateSearchRules()
|
||
|
{
|
||
11 years ago
|
if (($table = $this->getTableSchema()) === false) {
|
||
|
return ["[['" . implode("', '", $this->getColumnNames()) . "'], 'safe']"];
|
||
|
}
|
||
11 years ago
|
$types = [];
|
||
11 years ago
|
foreach ($table->columns as $column) {
|
||
|
switch ($column->type) {
|
||
|
case Schema::TYPE_SMALLINT:
|
||
|
case Schema::TYPE_INTEGER:
|
||
|
case Schema::TYPE_BIGINT:
|
||
|
$types['integer'][] = $column->name;
|
||
|
break;
|
||
|
case Schema::TYPE_BOOLEAN:
|
||
|
$types['boolean'][] = $column->name;
|
||
|
break;
|
||
|
case Schema::TYPE_FLOAT:
|
||
|
case Schema::TYPE_DECIMAL:
|
||
|
case Schema::TYPE_MONEY:
|
||
|
$types['number'][] = $column->name;
|
||
|
break;
|
||
|
case Schema::TYPE_DATE:
|
||
|
case Schema::TYPE_TIME:
|
||
|
case Schema::TYPE_DATETIME:
|
||
|
case Schema::TYPE_TIMESTAMP:
|
||
|
default:
|
||
|
$types['safe'][] = $column->name;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
11 years ago
|
$rules = [];
|
||
11 years ago
|
foreach ($types as $type => $columns) {
|
||
11 years ago
|
$rules[] = "[['" . implode("', '", $columns) . "'], '$type']";
|
||
11 years ago
|
}
|
||
|
|
||
|
return $rules;
|
||
|
}
|
||
|
|
||
|
public function getSearchAttributes()
|
||
|
{
|
||
11 years ago
|
return $this->getColumnNames();
|
||
11 years ago
|
}
|
||
|
|
||
|
/**
|
||
|
* Generates the attribute labels for the search model.
|
||
|
* @return array the generated attribute labels (name => label)
|
||
|
*/
|
||
|
public function generateSearchLabels()
|
||
|
{
|
||
11 years ago
|
$labels = [];
|
||
11 years ago
|
foreach ($this->getColumnNames() as $name) {
|
||
|
if (!strcasecmp($name, 'id')) {
|
||
|
$labels[$name] = 'ID';
|
||
11 years ago
|
} else {
|
||
11 years ago
|
$label = Inflector::camel2words($name);
|
||
11 years ago
|
if (strcasecmp(substr($label, -3), ' id') === 0) {
|
||
|
$label = substr($label, 0, -3) . ' ID';
|
||
|
}
|
||
11 years ago
|
$labels[$name] = $label;
|
||
11 years ago
|
}
|
||
|
}
|
||
|
return $labels;
|
||
|
}
|
||
|
|
||
|
public function generateSearchConditions()
|
||
|
{
|
||
11 years ago
|
$columns = [];
|
||
|
if (($table = $this->getTableSchema()) === false) {
|
||
|
$class = $this->modelClass;
|
||
|
$model = new $class();
|
||
|
foreach ($model->attributes() as $attribute) {
|
||
|
$columns[$attribute] = 'unknown';
|
||
|
}
|
||
|
} else {
|
||
|
foreach ($table->columns as $column) {
|
||
|
$columns[$column->name] = $column->type;
|
||
|
}
|
||
|
}
|
||
11 years ago
|
$conditions = [];
|
||
11 years ago
|
foreach ($columns as $column => $type) {
|
||
|
switch ($type) {
|
||
11 years ago
|
case Schema::TYPE_SMALLINT:
|
||
|
case Schema::TYPE_INTEGER:
|
||
|
case Schema::TYPE_BIGINT:
|
||
|
case Schema::TYPE_BOOLEAN:
|
||
|
case Schema::TYPE_FLOAT:
|
||
|
case Schema::TYPE_DECIMAL:
|
||
|
case Schema::TYPE_MONEY:
|
||
|
case Schema::TYPE_DATE:
|
||
|
case Schema::TYPE_TIME:
|
||
|
case Schema::TYPE_DATETIME:
|
||
|
case Schema::TYPE_TIMESTAMP:
|
||
11 years ago
|
$conditions[] = "\$this->addCondition(\$query, '{$column}');";
|
||
11 years ago
|
break;
|
||
|
default:
|
||
11 years ago
|
$conditions[] = "\$this->addCondition(\$query, '{$column}', true);";
|
||
11 years ago
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $conditions;
|
||
|
}
|
||
|
|
||
|
public function generateUrlParams()
|
||
|
{
|
||
11 years ago
|
/** @var ActiveRecord $class */
|
||
|
$class = $this->modelClass;
|
||
|
$pks = $class::primaryKey();
|
||
11 years ago
|
if (count($pks) === 1) {
|
||
|
return "'id' => \$model->{$pks[0]}";
|
||
|
} else {
|
||
11 years ago
|
$params = [];
|
||
11 years ago
|
foreach ($pks as $pk) {
|
||
|
$params[] = "'$pk' => \$model->$pk";
|
||
|
}
|
||
|
return implode(', ', $params);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function generateActionParams()
|
||
|
{
|
||
11 years ago
|
/** @var ActiveRecord $class */
|
||
|
$class = $this->modelClass;
|
||
|
$pks = $class::primaryKey();
|
||
11 years ago
|
if (count($pks) === 1) {
|
||
|
return '$id';
|
||
|
} else {
|
||
|
return '$' . implode(', $', $pks);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function generateActionParamComments()
|
||
|
{
|
||
11 years ago
|
/** @var ActiveRecord $class */
|
||
|
$class = $this->modelClass;
|
||
|
$pks = $class::primaryKey();
|
||
11 years ago
|
if (($table = $this->getTableSchema()) === false) {
|
||
|
$params = [];
|
||
|
foreach ($pks as $pk) {
|
||
|
$params[] = '@param ' . (substr(strtolower($pk), -2) == 'id' ? 'integer' : 'string') . ' $' . $pk;
|
||
|
}
|
||
|
return $params;
|
||
|
}
|
||
11 years ago
|
if (count($pks) === 1) {
|
||
11 years ago
|
return ['@param ' . $table->columns[$pks[0]]->phpType . ' $id'];
|
||
11 years ago
|
} else {
|
||
11 years ago
|
$params = [];
|
||
11 years ago
|
foreach ($pks as $pk) {
|
||
|
$params[] = '@param ' . $table->columns[$pk]->phpType . ' $' . $pk;
|
||
|
}
|
||
|
return $params;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function getTableSchema()
|
||
|
{
|
||
|
/** @var ActiveRecord $class */
|
||
|
$class = $this->modelClass;
|
||
11 years ago
|
if (is_subclass_of($class, 'yii\db\ActiveRecord')) {
|
||
|
return $class::getTableSchema();
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
11 years ago
|
}
|
||
11 years ago
|
|
||
|
public function getColumnNames()
|
||
|
{
|
||
|
/** @var ActiveRecord $class */
|
||
|
$class = $this->modelClass;
|
||
|
if (is_subclass_of($class, 'yii\db\ActiveRecord')) {
|
||
|
return $class::getTableSchema()->getColumnNames();
|
||
|
} else {
|
||
|
$model = new $class();
|
||
|
return $model->attributes();
|
||
|
}
|
||
|
}
|
||
|
|
||
11 years ago
|
}
|