mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
ComposerUpdate
This commit is contained in:
parent
efb6d29058
commit
b235e03c17
8
vendor/composer/installed.json
vendored
8
vendor/composer/installed.json
vendored
@ -401,12 +401,12 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||||
"reference": "f8f4cbf479a0a43a00bcf59a57113e1e2d2d8dff"
|
"reference": "133208dd758a04629de74e740878fa94a71bf4ec"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/f8f4cbf479a0a43a00bcf59a57113e1e2d2d8dff",
|
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/133208dd758a04629de74e740878fa94a71bf4ec",
|
||||||
"reference": "f8f4cbf479a0a43a00bcf59a57113e1e2d2d8dff",
|
"reference": "133208dd758a04629de74e740878fa94a71bf4ec",
|
||||||
"shasum": "",
|
"shasum": "",
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
{
|
{
|
||||||
@ -426,7 +426,7 @@
|
|||||||
"qiniu/php-sdk": "^7.2",
|
"qiniu/php-sdk": "^7.2",
|
||||||
"topthink/framework": "5.1.*"
|
"topthink/framework": "5.1.*"
|
||||||
},
|
},
|
||||||
"time": "2019-11-28T10:43:13+00:00",
|
"time": "2019-11-29T02:10:05+00:00",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"installation-source": "dist",
|
"installation-source": "dist",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
@ -27,6 +27,7 @@ use think\App;
|
|||||||
use think\Container;
|
use think\Container;
|
||||||
use think\db\Query;
|
use think\db\Query;
|
||||||
use think\exception\HttpResponseException;
|
use think\exception\HttpResponseException;
|
||||||
|
use think\Response;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 标准控制器基类
|
* 标准控制器基类
|
||||||
@ -68,6 +69,7 @@ abstract class Controller extends \stdClass
|
|||||||
{
|
{
|
||||||
$this->app = $app;
|
$this->app = $app;
|
||||||
$this->request = $app->request;
|
$this->request = $app->request;
|
||||||
|
// 控制器注入容器
|
||||||
Container::set('library\Controller', $this);
|
Container::set('library\Controller', $this);
|
||||||
if (in_array($this->request->action(), get_class_methods(__CLASS__))) {
|
if (in_array($this->request->action(), get_class_methods(__CLASS__))) {
|
||||||
$this->error('Access without permission.');
|
$this->error('Access without permission.');
|
||||||
@ -76,13 +78,17 @@ abstract class Controller extends \stdClass
|
|||||||
$this->initialize();
|
$this->initialize();
|
||||||
// 控制器后置操作
|
// 控制器后置操作
|
||||||
if (method_exists($this, $method = "_{$this->request->action()}_{$this->request->method()}")) {
|
if (method_exists($this, $method = "_{$this->request->action()}_{$this->request->method()}")) {
|
||||||
$this->app->hook->add('app_end', function (\think\Response $response) use ($method) {
|
$this->app->hook->add('app_end', function (Response $response) use ($method) {
|
||||||
try {
|
try {
|
||||||
[ob_start(), ob_clean()];
|
[ob_start(), ob_clean()];
|
||||||
call_user_func_array([$this, $method], $this->request->route());
|
$return = call_user_func_array([$this, $method], $this->request->route());
|
||||||
|
if (is_string($return)) {
|
||||||
|
$response->content($response->getContent() . $return);
|
||||||
|
} elseif ($return instanceof Response) {
|
||||||
|
$this->__mergeResponse($response, $return);
|
||||||
|
}
|
||||||
} catch (HttpResponseException $exception) {
|
} catch (HttpResponseException $exception) {
|
||||||
$end = $exception->getResponse();
|
$this->__mergeResponse($response, $exception->getResponse());
|
||||||
$response->code($end->getCode())->header($end->getHeader())->content($response->getContent() . $end->getContent());
|
|
||||||
} catch (\Exception $exception) {
|
} catch (\Exception $exception) {
|
||||||
throw $exception;
|
throw $exception;
|
||||||
}
|
}
|
||||||
@ -90,13 +96,24 @@ abstract class Controller extends \stdClass
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 合并请求对象
|
||||||
|
* @param Response $response 目标响应对象
|
||||||
|
* @param Response $source 数据源响应对象
|
||||||
|
* @return Response
|
||||||
|
*/
|
||||||
|
private function __mergeResponse(Response $response, Response $source)
|
||||||
|
{
|
||||||
|
$response->code($source->getCode())->content($response->getContent() . $source->getContent());
|
||||||
|
foreach ($source->getHeader() as $name => $value) if (!empty($name) && is_string($name)) $response->header($name, $value);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 控制器初始化
|
* 控制器初始化
|
||||||
* @return $this
|
|
||||||
*/
|
*/
|
||||||
protected function initialize()
|
protected function initialize()
|
||||||
{
|
{
|
||||||
return $this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -213,8 +230,8 @@ abstract class Controller extends \stdClass
|
|||||||
/**
|
/**
|
||||||
* 快捷分页逻辑器
|
* 快捷分页逻辑器
|
||||||
* @param string|Query $dbQuery
|
* @param string|Query $dbQuery
|
||||||
* @param boolean $isPage 是否启用分页
|
* @param boolean $page 是否启用分页
|
||||||
* @param boolean $isDisplay 是否渲染模板
|
* @param boolean $display 是否渲染模板
|
||||||
* @param boolean $total 集合分页记录数
|
* @param boolean $total 集合分页记录数
|
||||||
* @param integer $limit 集合每页记录数
|
* @param integer $limit 集合每页记录数
|
||||||
* @return array
|
* @return array
|
||||||
@ -224,16 +241,16 @@ abstract class Controller extends \stdClass
|
|||||||
* @throws \think\exception\DbException
|
* @throws \think\exception\DbException
|
||||||
* @throws \think\exception\PDOException
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
protected function _page($dbQuery, $isPage = true, $isDisplay = true, $total = false, $limit = 0)
|
protected function _page($dbQuery, $page = true, $display = true, $total = false, $limit = 0)
|
||||||
{
|
{
|
||||||
return PageHelper::instance()->init($dbQuery, $isPage, $isDisplay, $total, $limit);
|
return PageHelper::instance()->init($dbQuery, $page, $display, $total, $limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 快捷表单逻辑器
|
* 快捷表单逻辑器
|
||||||
* @param string|Query $dbQuery
|
* @param string|Query $dbQuery
|
||||||
* @param string $tpl 模板名称
|
* @param string $template 模板名称
|
||||||
* @param string $pkField 指定数据对象主键
|
* @param string $field 指定数据对象主键
|
||||||
* @param array $where 额外更新条件
|
* @param array $where 额外更新条件
|
||||||
* @param array $data 表单扩展数据
|
* @param array $data 表单扩展数据
|
||||||
* @return array|boolean
|
* @return array|boolean
|
||||||
@ -243,24 +260,24 @@ abstract class Controller extends \stdClass
|
|||||||
* @throws \think\exception\DbException
|
* @throws \think\exception\DbException
|
||||||
* @throws \think\exception\PDOException
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
protected function _form($dbQuery, $tpl = '', $pkField = '', $where = [], $data = [])
|
protected function _form($dbQuery, $template = '', $field = '', $where = [], $data = [])
|
||||||
{
|
{
|
||||||
return FormHelper::instance()->init($dbQuery, $tpl, $pkField, $where, $data);
|
return FormHelper::instance()->init($dbQuery, $template, $field, $where, $data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 快捷更新逻辑器
|
* 快捷更新逻辑器
|
||||||
* @param string|Query $dbQuery
|
* @param string|Query $dbQuery
|
||||||
* @param array $data 表单扩展数据
|
* @param array $data 表单扩展数据
|
||||||
* @param string $pkField 数据对象主键
|
* @param string $field 数据对象主键
|
||||||
* @param array $where 额外更新条件
|
* @param array $where 额外更新条件
|
||||||
* @return boolean
|
* @return boolean
|
||||||
* @throws \think\Exception
|
* @throws \think\Exception
|
||||||
* @throws \think\exception\PDOException
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
protected function _save($dbQuery, $data = [], $pkField = '', $where = [])
|
protected function _save($dbQuery, $data = [], $field = '', $where = [])
|
||||||
{
|
{
|
||||||
return SaveHelper::instance()->init($dbQuery, $data, $pkField, $where);
|
return SaveHelper::instance()->init($dbQuery, $data, $field, $where);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -289,16 +306,16 @@ abstract class Controller extends \stdClass
|
|||||||
/**
|
/**
|
||||||
* 快捷删除逻辑器
|
* 快捷删除逻辑器
|
||||||
* @param string|Query $dbQuery
|
* @param string|Query $dbQuery
|
||||||
* @param string $pkField 数据对象主键
|
* @param string $field 数据对象主键
|
||||||
* @param array $where 额外更新条件
|
* @param array $where 额外更新条件
|
||||||
* @return boolean|null
|
* @return boolean|null
|
||||||
* @return boolean|null
|
* @return boolean|null
|
||||||
* @throws \think\Exception
|
* @throws \think\Exception
|
||||||
* @throws \think\exception\PDOException
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
protected function _delete($dbQuery, $pkField = '', $where = [])
|
protected function _delete($dbQuery, $field = '', $where = [])
|
||||||
{
|
{
|
||||||
return DeleteHelper::instance()->init($dbQuery, $pkField, $where);
|
return DeleteHelper::instance()->init($dbQuery, $field, $where);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -121,7 +121,7 @@ class SystemService extends Service
|
|||||||
public function putDebug($data, $new = false, $file = null)
|
public function putDebug($data, $new = false, $file = null)
|
||||||
{
|
{
|
||||||
if (is_null($file)) $file = $this->app->getRuntimePath() . date('Ymd') . '.txt';
|
if (is_null($file)) $file = $this->app->getRuntimePath() . date('Ymd') . '.txt';
|
||||||
$str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true)) . PHP_EOL;
|
$str = (is_string($data) ? $data : ((is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true))) . PHP_EOL;
|
||||||
$new ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND);
|
$new ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user