diff --git a/core/includes/common.inc b/core/includes/common.inc index 08ce2ab..e0e1e39 100644 --- a/core/includes/common.inc +++ b/core/includes/common.inc @@ -798,7 +798,40 @@ function drupal_http_request($url, array $options = array()) { // stream_socket_client() requires timeout to be a float. $options['timeout'] = (float) $options['timeout']; + // Proxy setup + $proxy_server = variable_get('proxy_server', ''); + // Use a proxy if one is defined and the host is not on the excluded list. + if ($proxy_server && _drupal_http_use_proxy($uri['host'])) { + // Since the URL is passed as the path, we won't use the parsed query. + unset($uri['query']); + $uri['path'] = $url; + // Set the scheme so we open a socket to the proxy server. + $uri['scheme'] = 'proxy'; + if ($proxy_username = variable_get('proxy_username', '')) { + $proxy_password = variable_get('proxy_password', ''); + $options['headers']['Proxy-Authorization'] = 'Basic ' . base64_encode($proxy_username . (!empty($proxy_password) ? ":" . $proxy_password : '')); + } + // Some proxies reject requests with any User-Agent headers, while others + // require a specific one. + $proxy_user_agent = variable_get('proxy_user_agent', ''); + // The default value matches neither condition. + if ($proxy_user_agent === NULL) { + unset($options['headers']['User-Agent']); + } + elseif ($proxy_user_agent) { + $options['headers']['User-Agent'] = $proxy_user_agent; + } + } + switch ($uri['scheme']) { + case 'proxy': + // Make the socket connection to a proxy server. + $socket = 'tcp://' . $proxy_server . ':' . variable_get('proxy_port', 8080); + // The Host header still needs to match the real request. + $options['headers']['Host'] = $uri['host']; + $options['headers']['Host'] .= isset($uri['port']) && $uri['port'] != 80 ? ':' . $uri['port'] : ''; + break; + case 'http': case 'feed': $port = isset($uri['port']) ? $uri['port'] : 80; @@ -808,12 +841,14 @@ function drupal_http_request($url, array $options = array()) { // checking the host that do not take into account the port number. $options['headers']['Host'] = $uri['host'] . ($port != 80 ? ':' . $port : ''); break; + case 'https': // Note: Only works when PHP is compiled with OpenSSL support. $port = isset($uri['port']) ? $uri['port'] : 443; $socket = 'ssl://' . $uri['host'] . ':' . $port; $options['headers']['Host'] = $uri['host'] . ($port != 443 ? ':' . $port : ''); break; + default: $result->error = 'invalid schema ' . $uri['scheme']; $result->code = -1003; @@ -1025,6 +1060,18 @@ function drupal_http_request($url, array $options = array()) { return $result; } + +/** + * Helper function for determining hosts excluded from needing a proxy. + * + * @return + * TRUE if a proxy should be used for this host. + */ +function _drupal_http_use_proxy($host) { + $proxy_exceptions = variable_get('proxy_exceptions', array('localhost', '127.0.0.1')); + return !in_array(strtolower($host), $proxy_exceptions, TRUE); +} + /** * @} End of "HTTP handling". */ diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index 4f3fab8..e145354 100755 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -520,6 +520,20 @@ $conf['404_fast_html'] = '