@@ -16,95 +16,50 @@ openseach-php removes the hard-coded dependency on the [Guzzle HTTP client](http
16
16
17
17
You can continue to use Guzzle, but will need to configure it as a PSR-18 HTTP Client.
18
18
19
- ### HTTP Client Auto-Discovery
19
+ ### PSR-18 HTTP Client Interfaces
20
20
21
- 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 )
22
- if one is not explicitly provided.
21
+ Starting with ` opensearch-php ` 2.4.0 you can use any PSR-18 compatible HTTP client.
23
22
24
- ``` php
25
- $transport = (new \OpenSearch\TransportFactory())->create();
26
- $endpointFactory = new \OpenSearch\EndpointFactory();
27
- $client = new Client($transport, $endpointFactory, []);
28
-
29
- // Send a request to the 'info' endpoint.
30
- $info = $client->info();
31
- ```
23
+ To simplify creating a Client, we provide two factories to create PSR-18 HTTP clients
24
+ for Guzzle and Symfony HTTP clients.
32
25
33
- ### Configuring Guzzle HTTP Client in 2.x
26
+ ### Configuring Guzzle HTTP Client in 2.4. x
34
27
35
28
To configure Guzzle as a PSR HTTP Client with the similar configuration to opensearch 1.x you can use the following example:
36
29
30
+ Ensure the Guzzle packages are installed via composer:
31
+
37
32
``` php
38
- $guzzleClient = new \GuzzleHttp\Client([
33
+ composer require guzzlehttp/guzzle
34
+ ```
35
+
36
+ ``` php
37
+ $client = (new \OpenSearch\GuzzleClientFactory())->create([
39
38
'base_uri' => 'https://localhost:9200',
40
39
'auth' => ['admin', getenv('OPENSEARCH_PASSWORD')],
41
40
'verify' => false,
42
- 'retries' => 2,
43
- 'headers' => [
44
- 'Accept' => 'application/json',
45
- 'Content-Type' => 'application/json',
46
- 'User-Agent' => sprintf('opensearch-php/%s (%s; PHP %s)', \OpenSearch\Client::VERSION, PHP_OS, PHP_VERSION),
47
- ]
48
41
]);
49
42
50
- $guzzleHttpFactory = new \GuzzleHttp\Psr7\HttpFactory();
51
-
52
- $serializer = new \OpenSearch\Serializers\SmartSerializer();
53
-
54
- $requestFactory = new \OpenSearch\RequestFactory(
55
- $guzzleHttpFactory,
56
- $guzzleHttpFactory,
57
- $guzzleHttpFactory,
58
- $serializer,
59
- );
60
-
61
- $transport = (new OpenSearch\TransportFactory())
62
- ->setHttpClient($guzzleClient)
63
- ->setRequestFactory($requestFactory)
64
- ->create();
65
-
66
- $endpointFactory = new \OpenSearch\EndpointFactory();
67
- $client = new \OpenSearch\Client($transport, $endpointFactory, []);
68
-
69
43
// Send a request to the 'info' endpoint.
70
44
$info = $client->info();
71
45
```
72
46
73
- ### Configuring Symfony HTTP Client in 2.x
47
+ ### Configuring Symfony HTTP Client in 2.4. x
74
48
75
49
You can configure [ Symfony HTTP Client] ( https://symfony.com/doc/current/http_client.html ) as a PSR HTTP Client using
76
50
the following example:
77
51
78
52
``` php
79
- $symfonyPsr18Client = (new \Symfony\Component\HttpClient\Psr18Client())->withOptions([
53
+ composer require symfony/http-client
54
+ ```
55
+
56
+ ``` php
57
+ $client = (new \OpenSearch\SymfonyClientFactory())->create([
80
58
'base_uri' => 'https://localhost:9200',
81
59
'auth_basic' => ['admin', getenv('OPENSEARCH_PASSWORD')],
82
60
'verify_peer' => false,
83
- 'max_retries' => 2,
84
- 'headers' => [
85
- 'Accept' => 'application/json',
86
- 'Content-Type' => 'application/json',
87
- ],
88
61
]);
89
62
90
- $serializer = new \OpenSearch\Serializers\SmartSerializer();
91
-
92
- $requestFactory = new \OpenSearch\RequestFactory(
93
- $symfonyPsr18Client,
94
- $symfonyPsr18Client,
95
- $symfonyPsr18Client,
96
- $serializer,
97
- );
98
-
99
- $transport = (new \OpenSearch\TransportFactory())
100
- ->setHttpClient($symfonyPsr18Client)
101
- ->setRequestFactory($requestFactory)
102
- ->create();
103
-
104
- $endpointFactory = new \OpenSearch\EndpointFactory();
105
- $client = new \OpenSearch\Client($transport, $endpointFactory, []);
106
-
107
63
// Send a request to the 'info' endpoint.
108
64
$info = $client->info();
109
-
110
65
```
0 commit comments