Http.class.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2009 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. // $Id: Http.class.php 2504 2011-12-28 07:35:29Z liu21st $
  12. /**
  13. +------------------------------------------------------------------------------
  14. * Http 工具类
  15. * 提供一系列的Http方法
  16. +------------------------------------------------------------------------------
  17. * @category ORG
  18. * @package ORG
  19. * @subpackage Net
  20. * @author liu21st <liu21st@gmail.com>
  21. * @version $Id: Http.class.php 2504 2011-12-28 07:35:29Z liu21st $
  22. +------------------------------------------------------------------------------
  23. */
  24. class Http extends Think {
  25. /**
  26. +----------------------------------------------------------
  27. * 采集远程文件
  28. +----------------------------------------------------------
  29. * @access public
  30. +----------------------------------------------------------
  31. * @param string $remote 远程文件名
  32. * @param string $local 本地保存文件名
  33. +----------------------------------------------------------
  34. * @return mixed
  35. +----------------------------------------------------------
  36. */
  37. static public function curlDownload($remote,$local) {
  38. $cp = curl_init($remote);
  39. $fp = fopen($local,"w");
  40. curl_setopt($cp, CURLOPT_FILE, $fp);
  41. curl_setopt($cp, CURLOPT_HEADER, 0);
  42. curl_exec($cp);
  43. curl_close($cp);
  44. fclose($fp);
  45. }
  46. /**
  47. +-----------------------------------------------------------
  48. * 使用 fsockopen 通过 HTTP 协议直接访问(采集)远程文件
  49. * 如果主机或服务器没有开启 CURL 扩展可考虑使用
  50. * fsockopen 比 CURL 稍慢,但性能稳定
  51. +-----------------------------------------------------------
  52. * @static
  53. * @access public
  54. +-----------------------------------------------------------
  55. * @param string $url 远程URL
  56. * @param array $conf 其他配置信息
  57. * int limit 分段读取字符个数
  58. * string post post的内容,字符串或数组,key=value&形式
  59. * string cookie 携带cookie访问,该参数是cookie内容
  60. * string ip 如果该参数传入,$url将不被使用,ip访问优先
  61. * int timeout 采集超时时间
  62. * bool block 是否阻塞访问,默认为true
  63. +-----------------------------------------------------------
  64. * @return mixed
  65. +-----------------------------------------------------------
  66. */
  67. static public function fsockopenDownload($url, $conf = array()) {
  68. $return = '';
  69. if(!is_array($conf)) return $return;
  70. $matches = parse_url($url);
  71. !isset($matches['host']) && $matches['host'] = '';
  72. !isset($matches['path']) && $matches['path'] = '';
  73. !isset($matches['query']) && $matches['query'] = '';
  74. !isset($matches['port']) && $matches['port'] = '';
  75. $host = $matches['host'];
  76. $path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/';
  77. $port = !empty($matches['port']) ? $matches['port'] : 80;
  78. $conf_arr = array(
  79. 'limit'=>0,
  80. 'post'=>'',
  81. 'cookie'=>'',
  82. 'ip'=>'',
  83. 'timeout'=>15,
  84. 'block'=>TRUE,
  85. );
  86. foreach (array_merge($conf_arr, $conf) as $k=>$v) ${$k} = $v;
  87. if($post) {
  88. if(is_array($post))
  89. {
  90. $post = http_build_query($post);
  91. }
  92. $out = "POST $path HTTP/1.0\r\n";
  93. $out .= "Accept: */*\r\n";
  94. //$out .= "Referer: $boardurl\r\n";
  95. $out .= "Accept-Language: zh-cn\r\n";
  96. $out .= "Content-Type: application/x-www-form-urlencoded\r\n";
  97. $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";
  98. $out .= "Host: $host\r\n";
  99. $out .= 'Content-Length: '.strlen($post)."\r\n";
  100. $out .= "Connection: Close\r\n";
  101. $out .= "Cache-Control: no-cache\r\n";
  102. $out .= "Cookie: $cookie\r\n\r\n";
  103. $out .= $post;
  104. } else {
  105. $out = "GET $path HTTP/1.0\r\n";
  106. $out .= "Accept: */*\r\n";
  107. //$out .= "Referer: $boardurl\r\n";
  108. $out .= "Accept-Language: zh-cn\r\n";
  109. $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";
  110. $out .= "Host: $host\r\n";
  111. $out .= "Connection: Close\r\n";
  112. $out .= "Cookie: $cookie\r\n\r\n";
  113. }
  114. $fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
  115. if(!$fp) {
  116. return '';
  117. } else {
  118. stream_set_blocking($fp, $block);
  119. stream_set_timeout($fp, $timeout);
  120. @fwrite($fp, $out);
  121. $status = stream_get_meta_data($fp);
  122. if(!$status['timed_out']) {
  123. while (!feof($fp)) {
  124. if(($header = @fgets($fp)) && ($header == "\r\n" || $header == "\n")) {
  125. break;
  126. }
  127. }
  128. $stop = false;
  129. while(!feof($fp) && !$stop) {
  130. $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
  131. $return .= $data;
  132. if($limit) {
  133. $limit -= strlen($data);
  134. $stop = $limit <= 0;
  135. }
  136. }
  137. }
  138. @fclose($fp);
  139. return $return;
  140. }
  141. }
  142. /**
  143. +----------------------------------------------------------
  144. * 下载文件
  145. * 可以指定下载显示的文件名,并自动发送相应的Header信息
  146. * 如果指定了content参数,则下载该参数的内容
  147. +----------------------------------------------------------
  148. * @static
  149. * @access public
  150. +----------------------------------------------------------
  151. * @param string $filename 下载文件名
  152. * @param string $showname 下载显示的文件名
  153. * @param string $content 下载的内容
  154. * @param integer $expire 下载内容浏览器缓存时间
  155. +----------------------------------------------------------
  156. * @return void
  157. +----------------------------------------------------------
  158. * @throws ThinkExecption
  159. +----------------------------------------------------------
  160. */
  161. static public function download ($filename, $showname='',$content='',$expire=180) {
  162. if(is_file($filename)) {
  163. $length = filesize($filename);
  164. }elseif(is_file(UPLOAD_PATH.$filename)) {
  165. $filename = UPLOAD_PATH.$filename;
  166. $length = filesize($filename);
  167. }elseif($content != '') {
  168. $length = strlen($content);
  169. }else {
  170. throw_exception($filename.L('下载文件不存在!'));
  171. }
  172. if(empty($showname)) {
  173. $showname = $filename;
  174. }
  175. $showname = basename($showname);
  176. if(!empty($filename)) {
  177. $type = mime_content_type($filename);
  178. }else{
  179. $type = "application/octet-stream";
  180. }
  181. //发送Http Header信息 开始下载
  182. header("Pragma: public");
  183. header("Cache-control: max-age=".$expire);
  184. //header('Cache-Control: no-store, no-cache, must-revalidate');
  185. header("Expires: " . gmdate("D, d M Y H:i:s",time()+$expire) . "GMT");
  186. header("Last-Modified: " . gmdate("D, d M Y H:i:s",time()) . "GMT");
  187. header("Content-Disposition: attachment; filename=".$showname);
  188. header("Content-Length: ".$length);
  189. header("Content-type: ".$type);
  190. header('Content-Encoding: none');
  191. header("Content-Transfer-Encoding: binary" );
  192. if($content == '' ) {
  193. readfile($filename);
  194. }else {
  195. echo($content);
  196. }
  197. exit();
  198. }
  199. /**
  200. +----------------------------------------------------------
  201. * 显示HTTP Header 信息
  202. +----------------------------------------------------------
  203. * @return string
  204. +----------------------------------------------------------
  205. */
  206. static function getHeaderInfo($header='',$echo=true) {
  207. ob_start();
  208. $headers = getallheaders();
  209. if(!empty($header)) {
  210. $info = $headers[$header];
  211. echo($header.':'.$info."\n"); ;
  212. }else {
  213. foreach($headers as $key=>$val) {
  214. echo("$key:$val\n");
  215. }
  216. }
  217. $output = ob_get_clean();
  218. if ($echo) {
  219. echo (nl2br($output));
  220. }else {
  221. return $output;
  222. }
  223. }
  224. /**
  225. * HTTP Protocol defined status codes
  226. * @param int $num
  227. */
  228. static function sendHttpStatus($code) {
  229. static $_status = array(
  230. // Informational 1xx
  231. 100 => 'Continue',
  232. 101 => 'Switching Protocols',
  233. // Success 2xx
  234. 200 => 'OK',
  235. 201 => 'Created',
  236. 202 => 'Accepted',
  237. 203 => 'Non-Authoritative Information',
  238. 204 => 'No Content',
  239. 205 => 'Reset Content',
  240. 206 => 'Partial Content',
  241. // Redirection 3xx
  242. 300 => 'Multiple Choices',
  243. 301 => 'Moved Permanently',
  244. 302 => 'Found', // 1.1
  245. 303 => 'See Other',
  246. 304 => 'Not Modified',
  247. 305 => 'Use Proxy',
  248. // 306 is deprecated but reserved
  249. 307 => 'Temporary Redirect',
  250. // Client Error 4xx
  251. 400 => 'Bad Request',
  252. 401 => 'Unauthorized',
  253. 402 => 'Payment Required',
  254. 403 => 'Forbidden',
  255. 404 => 'Not Found',
  256. 405 => 'Method Not Allowed',
  257. 406 => 'Not Acceptable',
  258. 407 => 'Proxy Authentication Required',
  259. 408 => 'Request Timeout',
  260. 409 => 'Conflict',
  261. 410 => 'Gone',
  262. 411 => 'Length Required',
  263. 412 => 'Precondition Failed',
  264. 413 => 'Request Entity Too Large',
  265. 414 => 'Request-URI Too Long',
  266. 415 => 'Unsupported Media Type',
  267. 416 => 'Requested Range Not Satisfiable',
  268. 417 => 'Expectation Failed',
  269. // Server Error 5xx
  270. 500 => 'Internal Server Error',
  271. 501 => 'Not Implemented',
  272. 502 => 'Bad Gateway',
  273. 503 => 'Service Unavailable',
  274. 504 => 'Gateway Timeout',
  275. 505 => 'HTTP Version Not Supported',
  276. 509 => 'Bandwidth Limit Exceeded'
  277. );
  278. if(isset($_status[$code])) {
  279. header('HTTP/1.1 '.$code.' '.$_status[$code]);
  280. }
  281. }
  282. }//类定义结束
  283. if( !function_exists ('mime_content_type')) {
  284. /**
  285. +----------------------------------------------------------
  286. * 获取文件的mime_content类型
  287. +----------------------------------------------------------
  288. * @return string
  289. +----------------------------------------------------------
  290. */
  291. function mime_content_type($filename) {
  292. static $contentType = array(
  293. 'ai' => 'application/postscript',
  294. 'aif' => 'audio/x-aiff',
  295. 'aifc' => 'audio/x-aiff',
  296. 'aiff' => 'audio/x-aiff',
  297. 'asc' => 'application/pgp', //changed by skwashd - was text/plain
  298. 'asf' => 'video/x-ms-asf',
  299. 'asx' => 'video/x-ms-asf',
  300. 'au' => 'audio/basic',
  301. 'avi' => 'video/x-msvideo',
  302. 'bcpio' => 'application/x-bcpio',
  303. 'bin' => 'application/octet-stream',
  304. 'bmp' => 'image/bmp',
  305. 'c' => 'text/plain', // or 'text/x-csrc', //added by skwashd
  306. 'cc' => 'text/plain', // or 'text/x-c++src', //added by skwashd
  307. 'cs' => 'text/plain', //added by skwashd - for C# src
  308. 'cpp' => 'text/x-c++src', //added by skwashd
  309. 'cxx' => 'text/x-c++src', //added by skwashd
  310. 'cdf' => 'application/x-netcdf',
  311. 'class' => 'application/octet-stream',//secure but application/java-class is correct
  312. 'com' => 'application/octet-stream',//added by skwashd
  313. 'cpio' => 'application/x-cpio',
  314. 'cpt' => 'application/mac-compactpro',
  315. 'csh' => 'application/x-csh',
  316. 'css' => 'text/css',
  317. 'csv' => 'text/comma-separated-values',//added by skwashd
  318. 'dcr' => 'application/x-director',
  319. 'diff' => 'text/diff',
  320. 'dir' => 'application/x-director',
  321. 'dll' => 'application/octet-stream',
  322. 'dms' => 'application/octet-stream',
  323. 'doc' => 'application/msword',
  324. 'dot' => 'application/msword',//added by skwashd
  325. 'dvi' => 'application/x-dvi',
  326. 'dxr' => 'application/x-director',
  327. 'eps' => 'application/postscript',
  328. 'etx' => 'text/x-setext',
  329. 'exe' => 'application/octet-stream',
  330. 'ez' => 'application/andrew-inset',
  331. 'gif' => 'image/gif',
  332. 'gtar' => 'application/x-gtar',
  333. 'gz' => 'application/x-gzip',
  334. 'h' => 'text/plain', // or 'text/x-chdr',//added by skwashd
  335. 'h++' => 'text/plain', // or 'text/x-c++hdr', //added by skwashd
  336. 'hh' => 'text/plain', // or 'text/x-c++hdr', //added by skwashd
  337. 'hpp' => 'text/plain', // or 'text/x-c++hdr', //added by skwashd
  338. 'hxx' => 'text/plain', // or 'text/x-c++hdr', //added by skwashd
  339. 'hdf' => 'application/x-hdf',
  340. 'hqx' => 'application/mac-binhex40',
  341. 'htm' => 'text/html',
  342. 'html' => 'text/html',
  343. 'ice' => 'x-conference/x-cooltalk',
  344. 'ics' => 'text/calendar',
  345. 'ief' => 'image/ief',
  346. 'ifb' => 'text/calendar',
  347. 'iges' => 'model/iges',
  348. 'igs' => 'model/iges',
  349. 'jar' => 'application/x-jar', //added by skwashd - alternative mime type
  350. 'java' => 'text/x-java-source', //added by skwashd
  351. 'jpe' => 'image/jpeg',
  352. 'jpeg' => 'image/jpeg',
  353. 'jpg' => 'image/jpeg',
  354. 'js' => 'application/x-javascript',
  355. 'kar' => 'audio/midi',
  356. 'latex' => 'application/x-latex',
  357. 'lha' => 'application/octet-stream',
  358. 'log' => 'text/plain',
  359. 'lzh' => 'application/octet-stream',
  360. 'm3u' => 'audio/x-mpegurl',
  361. 'man' => 'application/x-troff-man',
  362. 'me' => 'application/x-troff-me',
  363. 'mesh' => 'model/mesh',
  364. 'mid' => 'audio/midi',
  365. 'midi' => 'audio/midi',
  366. 'mif' => 'application/vnd.mif',
  367. 'mov' => 'video/quicktime',
  368. 'movie' => 'video/x-sgi-movie',
  369. 'mp2' => 'audio/mpeg',
  370. 'mp3' => 'audio/mpeg',
  371. 'mpe' => 'video/mpeg',
  372. 'mpeg' => 'video/mpeg',
  373. 'mpg' => 'video/mpeg',
  374. 'mpga' => 'audio/mpeg',
  375. 'ms' => 'application/x-troff-ms',
  376. 'msh' => 'model/mesh',
  377. 'mxu' => 'video/vnd.mpegurl',
  378. 'nc' => 'application/x-netcdf',
  379. 'oda' => 'application/oda',
  380. 'patch' => 'text/diff',
  381. 'pbm' => 'image/x-portable-bitmap',
  382. 'pdb' => 'chemical/x-pdb',
  383. 'pdf' => 'application/pdf',
  384. 'pgm' => 'image/x-portable-graymap',
  385. 'pgn' => 'application/x-chess-pgn',
  386. 'pgp' => 'application/pgp',//added by skwashd
  387. 'php' => 'application/x-httpd-php',
  388. 'php3' => 'application/x-httpd-php3',
  389. 'pl' => 'application/x-perl',
  390. 'pm' => 'application/x-perl',
  391. 'png' => 'image/png',
  392. 'pnm' => 'image/x-portable-anymap',
  393. 'po' => 'text/plain',
  394. 'ppm' => 'image/x-portable-pixmap',
  395. 'ppt' => 'application/vnd.ms-powerpoint',
  396. 'ps' => 'application/postscript',
  397. 'qt' => 'video/quicktime',
  398. 'ra' => 'audio/x-realaudio',
  399. 'rar'=>'application/octet-stream',
  400. 'ram' => 'audio/x-pn-realaudio',
  401. 'ras' => 'image/x-cmu-raster',
  402. 'rgb' => 'image/x-rgb',
  403. 'rm' => 'audio/x-pn-realaudio',
  404. 'roff' => 'application/x-troff',
  405. 'rpm' => 'audio/x-pn-realaudio-plugin',
  406. 'rtf' => 'text/rtf',
  407. 'rtx' => 'text/richtext',
  408. 'sgm' => 'text/sgml',
  409. 'sgml' => 'text/sgml',
  410. 'sh' => 'application/x-sh',
  411. 'shar' => 'application/x-shar',
  412. 'shtml' => 'text/html',
  413. 'silo' => 'model/mesh',
  414. 'sit' => 'application/x-stuffit',
  415. 'skd' => 'application/x-koan',
  416. 'skm' => 'application/x-koan',
  417. 'skp' => 'application/x-koan',
  418. 'skt' => 'application/x-koan',
  419. 'smi' => 'application/smil',
  420. 'smil' => 'application/smil',
  421. 'snd' => 'audio/basic',
  422. 'so' => 'application/octet-stream',
  423. 'spl' => 'application/x-futuresplash',
  424. 'src' => 'application/x-wais-source',
  425. 'stc' => 'application/vnd.sun.xml.calc.template',
  426. 'std' => 'application/vnd.sun.xml.draw.template',
  427. 'sti' => 'application/vnd.sun.xml.impress.template',
  428. 'stw' => 'application/vnd.sun.xml.writer.template',
  429. 'sv4cpio' => 'application/x-sv4cpio',
  430. 'sv4crc' => 'application/x-sv4crc',
  431. 'swf' => 'application/x-shockwave-flash',
  432. 'sxc' => 'application/vnd.sun.xml.calc',
  433. 'sxd' => 'application/vnd.sun.xml.draw',
  434. 'sxg' => 'application/vnd.sun.xml.writer.global',
  435. 'sxi' => 'application/vnd.sun.xml.impress',
  436. 'sxm' => 'application/vnd.sun.xml.math',
  437. 'sxw' => 'application/vnd.sun.xml.writer',
  438. 't' => 'application/x-troff',
  439. 'tar' => 'application/x-tar',
  440. 'tcl' => 'application/x-tcl',
  441. 'tex' => 'application/x-tex',
  442. 'texi' => 'application/x-texinfo',
  443. 'texinfo' => 'application/x-texinfo',
  444. 'tgz' => 'application/x-gtar',
  445. 'tif' => 'image/tiff',
  446. 'tiff' => 'image/tiff',
  447. 'tr' => 'application/x-troff',
  448. 'tsv' => 'text/tab-separated-values',
  449. 'txt' => 'text/plain',
  450. 'ustar' => 'application/x-ustar',
  451. 'vbs' => 'text/plain', //added by skwashd - for obvious reasons
  452. 'vcd' => 'application/x-cdlink',
  453. 'vcf' => 'text/x-vcard',
  454. 'vcs' => 'text/calendar',
  455. 'vfb' => 'text/calendar',
  456. 'vrml' => 'model/vrml',
  457. 'vsd' => 'application/vnd.visio',
  458. 'wav' => 'audio/x-wav',
  459. 'wax' => 'audio/x-ms-wax',
  460. 'wbmp' => 'image/vnd.wap.wbmp',
  461. 'wbxml' => 'application/vnd.wap.wbxml',
  462. 'wm' => 'video/x-ms-wm',
  463. 'wma' => 'audio/x-ms-wma',
  464. 'wmd' => 'application/x-ms-wmd',
  465. 'wml' => 'text/vnd.wap.wml',
  466. 'wmlc' => 'application/vnd.wap.wmlc',
  467. 'wmls' => 'text/vnd.wap.wmlscript',
  468. 'wmlsc' => 'application/vnd.wap.wmlscriptc',
  469. 'wmv' => 'video/x-ms-wmv',
  470. 'wmx' => 'video/x-ms-wmx',
  471. 'wmz' => 'application/x-ms-wmz',
  472. 'wrl' => 'model/vrml',
  473. 'wvx' => 'video/x-ms-wvx',
  474. 'xbm' => 'image/x-xbitmap',
  475. 'xht' => 'application/xhtml+xml',
  476. 'xhtml' => 'application/xhtml+xml',
  477. 'xls' => 'application/vnd.ms-excel',
  478. 'xlt' => 'application/vnd.ms-excel',
  479. 'xml' => 'application/xml',
  480. 'xpm' => 'image/x-xpixmap',
  481. 'xsl' => 'text/xml',
  482. 'xwd' => 'image/x-xwindowdump',
  483. 'xyz' => 'chemical/x-xyz',
  484. 'z' => 'application/x-compress',
  485. 'zip' => 'application/zip',
  486. );
  487. $type = strtolower(substr(strrchr($filename, '.'),1));
  488. if(isset($contentType[$type])) {
  489. $mime = $contentType[$type];
  490. }else {
  491. $mime = 'application/octet-stream';
  492. }
  493. return $mime;
  494. }
  495. }
  496. if(!function_exists('image_type_to_extension')){
  497. function image_type_to_extension($imagetype) {
  498. if(empty($imagetype)) return false;
  499. switch($imagetype) {
  500. case IMAGETYPE_GIF : return '.gif';
  501. case IMAGETYPE_JPEG : return '.jpg';
  502. case IMAGETYPE_PNG : return '.png';
  503. case IMAGETYPE_SWF : return '.swf';
  504. case IMAGETYPE_PSD : return '.psd';
  505. case IMAGETYPE_BMP : return '.bmp';
  506. case IMAGETYPE_TIFF_II : return '.tiff';
  507. case IMAGETYPE_TIFF_MM : return '.tiff';
  508. case IMAGETYPE_JPC : return '.jpc';
  509. case IMAGETYPE_JP2 : return '.jp2';
  510. case IMAGETYPE_JPX : return '.jpf';
  511. case IMAGETYPE_JB2 : return '.jb2';
  512. case IMAGETYPE_SWC : return '.swc';
  513. case IMAGETYPE_IFF : return '.aiff';
  514. case IMAGETYPE_WBMP : return '.wbmp';
  515. case IMAGETYPE_XBM : return '.xbm';
  516. default : return false;
  517. }
  518. }
  519. }