Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4:
  [DoctrineBridge] Fix Connection::createSchemaManager() for Doctrine DBAL v2
  [HttpClient] Various cleanups after recent changes
  do not add child nodes to EmptyNode instances
  consider write property visibility to decide whether a property is writable
  add comment explaining why HttpClient tests are run separately
  silence warnings issued by Redis Sentinel on connection issues
  • Loading branch information
nicolas-grekas committed Nov 25, 2024
2 parents 214e292 + cbeefef commit 128f3a2
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 76 deletions.
7 changes: 2 additions & 5 deletions CurlHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,8 @@ private static function createRedirectResolver(array $options, string $host, int
}
}

return static function ($ch, string $location, bool $noContent, bool &$locationHasHost) use (&$redirectHeaders, $options) {
return static function ($ch, string $location, bool $noContent) use (&$redirectHeaders, $options) {
try {
$locationHasHost = false;
$location = self::parseUrl($location);
$url = self::parseUrl(curl_getinfo($ch, \CURLINFO_EFFECTIVE_URL));
$url = self::resolveUrl($location, $url);
Expand All @@ -433,9 +432,7 @@ private static function createRedirectResolver(array $options, string $host, int
$redirectHeaders['with_auth'] = array_filter($redirectHeaders['with_auth'], $filterContentHeaders);
}

$locationHasHost = isset($location['authority']);

if ($redirectHeaders && $locationHasHost) {
if ($redirectHeaders && isset($location['authority'])) {
$port = parse_url($location['authority'], \PHP_URL_PORT) ?: ('http:' === $location['scheme'] ? 80 : 443);
$requestHeaders = parse_url($location['authority'], \PHP_URL_HOST) === $redirectHeaders['host'] && $redirectHeaders['port'] === $port ? $redirectHeaders['with_auth'] : $redirectHeaders['no_auth'];
curl_setopt($ch, \CURLOPT_HTTPHEADER, $requestHeaders);
Expand Down
4 changes: 3 additions & 1 deletion NativeHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ public function request(string $method, string $url, array $options = []): Respo

$progressInfo = $info;
$progressInfo['url'] = implode('', $info['url']);
$progressInfo['resolve'] = $resolve;
unset($progressInfo['size_body']);

// Memoize the last progress to ease calling the callback periodically when no network transfer happens
Expand All @@ -167,7 +168,7 @@ public function request(string $method, string $url, array $options = []): Respo
$lastProgress = $progress ?: $lastProgress;
}

$onProgress($lastProgress[0], $lastProgress[1], $progressInfo, $resolve);
$onProgress($lastProgress[0], $lastProgress[1], $progressInfo);
};
} elseif (0 < $options['max_duration']) {
$maxDuration = $options['max_duration'];
Expand Down Expand Up @@ -352,6 +353,7 @@ private static function dnsResolve(string $host, NativeClientState $multi, array

$multi->dnsCache[$host] = $ip = $ip[0];
$info['debug'] .= "* Added {$host}:0:{$ip} to DNS cache\n";
$host = $ip;
} else {
$info['debug'] .= "* Hostname was found in DNS cache\n";
$host = str_contains($ip, ':') ? "[$ip]" : $ip;
Expand Down
20 changes: 8 additions & 12 deletions NoPrivateNetworkHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,24 +56,20 @@ public function request(string $method, string $url, array $options = []): Respo

$subnets = $this->subnets;

$options['on_progress'] = static function (int $dlNow, int $dlSize, array $info, ?\Closure $resolve = null) use ($onProgress, $subnets): void {
$options['on_progress'] = static function (int $dlNow, int $dlSize, array $info) use ($onProgress, $subnets): void {
static $lastUrl = '';
static $lastPrimaryIp = '';

if ($info['url'] !== $lastUrl) {
$host = trim(parse_url($info['url'], PHP_URL_HOST) ?: '', '[]');
$resolve ??= static fn () => null;
$host = parse_url($info['url'], PHP_URL_HOST) ?: '';
$resolve = $info['resolve'] ?? static function () { return null; };

if (($ip = $host)
&& !filter_var($ip, \FILTER_VALIDATE_IP, \FILTER_FLAG_IPV6)
&& !filter_var($ip, \FILTER_VALIDATE_IP, \FILTER_FLAG_IPV4)
&& !$ip = $resolve($host)
if (($ip = trim($host, '[]'))
&& !filter_var($ip, \FILTER_VALIDATE_IP)
&& !($ip = $resolve($host))
&& $ip = @(gethostbynamel($host)[0] ?? dns_get_record($host, \DNS_AAAA)[0]['ipv6'] ?? null)
) {
if ($ip = @(dns_get_record($host, \DNS_A)[0]['ip'] ?? null)) {
$resolve($host, $ip);
} elseif ($ip = @(dns_get_record($host, \DNS_AAAA)[0]['ipv6'] ?? null)) {
$resolve($host, '['.$ip.']');
}
$resolve($host, $ip);
}

if ($ip && IpUtils::checkIp($ip, $subnets ?? IpUtils::PRIVATE_SUBNETS)) {
Expand Down
3 changes: 2 additions & 1 deletion Response/AmpResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ public function __construct(
$onProgress = $options['on_progress'] ?? static function () {};
$onProgress = $this->onProgress = static function () use (&$info, $onProgress, $resolve) {
$info['total_time'] = microtime(true) - $info['start_time'];
$onProgress((int) $info['size_download'], ((int) (1 + $info['download_content_length']) ?: 1) - 1, (array) $info, $resolve);
$info['resolve'] = $resolve;
$onProgress((int) $info['size_download'], ((int) (1 + $info['download_content_length']) ?: 1) - 1, (array) $info);
};

$pauseDeferred = new Deferred();
Expand Down
4 changes: 2 additions & 2 deletions Response/AsyncContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ public function replaceRequest(string $method, string $url, array $options = [])
$this->info['previous_info'][] = $info = $this->response->getInfo();
if (null !== $onProgress = $options['on_progress'] ?? null) {
$thisInfo = &$this->info;
$options['on_progress'] = static function (int $dlNow, int $dlSize, array $info, ?\Closure $resolve = null) use (&$thisInfo, $onProgress) {
$onProgress($dlNow, $dlSize, $thisInfo + $info, $resolve);
$options['on_progress'] = static function (int $dlNow, int $dlSize, array $info) use (&$thisInfo, $onProgress) {
$onProgress($dlNow, $dlSize, $thisInfo + $info);
};
}
if (0 < ($info['max_duration'] ?? 0) && 0 < ($info['total_time'] ?? 0)) {
Expand Down
19 changes: 16 additions & 3 deletions Response/AsyncResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public function __construct(HttpClientInterface $client, string $method, string

if (null !== $onProgress = $options['on_progress'] ?? null) {
$thisInfo = &$this->info;
$options['on_progress'] = static function (int $dlNow, int $dlSize, array $info, ?\Closure $resolve = null) use (&$thisInfo, $onProgress) {
$onProgress($dlNow, $dlSize, $thisInfo + $info, $resolve);
$options['on_progress'] = static function (int $dlNow, int $dlSize, array $info) use (&$thisInfo, $onProgress) {
$onProgress($dlNow, $dlSize, $thisInfo + $info);
};
}
$this->response = $client->request($method, $url, ['buffer' => false] + $options);
Expand Down Expand Up @@ -118,11 +118,20 @@ public function getHeaders(bool $throw = true): array

public function getInfo(?string $type = null): mixed
{
if ('debug' === ($type ?? 'debug')) {
$debug = implode('', array_column($this->info['previous_info'] ?? [], 'debug'));
$debug .= $this->response->getInfo('debug');

if ('debug' === $type) {
return $debug;
}
}

if (null !== $type) {
return $this->info[$type] ?? $this->response->getInfo($type);
}

return $this->info + $this->response->getInfo();
return array_merge($this->info + $this->response->getInfo(), ['debug' => $debug]);
}

/**
Expand Down Expand Up @@ -253,6 +262,7 @@ public static function stream(iterable $responses, ?float $timeout = null, ?stri
return;
}

$chunk = null;
foreach ($client->stream($wrappedResponses, $timeout) as $response => $chunk) {
$r = $asyncMap[$response];

Expand Down Expand Up @@ -295,6 +305,9 @@ public static function stream(iterable $responses, ?float $timeout = null, ?stri
}
}

if (null === $chunk) {
throw new \LogicException(\sprintf('"%s" is not compliant with HttpClientInterface: its "stream()" method didn\'t yield any chunks when it should have.', get_debug_type($client)));
}
if (null === $chunk->getError() && $chunk->isLast()) {
$r->yieldedState = self::LAST_CHUNK_YIELDED;
}
Expand Down
14 changes: 2 additions & 12 deletions Response/CurlResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function __construct(
try {
rewind($debugBuffer);
$debug = ['debug' => stream_get_contents($debugBuffer)];
$onProgress($dlNow, $dlSize, $url + curl_getinfo($ch) + $info + $debug, $resolve);
$onProgress($dlNow, $dlSize, $url + curl_getinfo($ch) + $info + $debug + ['resolve' => $resolve]);
} catch (\Throwable $e) {
$multi->handlesActivity[(int) $ch][] = null;
$multi->handlesActivity[(int) $ch][] = $e;
Expand Down Expand Up @@ -425,21 +425,11 @@ private static function parseHeaderLine($ch, string $data, array &$info, array &
$info['http_method'] = 'HEAD' === $info['http_method'] ? 'HEAD' : 'GET';
curl_setopt($ch, \CURLOPT_CUSTOMREQUEST, $info['http_method']);
}
$locationHasHost = false;

if (null === $info['redirect_url'] = $resolveRedirect($ch, $location, $noContent, $locationHasHost)) {
if (null === $info['redirect_url'] = $resolveRedirect($ch, $location, $noContent)) {
$options['max_redirects'] = curl_getinfo($ch, \CURLINFO_REDIRECT_COUNT);
curl_setopt($ch, \CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, \CURLOPT_MAXREDIRS, $options['max_redirects']);
} elseif ($locationHasHost) {
$url = parse_url($info['redirect_url']);

if (null !== $ip = $multi->dnsCache->hostnames[$url['host'] = strtolower($url['host'])] ?? null) {
// Populate DNS cache for redirects if needed
$port = $url['port'] ?? ('http' === $url['scheme'] ? 80 : 443);
curl_setopt($ch, \CURLOPT_RESOLVE, ["{$url['host']}:$port:$ip"]);
$multi->dnsCache->removals["-{$url['host']}:$port"] = "-{$url['host']}:$port";
}
}
}

Expand Down
54 changes: 16 additions & 38 deletions Tests/NoPrivateNetworkHttpClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function testExcludeByIp(string $ipAddr, $subnets, bool $mustThrow)
$this->expectExceptionMessage(sprintf('IP "%s" is blocked for "%s".', $ipAddr, $url));
}

$previousHttpClient = $this->getHttpClientMock($url, $ipAddr, $content);
$previousHttpClient = $this->getMockHttpClient($ipAddr, $content);
$client = new NoPrivateNetworkHttpClient($previousHttpClient, $subnets);
$response = $client->request('GET', $url);

Expand All @@ -91,14 +91,15 @@ public function testExcludeByIp(string $ipAddr, $subnets, bool $mustThrow)
public function testExcludeByHost(string $ipAddr, $subnets, bool $mustThrow)
{
$content = 'foo';
$url = sprintf('http://%s/', str_contains($ipAddr, ':') ? sprintf('[%s]', $ipAddr) : $ipAddr);
$host = str_contains($ipAddr, ':') ? sprintf('[%s]', $ipAddr) : $ipAddr;
$url = sprintf('http://%s/', $host);

if ($mustThrow) {
$this->expectException(TransportException::class);
$this->expectExceptionMessage(sprintf('Host "%s" is blocked for "%s".', $ipAddr, $url));
$this->expectExceptionMessage(sprintf('Host "%s" is blocked for "%s".', $host, $url));
}

$previousHttpClient = $this->getHttpClientMock($url, $ipAddr, $content);
$previousHttpClient = $this->getMockHttpClient($ipAddr, $content);
$client = new NoPrivateNetworkHttpClient($previousHttpClient, $subnets);
$response = $client->request('GET', $url);

Expand All @@ -119,7 +120,7 @@ public function testCustomOnProgressCallback()
++$executionCount;
};

$previousHttpClient = $this->getHttpClientMock($url, $ipAddr, $content);
$previousHttpClient = $this->getMockHttpClient($ipAddr, $content);
$client = new NoPrivateNetworkHttpClient($previousHttpClient);
$response = $client->request('GET', $url, ['on_progress' => $customCallback]);

Expand All @@ -132,7 +133,6 @@ public function testNonCallableOnProgressCallback()
{
$ipAddr = '104.26.14.6';
$url = sprintf('http://%s/', $ipAddr);
$content = 'bar';
$customCallback = sprintf('cb_%s', microtime(true));

$this->expectException(InvalidArgumentException::class);
Expand All @@ -142,38 +142,16 @@ public function testNonCallableOnProgressCallback()
$client->request('GET', $url, ['on_progress' => $customCallback]);
}

private function getHttpClientMock(string $url, string $ipAddr, string $content)
public function testConstructor()
{
$previousHttpClient = $this
->getMockBuilder(HttpClientInterface::class)
->getMock();

$previousHttpClient
->expects($this->once())
->method('request')
->with(
'GET',
$url,
$this->callback(function ($options) {
$this->assertArrayHasKey('on_progress', $options);
$onProgress = $options['on_progress'];
$this->assertIsCallable($onProgress);

return true;
})
)
->willReturnCallback(function ($method, $url, $options) use ($ipAddr, $content): ResponseInterface {
$info = [
'primary_ip' => $ipAddr,
'url' => $url,
];

$onProgress = $options['on_progress'];
$onProgress(0, 0, $info);

return MockResponse::fromRequest($method, $url, [], new MockResponse($content));
});

return $previousHttpClient;
$this->expectException(\TypeError::class);
$this->expectExceptionMessage('Argument 2 passed to "Symfony\Component\HttpClient\NoPrivateNetworkHttpClient::__construct()" must be of the type array, string or null. "int" given.');

new NoPrivateNetworkHttpClient(new MockHttpClient(), 3);
}

private function getMockHttpClient(string $ipAddr, string $content)
{
return new MockHttpClient(new MockResponse($content, ['primary_ip' => $ipAddr]));
}
}
4 changes: 2 additions & 2 deletions TraceableHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ public function request(string $method, string $url, array $options = []): Respo
$content = false;
}

$options['on_progress'] = function (int $dlNow, int $dlSize, array $info, ?\Closure $resolve = null) use (&$traceInfo, $onProgress) {
$options['on_progress'] = function (int $dlNow, int $dlSize, array $info) use (&$traceInfo, $onProgress) {
$traceInfo = $info;

if (null !== $onProgress) {
$onProgress($dlNow, $dlSize, $info, $resolve);
$onProgress($dlNow, $dlSize, $info);
}
};

Expand Down

0 comments on commit 128f3a2

Please sign in to comment.