|
@@ -43,17 +43,19 @@ final class StreamContextFactory
|
|
|
|
|
|
if (isset($proxyPort)) {
|
|
|
$proxyURL .= ":" . $proxyPort;
|
|
|
+ } else {
|
|
|
+ if ('http://' == substr($proxyURL, 0, 7)) {
|
|
|
+ $proxyURL .= ":80";
|
|
|
+ } else if ('https://' == substr($proxyURL, 0, 8)) {
|
|
|
+ $proxyURL .= ":443";
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// http(s):// is not supported in proxy
|
|
|
- if ('http://' == substr($proxy, 0, 7)) {
|
|
|
- $proxy = 'tcp://' . rtrim(substr($proxy, 7), '/') . (parse_url($proxy, PHP_URL_PORT) ? '' : ':80');
|
|
|
- } else if ('https://' == substr($proxy, 0, 8)) {
|
|
|
- $proxy = 'ssl://' . rtrim(substr($proxy, 8), '/') . (parse_url($proxy, PHP_URL_PORT) ? '' : ':443');
|
|
|
- }
|
|
|
+ $proxyURL = str_replace(array('http://', 'https://'), array('tcp://', 'ssl://'), $proxyURL);
|
|
|
|
|
|
if (0 === strpos($proxyURL, 'ssl:') && !extension_loaded('openssl')) {
|
|
|
- throw new \RuntimeException('You must enable the openssl extension to use a proxy over https');
|
|
|
+ throw new \RuntimeException('You must enable the openssl extension to use a proxy over https');
|
|
|
}
|
|
|
|
|
|
$options['http'] = array(
|