Ingen beskrivning
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.

HtmlCacheLogic.php 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\common\logic;
  14. use think\Db;
  15. /**
  16. *
  17. * 页面缓存
  18. */
  19. class HtmlCacheLogic
  20. {
  21. public function __construct()
  22. {
  23. }
  24. /**
  25. * 清除首页的页面缓存文件
  26. */
  27. public function clear_index()
  28. {
  29. $web_cmsmode = tpCache('web.web_cmsmode');
  30. $html_cache_arr = config('HTML_CACHE_ARR');
  31. if (1 == intval($web_cmsmode)) { // 页面html静态永久缓存
  32. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_Index_index']['filename'].'/*_html/index*.html');
  33. if (!empty($fileList)) {
  34. foreach ($fileList as $k2 => $file) {
  35. if (file_exists($file) && preg_match('/index(_\d+)?\.html$/i', $file)) {
  36. @unlink($file);
  37. }
  38. }
  39. }
  40. } else { // 页面cache自动过期缓存
  41. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_Index_index']['filename'].'/*_cache/index/*');
  42. if (!empty($fileList)) {
  43. foreach ($fileList as $k2 => $dir) {
  44. if (file_exists($dir) && is_dir($dir)) {
  45. delFile($dir, true);
  46. }
  47. }
  48. }
  49. }
  50. }
  51. /**
  52. * 清除指定栏目的页面缓存文件
  53. * @param array $typeids 栏目ID数组
  54. */
  55. public function clear_arctype($typeids = [])
  56. {
  57. $web_cmsmode = tpCache('web.web_cmsmode');
  58. $html_cache_arr = config('HTML_CACHE_ARR');
  59. if (!empty($typeids)) {
  60. foreach ($typeids as $key => $tid) {
  61. if (1 == intval($web_cmsmode)) { // 页面html静态永久缓存
  62. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_Lists_index']['filename'].'/*_html/'.$tid.'*.html');
  63. if (!empty($fileList)) {
  64. foreach ($fileList as $k2 => $file) {
  65. if (file_exists($file) && preg_match('/'.$tid.'(_\d+)?\.html$/i', $file)) {
  66. @unlink($file);
  67. }
  68. }
  69. }
  70. } else { // 页面cache自动过期缓存
  71. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_Lists_index']['filename'].'/*_cache/'.$tid.'/*');
  72. if (!empty($fileList)) {
  73. foreach ($fileList as $k2 => $dir) {
  74. if (file_exists($dir) && is_dir($dir)) {
  75. delFile($dir, true);
  76. }
  77. }
  78. }
  79. }
  80. }
  81. } else { // 清除全部的栏目页面缓存
  82. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_Lists_index']['filename'].'/*');
  83. if (!empty($fileList)) {
  84. foreach ($fileList as $k2 => $dir) {
  85. if (file_exists($dir) && is_dir($dir)) {
  86. delFile($dir, true);
  87. }
  88. }
  89. }
  90. }
  91. $this->clear_index(); // 清除首页缓存
  92. }
  93. /**
  94. * 清除指定文档的页面缓存文件
  95. * @param array $aids 文档ID数组
  96. */
  97. public function clear_archives($aids = [])
  98. {
  99. $web_cmsmode = tpCache('web.web_cmsmode');
  100. $html_cache_arr = config('HTML_CACHE_ARR');
  101. if (!empty($aids)) {
  102. $row = Db::name('archives')->field('aid,typeid')
  103. ->where([
  104. 'aid' => ['IN', $aids],
  105. ])->select();
  106. foreach ($row as $key => $val) {
  107. $aid = $val['aid'];
  108. $typeid = $val['typeid'];
  109. if (1 == intval($web_cmsmode)) { // 页面html静态永久缓存
  110. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_View_index']['filename'].'/*_html/'.$aid.'*.html');
  111. if (!empty($fileList)) {
  112. foreach ($fileList as $k2 => $file) {
  113. if (preg_match('/'.$aid.'(_\d+)?\.html$/i', $file)) {
  114. @unlink($file);
  115. }
  116. }
  117. }
  118. } else { // 页面cache自动过期缓存
  119. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_View_index']['filename'].'/*_cache/'.$aid.'/*');
  120. if (!empty($fileList)) {
  121. foreach ($fileList as $k2 => $dir) {
  122. if (file_exists($dir) && is_dir($dir)) {
  123. delFile($dir, true);
  124. }
  125. }
  126. }
  127. }
  128. }
  129. } else { // 清除所有的文档页面缓存
  130. $fileList = glob(HTML_ROOT.'http*/'.$html_cache_arr['home_View_index']['filename'].'*');
  131. if (!empty($fileList)) {
  132. foreach ($fileList as $k2 => $dir) {
  133. if (file_exists($dir) && is_dir($dir)) {
  134. delFile($dir, true);
  135. }
  136. }
  137. }
  138. }
  139. $this->clear_arctype(); // 清除所有的栏目
  140. }
  141. }