libcurlnative.inc.php
上传用户:jamesxinda
上传日期:2022-07-31
资源大小:28k
文件大小:14k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

PHP

  1. <?php
  2. /* CURL Extension Emulation Library (Native PHP)
  3.  * Copyright 2004-2007, Steve Blinch
  4.  * http://code.blitzaffe.com
  5.  * ============================================================================
  6.  *
  7.  * DESCRIPTION
  8.  *
  9.  * Provides a pure-PHP implementation of the PHP CURL extension, for use on
  10.  * systems which do not already have the CURL extension installed.  It emulates
  11.  * all of the curl_* functions normally provided by the CURL extension itself,
  12.  * and uses an internal, native-PHP HTTP library to make requests.
  13.  *
  14.  * This library will automatically detect whether or not the "real" CURL
  15.  * extension is installed, and if so, it will not interfere.  Thus, it can be
  16.  * used to ensure that, one way or another, the CURL functions are available
  17.  * for use.
  18.  *
  19.  * Note that this is only a *rough* emulation of CURL; it is not exact, and
  20.  * many of CURL's options are not implemented.  For a more precise emulation of
  21.  * CURL, you may want to try our other libcurlexternal library which is based on
  22.  * the CURL console binary (and is virtually identical to the CURL extension).
  23.  *
  24.  *
  25.  * USAGE
  26.  *
  27.  * Please see the PHP documentation under the "CURL, Client URL Library 
  28.  * Functions" section for information about using this library.  Almost all of
  29.  * the documentation and examples in the PHP manual should work with this
  30.  * library.
  31.  *
  32.  *
  33.  * LICENSE
  34.  *
  35.  * This script is free software; you can redistribute it and/or modify it under the
  36.  * terms of the GNU General Public License as published by the Free Software
  37.  * Foundation; either version 2 of the License, or (at your option) any later
  38.  * version.
  39.  *
  40.  * This script is distributed in the hope that it will be useful, but WITHOUT ANY
  41.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  42.  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
  43.  * details.
  44.  *
  45.  * You should have received a copy of the GNU General Public License along
  46.  * with this script; if not, write to the Free Software Foundation, Inc.,
  47.  * 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  48.  */
  49.  
  50. // if the real CURL PHP extension is installed, exit without doing anything;
  51. // if libcurlemu is installed and providing a wrapper for the CURL binary,
  52. // exit without doing anything
  53. if (!extension_loaded("curl") && !function_exists("curl_init")) {
  54. // if the CURL binary was not found, do one of the following:
  55. //   - if CURLNAT_MISSING_ABORT was defined, then exit without
  56. //     implementing the CURL functions
  57. //   - otherwise, raise a fatal error and halt the script
  58. if (!class_exists("HTTPRetriever")) {
  59. if (is_readable(dirname(__FILE__)."/class_HTTPRetriever.php")) {
  60. define("HTTPR_NO_REDECLARE_CURL",true);
  61. require_once(dirname(__FILE__)."/class_HTTPRetriever.php");
  62. } else {
  63.   if (defined("CURLNAT_MISSING_ABORT") && CURLNAT_MISSING_ABORT) {
  64.   return;
  65.   } else {
  66. trigger_error("CURL extension is not loaded, libcurlemu is not loaded, and the HTTPRetriever class is unavailable",E_USER_ERROR);
  67. }
  68. }
  69. }
  70. define("CURLNAT_VERSION","1.0.0");
  71. define('CURLOPT_NOTHING',0);
  72. define('CURLOPT_FILE',10001);
  73. define('CURLOPT_URL',10002);
  74. define('CURLOPT_PORT',3);
  75. define('CURLOPT_PROXY',10004);
  76. define('CURLOPT_USERPWD',10005);
  77. define('CURLOPT_PROXYUSERPWD',10006);
  78. define('CURLOPT_RANGE',10007);
  79. define('CURLOPT_INFILE',10009);
  80. define('CURLOPT_ERRORBUFFER',10010);
  81. define('CURLOPT_WRITEFUNCTION',20011);
  82. define('CURLOPT_READFUNCTION',20012);
  83. define('CURLOPT_TIMEOUT',13);
  84. define('CURLOPT_INFILESIZE',14);
  85. define('CURLOPT_POSTFIELDS',10015);
  86. define('CURLOPT_REFERER',10016);
  87. define('CURLOPT_FTPPORT',10017);
  88. define('CURLOPT_USERAGENT',10018);
  89. define('CURLOPT_LOW_SPEED_LIMIT',19);
  90. define('CURLOPT_LOW_SPEED_TIME',20);
  91. define('CURLOPT_RESUME_FROM',21);
  92. define('CURLOPT_COOKIE',10022);
  93. define('CURLOPT_HTTPHEADER',10023);
  94. define('CURLOPT_HTTPPOST',10024);
  95. define('CURLOPT_SSLCERT',10025);
  96. define('CURLOPT_SSLCERTPASSWD',10026);
  97. define('CURLOPT_SSLKEYPASSWD',10026);
  98. define('CURLOPT_CRLF',27);
  99. define('CURLOPT_QUOTE',10028);
  100. define('CURLOPT_WRITEHEADER',10029);
  101. define('CURLOPT_COOKIEFILE',10031);
  102. define('CURLOPT_SSLVERSION',32);
  103. define('CURLOPT_TIMECONDITION',33);
  104. define('CURLOPT_TIMEVALUE',34);
  105. define('CURLOPT_HTTPREQUEST',10035);
  106. define('CURLOPT_CUSTOMREQUEST',10036);
  107. define('CURLOPT_STDERR',10037);
  108. define('CURLOPT_POSTQUOTE',10039);
  109. define('CURLOPT_WRITEINFO',10040);
  110. define('CURLOPT_VERBOSE',41);
  111. define('CURLOPT_HEADER',42);
  112. define('CURLOPT_NOPROGRESS',43);
  113. define('CURLOPT_NOBODY',44);
  114. define('CURLOPT_FAILONERROR',45);
  115. define('CURLOPT_UPLOAD',46);
  116. define('CURLOPT_POST',47);
  117. define('CURLOPT_FTPLISTONLY',48);
  118. define('CURLOPT_FTPAPPEND',50);
  119. define('CURLOPT_NETRC',51);
  120. define('CURLOPT_FOLLOWLOCATION',52);
  121. define('CURLOPT_FTPASCII',53);
  122. define('CURLOPT_TRANSFERTEXT',53);
  123. define('CURLOPT_PUT',54);
  124. define('CURLOPT_MUTE',55);
  125. define('CURLOPT_PROGRESSFUNCTION',20056);
  126. define('CURLOPT_PROGRESSDATA',10057);
  127. define('CURLOPT_AUTOREFERER',58);
  128. define('CURLOPT_PROXYPORT',59);
  129. define('CURLOPT_POSTFIELDSIZE',60);
  130. define('CURLOPT_HTTPPROXYTUNNEL',61);
  131. define('CURLOPT_INTERFACE',10062);
  132. define('CURLOPT_KRB4LEVEL',10063);
  133. define('CURLOPT_SSL_VERIFYPEER',64);
  134. define('CURLOPT_CAINFO',10065);
  135. define('CURLOPT_PASSWDFUNCTION',20066);
  136. define('CURLOPT_PASSWDDATA',10067);
  137. define('CURLOPT_MAXREDIRS',68);
  138. define('CURLOPT_FILETIME',10069);
  139. define('CURLOPT_TELNETOPTIONS',10070);
  140. define('CURLOPT_MAXCONNECTS',71);
  141. define('CURLOPT_CLOSEPOLICY',72);
  142. define('CURLOPT_CLOSEFUNCTION',20073);
  143. define('CURLOPT_FRESH_CONNECT',74);
  144. define('CURLOPT_FORBID_REUSE',75);
  145. define('CURLOPT_RANDOM_FILE',10076);
  146. define('CURLOPT_EGDSOCKET',10077);
  147. define('CURLOPT_CONNECTTIMEOUT',78);
  148. define('CURLOPT_HEADERFUNCTION',20079);
  149. define('CURLOPT_HTTPGET',80);
  150. define('CURLOPT_SSL_VERIFYHOST',81);
  151. define('CURLOPT_COOKIEJAR',10082);
  152. define('CURLOPT_SSL_CIPHER_LIST',10083);
  153. define('CURLOPT_HTTP_VERSION',84);
  154. define('CURLOPT_FTP_USE_EPSV',85);
  155. define('CURLOPT_SSLCERTTYPE',10086);
  156. define('CURLOPT_SSLKEY',10087);
  157. define('CURLOPT_SSLKEYTYPE',10088);
  158. define('CURLOPT_SSLENGINE',10089);
  159. define('CURLOPT_SSLENGINE_DEFAULT',90);
  160. define('CURLOPT_DNS_USE_GLOBAL_CACHE',91);
  161. define('CURLOPT_DNS_CACHE_TIMEOUT',92);
  162. define('CURLOPT_PREQUOTE',10093); 
  163. define('CURLINFO_EFFECTIVE_URL',1);
  164. define('CURLINFO_HTTP_CODE',2);
  165. define('CURLINFO_FILETIME',14);
  166. define('CURLINFO_TOTAL_TIME',3);
  167. define('CURLINFO_NAMELOOKUP_TIME',4);
  168. define('CURLINFO_CONNECT_TIME',5);
  169. define('CURLINFO_PRETRANSFER_TIME',6);
  170. define('CURLINFO_STARTTRANSFER_TIME',17);
  171. define('CURLINFO_REDIRECT_TIME',19);
  172. define('CURLINFO_REDIRECT_COUNT',20);
  173. define('CURLINFO_SIZE_UPLOAD',7);
  174. define('CURLINFO_SIZE_DOWNLOAD',8);
  175. define('CURLINFO_SPEED_DOWNLOAD',9);
  176. define('CURLINFO_SPEED_UPLOAD',10);
  177. define('CURLINFO_HEADER_SIZE',11);
  178. define('CURLINFO_REQUEST_SIZE',12);
  179. define('CURLINFO_SSL_VERIFYRESULT',13);
  180. define('CURLINFO_CONTENT_LENGTH_DOWNLOAD',15);
  181. define('CURLINFO_CONTENT_LENGTH_UPLOAD',16);
  182. define('CURLINFO_CONTENT_TYPE',18);
  183. define("TIMECOND_ISUNMODSINCE",1);
  184. define("TIMECOND_IFMODSINCE",2);
  185. function _curlopt_name($curlopt) {
  186. foreach (get_defined_constants() as $k=>$v) {
  187. if ( (substr($k,0,8)=="CURLOPT_") && ($v==$curlopt)) return $k;
  188. }
  189. return false;
  190. }
  191. // Initialize a CURL emulation session
  192. function curl_init() {
  193. $i = $GLOBALS["_CURLNAT_OPT"]["index"]++;
  194. $GLOBALS["_CURLNAT_OPT"][$i] = array();
  195. $GLOBALS["_CURLNAT_OPT"][$i]["http"] = &new HTTPRetriever();
  196. $GLOBALS["_CURLNAT_OPT"][$i]["include_body"] = true;
  197. return $i;
  198. }
  199. // Set an option for a CURL emulation transfer 
  200. function curl_setopt($ch,$option,$value) {
  201. $opt = &$GLOBALS["_CURLNAT_OPT"][$ch];
  202. if (!$opt["args"]) $opt["args"] = array();
  203. $args = &$opt["args"];
  204. if (!$opt["settings"]) $opt["settings"] = array();
  205. $settings = &$opt["settings"];
  206. $http = &$opt["http"];
  207. switch($option) {
  208. case CURLOPT_URL:
  209. $opt["url"] = $value;
  210. break;
  211. case CURLOPT_CUSTOMREQUEST:
  212. $opt["method"] = $value;
  213. break;
  214. case CURLOPT_REFERER:
  215. $http->headers["Referer"] = $value;
  216. break;
  217. case CURLOPT_NOBODY:
  218. $opt["include_body"] = $value==0;
  219. break;
  220. case CURLOPT_FAILONERROR:
  221. $opt["fail_on_error"] = $value>0;
  222. break;
  223. case CURLOPT_USERAGENT:
  224. $http->headers["User-Agent"] = $value;
  225. break;
  226. case CURLOPT_HEADER:
  227. $opt["include_headers"] = $value>0;
  228. break;
  229. case CURLOPT_RETURNTRANSFER:
  230. $opt["return_transfer"] = $value>0;
  231. break;
  232. case CURLOPT_TIMEOUT:
  233. $opt["max-time"] = (int) $value;
  234. break;
  235. case CURLOPT_HTTPHEADER:
  236. reset($value);
  237. foreach ($value as $k=>$header) {
  238. list($headername,$headervalue) = explode(":",$header);
  239. $http->headers[$headername] = ltrim($headervalue);
  240. }
  241. break;
  242. case CURLOPT_POST:
  243. $opt["post"] = $value>0;
  244. break;
  245. case CURLOPT_POSTFIELDS:
  246. $opt["postdata"] = $value;
  247. break;
  248. case CURLOPT_MUTE:
  249. // we're already mute, no?
  250. break;
  251. case CURLOPT_FILE:
  252. if (is_resource($value)) {
  253. $opt["output_handle"] = $value;
  254. } else {
  255. trigger_error("CURLOPT_FILE must specify a valid file resource",E_USER_WARNING);
  256. }
  257. break;
  258. case CURLOPT_WRITEHEADER:
  259. if (is_resource($value)) {
  260. $opt["header_handle"] = $value;
  261. } else {
  262. trigger_error("CURLOPT_WRITEHEADER must specify a valid file resource",E_USER_WARNING);
  263. }
  264. break;
  265. case CURLOPT_STDERR:
  266. // not implemented for now - not really relevant
  267. break;
  268. case CURLOPT_SSL_VERIFYPEER:
  269. case CURLOPT_SSL_VERIFYHOST:
  270. // these are automatically disabled using ssl:// anyway
  271. break;
  272. case CURLOPT_USERPWD:
  273. list($curl_user,$curl_pass) = explode(':',$value,2);
  274. $http->auth_username = $curl_user;
  275. $http->auth_password = $curl_pass;
  276. break;
  277. // Important stuff not implemented (as it's not yet supported by HTTPRetriever)
  278. case CURLOPT_PUT:
  279. case CURLOPT_INFILE:
  280. case CURLOPT_FOLLOWLOCATION:
  281. case CURLOPT_PROXYUSERPWD:
  282. case CURLOPT_COOKIE:
  283. case CURLOPT_COOKIEFILE:
  284. case CURLOPT_PROXY:
  285. case CURLOPT_RANGE:
  286. case CURLOPT_RESUME_FROM:
  287. // Things that cannot (reasonably) be implemented here
  288. case CURLOPT_LOW_SPEED_LIMIT:
  289. case CURLOPT_LOW_SPEED_TIME:
  290. case CURLOPT_KRB4LEVEL:
  291. case CURLOPT_SSLCERT:
  292. case CURLOPT_SSLCERTPASSWD:
  293. case CURLOPT_SSLVERSION:
  294. case CURLOPT_INTERFACE:
  295. case CURLOPT_CAINFO:
  296. case CURLOPT_TIMECONDITION:
  297. case CURLOPT_TIMEVALUE:
  298. // FTP stuff not implemented
  299. case CURLOPT_QUOTE:
  300. case CURLOPT_POSTQUOTE:
  301. case CURLOPT_UPLOAD:
  302. case CURLOPT_FTPLISTONLY:
  303. case CURLOPT_FTPAPPEND:
  304. case CURLOPT_FTPPORT:
  305. // Other stuff not implemented
  306. case CURLOPT_VERBOSE:
  307. case CURLOPT_NETRC:
  308. default:
  309. trigger_error("CURL emulation does not implement CURL option "._curlopt_name($option),E_USER_WARNING);
  310. break;
  311. }
  312. }
  313. // Perform a CURL emulation session
  314. function curl_exec($ch) {
  315. $opt = &$GLOBALS["_CURLNAT_OPT"][$ch];
  316. $url = $opt["url"];
  317. $http = &$opt["http"];
  318. $http->disable_curl = true; // avoid problems with recursion, since we *ARE* CURL
  319. // set time limits if requested
  320. if ($opt["max-time"]) {
  321. $http->connect_timeout = $opt["max-time"];
  322. $http->max_time = $opt["max-time"];
  323. }
  324. if ($opt["post"]) {
  325. $res = $http->post($url,$opt["postdata"]);
  326. } elseif ($opt["method"]) {
  327. $res = $http->custom($opt["method"],$url,$opt["postdata"]);
  328. } else {
  329. $res = $http->get($url);
  330. }
  331. // check for errors
  332. $opt["errno"] = (!$res && $http->error) ? 1 : 0;
  333. if ($opt["errno"]) $opt["error"] = $http->error;
  334. // die if CURLOPT_FAILONERROR is set and the HTTP result code is greater than 300
  335. if ($opt["fail_on_error"]) {
  336. if ($http->result_code>300) die;
  337. }
  338. $opt["stats"] = $http->stats;
  339. $headers = "";
  340. foreach ($http->response_headers as $k=>$v) {
  341. $headers .= "$k: $vrn";
  342. }
  343. // if a file handle was provided for header output, extract the headers
  344. // and write them to the handle
  345. if (isset($opt["header_handle"])) {
  346. fwrite($opt["header_handle"],$headers);
  347. }
  348. $output = ($opt["include_headers"] ? $headers."rn" : "") . ($opt["include_body"] ? $http->response : "");
  349. // if a file handle was provided for output, write the output to it
  350. if (isset($opt["output_handle"])) {
  351. fwrite($opt["output_handle"],$output);
  352. // if the caller requested that the response be returned, return it
  353. } elseif ($opt["return_transfer"]) {
  354. return $output;
  355. // otherwise, just echo the output to stdout
  356. } else {
  357. echo $output;
  358. }
  359. return true;
  360. }
  361. function curl_close($ch) {
  362. $opt = &$GLOBALS["_CURLNAT_OPT"][$ch];
  363. if ($opt["settings"]) {
  364. $settings = &$opt["settings"];
  365. // if the user used CURLOPT_INFILE to specify a file to upload, remove the
  366. // temporary file created for the CURL binary
  367. if ($settings["upload-file"]["value"] && file_exists($settings["upload-file"]["value"])) unlink($settings["upload-file"]["value"]);
  368. }
  369. unset($GLOBALS["_CURLNAT_OPT"][$ch]);
  370. }
  371. function curl_errno($ch) {
  372. return (int) $GLOBALS["_CURLNAT_OPT"][$ch]["errno"];
  373. }
  374. function curl_error($ch) {
  375. return $GLOBALS["_CURLNAT_OPT"][$ch]["error"];
  376. }
  377. function curl_getinfo($ch,$opt=NULL) {
  378. if ($opt) {
  379. $curlinfo_tags = array(
  380. CURLINFO_EFFECTIVE_URL=>"url",
  381. CURLINFO_CONTENT_TYPE=>"content_type",
  382. CURLINFO_HTTP_CODE=>"http_code",
  383. CURLINFO_HEADER_SIZE=>"header_size",
  384. CURLINFO_REQUEST_SIZE=>"request_size",
  385. CURLINFO_FILETIME=>"filetime",
  386. CURLINFO_SSL_VERIFYRESULT=>"ssl_verify_result",
  387. CURLINFO_REDIRECT_COUNT=>"redirect_count",
  388. CURLINFO_TOTAL_TIME=>"total_time",
  389. CURLINFO_NAMELOOKUP_TIME=>"namelookup_time",
  390. CURLINFO_CONNECT_TIME=>"connect_time",
  391. CURLINFO_PRETRANSFER_TIME=>"pretransfer_time",
  392. CURLINFO_SIZE_UPLOAD=>"size_upload",
  393. CURLINFO_SIZE_DOWNLOAD=>"size_download",
  394. CURLINFO_SPEED_DOWNLOAD=>"speed_download",
  395. CURLINFO_SPEED_UPLOAD=>"speed_upload",
  396. CURLINFO_CONTENT_LENGTH_DOWNLOAD=>"download_content_length",
  397. CURLINFO_CONTENT_LENGTH_UPLOAD=>"upload_content_length",
  398. CURLINFO_STARTTRANSFER_TIME=>"starttransfer_time",
  399. CURLINFO_REDIRECT_TIME=>"redirect_time"
  400. );
  401. $key = $curlinfo_tags[$opt];
  402. return $GLOBALS["_CURLNAT_OPT"][$ch]["stats"][$key];
  403. } else {
  404. return $GLOBALS["_CURLNAT_OPT"][$ch]["stats"];
  405. }
  406. }
  407. function curl_version() {
  408. return "libcurlemu/".CURLNAT_VERSION."-nat";
  409. }
  410. }
  411. ?>