|
@@ -34,21 +34,23 @@ final class StreamContextFactory
|
|
|
// Handle system proxy
|
|
|
if (isset($_SERVER['HTTP_PROXY']) || isset($_SERVER['http_proxy'])) {
|
|
|
// Some systems seem to rely on a lowercased version instead...
|
|
|
- $proxy = isset($_SERVER['http_proxy']) ? $_SERVER['http_proxy'] : $_SERVER['HTTP_PROXY'];
|
|
|
-
|
|
|
- $proxyURL = parse_url($proxy, PHP_URL_SCHEME) . "://";
|
|
|
- $proxyURL .= parse_url($proxy, PHP_URL_HOST);
|
|
|
-
|
|
|
- $proxyPort = parse_url($proxy, PHP_URL_PORT);
|
|
|
-
|
|
|
- if (isset($proxyPort)) {
|
|
|
- $proxyURL .= ":" . $proxyPort;
|
|
|
- } else if ('http://' == substr($proxyURL, 0, 7)) {
|
|
|
+ $proxy = parse_url(isset($_SERVER['http_proxy']) ? $_SERVER['http_proxy'] : $_SERVER['HTTP_PROXY']);
|
|
|
+ } else {
|
|
|
+ $proxy = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (false !== $proxy) {
|
|
|
+ $proxyURL = (isset($proxy['scheme']) ? $proxy['scheme'] : '') . '://';
|
|
|
+ $proxyURL .= isset($proxy['host']) ? $proxy['host'] : '';
|
|
|
+
|
|
|
+ if (isset($proxy['port'])) {
|
|
|
+ $proxyURL .= ":" . $proxy['port'];
|
|
|
+ } elseif ('http://' == substr($proxyURL, 0, 7)) {
|
|
|
$proxyURL .= ":80";
|
|
|
- } else if ('https://' == substr($proxyURL, 0, 8)) {
|
|
|
+ } elseif ('https://' == substr($proxyURL, 0, 8)) {
|
|
|
$proxyURL .= ":443";
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// http(s):// is not supported in proxy
|
|
|
$proxyURL = str_replace(array('http://', 'https://'), array('tcp://', 'ssl://'), $proxyURL);
|
|
|
|
|
@@ -60,18 +62,14 @@ final class StreamContextFactory
|
|
|
'proxy' => $proxyURL,
|
|
|
'request_fulluri' => true,
|
|
|
);
|
|
|
-
|
|
|
- // Extract authentication credentials from the proxy url
|
|
|
- $user = parse_url($proxy, PHP_URL_USER);
|
|
|
- $pass = parse_url($proxy, PHP_URL_PASS);
|
|
|
-
|
|
|
- if (isset($user)) {
|
|
|
- $auth = $user;
|
|
|
- if (isset($pass)) {
|
|
|
- $auth .= ":{$pass}";
|
|
|
+
|
|
|
+ if (isset($proxy['user'])) {
|
|
|
+ $auth = $proxy['user'];
|
|
|
+ if (isset($proxy['pass'])) {
|
|
|
+ $auth .= ':' . $proxy['pass'];
|
|
|
}
|
|
|
$auth = base64_encode($auth);
|
|
|
-
|
|
|
+
|
|
|
// Preserve headers if already set in default options
|
|
|
if (isset($defaultOptions['http']['header'])) {
|
|
|
$defaultOptions['http']['header'] .= "Proxy-Authorization: Basic {$auth}\r\n";
|
|
@@ -80,8 +78,9 @@ final class StreamContextFactory
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
$options = array_merge_recursive($options, $defaultOptions);
|
|
|
-
|
|
|
+
|
|
|
return stream_context_create($options, $defaultParams);
|
|
|
}
|
|
|
}
|