141 lines
3.6 KiB
PHP
141 lines
3.6 KiB
PHP
<?php
|
|
namespace JaguarJack\Generator\Factory;
|
|
|
|
use catcher\exceptions\FailedException;
|
|
use JaguarJack\Generator\Template\Controller as Template;
|
|
use think\helper\Str;
|
|
|
|
class Controller extends Factory
|
|
{
|
|
protected $methods = [];
|
|
|
|
/**
|
|
*
|
|
* @time 2020年04月27日
|
|
* @param $params
|
|
* @return bool|string|string[]
|
|
*/
|
|
public function done($params)
|
|
{
|
|
if (!$params['controller']) {
|
|
return false;
|
|
}
|
|
|
|
$template = new Template();
|
|
// parse controller
|
|
[$className, $namespace] = $this->parseFilename($params['controller']);
|
|
if (!$className) {
|
|
throw new FailedException('未填写控制器名称');
|
|
}
|
|
|
|
// parse model
|
|
[$model, $modelNamespace] = $this->parseFilename($params['model']);
|
|
$content = $template->header() .
|
|
$template->nameSpace($namespace) .
|
|
str_replace('{USE}', $model ? 'use ' . $params['model'] .';' : '', $template->uses()) .
|
|
$template->createClass($className);
|
|
|
|
|
|
$content = str_replace('{CONTENT}', ($model ? $template->construct($model) : '') . rtrim($this->content($params, $template), "\r\n"), $content);
|
|
|
|
// 写入成功之后
|
|
if (file_put_contents($this->getGeneratePath($params['controller']), $content)) {
|
|
(new Route())->controller($params['controller'])
|
|
->restful($params['restful'])
|
|
->methods($this->parseOtherMethods($params['other_function']))
|
|
->done();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* content
|
|
*
|
|
* @time 2020年04月27日
|
|
* @param $params
|
|
* @param $template
|
|
* @return string
|
|
*/
|
|
protected function content($params, $template)
|
|
{
|
|
$content = '';
|
|
|
|
if ($params['restful']) {
|
|
$methods = $this->restful();
|
|
$this->methods = array_merge($this->methods, $methods);
|
|
foreach ($methods as $method) {
|
|
$content .= $template->{$method[0]}();
|
|
}
|
|
}
|
|
|
|
if (!empty($params['other_function'])) {
|
|
$others = $this->parseOtherMethods($params['other_function']);
|
|
$this->methods = array_merge($this->methods, $others);
|
|
foreach ($others as $other) {
|
|
$content .= $template->otherFunction($other[0], $other[1]);
|
|
}
|
|
}
|
|
|
|
return $content;
|
|
}
|
|
/**
|
|
* parse filename
|
|
*
|
|
* @time 2020年04月27日
|
|
* @param $filename
|
|
* @return array
|
|
*/
|
|
public function parseFilename($filename)
|
|
{
|
|
$namespace = explode('\\', $filename);
|
|
|
|
$className = ucfirst(array_pop($namespace));
|
|
|
|
$namespace = implode('\\', $namespace);
|
|
|
|
return [$className, $namespace];
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* parse $method
|
|
* class_method/http_method
|
|
* @time 2020年04月27日
|
|
* @param $methods
|
|
* @return false|string[]
|
|
*/
|
|
public function parseOtherMethods($methods)
|
|
{
|
|
$_methods = [];
|
|
|
|
foreach ($methods as $method) {
|
|
if (Str::contains($method, '/')) {
|
|
$_methods[] = explode('/', $method);
|
|
} else {
|
|
// 默认使用 Get 方式
|
|
$_methods[] = [$method, 'get'];
|
|
}
|
|
}
|
|
|
|
return $_methods;
|
|
}
|
|
|
|
/**
|
|
* restful 路由
|
|
*
|
|
* @time 2020年04月27日
|
|
* @return \string[][]
|
|
*/
|
|
public function restful()
|
|
{
|
|
return [
|
|
['index', 'get'],
|
|
['save', 'post'],
|
|
['read', 'get'],
|
|
['update', 'put'],
|
|
['delete', 'delete'],
|
|
];
|
|
}
|
|
|
|
}
|