Controller.class.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace Think;
  12. /**
  13. * ThinkPHP 控制器基类 抽象类
  14. */
  15. abstract class Controller {
  16. /**
  17. * 视图实例对象
  18. * @var view
  19. * @access protected
  20. */
  21. protected $view = null;
  22. /**
  23. * 控制器参数
  24. * @var config
  25. * @access protected
  26. */
  27. protected $config = array();
  28. /**
  29. * 架构函数 取得模板对象实例
  30. * @access public
  31. */
  32. public function __construct() {
  33. //实例化视图类
  34. $this->view = Think::instance('Think\View');
  35. //控制器初始化
  36. if(method_exists($this,'_initialize'))
  37. $this->_initialize();
  38. }
  39. /**
  40. * 模板显示 调用内置的模板引擎显示方法,
  41. * @access protected
  42. * @param string $templateFile 指定要调用的模板文件
  43. * 默认为空 由系统自动定位模板文件
  44. * @param string $charset 输出编码
  45. * @param string $contentType 输出类型
  46. * @param string $content 输出内容
  47. * @param string $prefix 模板缓存前缀
  48. * @return void
  49. */
  50. protected function display($templateFile='',$charset='',$contentType='',$content='',$prefix='') {
  51. $this->view->display($templateFile,$charset,$contentType,$content,$prefix);
  52. }
  53. /**
  54. * 输出内容文本可以包括Html 并支持内容解析
  55. * @access protected
  56. * @param string $content 输出内容
  57. * @param string $charset 模板输出字符集
  58. * @param string $contentType 输出类型
  59. * @param string $prefix 模板缓存前缀
  60. * @return mixed
  61. */
  62. protected function show($content,$charset='',$contentType='',$prefix='') {
  63. $this->view->display('',$charset,$contentType,$content,$prefix);
  64. }
  65. /**
  66. * 获取输出页面内容
  67. * 调用内置的模板引擎fetch方法,
  68. * @access protected
  69. * @param string $templateFile 指定要调用的模板文件
  70. * 默认为空 由系统自动定位模板文件
  71. * @param string $content 模板输出内容
  72. * @param string $prefix 模板缓存前缀*
  73. * @return string
  74. */
  75. protected function fetch($templateFile='',$content='',$prefix='') {
  76. return $this->view->fetch($templateFile,$content,$prefix);
  77. }
  78. /**
  79. * 模板主题设置
  80. * @access protected
  81. * @param string $theme 模版主题
  82. * @return Action
  83. */
  84. protected function theme($theme){
  85. $this->view->theme($theme);
  86. return $this;
  87. }
  88. /**
  89. * 模板变量赋值
  90. * @access protected
  91. * @param mixed $name 要显示的模板变量
  92. * @param mixed $value 变量的值
  93. * @return Action
  94. */
  95. protected function assign($name,$value='') {
  96. $this->view->assign($name,$value);
  97. return $this;
  98. }
  99. public function __set($name,$value) {
  100. $this->assign($name,$value);
  101. }
  102. /**
  103. * 取得模板显示变量的值
  104. * @access protected
  105. * @param string $name 模板显示变量
  106. * @return mixed
  107. */
  108. public function get($name='') {
  109. return $this->view->get($name);
  110. }
  111. public function __get($name) {
  112. return $this->get($name);
  113. }
  114. /**
  115. * 检测模板变量的值
  116. * @access public
  117. * @param string $name 名称
  118. * @return boolean
  119. */
  120. public function __isset($name) {
  121. return $this->get($name);
  122. }
  123. /**
  124. * 魔术方法 有不存在的操作的时候执行
  125. * @access public
  126. * @param string $method 方法名
  127. * @param array $args 参数
  128. * @return mixed
  129. */
  130. public function __call($method,$args) {
  131. if( 0 === strcasecmp($method,ACTION_NAME.C('ACTION_SUFFIX'))) {
  132. if(method_exists($this,'_empty')) {
  133. // 如果定义了_empty操作 则调用
  134. $this->_empty($method,$args);
  135. }elseif(file_exists_case($this->view->parseTemplate())){
  136. // 检查是否存在默认模版 如果有直接输出模版
  137. $this->display();
  138. }else{
  139. E(L('_ERROR_ACTION_').':'.ACTION_NAME);
  140. }
  141. }else{
  142. E(__CLASS__.':'.$method.L('_METHOD_NOT_EXIST_'));
  143. return;
  144. }
  145. }
  146. /**
  147. * 操作错误跳转的快捷方法
  148. * @access protected
  149. * @param string $message 错误信息
  150. * @param string $jumpUrl 页面跳转地址
  151. * @param mixed $ajax 是否为Ajax方式 当数字时指定跳转时间
  152. * @return void
  153. */
  154. protected function error($message='',$jumpUrl='',$ajax=false) {
  155. $this->dispatchJump($message,0,$jumpUrl,$ajax);
  156. }
  157. /**
  158. * 操作成功跳转的快捷方法
  159. * @access protected
  160. * @param string $message 提示信息
  161. * @param string $jumpUrl 页面跳转地址
  162. * @param mixed $ajax 是否为Ajax方式 当数字时指定跳转时间
  163. * @return void
  164. */
  165. protected function success($message='',$jumpUrl='',$ajax=false) {
  166. $this->dispatchJump($message,1,$jumpUrl,$ajax);
  167. }
  168. /**
  169. * Ajax方式返回数据到客户端
  170. * @access protected
  171. * @param mixed $data 要返回的数据
  172. * @param String $type AJAX返回数据格式
  173. * @param int $json_option 传递给json_encode的option参数
  174. * @return void
  175. */
  176. protected function ajaxReturn($data,$type='',$json_option=0) {
  177. if(empty($type)) $type = C('DEFAULT_AJAX_RETURN');
  178. switch (strtoupper($type)){
  179. case 'JSON' :
  180. // 返回JSON数据格式到客户端 包含状态信息
  181. header('Content-Type:application/json; charset=utf-8');
  182. $data = json_encode($data,$json_option);
  183. break;
  184. case 'JSONP':
  185. // 返回JSON数据格式到客户端 包含状态信息
  186. header('Content-Type:application/json; charset=utf-8');
  187. $handler = isset($_GET[C('VAR_JSONP_HANDLER')]) ? $_GET[C('VAR_JSONP_HANDLER')] : C('DEFAULT_JSONP_HANDLER');
  188. $data = $handler.'('.json_encode($data,$json_option).');';
  189. break;
  190. case 'EVAL' :
  191. // 返回可执行的js脚本
  192. header('Content-Type:text/html; charset=utf-8');
  193. break;
  194. }
  195. exit($data);
  196. }
  197. /**
  198. * Action跳转(URL重定向) 支持指定模块和延时跳转
  199. * @access protected
  200. * @param string $url 跳转的URL表达式
  201. * @param array $params 其它URL参数
  202. * @param integer $delay 延时跳转的时间 单位为秒
  203. * @param string $msg 跳转提示信息
  204. * @return void
  205. */
  206. protected function redirect($url,$params=array(),$delay=0,$msg='') {
  207. $url = U($url,$params);
  208. redirect($url,$delay,$msg);
  209. }
  210. /**
  211. * 默认跳转操作 支持错误导向和正确跳转
  212. * 调用模板显示 默认为public目录下面的success页面
  213. * 提示页面为可配置 支持模板标签
  214. * @param string $message 提示信息
  215. * @param Boolean $status 状态
  216. * @param string $jumpUrl 页面跳转地址
  217. * @param mixed $ajax 是否为Ajax方式 当数字时指定跳转时间
  218. * @access private
  219. * @return void
  220. */
  221. private function dispatchJump($message,$status=1,$jumpUrl='',$ajax=false) {
  222. if(true === $ajax || IS_AJAX) {// AJAX提交
  223. $data = is_array($ajax)?$ajax:array();
  224. $data['info'] = $message;
  225. $data['status'] = $status;
  226. $data['url'] = $jumpUrl;
  227. $this->ajaxReturn($data);
  228. }
  229. if(is_int($ajax)) $this->assign('waitSecond',$ajax);
  230. if(!empty($jumpUrl)) $this->assign('jumpUrl',$jumpUrl);
  231. // 提示标题
  232. $this->assign('msgTitle',$status? L('_OPERATION_SUCCESS_') : L('_OPERATION_FAIL_'));
  233. //如果设置了关闭窗口,则提示完毕后自动关闭窗口
  234. if($this->get('closeWin')) $this->assign('jumpUrl','javascript:window.close();');
  235. $this->assign('status',$status); // 状态
  236. //保证输出不受静态缓存影响
  237. C('HTML_CACHE_ON',false);
  238. if($status) { //发送成功信息
  239. $this->assign('message',$message);// 提示信息
  240. // 成功操作后默认停留1秒
  241. if(!isset($this->waitSecond)) $this->assign('waitSecond','1');
  242. // 默认操作成功自动返回操作前页面
  243. if(!isset($this->jumpUrl)) $this->assign("jumpUrl",$_SERVER["HTTP_REFERER"]);
  244. $this->display(C('TMPL_ACTION_SUCCESS'));
  245. }else{
  246. $this->assign('error',$message);// 提示信息
  247. //发生错误时候默认停留3秒
  248. if(!isset($this->waitSecond)) $this->assign('waitSecond','3');
  249. // 默认发生错误的话自动返回上页
  250. if(!isset($this->jumpUrl)) $this->assign('jumpUrl',"javascript:history.back(-1);");
  251. $this->display(C('TMPL_ACTION_ERROR'));
  252. // 中止执行 避免出错后继续执行
  253. exit ;
  254. }
  255. }
  256. }