From b83c09678c97879d60e0aad74dd461e8accc9250 Mon Sep 17 00:00:00 2001 From: chx <chx@9446.no-reply.drupal.org> Date: Mon, 23 Jul 2012 12:13:26 -0700 Subject: [PATCH] Issue #1112876 by chx: Added Support digest auth. --- libraries/http_request.inc | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/libraries/http_request.inc b/libraries/http_request.inc index e4009995..392d9f79 100644 --- a/libraries/http_request.inc +++ b/libraries/http_request.inc @@ -31,18 +31,9 @@ class HRCurlException extends Exception {} * @return bool|string string - the discovered feed, FALSE - if the URL is not reachable or there */ function http_request_get_common_syndication($url, $settings = NULL) { - $password = $username = NULL; - if (feeds_valid_url($url, TRUE)) { - // Handle password protected feeds. - $url_parts = parse_url($url); - if (!empty($url_parts['user'])) { - $password = $url_parts['pass']; - $username = $url_parts['user']; - } - } $accept_invalid_cert = isset($settings['accept_invalid_cert']) ? $settings['accept_invalid_cert'] : FALSE; - $download = http_request_get($url, $username, $password, $accept_invalid_cert); + $download = http_request_get($url, NULL, NULL, $accept_invalid_cert); // Cannot get the feed, return. // http_request_get() always returns 200 even if its 304. @@ -82,6 +73,15 @@ function http_request_get_common_syndication($url, $settings = NULL) { * @return object A stdClass object that describes the data downloaded from $url. The object's */ function http_request_get($url, $username = NULL, $password = NULL, $accept_invalid_cert = FALSE) { + if (!$username && valid_url($url, TRUE)) { + // Handle password protected feeds. + $url_parts = parse_url($url); + if (!empty($url_parts['user'])) { + $password = $url_parts['pass']; + $username = $url_parts['user']; + } + } + // Intra-pagedownload cache, avoid to download the same content twice within one page download // (it's possible, compatible and parse calls). static $download_cache = array(); @@ -152,6 +152,7 @@ function http_request_get($url, $username = NULL, $password = NULL, $accept_inva curl_setopt($download, CURLOPT_FOLLOWLOCATION, TRUE); if (!empty($username)) { curl_setopt($download, CURLOPT_USERPWD, "{$username}:{$password}"); + curl_setopt($download, CURLOPT_HTTPAUTH, CURLAUTH_ANY); } curl_setopt($download, CURLOPT_HTTPHEADER, $headers); curl_setopt($download, CURLOPT_HEADER, TRUE); -- GitLab