Yii2 Bootstrap 3
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.

289 lines
6.9 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;
use Yii;
11 years ago
use ReflectionClass;
use yii\base\InvalidConfigException;
11 years ago
use yii\base\Model;
11 years ago
use yii\base\View;
11 years ago
/**
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
11 years ago
abstract class Generator extends Model
11 years ago
{
11 years ago
public $templates = array();
11 years ago
/**
11 years ago
* @var string the name of the code template that the user has selected.
* The value of this property is internally managed by this class and {@link CCodeGenerator}.
11 years ago
*/
11 years ago
public $template;
11 years ago
/**
* @return string name of the code generator
*/
11 years ago
abstract public function getName();
public function init()
11 years ago
{
11 years ago
parent::init();
if (!isset($this->templates['default'])) {
$this->templates['default'] = $this->getDefaultTemplate();
}
11 years ago
}
11 years ago
/**
* Prepares the code files to be generated.
* This is the main method that child classes should implement. It should contain the logic
* that populates the {@link files} property with a list of code files to be generated.
*/
public function prepare()
11 years ago
{
11 years ago
return array();
11 years ago
}
11 years ago
/**
* Returns a list of code templates that are required.
* Derived classes usually should override this method.
* @return array list of code templates that are required. They should be file paths
* relative to {@link templatePath}.
*/
public function requiredTemplates()
11 years ago
{
11 years ago
return array();
11 years ago
}
11 years ago
public function getViewFile()
11 years ago
{
11 years ago
$class = new ReflectionClass($this);
return dirname($class->getFileName()) . '/views/form.php';
11 years ago
}
11 years ago
public function getDefaultTemplate()
11 years ago
{
11 years ago
$class = new ReflectionClass($this);
return dirname($class->getFileName()) . '/templates';
11 years ago
}
11 years ago
public function getDescription()
11 years ago
{
11 years ago
return '';
11 years ago
}
/**
* Declares the model validation rules.
* Child classes must override this method in the following format:
* <pre>
* return array_merge(parent::rules(), array(
* ...rules for the child class...
* ));
* </pre>
* @return array validation rules
*/
public function rules()
{
return array(
11 years ago
array('template', 'required', 'message' => 'A code template must be selected.'),
11 years ago
array('template', 'validateTemplate', 'skipOnError' => true),
);
}
/**
* Checks if the named class exists (in a case sensitive manner).
* @param string $name class name to be checked
* @return boolean whether the class exists
*/
public function classExists($name)
{
return class_exists($name, false) && in_array($name, get_declared_classes());
}
/**
* Saves the generated code into files.
*/
11 years ago
public function save($files, $answers = array())
11 years ago
{
$result = true;
11 years ago
foreach ($files as $file) {
11 years ago
if ($this->confirmed($file)) {
$result = $file->save() && $result;
}
}
return $result;
}
/**
* @return string the directory that contains the template files.
11 years ago
* @throws InvalidConfigException if {@link templates} is empty or template selection is invalid
11 years ago
*/
public function getTemplatePath()
{
11 years ago
if (isset($this->templates[$this->template])) {
return $this->templates[$this->template];
11 years ago
} else {
11 years ago
throw new InvalidConfigException("Unknown template: {$this->template}");
11 years ago
}
}
/**
11 years ago
* @param CodeFile $file whether the code file should be saved
11 years ago
* @return bool whether the confirmation is found in {@link answers} with appropriate {@link operation}
*/
public function confirmed($file)
{
11 years ago
return $this->answers === null && $file->operation === CodeFile::OP_NEW
11 years ago
|| is_array($this->answers) && isset($this->answers[md5($file->path)]);
}
/**
* Generates the code using the specified code template file.
* This method is manly used in {@link generate} to generate code.
* @param string $templateFile the code template file path
* @param array $_params_ a set of parameters to be extracted and made available in the code template
* @return string the generated code
*/
11 years ago
public function render($templateFile, $params = array())
11 years ago
{
11 years ago
$view = new View;
return $view->renderFile($templateFile, $params, $this);
11 years ago
}
/**
* @return string the code generation result log.
*/
public function renderResults()
{
$output = 'Generating code using template "' . $this->templatePath . "\"...\n";
foreach ($this->files as $file) {
if ($file->error !== null) {
$output .= "<span class=\"error\">generating {$file->relativePath}<br/> {$file->error}</span>\n";
11 years ago
} elseif ($file->operation === CodeFile::OP_NEW && $this->confirmed($file)) {
11 years ago
$output .= ' generated ' . $file->relativePath . "\n";
11 years ago
} elseif ($file->operation === CodeFile::OP_OVERWRITE && $this->confirmed($file)) {
11 years ago
$output .= ' overwrote ' . $file->relativePath . "\n";
} else {
$output .= ' skipped ' . $file->relativePath . "\n";
}
}
$output .= "done!\n";
return $output;
}
/**
11 years ago
* Validates the template selection.
* This method validates whether the user selects an existing template
* and the template contains all required template files as specified in {@link requiredTemplates}.
11 years ago
*/
11 years ago
public function validateTemplate()
11 years ago
{
11 years ago
$templates = $this->templates;
if (!isset($templates[$this->template])) {
$this->addError('template', 'Invalid template selection.');
} else {
$templatePath = $this->templates[$this->template];
foreach ($this->requiredTemplates() as $template) {
if (!is_file($templatePath . '/' . $template)) {
$this->addError('template', "Unable to find the required code template file '$template'.");
11 years ago
}
}
}
}
/**
* Validates an attribute to make sure it is not taking a PHP reserved keyword.
* @param string $attribute the attribute to be validated
* @param array $params validation parameters
*/
public function validateReservedWord($attribute, $params)
{
11 years ago
static $keywords = array(
'__class__',
'__dir__',
'__file__',
'__function__',
'__line__',
'__method__',
'__namespace__',
'abstract',
'and',
'array',
'as',
'break',
'case',
'catch',
'cfunction',
'class',
'clone',
'const',
'continue',
'declare',
'default',
'die',
'do',
'echo',
'else',
'elseif',
'empty',
'enddeclare',
'endfor',
'endforeach',
'endif',
'endswitch',
'endwhile',
'eval',
'exception',
'exit',
'extends',
'final',
'final',
'for',
'foreach',
'function',
'global',
'goto',
'if',
'implements',
'include',
'include_once',
'instanceof',
'interface',
'isset',
'list',
'namespace',
'new',
'old_function',
'or',
'parent',
'php_user_filter',
'print',
'private',
'protected',
'public',
'require',
'require_once',
'return',
'static',
'switch',
'this',
'throw',
'try',
'unset',
'use',
'var',
'while',
'xor',
);
11 years ago
$value = $this->$attribute;
11 years ago
if (in_array(strtolower($value), $keywords)) {
11 years ago
$this->addError($attribute, $this->getAttributeLabel($attribute) . ' cannot take a reserved PHP keyword.');
}
}
}