1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60:
<?php
namespace Affilinet\ProductData\HttpClient;
use Affilinet\ProductData\Exceptions\AffilinetProductWebserviceException;
use GuzzleHttp\ClientInterface;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
class GuzzleClient implements HttpClientInterface
{
private $guzzle;
public function __construct(ClientInterface $guzzle)
{
$this->guzzle = $guzzle;
}
public function send(RequestInterface $request, array $options = [])
{
$options = array_merge($options, ['http_errors' => false]);
$psr7Response = $this->guzzle->send($request, $options);
if ($psr7Response->getStatusCode() === 400) {
$responseArray = \GuzzleHttp\json_decode($psr7Response->getBody(), true);
throw new AffilinetProductWebserviceException($responseArray['ErrorMessages'][0]['Value']);
}
return $psr7Response;
}
}