linkmobility-php-client/src/Client.php

126 lines
3.3 KiB
PHP
Raw Normal View History

2022-06-20 14:47:33 +02:00
<?php
/**
2022-07-13 10:50:45 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
2022-06-20 14:47:33 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-07-13 10:50:45 +02:00
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link https://www.oxidmodule.com
2022-06-20 14:47:33 +02:00
*/
2022-07-13 10:41:23 +02:00
declare(strict_types=1);
2022-06-24 16:00:56 +02:00
2022-06-20 14:47:33 +02:00
namespace D3\LinkmobilityClient;
use D3\LinkmobilityClient\Exceptions\ApiException;
2022-06-24 16:00:56 +02:00
use D3\LinkmobilityClient\Exceptions\ExceptionMessages;
2022-06-20 14:47:33 +02:00
use D3\LinkmobilityClient\Request\RequestInterface;
2022-07-10 21:52:37 +02:00
use GuzzleHttp\ClientInterface;
2022-06-24 16:00:56 +02:00
use GuzzleHttp\Exception\GuzzleException;
use InvalidArgumentException;
use Psr\Http\Message\ResponseInterface;
use Psr\Log\LoggerInterface;
2022-06-20 14:47:33 +02:00
class Client
{
private $accessToken;
public $apiUrl;
public $requestClient;
private $logger;
2022-07-10 21:52:37 +02:00
public function __construct(string $accessToken, UrlInterface $apiUrl = null, ClientInterface $client = null)
2022-06-20 14:47:33 +02:00
{
$this->accessToken = $accessToken;
$this->apiUrl = $apiUrl ?: new Url();
2022-07-13 10:41:23 +02:00
$this->requestClient = $client ?: new \GuzzleHttp\Client([ 'base_uri' => $this->apiUrl->getBaseUri() ]);
2022-06-20 14:47:33 +02:00
}
2022-06-24 16:00:56 +02:00
/**
* @param RequestInterface $request
*
* @return Response\ResponseInterface
* @throws ApiException
* @throws GuzzleException
* @throws InvalidArgumentException
2022-06-24 16:00:56 +02:00
*/
2022-07-13 10:41:23 +02:00
public function request(RequestInterface $request): Response\ResponseInterface
2022-06-20 14:47:33 +02:00
{
$request->validate();
2022-06-20 14:47:33 +02:00
return $request->getResponseInstance(
$this->rawRequest($request->getUri(), $request->getMethod(), $request->getOptions())
);
}
/**
* @param $url
* @param string $method
2022-06-24 16:00:56 +02:00
* @param array $options
2022-06-20 14:47:33 +02:00
*
* @return ResponseInterface
2022-06-20 14:47:33 +02:00
* @throws ApiException
* @throws GuzzleException
*/
2022-07-13 10:41:23 +02:00
protected function rawRequest($url, string $method = RequestInterface::METHOD_GET, array $options = []): ResponseInterface
2022-06-20 14:47:33 +02:00
{
$options['headers']['Authorization'] = 'Bearer '.$this->accessToken;
2022-07-13 10:41:23 +02:00
if ($this->hasLogger()) {
$this->getLogger()->debug('request '.$url, $options);
}
2022-06-20 14:47:33 +02:00
$response = $this->requestClient->request(
$method,
$url,
$options
);
if ($response->getStatusCode() != 200) {
2022-07-10 21:52:37 +02:00
$message = sprintf(ExceptionMessages::NOK_REQUEST_RETURN, $url, $response->getStatusCode());
2022-07-13 10:41:23 +02:00
if ($this->hasLogger()) {
$this->getLogger()->error($message);
}
throw new ApiException($message);
}
if ($this->hasLogger()) {
$response->getBody()->rewind();
$this->getLogger()->debug('response', [$response->getBody()->getContents()]);
2022-06-20 14:47:33 +02:00
}
return $response;
}
/**
* @param mixed $logger
*
* @return Client
*/
2022-07-13 10:41:23 +02:00
public function setLogger(LoggerInterface $logger): Client
{
$this->logger = $logger;
return $this;
}
/**
* @return bool
*/
2022-07-13 10:41:23 +02:00
public function hasLogger(): bool
{
return $this->logger instanceof LoggerInterface;
}
/**
2022-07-11 15:06:18 +02:00
* @return LoggerInterface|null
*/
2022-07-11 15:06:18 +02:00
public function getLogger()
{
2022-07-10 21:52:37 +02:00
return $this->hasLogger() ? $this->logger : null;
2022-07-04 13:31:12 +02:00
}
2022-07-13 10:41:23 +02:00
}