PageRenderTime 47ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/application/models/taobaoapi/lotusphp_runtime/MVC/TemplateView.php

https://github.com/git123456789/33pu
PHP | 385 lines | 325 code | 9 blank | 51 comment | 19 complexity | 13bfa10088778f9c76cb720b92f29370 MD5 | raw file
  1. <?php
  2. class LtTemplateView
  3. {
  4. public $layout;
  5. public $layoutDir;
  6. public $template;
  7. public $templateDir;
  8. public $compiledDir;
  9. public $autoCompile; // bool
  10. public $component; // bool
  11. private $tpl_include_files;
  12. public function __construct()
  13. {
  14. /**
  15. * 自动编译通过对比文件修改时间确定是否编译,
  16. * 当禁止自动编译时, 需要手工删除编译后的文件来重新编译.
  17. *
  18. * 支持component include自动编译
  19. */
  20. $this->autoCompile = true;
  21. $this->component = false;
  22. }
  23. public function render()
  24. {
  25. if (empty($this->compiledDir))
  26. {
  27. $this->compiledDir = dirname($this->templateDir) . "/viewTpl/";
  28. }
  29. if (!empty($this->layout))
  30. {
  31. include $this->template(true);
  32. }
  33. else if ($this->component)
  34. {
  35. return; // 模板内使用{component module action}合并文件
  36. }
  37. else
  38. {
  39. include $this->template();
  40. }
  41. }
  42. /**
  43. * 返回编译后的模板路径, 如果不存在则编译生成并返回路径.
  44. * 如果文件存在且允许自动编译, 则对比模板文件和编译后的文件修改时间
  45. * 当修改模板后自支重新编译
  46. *
  47. * @param bool $islayout 是否使用布局
  48. * @return string 返回编译后的模板路径
  49. */
  50. public function template($islayout = false)
  51. {
  52. $this->layoutDir = rtrim($this->layoutDir, '\\/') . '/';
  53. $this->compiledDir = rtrim($this->compiledDir, '\\/') . '/';
  54. $this->templateDir = rtrim($this->templateDir, '\\/') . '/';
  55. if ($islayout)
  56. {
  57. $tplfile = $this->layoutDir . $this->layout . '.php';
  58. $objfile = $this->compiledDir . 'layout/' . $this->layout . '@' . $this->template . '.php';
  59. }
  60. else
  61. {
  62. $tplfile = $this->templateDir . $this->template . '.php';
  63. $objfile = $this->compiledDir . $this->template . '.php';
  64. }
  65. if (is_file($objfile))
  66. {
  67. if ($this->autoCompile)
  68. {
  69. $iscompile = true;
  70. $tpl_include_files = include($objfile);
  71. $last_modified_time = array();
  72. foreach($tpl_include_files as $f)
  73. {
  74. $last_modified_time[] = filemtime($f);
  75. }
  76. if (filemtime($objfile) == max($last_modified_time))
  77. {
  78. $iscompile = false;
  79. }
  80. }
  81. else
  82. {
  83. $iscompile = false;
  84. }
  85. }
  86. else
  87. {
  88. // 目标文件不存在,编译模板
  89. $iscompile = true;
  90. }
  91. if ($iscompile)
  92. {
  93. $this->tpl_include_files[] = $objfile;
  94. $this->tpl_include_files[] = $tplfile;
  95. $dir = pathinfo($objfile, PATHINFO_DIRNAME);
  96. if (!is_dir($dir))
  97. {
  98. if (!mkdir($dir, 0777, true))
  99. {
  100. trigger_error("Can not create $dir");
  101. }
  102. }
  103. $str = file_get_contents($tplfile);
  104. if (!$str)
  105. {
  106. trigger_error('Template file Not found or have no access!', E_USER_ERROR);
  107. }
  108. $str = $this->parse($str);
  109. if ($this->autoCompile)
  110. {
  111. $prefix = "<?php\r\nif(isset(\$iscompile)&&true==\$iscompile)\r\nreturn " . var_export(array_unique($this->tpl_include_files), true) . ";?>";
  112. $prefix = preg_replace("/([\r\n])+/", "\r\n", $prefix);
  113. $postfix = "\r\n<!--Template compilation time : " . date('Y-m-d H:i:s') . "-->\r\n";
  114. }
  115. else
  116. {
  117. $prefix = '';
  118. $postfix = '';
  119. }
  120. $str = $prefix . $str . $postfix;
  121. if (!file_put_contents($objfile, $str))
  122. {
  123. if (file_put_contents($objfile . '.tmp', $str))
  124. {
  125. copy($objfile . '.tmp', $objfile); // win下不能重命名已经存在的文件
  126. unlink($objfile . '.tmp');
  127. }
  128. }
  129. @chmod($objfile,0777);
  130. }
  131. return $objfile;
  132. }
  133. /**
  134. * 解析{}内字符串,替换php代码
  135. *
  136. * @param string $str
  137. * @return string
  138. */
  139. protected function parse($str)
  140. {
  141. $str = $this->removeComments($str);
  142. $str = $this->parseIncludeComponent($str);
  143. // 回车 换行
  144. $str = str_replace("{CR}", "<?php echo \"\\r\";?>", $str);
  145. $str = str_replace("{LF}", "<?php echo \"\\n\";?>", $str);
  146. // if else elseif
  147. $str = preg_replace("/\{if\s+(.+?)\}/", "<?php if(\\1) { ?>", $str);
  148. $str = preg_replace("/\{else\}/", "<?php } else { ?>", $str);
  149. $str = preg_replace("/\{elseif\s+(.+?)\}/", "<?php } elseif (\\1) { ?>", $str);
  150. $str = preg_replace("/\{\/if\}/", "<?php } ?>", $str);
  151. // loop
  152. $str = preg_replace("/\{loop\s+(\S+)\s+(\S+)\}/e", "\$this->addquote('<?php if(isset(\\1) && is_array(\\1)) foreach(\\1 as \\2) { ?>')", $str);
  153. $str = preg_replace("/\{loop\s+(\S+)\s+(\S+)\s+(\S+)\}/e", "\$this->addquote('<?php if(isset(\\1) && is_array(\\1)) foreach(\\1 as \\2=>\\3) { ?>')", $str);
  154. $str = preg_replace("/\{\/loop\}/", "<?php } ?>", $str);
  155. // url生成
  156. $str = preg_replace("/\{url\(([^}]+)\)\}/", "<?php echo LtObjectUtil::singleton('LtUrl')->generate(\\1);?>", $str);
  157. // 函数
  158. $str = preg_replace("/\{([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\s*\(([^{}]*)\))\}/", "<?php echo \\1;?>", $str);
  159. $str = preg_replace("/\{\\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\(([^{}]*)\))\}/", "<?php echo \$\\1;?>", $str);
  160. // 变量
  161. /**
  162. * 放弃支持$name.name.name
  163. * $str = preg_replace("/\{(\\\$[a-zA-Z0-9_\[\]\'\"\$\x7f-\xff]+)\.([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\}/", "<?php echo \\1['\\2'];?>", $str);
  164. */
  165. // 其它变量
  166. $str = preg_replace("/\{(\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\}/", "<?php echo \\1;?>", $str);
  167. $str = preg_replace("/\{(\\$[a-zA-Z0-9_\.\[\]\'\"\$\x7f-\xff]+)\}/e", "\$this->addquote('<?php echo \\1;?>')", $str);
  168. // 类->属性 类->方法
  169. $str = preg_replace("/\{(\\\$[a-zA-Z0-9_\[\]\'\"\$\x7f-\xff][+\-\>\$\'\"\,\[\]\(\)a-zA-Z0-9_\x7f-\xff]+)\}/es", "\$this->addquote('<?php echo \\1;?>')", $str);
  170. // 常量
  171. $str = preg_replace("/\{([A-Z_\x7f-\xff][A-Z0-9_\x7f-\xff]*)\}/", "<?php echo \\1;?>", $str);
  172. // 静态变量
  173. $str = preg_replace("/\{([a-zA-Z0-9_]*::?\\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\}/", "<?php echo \\1;?>", $str);
  174. $str = preg_replace("/\{([a-zA-Z0-9_]*::?\\\$[a-zA-Z0-9_\.\[\]\'\"\$\x7f-\xff]+)\}/e", "\$this->addquote('<?php echo \\1;?>')", $str);
  175. // 合并相邻php标记
  176. $str = preg_replace("/\?\>\s*\<\?php[\r\n\t ]*/", "", $str);
  177. /**
  178. * 删除空行
  179. * Dos和windows采用回车+换行CR/LF表示下一行,
  180. * 而UNIX/Linux采用换行符LF表示下一行,
  181. * 苹果机(MAC OS系统)则采用回车符CR表示下一行.
  182. * CR用符号 '\r'表示, 十进制ASCII代码是13, 十六进制代码为0x0D;
  183. * LF使用'\n'符号表示, ASCII代码是10, 十六制为0x0A.
  184. * 所以Windows平台上换行在文本文件中是使用 0d 0a 两个字节表示,
  185. * 而UNIX和苹果平台上换行则是使用0a或0d一个字节表示.
  186. *
  187. * 这里统一替换成windows平台回车换行, 第二参数考虑 \\1 保持原有
  188. */
  189. $str = preg_replace("/([\r\n])+/", "\r\n", $str);
  190. // 删除第一行
  191. $str = preg_replace("/^[\r\n]+/", "", $str);
  192. // write
  193. $str = trim($str);
  194. return $str;
  195. }
  196. /**
  197. * 变量加上单引号
  198. * 如果是数字就不加单引号, 如果已经加上单引号或者双引号保持不变
  199. */
  200. protected function addquote($var)
  201. {
  202. preg_match_all("/\[([a-zA-Z0-9_\-\.\x7f-\xff]+)\]/s", $var, $vars);
  203. foreach($vars[1] as $k => $v)
  204. {
  205. if (is_numeric($v))
  206. {
  207. $var = str_replace($vars[0][$k], "[$v]", $var);
  208. }
  209. else
  210. {
  211. $var = str_replace($vars[0][$k], "['$v']", $var);
  212. }
  213. }
  214. return str_replace("\\\"", "\"", $var);
  215. }
  216. /**
  217. * 模板中第一行可以写exit函数防止浏览
  218. * 删除行首尾空白, html javascript css注释
  219. */
  220. protected function removeComments($str, $clear = false)
  221. {
  222. $str = str_replace(array('<?php exit?>', '<?php exit;?>'), array('', ''), $str);
  223. // 删除行首尾空白
  224. $str = preg_replace("/([\r\n]+)[\t ]+/s", "\\1", $str);
  225. $str = preg_replace("/[\t ]+([\r\n]+)/s", "\\1", $str);
  226. // 删除 {} 前后的 html 注释 <!-- -->
  227. $str = preg_replace("/\<\!\-\-\s*\{(.+?)\}\s*\-\-\>/s", "{\\1}", $str);
  228. $str = preg_replace("/\<\!\-\-\s*\-\-\>/s", "", $str);
  229. // 删除 html注释 存在 < { 就不删除
  230. $str = preg_replace("/\<\!\-\-\s*[^\<\{]*\s*\-\-\>/s", "", $str);
  231. if ($clear)
  232. {
  233. $str = $this->clear($str);
  234. }
  235. return $str;
  236. }
  237. /**
  238. * 清除一部分 style script内的注释
  239. * 多行注释内部存在 / 字符就不会清除
  240. */
  241. protected function clear($str)
  242. {
  243. preg_match_all("|<script[^>]*>(.*)</script>|Usi", $str, $tvar);
  244. foreach($tvar[0] as $k => $v)
  245. {
  246. // 删除单行注释
  247. $v = preg_replace("/\/\/\s*[a-zA-Z0-9_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/", "", $v);
  248. // 删除多行注释
  249. $v = preg_replace("/\/\*[^\/]*\*\//s", "", $v);
  250. $str = str_replace($tvar[0][$k], $v, $str);
  251. }
  252. preg_match_all("|<style[^>]*>(.*)</style>|Usi", $str, $tvar);
  253. foreach($tvar[0] as $k => $v)
  254. {
  255. // 删除多行注释
  256. $v = preg_replace("/\/\*[^\/]*\*\//s", "", $v);
  257. $str = str_replace($tvar[0][$k], $v, $str);
  258. }
  259. return $str;
  260. }
  261. /**
  262. *
  263. * @todo 注意相互引用的模板嵌套会导致死循环
  264. */
  265. protected function parseIncludeComponent($str)
  266. {
  267. $count_include_component = preg_match_all("/\{include\s+(.+)\}/", $str, $tvar);
  268. $count_include_component += preg_match_all("/\{component\s+([a-zA-Z0-9\.\-_]+)\s+([a-zA-Z0-9\.\-_]+)\}/", $str, $tvar);
  269. unset($tvar);
  270. while ($count_include_component > 0)
  271. {
  272. $str = $this->parseInclude($str);
  273. $str = $this->parseComponent($str);
  274. $count_include_component = preg_match_all("/\{include\s+(.+)\}/", $str, $tvar);
  275. $count_include_component += preg_match_all("/\{component\s+([a-zA-Z0-9\.\-_]+)\s+([a-zA-Z0-9\.\-_]+)\}/", $str, $tvar);
  276. unset($tvar);
  277. }
  278. $str = $this->removeComments($str);
  279. return $str;
  280. }
  281. /**
  282. * 解析多个{include path/file}合并成一个文件
  283. *
  284. * @example {include 'debug_info'}
  285. * {include 'debug_info.php'}
  286. * {include "debug_info"}
  287. * {include "debug_info.php"}
  288. * {include $this->templateDir . $this->template}
  289. */
  290. private function parseInclude($str)
  291. {
  292. $countSubTpl = preg_match_all("/\{include\s+(.+)\}/", $str, $tvar);
  293. while ($countSubTpl > 0)
  294. {
  295. foreach($tvar[1] as $k => $subfile)
  296. {
  297. eval("\$subfile = $subfile;");
  298. if (is_file($subfile))
  299. {
  300. $findfile = $subfile;
  301. }
  302. else if (is_file($subfile . '.php'))
  303. {
  304. $findfile = $subfile . '.php';
  305. }
  306. else if (is_file($this->templateDir . $subfile))
  307. {
  308. $findfile = $this->templateDir . $subfile;
  309. }
  310. else if (is_file($this->templateDir . $subfile . '.php'))
  311. {
  312. $findfile = $this->templateDir . $subfile . '.php';
  313. }
  314. else
  315. {
  316. $findfile = '';
  317. }
  318. if (!empty($findfile))
  319. {
  320. $subTpl = file_get_contents($findfile);
  321. $this->tpl_include_files[] = $findfile;
  322. }
  323. else
  324. {
  325. // 找不到文件
  326. $subTpl = 'SubTemplate not found:' . $subfile;
  327. }
  328. $str = str_replace($tvar[0][$k], $subTpl, $str);
  329. }
  330. $countSubTpl = preg_match_all("/\{include\s+(.+)\}/", $str, $tvar);
  331. }
  332. return $str;
  333. }
  334. /**
  335. * 解析多个{component module action}合并成一个文件
  336. */
  337. private function parseComponent($str)
  338. {
  339. $countCom = preg_match_all("/\{component\s+([a-zA-Z0-9\.\-_]+)\s+([a-zA-Z0-9\.\-_]+)\}/", $str, $tvar);
  340. while ($countCom > 0)
  341. {
  342. $i = 0;
  343. while ($i < $countCom)
  344. {
  345. $comfile = $this->templateDir . "component/" . $tvar[1][$i] . '-' . $tvar[2][$i] . '.php';
  346. if (is_file($comfile))
  347. {
  348. $subTpl = file_get_contents($comfile);
  349. $this->tpl_include_files[] = $comfile;
  350. }
  351. else
  352. {
  353. $subTpl = 'SubTemplate not found:' . $comfile;
  354. }
  355. ////////////////////////////////////////////////////////////////////////////
  356. $module = $tvar[1][$i];
  357. $action = $tvar[2][$i];
  358. $subTpl = "<?php
  359. \$dispatcher = LtObjectUtil::singleton('LtDispatcher');
  360. \$dispatcher->dispatchComponent('$module', '$action', \$this->context);
  361. \$comdata = \$dispatcher->data;
  362. unset(\$dispatcher);
  363. ?>
  364. " . $subTpl;
  365. ////////////////////////////////////////////////////////////////////////////
  366. $str = str_replace($tvar[0][$i], $subTpl, $str);
  367. $i++;
  368. }
  369. $countCom = preg_match_all("/\{component\s+([a-zA-Z0-9\.\-_]+)\s+([a-zA-Z0-9\.\-_]+)\}/", $str, $tvar);
  370. }
  371. return $str;
  372. }
  373. }