-
Notifications
You must be signed in to change notification settings - Fork 56
Add integrations, add symfony bundle documentation #93
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.row-even .line-block, .row-odd .line-block { | ||
margin-left: 0; | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Framework Integrations | ||
====================== | ||
|
||
HTTPlug provides the following framework integrations: | ||
|
||
.. toctree:: | ||
|
||
symfony-bundle | ||
symfony-full-configuration |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
Symfony Bundle | ||
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. should we add a link to the HTTPlug tutorial in this chapter? saying that this is explaining how to use the symfony integration, but basic usage is in the tutorial? 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. Sound good 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. added a note |
||
============== | ||
|
||
This bundle integrate HTTPlug with the Symfony framework. The bundle helps to register services for all your clients and makes sure all the configuration is in one place. The bundle also feature a toolbar plugin with information about your requests. | ||
|
||
This guide explains how to configure HTTPlug in the Symfony framework. See the :doc:`../httplug/tutorial` for examples how to use HTTPlug in general. | ||
|
||
Installation | ||
```````````` | ||
|
||
Install the HTTPlug bundle with composer and enable it in your AppKernel.php. | ||
|
||
.. code-block:: bash | ||
|
||
$ composer require php-http/httplug-bundle | ||
|
||
.. code-block:: php | ||
|
||
public function registerBundles() | ||
{ | ||
$bundles = array( | ||
// ... | ||
new Http\HttplugBundle\HttplugBundle(), | ||
); | ||
} | ||
|
||
You will find all available configuration at the :doc:`full configuration </integrations/symfony-full-configuration>` page. | ||
|
||
Usage | ||
````` | ||
|
||
.. code-block:: yaml | ||
|
||
httplug: | ||
plugins: | ||
logger: ~ | ||
clients: | ||
acme: | ||
factory: 'httplug.factory.guzzle6' | ||
plugins: ['httplug.plugin.logger'] | ||
config: | ||
verify: false | ||
timeout: 2 | ||
|
||
.. code-block:: php | ||
|
||
$request = $this->container->get('httplug.message_factory')->createRequest('GET', 'http://example.com'); | ||
$response = $this->container->get('httplug.client.acme')->sendRequest($request); | ||
|
||
|
||
Web Debug Toolbar | ||
````````````````` | ||
.. image:: /assets/img/debug-toolbar.png | ||
:align: right | ||
:width: 120px | ||
|
||
When using a client configured with ``HttplugBundle``, you will get debug information in the web debug toolbar. It will tell you how many request were made and how many of those that were successful or not. It will also show you detailed information about each request. | ||
|
||
Discovery of Factory Classes | ||
```````````````````````````` | ||
|
||
If you want the bundle to automatically find usable factory classes, install and enable ``puli/symfony-bundle``. If you do not want use auto discovery, you need to specify all the factory classes for you client. The following example show how you configure factory classes using Guzzle: | ||
|
||
.. code-block:: yaml | ||
|
||
httplug: | ||
classes: | ||
client: Http\Adapter\Guzzle6\Client | ||
message_factory: Http\Message\MessageFactory\GuzzleMessageFactory | ||
uri_factory: Http\Message\UriFactory\GuzzleUriFactory | ||
stream_factory: Http\Message\StreamFactory\GuzzleStreamFactory | ||
|
||
|
||
|
||
Configure Clients | ||
````````````````` | ||
|
||
You can configure your clients with default options. These default values will be specific to you client you are using. The clients are later registered as services. | ||
|
||
.. code-block:: yaml | ||
|
||
httplug: | ||
clients: | ||
my_guzzle5: | ||
factory: 'httplug.factory.guzzle5' | ||
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. we should explain why this factory exists and what the available names are. or if this is a custom service, we should not put it in the httplug namespace 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. commented in #94 |
||
config: | ||
# These options are given to Guzzle without validation. | ||
defaults: | ||
verify_ssl: false | ||
timeout: 4 | ||
acme: | ||
factory: 'httplug.factory.curl' | ||
config: | ||
78: 4 #CURLOPT_CONNECTTIMEOUT | ||
|
||
.. code-block:: php | ||
|
||
$httpClient = $this->container->get('httplug.client.my_guzzle5'); | ||
$httpClient = $this->container->get('httplug.client.curl'); | ||
|
||
// will be the same as ``httplug.client.my_guzzle5`` | ||
$httpClient = $this->container->get('httplug.client'); | ||
|
||
The bundle has client factory services that you can use to build your client. If you need a very custom made client you could create your own factory service implementing ``Http\HttplugBudle\ClientFactory\ClientFactory``. The built-in services are: | ||
|
||
* ``httplug.factory.curl`` | ||
* ``httplug.factory.guzzle5`` | ||
* ``httplug.factory.guzzle6`` | ||
* ``httplug.factory.react`` | ||
* ``httplug.factory.socket`` | ||
|
||
Plugins | ||
``````` | ||
|
||
You can configure the clients with plugins. You can choose to use a built in plugin in the ``php-http/plugins`` package or provide a plugin of your own. The order of the specified plugin does matter. | ||
|
||
.. code-block:: yaml | ||
|
||
// services.yml | ||
acme_plugin: | ||
class: Acme\Plugin\MyCustomPlugin | ||
arguments: ["%some_parameter%"] | ||
|
||
.. code-block:: yaml | ||
|
||
// config.yml | ||
httplug: | ||
plugins: | ||
cache: | ||
cache_pool: 'my_cache_pool' | ||
clients: | ||
acme: | ||
factory: 'httplug.factory.guzzle6' | ||
plugins: ['acme_plugin', 'httplug.plugin.cache', 'httplug.plugin.retry'] | ||
|
||
|
||
Authentication | ||
`````````````` | ||
|
||
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. explain what this is and link to the authentication documentation for background 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. handled in #94 |
||
You can configure a client with authentication. Valid authentication types are ``basic``, ``bearer``, ``service`` and ``wsse``. See more examples at the :doc:`full configuration </integrations/symfony-full-configuration>`. | ||
|
||
.. code-block:: yaml | ||
|
||
// config.yml | ||
httplug: | ||
plugins: | ||
authentication: | ||
my_wsse: | ||
type: 'wsse' | ||
username: 'my_username' | ||
password: 'p4ssw0rd' | ||
|
||
clients: | ||
acme: | ||
factory: 'httplug.factory.guzzle6' | ||
plugins: ['httplug.plugin.authentication.my_wsse'] | ||
|
||
|
||
List of Services | ||
```````````````` | ||
|
||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
| Service id | Description | | ||
+=====================================+=========================================================================+ | ||
| ``httplug.message_factory`` | Service* that provides the `Http\Message\MessageFactory` | | ||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
| ``httplug.uri_factory`` | Service* that provides the `Http\Message\UriFactory` | | ||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
| ``httplug.stream_factory`` | Service* that provides the `Http\Message\StreamFactory` | | ||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
| ``httplug.client.[name]`` | There is one service per named client. | | ||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
| ``httplug.client`` | | If there is a client named "default", this service is an alias to | | ||
| | | that client, otherwise it is an alias to the first client configured. | | ||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
| | ``httplug.plugin.content_length`` | | These are plugins that are enabled by default. | | ||
| | ``httplug.plugin.decoder`` | | These services are private and should only be used to configure | | ||
| | ``httplug.plugin.error`` | | clients or other services. | | ||
| | ``httplug.plugin.logger`` | | | ||
| | ``httplug.plugin.redirect`` | | | ||
| | ``httplug.plugin.retry`` | | | ||
| | ``httplug.plugin.stopwatch`` | | | ||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
| | ``httplug.plugin.cache`` | | These are plugins that are disabled by default and only get | | ||
| | ``httplug.plugin.cookie`` | | activated when configured. | | ||
| | ``httplug.plugin.history`` | | These services are private and should only be used to configure | | ||
| | | clients or other services. | | ||
+-------------------------------------+-------------------------------------------------------------------------+ | ||
|
||
\* *These services are always an alias to another service. You can specify your own service or leave the default, which is the same name with `.default` appended.* | ||
|
||
|
||
Usage for Reusable Bundles | ||
`````````````````````````` | ||
|
||
Rather than code against specific HTTP clients, you want to use the HTTPlug ``Client`` interface. To avoid building your own infrastructure to define services for the client, simply ``require: php-http/httplug-bundle`` in your bundles ``composer.json``. You SHOULD provide a configuration option to specify the which HTTP client service to use for each of your services. This option should default to ``httplug.client``. This way, the default case needs no additional configuration for your users, but they have the option of using specific clients with each of your services. | ||
|
||
The only steps they need is ``require`` one of the adapter implementations in their projects ``composer.json`` and instantiating the ``HttplugBundle`` in their kernel. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
Full configuration | ||
================== | ||
|
||
This page shows an example of all configuration values provided by the bundle. | ||
|
||
.. code-block:: yaml | ||
|
||
// config.yml | ||
httplug: | ||
main_alias: | ||
client: httplug.client.default | ||
message_factory: httplug.message_factory.default | ||
uri_factory: httplug.uri_factory.default | ||
stream_factory: httplug.stream_factory.default | ||
classes: | ||
# uses discovery if not specified | ||
client: ~ | ||
message_factory: ~ | ||
uri_factory: ~ | ||
stream_factory: ~ | ||
|
||
plugins: | ||
authentication: | ||
my_basic: | ||
type: 'basic' | ||
username: 'my_username' | ||
password: 'p4ssw0rd' | ||
my_wsse: | ||
type: 'wsse' | ||
username: 'my_username' | ||
password: 'p4ssw0rd' | ||
my_bearer: | ||
type: 'bearer' | ||
token: 'authentication_token_hash' | ||
my_service: | ||
type: 'service' | ||
service: 'my_authentication_service' | ||
cache: | ||
enabled: true | ||
cache_pool: 'my_cache_pool' | ||
stream_factory: 'httplug.stream_factory' | ||
config: | ||
default_ttl: 3600 | ||
respect_cache_headers: true | ||
cookie: | ||
enabled: true | ||
cookie_jar: my_cookie_jar | ||
decoder: | ||
enabled: true | ||
use_content_encoding: true | ||
history: | ||
enabled: true | ||
journal: my_journal | ||
logger: | ||
enabled: true | ||
logger: 'logger' | ||
formatter: null | ||
redirect: | ||
enabled: true | ||
preserve_header: true | ||
use_default_for_multiple: true | ||
retry: | ||
enabled: true | ||
retry: 1 | ||
stopwatch: | ||
enabled: true | ||
stopwatch: 'debug.stopwatch' | ||
clients: | ||
acme: | ||
factory: 'httplug.factory.guzzle6' | ||
plugins: ['httplug.plugin.authentication.my_wsse', 'httplug.plugin.cache', 'httplug.plugin.retry'] | ||
config: | ||
verify: false | ||
timeout: 2 | ||
# more options to the guzzle 6 constructor | ||
|
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.
do you agree with linking to the tutorial instead? i think that is more helpful than the integration part anyways.