RestClient.php 6.29 KB
Newer Older
Ketan's avatar
Ketan committed
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
<?php
/**
 * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
 */
namespace Temando\Shipping\Rest;

use Temando\Shipping\Rest\Exception\RestClientErrorException;
use Temando\Shipping\Rest\Exception\RestException;
use Temando\Shipping\Rest\Exception\RestResponseException;
use Temando\Shipping\Webservice\Exception\HttpException;
use Temando\Shipping\Webservice\HttpClientInterface;
use Temando\Shipping\Webservice\HttpClientInterfaceFactory;

/**
 * Temando HTTP REST Client
 *
 * @package Temando\Shipping\Rest
 * @author  Christoph Aßmann <christoph.assmann@netresearch.de>
 * @author  Sebastian Ertner <sebastian.ertner@netresearch.de>
 * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
 * @link    https://www.temando.com/
 */
class RestClient implements RestClientInterface
{
    /**
     * @var HttpClientInterfaceFactory
     */
    private $httpClientFactory;

    /**
     * RestClient constructor.
     * @param HttpClientInterfaceFactory $httpClientFactory
     */
    public function __construct(HttpClientInterfaceFactory $httpClientFactory)
    {
        $this->httpClientFactory = $httpClientFactory;
    }

    /**
     * @param string $uri
     * @param string $rawBody
     * @param string[] $headers
     * @return string
     * @throws RestException
     */
    public function post($uri, $rawBody, array $headers)
    {
        $httpClient = $this->httpClientFactory->create();
        $httpClient->setHeaders($headers);
        $httpClient->setUri($uri);
        $httpClient->setOptions(['trace' => 1, 'maxredirects' => 0, 'timeout' => 30, 'useragent' => 'M2']);
        $httpClient->setRawBody($rawBody);

        try {
            $response = $httpClient->send(HttpClientInterface::METHOD_POST);
        } catch (HttpException $e) {
            $errorCode = $e->getCode();
            if ($errorCode < 500 && $errorCode > 401) {
                // handle client errors with parseable content
                throw new RestClientErrorException($e->getMessage(), $e->getCode(), $e);
            } else {
                throw new RestResponseException($e->getMessage(), $e->getCode(), $e);
            }
        }

        return $response;
    }

    /**
     * @param string $uri
     * @param string $rawBody
     * @param string[] $headers
     * @return string
     * @throws RestException
     */
    public function put($uri, $rawBody, array $headers)
    {
        $httpClient = $this->httpClientFactory->create();
        $httpClient->setHeaders($headers);
        $httpClient->setUri($uri);
        $httpClient->setOptions(['trace' => 1, 'maxredirects' => 0, 'timeout' => 30, 'useragent' => 'M2']);
        $httpClient->setRawBody($rawBody);

        try {
            $response = $httpClient->send(HttpClientInterface::METHOD_PUT);
        } catch (HttpException $e) {
            $errorCode = $e->getCode();
            if ($errorCode < 500 && $errorCode >= 400) {
                // handle client errors with parseable content
                throw new RestClientErrorException($e->getMessage(), $e->getCode(), $e);
            } else {
                throw new RestResponseException($e->getMessage(), $e->getCode(), $e);
            }
        }

        return $response;
    }

    /**
     * @param string $uri
     * @param string $rawBody
     * @param string[] $headers
     * @return string
     * @throws RestException
     */
    public function patch($uri, $rawBody, array $headers)
    {
        $httpClient = $this->httpClientFactory->create();
        $httpClient->setHeaders($headers);
        $httpClient->setUri($uri);
        $httpClient->setOptions(['trace' => 1, 'maxredirects' => 0, 'timeout' => 30, 'useragent' => 'M2']);
        $httpClient->setRawBody($rawBody);

        try {
            $response = $httpClient->send(HttpClientInterface::METHOD_PATCH);
        } catch (HttpException $e) {
            $errorCode = $e->getCode();
            if ($errorCode < 500 && $errorCode >= 400) {
                // handle client errors with parseable content
                throw new RestClientErrorException($e->getMessage(), $e->getCode(), $e);
            } else {
                throw new RestResponseException($e->getMessage(), $e->getCode(), $e);
            }
        }

        return $response;
    }

    /**
     * @param string $uri
     * @param string[] $queryParams
     * @param string[] $headers
     * @return string
     * @throws RestException
     */
    public function get($uri, array $queryParams, array $headers)
    {
        $httpClient = $this->httpClientFactory->create();
        $httpClient->setHeaders($headers);
        $httpClient->setUri($uri);
        $httpClient->setOptions(['trace' => 1, 'maxredirects' => 0, 'timeout' => 30, 'useragent' => 'M2']);
        $httpClient->setParameterGet($queryParams);

        try {
            $response = $httpClient->send(HttpClientInterface::METHOD_GET);
        } catch (HttpException $e) {
            $errorCode = $e->getCode();
            if ($errorCode < 500 && $errorCode >= 400) {
                // handle client errors with parseable content
                throw new RestClientErrorException($e->getMessage(), $e->getCode(), $e);
            } else {
                throw new RestResponseException($e->getMessage(), $e->getCode(), $e);
            }
        }

        return $response;
    }

    /**
     * @param string $uri
     * @param string[] $headers
     *
     * @return string
     * @throws RestClientErrorException
     * @throws RestResponseException
     */
    public function delete($uri, array $headers)
    {
        $httpClient = $this->httpClientFactory->create();
        $httpClient->setHeaders($headers);
        $httpClient->setUri($uri);
        $httpClient->setOptions(['trace' => 1, 'maxredirects' => 0, 'timeout' => 30, 'useragent' => 'M2']);

        try {
            $response = $httpClient->send(HttpClientInterface::METHOD_DELETE);
        } catch (HttpException $e) {
            $errorCode = $e->getCode();
            if ($errorCode < 500 && $errorCode >= 400) {
                // handle client errors with parseable content
                throw new RestClientErrorException($e->getMessage(), $e->getCode(), $e);
            } else {
                throw new RestResponseException($e->getMessage(), $e->getCode(), $e);
            }
        }

        return $response;
    }
}