TOP-framework/framework/library/Controller.php

137 lines
2.7 KiB
PHP

<?php
namespace top\library;
use top\library\http\Request;
use top\traits\Json;
/**
* 基础控制器
* @author topnuomi 2018年11月23日
*/
abstract class Controller
{
use Json;
/**
* 请求类实例
* @var Request
*/
protected $request = null;
/**
* URI
* @var string
*/
protected $uri = null;
/**
* 控制器
* @var string
*/
protected $controller = null;
/**
* 控制器全限定名
* @var string
*/
protected $controllerFullName = null;
/**
* 方法
* @var string
*/
protected $method = null;
/**
* 控制器基类构造方法
* @param Request $request
*/
public function __construct(Request $request)
{
$this->request = $request;
$this->uri = $request->uri();
$this->controller = $request->controller();
$this->controllerFullName = $request->controllerFullName();
$this->method = $request->method();
}
/**
* 输出JSON数据
* @param $msg
* @param int $code
* @param array $data
* @return mixed
*/
protected function json($msg, $code = 1, $data = [])
{
return $this->returnJson($msg, $code, $data);
}
/**
* 缓存页面(具体视图驱动完成此功能)
* @param bool $param
* @return $this
*/
protected function cache($param = true)
{
view_cache($param);
return $this;
}
/**
* 赋值到视图
* @param $name
* @param $value
*/
protected function param($name, $value)
{
view_param($name, $value);
}
/**
* 渲染视图
* @param string $file
* @param array $param
* @param bool $cache
* @return mixed
*/
protected function view($file = '', $param = [], $cache = false)
{
return view($file, $param, $cache);
}
/**
* 跳转
* @param $url
*/
protected function redirect($url)
{
return redirect($url);
}
/**
* 显示提示页面
* @param $message
* @param string $url
* @param int $sec
* @return false|mixed|string
*/
protected function tips($message, $url = '', $sec = 3)
{
if (request()->isAjax()) {
return $this->json($message, '', 'tips', ['url' => $url, 'sec' => $sec]);
} else {
$viewConfig = Config::instance()->get('view');
$tipsTemplate = $viewConfig['dir'] . 'tips.' . $viewConfig['ext'];
(!file_exists($tipsTemplate)) && file_put_contents($tipsTemplate, '');
return view('tips', [
'message' => $message,
'url' => $url,
'sec' => $sec
]);
}
}
}