use another method to strip out headers

This commit is contained in:
Friendika 2011-07-03 02:19:43 -07:00
parent cffc4ef14d
commit 12b114f6ad
1 changed files with 14 additions and 30 deletions

View File

@ -702,13 +702,12 @@ function fetch_url($url,$binary = false, &$redirects = 0) {
$s = @curl_exec($ch); $s = @curl_exec($ch);
$http_code = intval(curl_getinfo($ch, CURLINFO_HTTP_CODE)); $curl_info = curl_getinfo($ch);
$header = substr($s,0,strpos($s,"\r\n\r\n")); $header_size = $curl_info['header_size'];
if(preg_match('/HTTP\/.+? 100/',$header)) { $http_code = $curl_info['http_code'];
// 100 Continue has two headers, get the real one
$s = substr($s,strlen($header)+4); $header = substr($s,0,$header_size);
$header = substr($s,0,strpos($s,"\r\n\r\n"));
}
if($http_code == 301 || $http_code == 302 || $http_code == 303 || $http_code == 307) { if($http_code == 301 || $http_code == 302 || $http_code == 303 || $http_code == 307) {
$matches = array(); $matches = array();
preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches); preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
@ -721,14 +720,7 @@ function fetch_url($url,$binary = false, &$redirects = 0) {
} }
$a->set_curl_code($http_code); $a->set_curl_code($http_code);
$body = substr($s,strlen($header)+4); $body = substr($s,$header_size);
/* one more try to make sure there are no more headers */
if(strpos($body,'HTTP/') === 0) {
$header = substr($body,0,strpos($body,"\r\n\r\n"));
$body = substr($body,strlen($header)+4);
}
$a->set_curl_headers($header); $a->set_curl_headers($header);
@ -775,13 +767,12 @@ function post_url($url,$params, $headers = null, &$redirects = 0) {
$s = @curl_exec($ch); $s = @curl_exec($ch);
$http_code = intval(curl_getinfo($ch, CURLINFO_HTTP_CODE)); $curl_info = curl_getinfo($ch);
$header = substr($s,0,strpos($s,"\r\n\r\n")); $header_size = $curl_info['header_size'];
if(preg_match('/HTTP\/.+? 100/',$header)) { $http_code = $curl_info['http_code'];
// 100 Continue has two headers, get the real one
$s = substr($s,strlen($header)+4); $header = substr($s,0,$header_size);
$header = substr($s,0,strpos($s,"\r\n\r\n"));
}
if($http_code == 301 || $http_code == 302 || $http_code == 303) { if($http_code == 301 || $http_code == 302 || $http_code == 303) {
$matches = array(); $matches = array();
preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches); preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
@ -793,14 +784,7 @@ function post_url($url,$params, $headers = null, &$redirects = 0) {
} }
} }
$a->set_curl_code($http_code); $a->set_curl_code($http_code);
$body = substr($s,strlen($header)+4); $body = substr($s,$header_size);
/* one more try to make sure there are no more headers */
if(strpos($body,'HTTP/') === 0) {
$header = substr($body,0,strpos($body,"\r\n\r\n"));
$body = substr($body,strlen($header)+4);
}
$a->set_curl_headers($header); $a->set_curl_headers($header);