The LswApiCallerBundle adds a CURL API caller to your Symfony2 application. It is easy to use from the code and is aimed to have full debugging capabilities.
Read the LeaseWebLabs blog about LswApiCallerBundle
- PHP 5.3 with curl support
- Symfony >= 2.1
Installation is broken down in the following steps:
- Download LswApiCallerBundle using composer
- Enable the Bundle
- Make sure the cURL module in PHP is enabled
Add LswApiCallerBundle in your composer.json:
{
"require": {
"leaseweb/api-caller-bundle": "*",
...
}
}
Now tell composer to download the bundle by running the command:
$ php composer.phar update leaseweb/api-caller-bundle
Composer will install the bundle to your project's vendor/leaseweb
directory.
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Lsw\ApiCallerBundle\LswApiCallerBundle(),
);
}
On a Debian based distribution (like Ubuntu) the package is called "php5-curl" and can be installed using the following commands:
$ sudo apt-get install php5-curl
$ sudo service apache2 restart
On a RedHat based distribution (like CentOS) the package is called "php-curl" and can be installed using the following commands:
$ sudo yum install php-curl
$ sudo service httpd restart
To check this create and run a PHP file with the following contents:
<?php phpinfo() ?>
It should display that the option "cURL support" is set to "enabled".
This package should work on a Windows installation as well provided the CURL support is enabled in PHP.
You can use the caller by getting the service "api_caller" and using the "call" function with one of the available call types:
- HttpGetJson
- HttpPostJson
- HttpPostJsonBody (the body will be json_encode)
- HttpPutJson
- HttpDeleteJson
- HttpGetHtml
Example of usage with the "HttpGetJson" call type:
use Symfony\Bundle\FrameworkBundle\Controller\Controller
use Lsw\ApiCallerBundle\Call\HttpGetJson;
class SomeController extends Controller
{
public function someAction()
{
...
$output = $this->get('api_caller')->call(new HttpGetJson($url, $parameters));
...
}
}
Example of usage with the "HttpPostJsonBody" call type:
use Symfony\Bundle\FrameworkBundle\Controller\Controller
use Lsw\ApiCallerBundle\Call\HttpPostJsonBody;
class SomeController extends Controller
{
public function someAction()
{
...
$arrayToPost = array(
'ip_address' => array(
'name' => 'IpName',
'hostname' => 'HostName',
'ip' => '192.168.0.1',
'throttling_template' => array(
'name' => 'Throttling Template'
)
)
); // this will be json_encode. If you don't want to json_encode, use HttpPostJson instead of HttpPostJsonBody
$output = $this->get('api_caller')->call(new HttpPostJsonBody($url, $arrayToPost, true, $parameters)); // true to have an associative array as answer
...
}
}
By default it uses these cURL options:
parameters:
api_caller.options:
timeout: 10 # maximum transport + execution duration of the call in sec.
ssl_verifypeer: false # to stop cURL from verifying the peer's certificate.
useragent: "LeaseWeb API Caller" # contents of the "User-Agent: " header.
followlocation: true # to follow any "Location: " header that the server sends.
sslversion: 3 # set to 3 to avoid any bugs that relate to automatic version selection.
fresh_connect: false # set to true to force full reconnect every call.
This bundle is under the MIT license.
The "wall-socket" icon in the web debug toolbar is part of the Picas icon set (official website: http://www.picasicons.com). The icon is licensed and may only be used to identifying the LswApiCallerBundle in the Symfony2 web debug toolbar. All ownership and copyright of this icon remain the property of Rok Benedik.