Skip to content

Commit

Permalink
Merge pull request #72 from php-http/socket-client
Browse files Browse the repository at this point in the history
Document Socket client
  • Loading branch information
ddeboer committed Jan 5, 2016
2 parents fa9580b + 1b1bbc6 commit 1f11fa4
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 6 deletions.
7 changes: 1 addition & 6 deletions clients/guzzle6-adapter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ Or send asynchronous ones::
// Returns a Http\Promise\Promise
$promise = $adapter->sendAsyncRequest(request);

Further reading
---------------

* Read more about :doc:`promises </components/promise>`.
* Learn how you can decouple your code from any PSR-7 implementation (such as
Guzzle’s above) by using a :ref:`message factory <message-factory>`.
.. include:: includes/further-reading-async.inc

.. _Guzzle 6 HTTP client: http://docs.guzzlephp.org/
7 changes: 7 additions & 0 deletions clients/includes/further-reading-async.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Further reading
---------------

.. include:: includes/further-reading.inc

* Read more about :doc:`promises </components/promise>` when using asynchronous
requests.
4 changes: 4 additions & 0 deletions clients/includes/further-reading-sync.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Further reading
---------------

.. include:: includes/further-reading.inc
5 changes: 5 additions & 0 deletions clients/includes/further-reading.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* Use :ref:`plugins <plugins>` to customize the way HTTP requests are sent and
responses processed by following redirects, adding Authentication or Cookie
headers and more.
* Learn how you can decouple your code from any PSR-7 implementation by using a
:ref:`message factory <message-factory>`.
62 changes: 62 additions & 0 deletions clients/socket-client.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,64 @@
Socket Client
=============

The socket client uses the stream extension from PHP, which is integrated into
the core.

Features
--------

* TCP Socket Domain (``tcp://hostname:port``)
* UNIX Socket Domain (``unix:///path/to/socket.sock``)
* TLS / SSL encryption
* Client Certificate (only for PHP > 5.6)

Installation
------------

To install the Socket client, run:

.. code-block:: bash
$ composer require php-http/socket-client
Usage
-----

The Socket client needs a :ref:`message factory <message-factory>` in order to
to work::

use Http\Client\Socket\Client;

$options = [];
$client = new Client($messageFactory, $options);

The available options are:

:remote_socket: Specify the remote socket where the library should send the request to

* Can be a TCP remote: ``tcp://hostname:port``
* Can be a UNIX remote: ``unix:///path/to/remote.sock``
* Do not use a TLS/SSL scheme, this is handle by the SSL option.
* If not set, the client will try to determine it from the request URI or host header.
:timeout: Timeout in milliseconds for writing request and reading response on the remote
:ssl: Activate or deactivate SSL/TLS encryption
:stream_context_options: Custom options for the context of the stream. See `PHP stream context options <http://php.net/manual/en/context.php>`_.
:stream_context_params: Custom parameters for the context of the stream. See `PHP stream context parameters <http://php.net/manual/en/context.params.php>`_.
:write_buffer_size: When sending the request we need to buffer the body, this option specify the size of this buffer, default is 8192,
if you are sending big file with your client it may be interesting to have a bigger value in order to increase performance.

As an example someone may want to pass a client certificate when using the ssl, a valid configuration for this
use case would be::

use Http\Client\Socket\Client;

$options = [
'stream_context_options' => [
'ssl' => [
'local_cert' => '/path/to/my/client-certificate.pem'
]
]
];
$client = new Client($messageFactory, $options);

.. include:: includes/further-reading-sync.inc
2 changes: 2 additions & 0 deletions plugins/index.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. _plugins:

Plugins
=======

Expand Down

0 comments on commit 1f11fa4

Please sign in to comment.