Controller.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com.cn
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
  9. * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
  10. * =========================================================
  11. */
  12. declare (strict_types = 1);
  13. namespace app;
  14. use think\App;
  15. use think\facade\View;
  16. use think\exception\HttpException;
  17. use think\exception\HttpResponseException;
  18. use think\exception\ValidateException;
  19. use think\Response;
  20. use think\Validate;
  21. use liliuwei\think\Jump;
  22. use think\facade\Route;
  23. use think\facade\Config;
  24. use think\facade\Env;
  25. /**
  26. * 控制器基础类
  27. */
  28. abstract class Controller
  29. {
  30. use Jump;
  31. /**
  32. * Request实例
  33. * @var \think\Request
  34. */
  35. protected $request;
  36. /**
  37. * 应用实例
  38. * @var \think\App
  39. */
  40. protected $app;
  41. /**
  42. * 是否批量验证
  43. * @var bool
  44. */
  45. protected $batchValidate = false;
  46. /**
  47. * 控制器中间件
  48. * @var array
  49. */
  50. protected $middleware = [];
  51. /**
  52. * 构造方法
  53. * @access public
  54. * @param App $app 应用对象
  55. */
  56. public function __construct()
  57. {
  58. // 控制器初始化
  59. $this->initialize();
  60. }
  61. // 初始化
  62. protected function initialize()
  63. {}
  64. /**
  65. * 加载模板输出
  66. * @access protected
  67. * @param string $template 模板文件名
  68. * @param array $vars 模板输出变量
  69. * @param array $config 模板参数
  70. * @return mixed
  71. */
  72. protected function fetch($template = '', $vars = [], $config = [])
  73. {
  74. if(!empty($config))
  75. {
  76. $config_view = Config::get('view');
  77. $config_view['tpl_replace_string'] = array_merge($config_view['tpl_replace_string'], $config);
  78. Config::set($config_view,'view');
  79. }
  80. return View::fetch($template, $vars);
  81. }
  82. /**
  83. * 渲染内容输出
  84. * @access protected
  85. * @param string $content 模板内容
  86. * @param array $vars 模板输出变量
  87. * @param array $config 模板参数
  88. * @return mixed
  89. */
  90. protected function display($content = '', $vars = [], $config = [])
  91. {
  92. return View::display($content, $vars, $config);
  93. }
  94. /**
  95. * 模板变量赋值
  96. * @access protected
  97. * @param mixed $name 要显示的模板变量
  98. * @param mixed $value 变量的值
  99. * @return $this
  100. */
  101. protected function assign($name, $value = '')
  102. {
  103. View::assign($name, $value);
  104. return $this;
  105. }
  106. /**
  107. * 操作成功跳转的快捷方法
  108. * @access protected
  109. * @param mixed $msg 提示信息
  110. * @param string $url 跳转的URL地址
  111. * @param mixed $data 返回的数据
  112. * @param integer $wait 跳转等待时间
  113. * @param array $header 发送的Header信息
  114. * @return void
  115. */
  116. protected function success($msg = '', string $url = null, $data = '', int $wait = 3, array $header = [])
  117. {
  118. if (is_null($url) && isset($_SERVER["HTTP_REFERER"])) {
  119. $url = $_SERVER["HTTP_REFERER"];
  120. } elseif ($url) {
  121. $url = (strpos($url, '://') || 0 === strpos($url, '/')) ? $url : $this->app->route->buildUrl($url);
  122. }
  123. $result = [
  124. 'code' => 1,
  125. 'msg' => $msg,
  126. 'data' => $data,
  127. 'url' => $url,
  128. 'wait' => $wait,
  129. ];
  130. $type = 'html';
  131. // 把跳转模板的渲染下沉,这样在 response_send 行为里通过getData()获得的数据是一致性的格式
  132. if ('html' == strtolower($type)) {
  133. $type = 'view';
  134. $response = Response::create(config('jump.dispatch_success_tmpl'), $type)->assign($result)->header($header);
  135. } else {
  136. $response = Response::create($result, $type)->header($header);
  137. }
  138. throw new HttpResponseException($response);
  139. }
  140. /**
  141. * 操作错误跳转的快捷方法
  142. * @access protected
  143. * @param mixed $msg 提示信息
  144. * @param string $url 跳转的URL地址
  145. * @param mixed $data 返回的数据
  146. * @param integer $wait 跳转等待时间
  147. * @param array $header 发送的Header信息
  148. * @return void
  149. */
  150. protected function error($msg = '', string $url = null, $data = '', int $wait = 3, array $header = [])
  151. {
  152. if (is_null($url)) {
  153. $url = 'javascript:history.back(-1);';
  154. } elseif ($url) {
  155. $url = (strpos($url, '://') || 0 === strpos($url, '/')) ? $url : $this->app->route->buildUrl($url);
  156. }
  157. $result = [
  158. 'code' => 0,
  159. 'msg' => $msg,
  160. 'data' => $data,
  161. 'url' => $url,
  162. 'wait' => $wait,
  163. ];
  164. $type = 'html';
  165. if ('html' == strtolower($type)) {
  166. $type = 'view';
  167. $response = Response::create(config('jump.dispatch_error_tmpl'), $type)->assign($result)->header($header);
  168. } else {
  169. $response = Response::create($result, $type)->header($header);
  170. }
  171. throw new HttpResponseException($response);
  172. }
  173. /**
  174. * 返回封装后的API数据到客户端
  175. * @access protected
  176. * @param mixed $data 要返回的数据
  177. * @param integer $code 返回的code
  178. * @param mixed $msg 提示信息
  179. * @param string $type 返回数据格式
  180. * @param array $header 发送的Header信息
  181. * @return void
  182. */
  183. protected function result($data, $code = 0, $msg = '', $type = '', array $header = [])
  184. {
  185. $result = [
  186. 'code' => $code,
  187. 'msg' => $msg,
  188. 'time' => time(),
  189. 'data' => $data,
  190. ];
  191. $type = 'html';
  192. $response = Response::create($result, $type)->header($header);
  193. throw new HttpResponseException($response);
  194. }
  195. /**
  196. * URL重定向
  197. * @access protected
  198. * @param string $url 跳转的URL表达式
  199. * @param integer $code http code
  200. * @param array $with 隐式传参
  201. * @return void
  202. */
  203. protected function redirect($url, $code = 302, $with = [])
  204. {
  205. $response = Response::create($url, 'redirect');
  206. $response->code($code)->with($with);
  207. throw new HttpResponseException($response);
  208. }
  209. }