123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896 |
- <?php
- namespace OSS\Http;
- class RequestCore
- {
-
- public $request_url;
-
- public $request_headers;
-
-
- public $response_raw_headers;
-
- public $response_error_body;
-
- public $write_file_handle;
-
- public $request_body;
-
- public $response;
-
- public $response_headers;
-
- public $response_body;
-
- public $response_code;
-
- public $response_info;
-
- public $method;
-
- public $proxy = null;
-
- public $username = null;
-
- public $password = null;
-
- public $curlopts = null;
-
- public $debug_mode = false;
-
- public $request_class = 'OSS\Http\RequestCore';
-
- public $response_class = 'OSS\Http\ResponseCore';
-
- public $useragent = 'RequestCore/1.4.3';
-
- public $read_file = null;
-
- public $read_stream = null;
-
- public $read_stream_size = null;
-
- public $read_stream_read = 0;
-
- public $write_file = null;
-
- public $write_stream = null;
-
- public $seek_position = null;
-
- public $cacert_location = false;
-
- public $ssl_verification = true;
-
- public $registered_streaming_read_callback = null;
-
- public $registered_streaming_write_callback = null;
-
- public $timeout = 5184000;
-
- public $connect_timeout = 10;
-
-
-
- const HTTP_GET = 'GET';
-
- const HTTP_POST = 'POST';
-
- const HTTP_PUT = 'PUT';
-
- const HTTP_DELETE = 'DELETE';
-
- const HTTP_HEAD = 'HEAD';
-
-
-
- public function __construct($url = null, $proxy = null, $helpers = null)
- {
-
- $this->request_url = $url;
- $this->method = self::HTTP_GET;
- $this->request_headers = array();
- $this->request_body = '';
-
- if (isset($helpers['request']) && !empty($helpers['request'])) {
- $this->request_class = $helpers['request'];
- }
-
- if (isset($helpers['response']) && !empty($helpers['response'])) {
- $this->response_class = $helpers['response'];
- }
- if ($proxy) {
- $this->set_proxy($proxy);
- }
- return $this;
- }
-
- public function __destruct()
- {
- if (isset($this->read_file) && isset($this->read_stream)) {
- fclose($this->read_stream);
- }
- if (isset($this->write_file) && isset($this->write_stream)) {
- fclose($this->write_stream);
- }
- return $this;
- }
-
-
-
- public function set_credentials($user, $pass)
- {
- $this->username = $user;
- $this->password = $pass;
- return $this;
- }
-
- public function add_header($key, $value)
- {
- $this->request_headers[$key] = $value;
- return $this;
- }
-
- public function remove_header($key)
- {
- if (isset($this->request_headers[$key])) {
- unset($this->request_headers[$key]);
- }
- return $this;
- }
-
- public function set_method($method)
- {
- $this->method = strtoupper($method);
- return $this;
- }
-
- public function set_useragent($ua)
- {
- $this->useragent = $ua;
- return $this;
- }
-
- public function set_body($body)
- {
- $this->request_body = $body;
- return $this;
- }
-
- public function set_request_url($url)
- {
- $this->request_url = $url;
- return $this;
- }
-
- public function set_curlopts($curlopts)
- {
- $this->curlopts = $curlopts;
- return $this;
- }
-
- public function set_read_stream_size($size)
- {
- $this->read_stream_size = $size;
- return $this;
- }
-
- public function set_read_stream($resource, $size = null)
- {
- if (!isset($size) || $size < 0) {
- $stats = fstat($resource);
- if ($stats && $stats['size'] >= 0) {
- $position = ftell($resource);
- if ($position !== false && $position >= 0) {
- $size = $stats['size'] - $position;
- }
- }
- }
- $this->read_stream = $resource;
- return $this->set_read_stream_size($size);
- }
-
- public function set_read_file($location)
- {
- $this->read_file = $location;
- $read_file_handle = fopen($location, 'r');
- return $this->set_read_stream($read_file_handle);
- }
-
- public function set_write_stream($resource)
- {
- $this->write_stream = $resource;
- return $this;
- }
-
- public function set_write_file($location)
- {
- $this->write_file = $location;
- }
-
- public function set_proxy($proxy)
- {
- $proxy = parse_url($proxy);
- $proxy['user'] = isset($proxy['user']) ? $proxy['user'] : null;
- $proxy['pass'] = isset($proxy['pass']) ? $proxy['pass'] : null;
- $proxy['port'] = isset($proxy['port']) ? $proxy['port'] : null;
- $this->proxy = $proxy;
- return $this;
- }
-
- public function set_seek_position($position)
- {
- $this->seek_position = isset($position) ? (integer)$position : null;
- return $this;
- }
-
- public function streaming_header_callback($curl_handle, $header_content)
- {
- $code = curl_getinfo($curl_handle, CURLINFO_HTTP_CODE);
- if (isset($this->write_file) && intval($code) / 100 == 2 && !isset($this->write_file_handle))
- {
- $this->write_file_handle = fopen($this->write_file, 'w');
- $this->set_write_stream($this->write_file_handle);
- }
- $this->response_raw_headers .= $header_content;
- return strlen($header_content);
- }
-
-
- public function register_streaming_read_callback($callback)
- {
- $this->registered_streaming_read_callback = $callback;
- return $this;
- }
-
- public function register_streaming_write_callback($callback)
- {
- $this->registered_streaming_write_callback = $callback;
- return $this;
- }
-
-
-
- public function streaming_read_callback($curl_handle, $file_handle, $length)
- {
-
- if ($this->read_stream_read >= $this->read_stream_size) {
-
- return '';
- }
-
- if ($this->read_stream_read == 0 && isset($this->seek_position) && $this->seek_position !== ftell($this->read_stream)) {
- if (fseek($this->read_stream, $this->seek_position) !== 0) {
- throw new RequestCore_Exception('The stream does not support seeking and is either not at the requested position or the position is unknown.');
- }
- }
- $read = fread($this->read_stream, min($this->read_stream_size - $this->read_stream_read, $length));
- $this->read_stream_read += strlen($read);
- $out = $read === false ? '' : $read;
-
- if ($this->registered_streaming_read_callback) {
- call_user_func($this->registered_streaming_read_callback, $curl_handle, $file_handle, $out);
- }
- return $out;
- }
-
- public function streaming_write_callback($curl_handle, $data)
- {
- $code = curl_getinfo($curl_handle, CURLINFO_HTTP_CODE);
-
- if (intval($code) / 100 != 2)
- {
- $this->response_error_body .= $data;
- return strlen($data);
- }
- $length = strlen($data);
- $written_total = 0;
- $written_last = 0;
-
- while ($written_total < $length) {
- $written_last = fwrite($this->write_stream, substr($data, $written_total));
- if ($written_last === false) {
- return $written_total;
- }
- $written_total += $written_last;
- }
-
- if ($this->registered_streaming_write_callback) {
- call_user_func($this->registered_streaming_write_callback, $curl_handle, $written_total);
- }
- return $written_total;
- }
-
- public function prep_request()
- {
- $curl_handle = curl_init();
-
- curl_setopt($curl_handle, CURLOPT_URL, $this->request_url);
- curl_setopt($curl_handle, CURLOPT_FILETIME, true);
- curl_setopt($curl_handle, CURLOPT_FRESH_CONNECT, false);
- curl_setopt($curl_handle, CURLOPT_MAXREDIRS, 5);
- curl_setopt($curl_handle, CURLOPT_HEADER, true);
- curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl_handle, CURLOPT_TIMEOUT, $this->timeout);
- curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, $this->connect_timeout);
- curl_setopt($curl_handle, CURLOPT_NOSIGNAL, true);
- curl_setopt($curl_handle, CURLOPT_REFERER, $this->request_url);
- curl_setopt($curl_handle, CURLOPT_USERAGENT, $this->useragent);
- curl_setopt($curl_handle, CURLOPT_HEADERFUNCTION, array($this, 'streaming_header_callback'));
- curl_setopt($curl_handle, CURLOPT_READFUNCTION, array($this, 'streaming_read_callback'));
-
- if ($this->ssl_verification) {
- curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, true);
- curl_setopt($curl_handle, CURLOPT_SSL_VERIFYHOST, 2);
- } else {
- curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl_handle, CURLOPT_SSL_VERIFYHOST, false);
- }
-
- if ($this->cacert_location === true) {
- curl_setopt($curl_handle, CURLOPT_CAINFO, dirname(__FILE__) . '/cacert.pem');
- } elseif (is_string($this->cacert_location)) {
- curl_setopt($curl_handle, CURLOPT_CAINFO, $this->cacert_location);
- }
-
- if ($this->debug_mode) {
- curl_setopt($curl_handle, CURLOPT_VERBOSE, true);
- }
-
- if (!ini_get('safe_mode') && !ini_get('open_basedir')) {
- curl_setopt($curl_handle, CURLOPT_FOLLOWLOCATION, true);
- }
-
- if ($this->proxy) {
- $host = $this->proxy['host'];
- $host .= ($this->proxy['port']) ? ':' . $this->proxy['port'] : '';
- curl_setopt($curl_handle, CURLOPT_PROXY, $host);
- if (isset($this->proxy['user']) && isset($this->proxy['pass'])) {
- curl_setopt($curl_handle, CURLOPT_PROXYUSERPWD, $this->proxy['user'] . ':' . $this->proxy['pass']);
- }
- }
-
- if ($this->username && $this->password) {
- curl_setopt($curl_handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
- curl_setopt($curl_handle, CURLOPT_USERPWD, $this->username . ':' . $this->password);
- }
-
- if (extension_loaded('zlib')) {
- curl_setopt($curl_handle, CURLOPT_ENCODING, '');
- }
-
- if (isset($this->request_headers) && count($this->request_headers)) {
- $temp_headers = array();
- foreach ($this->request_headers as $k => $v) {
- $temp_headers[] = $k . ': ' . $v;
- }
- curl_setopt($curl_handle, CURLOPT_HTTPHEADER, $temp_headers);
- }
- switch ($this->method) {
- case self::HTTP_PUT:
-
- curl_setopt($curl_handle, CURLOPT_CUSTOMREQUEST, 'PUT');
- if (isset($this->read_stream)) {
- if (!isset($this->read_stream_size) || $this->read_stream_size < 0) {
- throw new RequestCore_Exception('The stream size for the streaming upload cannot be determined.');
- }
- curl_setopt($curl_handle, CURLOPT_INFILESIZE, $this->read_stream_size);
- curl_setopt($curl_handle, CURLOPT_UPLOAD, true);
- } else {
- curl_setopt($curl_handle, CURLOPT_POSTFIELDS, $this->request_body);
- }
- break;
- case self::HTTP_POST:
- curl_setopt($curl_handle, CURLOPT_CUSTOMREQUEST, 'POST');
- if (isset($this->read_stream)) {
- if (!isset($this->read_stream_size) || $this->read_stream_size < 0) {
- throw new RequestCore_Exception('The stream size for the streaming upload cannot be determined.');
- }
- curl_setopt($curl_handle, CURLOPT_INFILESIZE, $this->read_stream_size);
- curl_setopt($curl_handle, CURLOPT_UPLOAD, true);
- } else {
- curl_setopt($curl_handle, CURLOPT_POSTFIELDS, $this->request_body);
- }
- break;
- case self::HTTP_HEAD:
- curl_setopt($curl_handle, CURLOPT_CUSTOMREQUEST, self::HTTP_HEAD);
- curl_setopt($curl_handle, CURLOPT_NOBODY, 1);
- break;
- default:
- curl_setopt($curl_handle, CURLOPT_CUSTOMREQUEST, $this->method);
- if (isset($this->write_stream) || isset($this->write_file)) {
- curl_setopt($curl_handle, CURLOPT_WRITEFUNCTION, array($this, 'streaming_write_callback'));
- curl_setopt($curl_handle, CURLOPT_HEADER, false);
- } else {
- curl_setopt($curl_handle, CURLOPT_POSTFIELDS, $this->request_body);
- }
- break;
- }
-
- if (isset($this->curlopts) && sizeof($this->curlopts) > 0) {
- foreach ($this->curlopts as $k => $v) {
- curl_setopt($curl_handle, $k, $v);
- }
- }
- return $curl_handle;
- }
-
- public function process_response($curl_handle = null, $response = null)
- {
-
- if ($curl_handle && $response) {
- $this->response = $response;
- }
-
- if (is_resource($curl_handle)) {
-
- $header_size = curl_getinfo($curl_handle, CURLINFO_HEADER_SIZE);
- $this->response_headers = substr($this->response, 0, $header_size);
- $this->response_body = substr($this->response, $header_size);
- $this->response_code = curl_getinfo($curl_handle, CURLINFO_HTTP_CODE);
- $this->response_info = curl_getinfo($curl_handle);
-
- if (intval($this->response_code) / 100 != 2 && isset($this->write_file))
- {
- $this->response_headers = $this->response_raw_headers;
- $this->response_body = $this->response_error_body;
- }
-
- $this->response_headers = explode("\r\n\r\n", trim($this->response_headers));
- $this->response_headers = array_pop($this->response_headers);
- $this->response_headers = explode("\r\n", $this->response_headers);
- array_shift($this->response_headers);
-
- $header_assoc = array();
- foreach ($this->response_headers as $header) {
- $kv = explode(': ', $header);
- $header_assoc[strtolower($kv[0])] = isset($kv[1]) ? $kv[1] : '';
- }
-
- $this->response_headers = $header_assoc;
- $this->response_headers['info'] = $this->response_info;
- $this->response_headers['info']['method'] = $this->method;
-
- if ($curl_handle && $response) {
- return new ResponseCore($this->response_headers, $this->response_body, $this->response_code);
- }
- }
-
- return false;
- }
-
- public function send_request($parse = false)
- {
- set_time_limit(0);
- $curl_handle = $this->prep_request();
- $this->response = curl_exec($curl_handle);
- if ($this->response === false) {
- throw new RequestCore_Exception('cURL resource: ' . (string)$curl_handle . '; cURL error: ' . curl_error($curl_handle) . ' (' . curl_errno($curl_handle) . ')');
- }
- $parsed_response = $this->process_response($curl_handle, $this->response);
- curl_close($curl_handle);
- if ($parse) {
- return $parsed_response;
- }
- return $this->response;
- }
-
-
-
- public function get_response_header($header = null)
- {
- if ($header) {
- return $this->response_headers[strtolower($header)];
- }
- return $this->response_headers;
- }
-
- public function get_response_body()
- {
- return $this->response_body;
- }
-
- public function get_response_code()
- {
- return $this->response_code;
- }
- }
|