Skip to content

Commit

Permalink
feat: Add support timeouts in milliseconds for HTTP client (#1783)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolicaleksa authored Oct 28, 2024
1 parent 383514b commit af7955a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/HttpClient/HttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,27 @@ public function sendRequest(Request $request, Options $options): Response
curl_setopt($curlHandle, \CURLOPT_URL, $dsn->getEnvelopeApiEndpointUrl());
curl_setopt($curlHandle, \CURLOPT_HTTPHEADER, $requestHeaders);
curl_setopt($curlHandle, \CURLOPT_USERAGENT, $this->sdkIdentifier . '/' . $this->sdkVersion);
curl_setopt($curlHandle, \CURLOPT_TIMEOUT, $options->getHttpTimeout());
curl_setopt($curlHandle, \CURLOPT_CONNECTTIMEOUT, $options->getHttpConnectTimeout());
curl_setopt($curlHandle, \CURLOPT_ENCODING, '');
curl_setopt($curlHandle, \CURLOPT_POST, true);
curl_setopt($curlHandle, \CURLOPT_POSTFIELDS, $requestData);
curl_setopt($curlHandle, \CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandle, \CURLOPT_HEADERFUNCTION, $responseHeaderCallback);
curl_setopt($curlHandle, \CURLOPT_HTTP_VERSION, \CURL_HTTP_VERSION_1_1);

$httpTimeout = $options->getHttpTimeout();
if ($httpTimeout < 1.0) {
curl_setopt($curlHandle, \CURLOPT_TIMEOUT_MS, $httpTimeout * 1000);
} else {
curl_setopt($curlHandle, \CURLOPT_TIMEOUT, $httpTimeout);
}

$connectTimeout = $options->getHttpConnectTimeout();
if ($connectTimeout < 1.0) {
curl_setopt($curlHandle, \CURLOPT_CONNECTTIMEOUT_MS, $connectTimeout * 1000);
} else {
curl_setopt($curlHandle, \CURLOPT_CONNECTTIMEOUT, $connectTimeout);
}

$httpSslVerifyPeer = $options->getHttpSslVerifyPeer();
if (!$httpSslVerifyPeer) {
curl_setopt($curlHandle, \CURLOPT_SSL_VERIFYPEER, false);
Expand Down
14 changes: 14 additions & 0 deletions tests/OptionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,13 @@ static function (): void {},
'setHttpTimeout',
];

yield [
'http_timeout',
0.2,
'getHttpTimeout',
'setHttpTimeout',
];

yield [
'http_connect_timeout',
1,
Expand All @@ -355,6 +362,13 @@ static function (): void {},
'setHttpConnectTimeout',
];

yield [
'http_connect_timeout',
0.2,
'getHttpConnectTimeout',
'setHttpConnectTimeout',
];

yield [
'http_ssl_verify_peer',
false,
Expand Down

0 comments on commit af7955a

Please sign in to comment.