-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Client factories for Guzzle and Symfony #287
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,95 +16,50 @@ openseach-php removes the hard-coded dependency on the [Guzzle HTTP client](http | |
|
||
You can continue to use Guzzle, but will need to configure it as a PSR-18 HTTP Client. | ||
|
||
### HTTP Client Auto-Discovery | ||
### PSR-18 HTTP Client Interfaces | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The TOC needed an update, did in #290. |
||
|
||
opensearch-php 2.x will try and discover and install a PSR HTTP Client using [PHP-HTTP Discovery](https://docs.php-http.org/en/latest/discovery.html) | ||
if one is not explicitly provided. | ||
Starting with `opensearch-php` 2.4.0 you can use any PSR-18 compatible HTTP client. | ||
|
||
```php | ||
$transport = (new \OpenSearch\TransportFactory())->create(); | ||
$endpointFactory = new \OpenSearch\EndpointFactory(); | ||
$client = new Client($transport, $endpointFactory, []); | ||
|
||
// Send a request to the 'info' endpoint. | ||
$info = $client->info(); | ||
``` | ||
To simplify creating a Client, we provide two factories to create PSR-18 HTTP clients | ||
for Guzzle and Symfony HTTP clients. | ||
|
||
### Configuring Guzzle HTTP Client in 2.x | ||
### Configuring Guzzle HTTP Client in 2.4.x | ||
|
||
To configure Guzzle as a PSR HTTP Client with the similar configuration to opensearch 1.x you can use the following example: | ||
|
||
Ensure the Guzzle packages are installed via composer: | ||
|
||
```php | ||
$guzzleClient = new \GuzzleHttp\Client([ | ||
composer require guzzlehttp/guzzle | ||
``` | ||
|
||
```php | ||
$client = (new \OpenSearch\GuzzleClientFactory())->create([ | ||
'base_uri' => 'https://localhost:9200', | ||
'auth' => ['admin', getenv('OPENSEARCH_PASSWORD')], | ||
'verify' => false, | ||
'retries' => 2, | ||
'headers' => [ | ||
'Accept' => 'application/json', | ||
'Content-Type' => 'application/json', | ||
'User-Agent' => sprintf('opensearch-php/%s (%s; PHP %s)', \OpenSearch\Client::VERSION, PHP_OS, PHP_VERSION), | ||
] | ||
]); | ||
|
||
$guzzleHttpFactory = new \GuzzleHttp\Psr7\HttpFactory(); | ||
|
||
$serializer = new \OpenSearch\Serializers\SmartSerializer(); | ||
|
||
$requestFactory = new \OpenSearch\RequestFactory( | ||
$guzzleHttpFactory, | ||
$guzzleHttpFactory, | ||
$guzzleHttpFactory, | ||
$serializer, | ||
); | ||
|
||
$transport = (new OpenSearch\TransportFactory()) | ||
->setHttpClient($guzzleClient) | ||
->setRequestFactory($requestFactory) | ||
->create(); | ||
|
||
$endpointFactory = new \OpenSearch\EndpointFactory(); | ||
$client = new \OpenSearch\Client($transport, $endpointFactory, []); | ||
|
||
// Send a request to the 'info' endpoint. | ||
$info = $client->info(); | ||
``` | ||
|
||
### Configuring Symfony HTTP Client in 2.x | ||
### Configuring Symfony HTTP Client in 2.4.x | ||
|
||
You can configure [Symfony HTTP Client](https://symfony.com/doc/current/http_client.html) as a PSR HTTP Client using | ||
the following example: | ||
|
||
```php | ||
$symfonyPsr18Client = (new \Symfony\Component\HttpClient\Psr18Client())->withOptions([ | ||
composer require symfony/http-client | ||
``` | ||
|
||
```php | ||
$client = (new \OpenSearch\SymfonyClientFactory())->create([ | ||
'base_uri' => 'https://localhost:9200', | ||
'auth_basic' => ['admin', getenv('OPENSEARCH_PASSWORD')], | ||
'verify_peer' => false, | ||
'max_retries' => 2, | ||
'headers' => [ | ||
'Accept' => 'application/json', | ||
'Content-Type' => 'application/json', | ||
], | ||
]); | ||
|
||
$serializer = new \OpenSearch\Serializers\SmartSerializer(); | ||
|
||
$requestFactory = new \OpenSearch\RequestFactory( | ||
$symfonyPsr18Client, | ||
$symfonyPsr18Client, | ||
$symfonyPsr18Client, | ||
$serializer, | ||
); | ||
|
||
$transport = (new \OpenSearch\TransportFactory()) | ||
->setHttpClient($symfonyPsr18Client) | ||
->setRequestFactory($requestFactory) | ||
->create(); | ||
|
||
$endpointFactory = new \OpenSearch\EndpointFactory(); | ||
$client = new \OpenSearch\Client($transport, $endpointFactory, []); | ||
|
||
// Send a request to the 'info' endpoint. | ||
$info = $client->info(); | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace OpenSearch; | ||
|
||
/** | ||
* Creates an OpenSearch client. | ||
*/ | ||
interface ClientFactoryInterface | ||
{ | ||
/** | ||
* Creates a new OpenSearch client. | ||
* | ||
* @param array<string,mixed> $options | ||
* The options to use when creating the client. The options are specific to the HTTP client implementation. | ||
*/ | ||
public function create(array $options): Client; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace OpenSearch; | ||
|
||
use OpenSearch\HttpClient\GuzzleHttpClientFactory; | ||
use Psr\Log\LoggerInterface; | ||
use GuzzleHttp\Psr7\HttpFactory; | ||
use OpenSearch\Serializers\SmartSerializer; | ||
|
||
/** | ||
* Creates an OpenSearch client using Guzzle. | ||
*/ | ||
class GuzzleClientFactory implements ClientFactoryInterface | ||
{ | ||
public function __construct( | ||
protected int $maxRetries = 0, | ||
protected ?LoggerInterface $logger = null, | ||
) { | ||
} | ||
|
||
/** | ||
* @param array<string,mixed> $options | ||
* The Guzzle client options. | ||
*/ | ||
public function create(array $options): Client | ||
{ | ||
$httpClient = (new GuzzleHttpClientFactory($this->maxRetries, $this->logger))->create($options); | ||
$httpFactory = new HttpFactory(); | ||
|
||
$serializer = new SmartSerializer(); | ||
|
||
$requestFactory = new RequestFactory( | ||
$httpFactory, | ||
$httpFactory, | ||
$httpFactory, | ||
$serializer, | ||
); | ||
|
||
$transport = (new TransportFactory()) | ||
->setHttpClient($httpClient) | ||
->setRequestFactory($requestFactory) | ||
->create(); | ||
|
||
return new Client($transport, new EndpointFactory($serializer), []); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
|
||
namespace OpenSearch; | ||
|
||
use OpenSearch\HttpClient\SymfonyHttpClientFactory; | ||
use OpenSearch\Serializers\SmartSerializer; | ||
use Psr\Log\LoggerInterface; | ||
|
||
/** | ||
* Creates an OpenSearch client using Symfony HTTP Client. | ||
*/ | ||
class SymfonyClientFactory implements ClientFactoryInterface | ||
{ | ||
public function __construct( | ||
protected int $maxRetries = 0, | ||
protected ?LoggerInterface $logger = null, | ||
) { | ||
} | ||
|
||
/** | ||
* Creates a new OpenSearch client using Symfony HTTP Client. | ||
* | ||
* @param array<string,mixed> $options | ||
* The Symfony HTTP Client options. | ||
*/ | ||
public function create(array $options): Client | ||
{ | ||
$httpClient = (new SymfonyHttpClientFactory($this->maxRetries, $this->logger))->create($options); | ||
|
||
$serializer = new SmartSerializer(); | ||
|
||
$requestFactory = new RequestFactory( | ||
$httpClient, | ||
$httpClient, | ||
$httpClient, | ||
$serializer, | ||
); | ||
|
||
$transport = (new TransportFactory()) | ||
->setHttpClient($httpClient) | ||
->setRequestFactory($requestFactory) | ||
->create(); | ||
|
||
$endpointFactory = new EndpointFactory(); | ||
return new Client($transport, $endpointFactory, []); | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added missing PR numbers in #290.