Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Think.php 9.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 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\view\driver;
  12. use think\App;
  13. use think\exception\TemplateNotFoundException;
  14. use think\Loader;
  15. use think\Log;
  16. use think\Request;
  17. use think\Template;
  18. use think\Lang;
  19. class Think
  20. {
  21. // 模板引擎实例
  22. private $template;
  23. // 模板引擎参数
  24. protected $config = [
  25. // 视图基础目录(集中式)
  26. 'view_base' => '',
  27. // 模板起始路径
  28. 'view_path' => '',
  29. // 模板文件后缀
  30. 'view_suffix' => 'html',
  31. // 模板文件名分隔符
  32. 'view_depr' => DS,
  33. // 是否开启模板编译缓存,设为false则每次都会重新编译
  34. 'tpl_cache' => true,
  35. // 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写
  36. 'auto_rule' => 1,
  37. ];
  38. public function __construct($config = [])
  39. {
  40. $this->config = array_merge($this->config, $config);
  41. if (empty($this->config['view_path'])) {
  42. $this->config['view_path'] = App::$modulePath . 'view' . DS;
  43. }
  44. $this->template = new Template($this->config);
  45. }
  46. /**
  47. * 检测是否存在模板文件
  48. * @access public
  49. * @param string $template 模板文件或者模板规则
  50. * @return bool
  51. */
  52. public function exists($template)
  53. {
  54. if ('' == pathinfo($template, PATHINFO_EXTENSION)) {
  55. // 获取模板文件名
  56. $template = $this->parseTemplate($template);
  57. }
  58. return is_file($template);
  59. }
  60. /**
  61. * 渲染模板文件
  62. * @access public
  63. * @param string $template 模板文件
  64. * @param array $data 模板变量
  65. * @param array $config 模板参数
  66. * @return void
  67. */
  68. public function fetch($template, $data = [], $config = [])
  69. {
  70. if ('' == pathinfo($template, PATHINFO_EXTENSION)) {
  71. // 获取模板文件名
  72. $template = $this->parseTemplate($template);
  73. }
  74. // 模板不存在 抛出异常
  75. if (!is_file($template)) {
  76. throw new TemplateNotFoundException(Lang::get('template not exists').':' . $template, $template);
  77. }
  78. // 记录视图信息
  79. App::$debug && Log::record('[ VIEW ] ' . $template . ' [ ' . var_export(array_keys($data), true) . ' ]', 'info');
  80. $this->template->fetch($template, $data, $config);
  81. }
  82. /**
  83. * 渲染模板内容
  84. * @access public
  85. * @param string $template 模板内容
  86. * @param array $data 模板变量
  87. * @param array $config 模板参数
  88. * @return void
  89. */
  90. public function display($template, $data = [], $config = [])
  91. {
  92. $this->template->display($template, $data, $config);
  93. }
  94. /**
  95. * 自动定位模板文件
  96. * @access private
  97. * @param string $template 模板文件规则
  98. * @return string
  99. */
  100. private function parseTemplate($template)
  101. {
  102. // 分析模板文件规则
  103. $request = Request::instance();
  104. // 获取视图根目录
  105. if (strpos($template, '@')) {
  106. // 跨模块调用
  107. list($module, $template) = explode('@', $template);
  108. }
  109. if ($this->config['view_base']) {
  110. // 基础视图目录
  111. $module = isset($module) ? $module : $request->module();
  112. $path = $this->config['view_base'] . ($module ? $module . DS : '');
  113. } else {
  114. $path = isset($module) ? APP_PATH . $module . DS . 'view' . DS : $this->config['view_path'];
  115. }
  116. $depr = $this->config['view_depr'];
  117. if (0 !== strpos($template, '/')) {
  118. $template = str_replace(['/', ':'], $depr, $template);
  119. if (in_array($request->module(), ['admin']) && 'weapp' == strtolower($request->controller()) && 'execute' == strtolower($request->action())) {
  120. /*插件模板定位 by 小虎哥*/
  121. if ('' == $template) {
  122. // 如果模板文件名为空 按照默认规则定位
  123. $template = (1 == $this->config['auto_rule'] ? Loader::parseName($request->action(true)) : $request->action());
  124. } elseif (false === strpos($template, $depr)) {
  125. $template = $template;
  126. }
  127. /*--end*/
  128. } else {
  129. $controller = Loader::parseName($request->controller());
  130. if ($controller) {
  131. if ('user' == $request->module()) { // 会员中心模板切换,兼容响应式模板目录下,users目录可以灵活定义wap手机端会员中心模板 by 小虎哥
  132. $users_wap_tpl_dir = config('ey_config.users_wap_tpl_dir');
  133. $web_users_tpl_theme = config('ey_config.web_users_tpl_theme');
  134. $web_users_tpl_theme = !empty($web_users_tpl_theme) ? $web_users_tpl_theme : 'users';
  135. if (isMobile()) {
  136. if (file_exists('./template/'.TPL_THEME.'pc/'.$web_users_tpl_theme.'/'.$users_wap_tpl_dir.'/users_login.htm')) {
  137. !empty($users_wap_tpl_dir) && $web_users_tpl_theme .= $depr . $users_wap_tpl_dir;
  138. $path = str_replace('/mobile/', '/pc/', $path);
  139. }
  140. }
  141. if (empty($template)) {
  142. $template = $web_users_tpl_theme . $depr . (1 == $this->config['auto_rule'] ? Loader::parseName($request->action(true)) : $request->action());
  143. } else {
  144. $arr = explode($depr, $template);
  145. if (1 == count($arr) || (2 == count($arr) && 'users' == $arr[0])) {
  146. $template = $web_users_tpl_theme.$depr.end($arr);
  147. } else if (3 == count($arr) && 'user' == $arr[0] && 'users' == $arr[1]) {
  148. $template = $arr[0].$depr.$web_users_tpl_theme.$depr.$arr[2];
  149. }
  150. }
  151. }
  152. else if ('home' == $request->module()) {
  153. $template_tmp = str_replace('\\', '/', $template);
  154. $template_tmp = '/'.trim($template_tmp, '/').'/';
  155. if (preg_match('/\/ask\/([a-zA-Z0-9_-]+)\//i', $template_tmp)) { // 问答中心模板切换,兼容响应式模板目录下,ask目录可以灵活定义wap手机端问答中心模板 by 小虎哥
  156. $users_wap_tpl_dir = config('ey_config.users_wap_tpl_dir');
  157. $web_ask_tpl_theme = 'ask';
  158. if (isMobile()) {
  159. if (file_exists('./template/'.TPL_THEME.'pc/'.$web_ask_tpl_theme.'/'.$users_wap_tpl_dir)) {
  160. !empty($users_wap_tpl_dir) && $web_ask_tpl_theme .= $depr . $users_wap_tpl_dir;
  161. $path = str_replace('/mobile/', '/pc/', $path);
  162. }
  163. }
  164. if (empty($template)) {
  165. $template = $web_ask_tpl_theme . $depr . (1 == $this->config['auto_rule'] ? Loader::parseName($request->action(true)) : $request->action());
  166. } else {
  167. $arr = explode($depr, $template);
  168. if (1 == count($arr) || (2 == count($arr) && 'ask' == $arr[0])) {
  169. $template = $web_ask_tpl_theme.$depr.end($arr);
  170. } else if (3 == count($arr) && 'ask' == $arr[0] && 'ask' == $arr[1]) {
  171. $template = $arr[0].$depr.$web_ask_tpl_theme.$depr.$arr[2];
  172. }
  173. }
  174. }
  175. }
  176. /*end*/
  177. if ('' == $template) {
  178. // 如果模板文件名为空 按照默认规则定位
  179. $template = str_replace('.', DS, $controller) . $depr . (1 == $this->config['auto_rule'] ? Loader::parseName($request->action(true)) : $request->action());
  180. } elseif (false === strpos($template, $depr)) {
  181. $template = str_replace('.', DS, $controller) . $depr . $template;
  182. }
  183. }
  184. }
  185. } else {
  186. $template = str_replace(['/', ':'], $depr, substr($template, 1));
  187. }
  188. return $path . ltrim($template, $depr) . '.' . ltrim($this->config['view_suffix'], '.'); // 过滤多余的斜杆 by 小虎哥
  189. // return $path . ltrim($template, '/') . '.' . ltrim($this->config['view_suffix'], '.');
  190. }
  191. /**
  192. * 配置或者获取模板引擎参数
  193. * @access private
  194. * @param string|array $name 参数名
  195. * @param mixed $value 参数值
  196. * @return mixed
  197. */
  198. public function config($name, $value = null)
  199. {
  200. if (is_array($name)) {
  201. $this->template->config($name);
  202. $this->config = array_merge($this->config, $name);
  203. } elseif (is_null($value)) {
  204. return $this->template->config($name);
  205. } else {
  206. $this->template->$name = $value;
  207. $this->config[$name] = $value;
  208. }
  209. }
  210. public function __call($method, $params)
  211. {
  212. return call_user_func_array([$this->template, $method], $params);
  213. }
  214. }