Simplified proxy port determination and passed tests
parent
2ca50a1ef3
commit
8918551f29
|
@ -43,14 +43,16 @@ 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');
|
||||
|
|
Loading…
Reference in New Issue