<?php
namespace Cardinity\Http\Guzzle;
use Cardinity\Exception;
use Cardinity\Http\ClientInterface;
use Cardinity\Http\Guzzle\ExceptionMapper;
use Cardinity\Method\MethodInterface;
use GuzzleHttp;
use GuzzleHttp\Exception\ClientException;
/**
* Adapter for GuzzleHttp client
*/
class ClientAdapter implements ClientInterface
{
/** @type GuzzleHttp\ClientInterface */
private $client;
/** @type ExceptionMapper */
private $mapper;
/**
* @param GuzzleHttp\ClientInterface $client
* @param ExceptionMapper $mapper
*/
public function __construct(
GuzzleHttp\ClientInterface $client,
ExceptionMapper $mapper
) {
$this->client = $client;
$this->mapper = $mapper;
}
/**
* Send HTTP request
* @param MethodInterface $method
* @param string $requestMethod POST|GET|PATCH
* @param string $url http URL
* @param array $options query options. Query values goes under 'body' key.
*
* @return array
*/
public function sendRequest(
MethodInterface $method,
$requestMethod,
$url,
array $options = []
) {
try {
$response = $this->client->send(
$this->client->createRequest($requestMethod, $url, $options)
);
return $response->json();
} catch (ClientException $e) {
throw $this->mapper->get($e, $method);
} catch (\Exception $e) {
throw new Exception\UnexpectedError('Unexpected error', $e->getCode(), $e);
}
}
}