暫無描述
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.

BomLogic.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 weapp\Systemdoctor\logic;
  14. use think\Db;
  15. use think\Model;
  16. use weapp\Systemdoctor\logic\SystemdoctorLogic;
  17. class BomLogic
  18. {
  19. public $systemdoctorLogic;
  20. /**
  21. * 构造方法
  22. */
  23. public function __construct()
  24. {
  25. $this->systemdoctorLogic = new SystemdoctorLogic;
  26. }
  27. /**
  28. * 获取前台模板所在路径
  29. * @return [type] [description]
  30. */
  31. public function get_tpl_path()
  32. {
  33. $tpl_theme = tpCache('web.web_tpl_theme');
  34. if (empty($tpl_theme)) {
  35. if (file_exists(ROOT_PATH.'template/default')) {
  36. $tpl_theme = 'default';
  37. } else {
  38. $tpl_theme = '';
  39. }
  40. } else {
  41. if ('default' == $tpl_theme && !file_exists(ROOT_PATH.'template/default')) {
  42. $tpl_theme = '';
  43. }
  44. }
  45. $tpl_theme = TEMPLATE_PATH.$tpl_theme;
  46. return $tpl_theme;
  47. }
  48. /**
  49. * 递归读取文件夹文件
  50. */
  51. public function bom_getDirFile($directory, $dir_name = '', &$arr_file = array(), &$total = 0)
  52. {
  53. $mydir = dir($directory);
  54. while ($file = $mydir->read()) {
  55. if ((is_dir("$directory/$file")) && !in_array($file, ['.','..','uploads'])) {
  56. if ($dir_name) {
  57. $this->bom_getDirFile("$directory/$file", "$dir_name/$file", $arr_file, $total);
  58. } else {
  59. $this->bom_getDirFile("$directory/$file", "$file", $arr_file, $total);
  60. }
  61. } else {
  62. if (!in_array($file, ['.','..']) && !preg_match('/(\\\|\/)bom_backup(\\\|\/)/i', $dir_name.'/')) {
  63. $total +=1;
  64. if ($dir_name) {
  65. $arr_file[] = "$dir_name/$file";
  66. } else {
  67. $arr_file[] = "$file";
  68. }
  69. }
  70. }
  71. }
  72. $mydir->close();
  73. return $arr_file;
  74. }
  75. public function getConfData()
  76. {
  77. $row = $this->systemdoctorLogic->getConfData('bom');
  78. if (!isset($row['data']['is_autoclear'])) $row['data']['is_autoclear'] = 0;
  79. if (!isset($row['data']['is_backup'])) $row['data']['is_backup'] = 1;
  80. return $row['data'];
  81. }
  82. /**
  83. * 去除bom头部信息
  84. * @param [type] $filename [description]
  85. * @return [type] [description]
  86. */
  87. public function rewrite($filename, $confData = []) {
  88. // 清理前备份
  89. if (!empty($confData['is_backup'])) {
  90. $bak_filename = str_replace('template', 'template'.DS.'bom_backup'.DS.date('Y-m-d'), $filename);
  91. tp_mkdir(dirname($bak_filename));
  92. @copy($filename, $bak_filename);
  93. }
  94. $fp = fopen($filename, 'r');
  95. $content = fread($fp, filesize($filename));
  96. fclose($fp);
  97. $data = substr($content, 3);
  98. $fp = fopen($filename, "w");
  99. flock($fp, LOCK_EX);
  100. fwrite($fp, $data);
  101. fclose($fp);
  102. }
  103. /**
  104. * 是否是带bom头部信息
  105. * @param string $buffer [description]
  106. * @return [type] [description]
  107. */
  108. public function bom_checkCode($filename, $confData = [], &$num = 0) {
  109. $contents = file_get_contents($filename);
  110. $charset[1] = substr($contents, 0, 1);
  111. $charset[2] = substr($contents, 1, 1);
  112. $charset[3] = substr($contents, 2, 1);
  113. if (ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191) {
  114. $num++;
  115. if (!empty($confData['is_autoclear'])) {
  116. $this->rewrite($filename, $confData);
  117. return [
  118. 'code' => 0,
  119. 'msg' => "<font color=red>发现bom头部信息</font>",
  120. ];
  121. } else {
  122. return [
  123. 'code' => 0,
  124. 'msg' => "<font color=red>发现bom头部信息</font>",
  125. ];
  126. }
  127. } else {
  128. return [
  129. 'code' => 1,
  130. 'msg' => "未发现bom头部信息",
  131. ];
  132. }
  133. return $data;
  134. }
  135. }