File.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <?php
  2. /**
  3. * SimplePie
  4. *
  5. * A PHP-Based RSS and Atom Feed Framework.
  6. * Takes the hard work out of managing a complete RSS/Atom solution.
  7. *
  8. * Copyright (c) 2004-2012, Ryan Parman, Geoffrey Sneddon, Ryan McCue, and contributors
  9. * All rights reserved.
  10. *
  11. * Redistribution and use in source and binary forms, with or without modification, are
  12. * permitted provided that the following conditions are met:
  13. *
  14. * * Redistributions of source code must retain the above copyright notice, this list of
  15. * conditions and the following disclaimer.
  16. *
  17. * * Redistributions in binary form must reproduce the above copyright notice, this list
  18. * of conditions and the following disclaimer in the documentation and/or other materials
  19. * provided with the distribution.
  20. *
  21. * * Neither the name of the SimplePie Team nor the names of its contributors may be used
  22. * to endorse or promote products derived from this software without specific prior
  23. * written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
  26. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  27. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS
  28. * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  31. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  32. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  33. * POSSIBILITY OF SUCH DAMAGE.
  34. *
  35. * @package SimplePie
  36. * @version 1.3.1
  37. * @copyright 2004-2012 Ryan Parman, Geoffrey Sneddon, Ryan McCue
  38. * @author Ryan Parman
  39. * @author Geoffrey Sneddon
  40. * @author Ryan McCue
  41. * @link http://simplepie.org/ SimplePie
  42. * @license http://www.opensource.org/licenses/bsd-license.php BSD License
  43. */
  44. /**
  45. * Used for fetching remote files and reading local files
  46. *
  47. * Supports HTTP 1.0 via cURL or fsockopen, with spotty HTTP 1.1 support
  48. *
  49. * This class can be overloaded with {@see SimplePie::set_file_class()}
  50. *
  51. * @package SimplePie
  52. * @subpackage HTTP
  53. * @todo Move to properly supporting RFC2616 (HTTP/1.1)
  54. */
  55. class SimplePie_File
  56. {
  57. var $url;
  58. var $useragent;
  59. var $success = true;
  60. var $headers = array();
  61. var $body;
  62. var $status_code;
  63. var $redirects = 0;
  64. var $error;
  65. var $method = SIMPLEPIE_FILE_SOURCE_NONE;
  66. public function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false)
  67. {
  68. if (class_exists('idna_convert'))
  69. {
  70. $idn = new idna_convert();
  71. $parsed = SimplePie_Misc::parse_url($url);
  72. $url = SimplePie_Misc::compress_parse_url($parsed['scheme'], $idn->encode($parsed['authority']), $parsed['path'], $parsed['query'], $parsed['fragment']);
  73. }
  74. $this->url = $url;
  75. $this->useragent = $useragent;
  76. if (preg_match('/^http(s)?:\/\//i', $url))
  77. {
  78. syslog(LOG_INFO, 'SimplePie GET ' . $url); //FreshRSS
  79. if ($useragent === null)
  80. {
  81. $useragent = ini_get('user_agent');
  82. $this->useragent = $useragent;
  83. }
  84. if (!is_array($headers))
  85. {
  86. $headers = array();
  87. }
  88. if (!$force_fsockopen && function_exists('curl_exec'))
  89. {
  90. $this->method = SIMPLEPIE_FILE_SOURCE_REMOTE | SIMPLEPIE_FILE_SOURCE_CURL;
  91. $fp = curl_init();
  92. $headers2 = array();
  93. foreach ($headers as $key => $value)
  94. {
  95. $headers2[] = "$key: $value";
  96. }
  97. if (version_compare(SimplePie_Misc::get_curl_version(), '7.10.5', '>='))
  98. {
  99. curl_setopt($fp, CURLOPT_ENCODING, '');
  100. }
  101. curl_setopt($fp, CURLOPT_URL, $url);
  102. curl_setopt($fp, CURLOPT_HEADER, 1);
  103. curl_setopt($fp, CURLOPT_RETURNTRANSFER, 1);
  104. curl_setopt($fp, CURLOPT_TIMEOUT, $timeout);
  105. curl_setopt($fp, CURLOPT_CONNECTTIMEOUT, $timeout);
  106. curl_setopt($fp, CURLOPT_REFERER, $url);
  107. curl_setopt($fp, CURLOPT_USERAGENT, $useragent);
  108. curl_setopt($fp, CURLOPT_HTTPHEADER, $headers2);
  109. curl_setopt($fp, CURLOPT_SSL_VERIFYPEER, false);
  110. if (!ini_get('open_basedir') && !ini_get('safe_mode') && version_compare(SimplePie_Misc::get_curl_version(), '7.15.2', '>='))
  111. {
  112. curl_setopt($fp, CURLOPT_FOLLOWLOCATION, 1);
  113. curl_setopt($fp, CURLOPT_MAXREDIRS, $redirects);
  114. }
  115. $this->headers = curl_exec($fp);
  116. if (curl_errno($fp) === 23 || curl_errno($fp) === 61)
  117. {
  118. curl_setopt($fp, CURLOPT_ENCODING, 'none');
  119. $this->headers = curl_exec($fp);
  120. }
  121. if (curl_errno($fp))
  122. {
  123. $this->error = 'cURL error ' . curl_errno($fp) . ': ' . curl_error($fp);
  124. $this->success = false;
  125. }
  126. else
  127. {
  128. $info = curl_getinfo($fp);
  129. curl_close($fp);
  130. $this->headers = explode("\r\n\r\n", $this->headers, $info['redirect_count'] + 1);
  131. $this->headers = array_pop($this->headers);
  132. $parser = new SimplePie_HTTP_Parser($this->headers);
  133. if ($parser->parse())
  134. {
  135. $this->headers = $parser->headers;
  136. $this->body = $parser->body;
  137. $this->status_code = $parser->status_code;
  138. if ((in_array($this->status_code, array(300, 301, 302, 303, 307)) || $this->status_code > 307 && $this->status_code < 400) && isset($this->headers['location']) && $this->redirects < $redirects)
  139. {
  140. $this->redirects++;
  141. $location = SimplePie_Misc::absolutize_url($this->headers['location'], $url);
  142. return $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen);
  143. }
  144. }
  145. }
  146. }
  147. else
  148. {
  149. $this->method = SIMPLEPIE_FILE_SOURCE_REMOTE | SIMPLEPIE_FILE_SOURCE_FSOCKOPEN;
  150. $url_parts = parse_url($url);
  151. $socket_host = $url_parts['host'];
  152. if (isset($url_parts['scheme']) && strtolower($url_parts['scheme']) === 'https')
  153. {
  154. $socket_host = "ssl://$url_parts[host]";
  155. $url_parts['port'] = 443;
  156. }
  157. if (!isset($url_parts['port']))
  158. {
  159. $url_parts['port'] = 80;
  160. }
  161. $fp = @fsockopen($socket_host, $url_parts['port'], $errno, $errstr, $timeout);
  162. if (!$fp)
  163. {
  164. $this->error = 'fsockopen error: ' . $errstr;
  165. $this->success = false;
  166. }
  167. else
  168. {
  169. stream_set_timeout($fp, $timeout);
  170. if (isset($url_parts['path']))
  171. {
  172. if (isset($url_parts['query']))
  173. {
  174. $get = "$url_parts[path]?$url_parts[query]";
  175. }
  176. else
  177. {
  178. $get = $url_parts['path'];
  179. }
  180. }
  181. else
  182. {
  183. $get = '/';
  184. }
  185. $out = "GET $get HTTP/1.1\r\n";
  186. $out .= "Host: $url_parts[host]\r\n";
  187. $out .= "User-Agent: $useragent\r\n";
  188. if (extension_loaded('zlib'))
  189. {
  190. $out .= "Accept-Encoding: x-gzip,gzip,deflate\r\n";
  191. }
  192. if (isset($url_parts['user']) && isset($url_parts['pass']))
  193. {
  194. $out .= "Authorization: Basic " . base64_encode("$url_parts[user]:$url_parts[pass]") . "\r\n";
  195. }
  196. foreach ($headers as $key => $value)
  197. {
  198. $out .= "$key: $value\r\n";
  199. }
  200. $out .= "Connection: Close\r\n\r\n";
  201. fwrite($fp, $out);
  202. $info = stream_get_meta_data($fp);
  203. $this->headers = '';
  204. while (!$info['eof'] && !$info['timed_out'])
  205. {
  206. $this->headers .= fread($fp, 1160);
  207. $info = stream_get_meta_data($fp);
  208. }
  209. if (!$info['timed_out'])
  210. {
  211. $parser = new SimplePie_HTTP_Parser($this->headers);
  212. if ($parser->parse())
  213. {
  214. $this->headers = $parser->headers;
  215. $this->body = $parser->body;
  216. $this->status_code = $parser->status_code;
  217. if ((in_array($this->status_code, array(300, 301, 302, 303, 307)) || $this->status_code > 307 && $this->status_code < 400) && isset($this->headers['location']) && $this->redirects < $redirects)
  218. {
  219. $this->redirects++;
  220. $location = SimplePie_Misc::absolutize_url($this->headers['location'], $url);
  221. return $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen);
  222. }
  223. if (isset($this->headers['content-encoding']))
  224. {
  225. // Hey, we act dumb elsewhere, so let's do that here too
  226. switch (strtolower(trim($this->headers['content-encoding'], "\x09\x0A\x0D\x20")))
  227. {
  228. case 'gzip':
  229. case 'x-gzip':
  230. $decoder = new SimplePie_gzdecode($this->body);
  231. if (!$decoder->parse())
  232. {
  233. $this->error = 'Unable to decode HTTP "gzip" stream';
  234. $this->success = false;
  235. }
  236. else
  237. {
  238. $this->body = $decoder->data;
  239. }
  240. break;
  241. case 'deflate':
  242. if (($decompressed = gzinflate($this->body)) !== false)
  243. {
  244. $this->body = $decompressed;
  245. }
  246. else if (($decompressed = gzuncompress($this->body)) !== false)
  247. {
  248. $this->body = $decompressed;
  249. }
  250. else if (function_exists('gzdecode') && ($decompressed = gzdecode($this->body)) !== false)
  251. {
  252. $this->body = $decompressed;
  253. }
  254. else
  255. {
  256. $this->error = 'Unable to decode HTTP "deflate" stream';
  257. $this->success = false;
  258. }
  259. break;
  260. default:
  261. $this->error = 'Unknown content coding';
  262. $this->success = false;
  263. }
  264. }
  265. }
  266. }
  267. else
  268. {
  269. $this->error = 'fsocket timed out';
  270. $this->success = false;
  271. }
  272. fclose($fp);
  273. }
  274. }
  275. }
  276. else
  277. {
  278. $this->method = SIMPLEPIE_FILE_SOURCE_LOCAL | SIMPLEPIE_FILE_SOURCE_FILE_GET_CONTENTS;
  279. if (!$this->body = file_get_contents($url))
  280. {
  281. $this->error = 'file_get_contents could not read the file';
  282. $this->success = false;
  283. }
  284. }
  285. }
  286. }