MhtFileMaker.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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;
  12. class MhtFileMaker{
  13. var $config = array();
  14. var $headers = array();
  15. var $headers_exists = array();
  16. var $files = array();
  17. var $boundary;
  18. var $dir_base;
  19. var $page_first;
  20. function MhtFile($config = array()){
  21. }
  22. function SetHeader($header){
  23. $this->headers[] = $header;
  24. $key = strtolower(substr($header, 0, strpos($header, ':')));
  25. $this->headers_exists[$key] = TRUE;
  26. }
  27. function SetFrom($from){
  28. $this->SetHeader("From: $from");
  29. }
  30. function SetSubject($subject){
  31. $this->SetHeader("Subject: $subject");
  32. }
  33. function SetDate($date = NULL, $istimestamp = FALSE){
  34. if ($date == NULL) {
  35. $date = time();
  36. }
  37. if ($istimestamp == TRUE) {
  38. $date = date('D, d M Y H:i:s O', $date);
  39. }
  40. $this->SetHeader("Date: $date");
  41. }
  42. function SetBoundary($boundary = NULL){
  43. if ($boundary == NULL) {
  44. $this->boundary = '--' . strtoupper(md5(mt_rand())) . '_MULTIPART_MIXED';
  45. } else {
  46. $this->boundary = $boundary;
  47. }
  48. }
  49. function SetBaseDir($dir){
  50. $this->dir_base = str_replace("\\", "/", realpath($dir));
  51. }
  52. function SetFirstPage($filename){
  53. $this->page_first = str_replace("\\", "/", realpath("{$this->dir_base}/$filename"));
  54. }
  55. function AutoAddFiles(){
  56. if (!isset($this->page_first)) {
  57. exit ('Not set the first page.');
  58. }
  59. $filepath = str_replace($this->dir_base, '', $this->page_first);
  60. $filepath = 'http://mhtfile' . $filepath;
  61. $this->AddFile($this->page_first, $filepath, NULL);
  62. $this->AddDir($this->dir_base);
  63. }
  64. function AddDir($dir){
  65. $handle_dir = opendir($dir);
  66. while ($filename = readdir($handle_dir)) {
  67. if (($filename!='.') && ($filename!='..') && ("$dir/$filename"!=$this->page_first)) {
  68. if (is_dir("$dir/$filename")) {
  69. $this->AddDir("$dir/$filename");
  70. } elseif (is_file("$dir/$filename")) {
  71. $filepath = str_replace($this->dir_base, '', "$dir/$filename");
  72. $filepath = 'http://mhtfile' . $filepath;
  73. $this->AddFile("$dir/$filename", $filepath, NULL);
  74. }
  75. }
  76. }
  77. closedir($handle_dir);
  78. }
  79. function AddFile($filename, $filepath = NULL, $encoding = NULL){
  80. if ($filepath == NULL) {
  81. $filepath = $filename;
  82. }
  83. $mimetype = $this->GetMimeType($filename);
  84. $filecont = file_get_contents($filename);
  85. $this->AddContents($filepath, $mimetype, $filecont, $encoding);
  86. }
  87. function AddContents($filepath, $mimetype, $filecont, $encoding = NULL){
  88. if ($encoding == NULL) {
  89. $filecont = chunk_split(base64_encode($filecont), 76);
  90. $encoding = 'base64';
  91. }
  92. $this->files[] = array('filepath' => $filepath,
  93. 'mimetype' => $mimetype,
  94. 'filecont' => $filecont,
  95. 'encoding' => $encoding);
  96. }
  97. function CheckHeaders(){
  98. if (!array_key_exists('date', $this->headers_exists)) {
  99. $this->SetDate(NULL, TRUE);
  100. }
  101. if ($this->boundary == NULL) {
  102. $this->SetBoundary();
  103. }
  104. }
  105. function CheckFiles(){
  106. if (count($this->files) == 0) {
  107. return FALSE;
  108. } else {
  109. return TRUE;
  110. }
  111. }
  112. function GetFile(){
  113. $this->CheckHeaders();
  114. if (!$this->CheckFiles()) {
  115. exit ('No file was added.');
  116. }
  117. $contents = implode("\r\n", $this->headers);
  118. $contents .= "\r\n";
  119. $contents .= "MIME-Version: 1.0\r\n";
  120. $contents .= "Content-Type: multipart/related;\r\n";
  121. $contents .= "\tboundary=\"{$this->boundary}\";\r\n";
  122. $contents .= "\ttype=\"" . $this->files[0]['mimetype'] . "\"\r\n";
  123. $contents .= "X-MimeOLE: Produced By Mht File Maker v1.0 beta\r\n";
  124. $contents .= "\r\n";
  125. $contents .= "This is a multi-part message in MIME format.\r\n";
  126. $contents .= "\r\n";
  127. foreach ($this->files as $file) {
  128. $contents .= "--{$this->boundary}\r\n";
  129. $contents .= "Content-Type: $file[mimetype]\r\n";
  130. $contents .= "Content-Transfer-Encoding: $file[encoding]\r\n";
  131. $contents .= "Content-Location: $file[filepath]\r\n";
  132. $contents .= "\r\n";
  133. $contents .= $file['filecont'];
  134. $contents .= "\r\n";
  135. }
  136. $contents .= "--{$this->boundary}--\r\n";
  137. return $contents;
  138. }
  139. function MakeFile($filename){
  140. $contents = $this->GetFile();
  141. $fp = fopen($filename, 'w');
  142. fwrite($fp, $contents);
  143. fclose($fp);
  144. }
  145. function GetMimeType($filename){
  146. $pathinfo = pathinfo($filename);
  147. switch ($pathinfo['extension']) {
  148. case 'htm': $mimetype = 'text/html'; break;
  149. case 'html': $mimetype = 'text/html'; break;
  150. case 'txt': $mimetype = 'text/plain'; break;
  151. case 'cgi': $mimetype = 'text/plain'; break;
  152. case 'php': $mimetype = 'text/plain'; break;
  153. case 'css': $mimetype = 'text/css'; break;
  154. case 'jpg': $mimetype = 'image/jpeg'; break;
  155. case 'jpeg': $mimetype = 'image/jpeg'; break;
  156. case 'jpe': $mimetype = 'image/jpeg'; break;
  157. case 'gif': $mimetype = 'image/gif'; break;
  158. case 'png': $mimetype = 'image/png'; break;
  159. default: $mimetype = 'application/octet-stream'; break;
  160. }
  161. return $mimetype;
  162. }
  163. }