1
0
mirror of synced 2024-11-22 21:36:06 +03:00
api-client-php/lib/RetailCrm/Http/Client.php

172 lines
4.9 KiB
PHP
Raw Normal View History

<?php
/**
* PHP version 5.4
*
* HTTP client
*
* @category RetailCrm
* @package RetailCrm
* @author RetailCrm <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
2019-08-30 14:10:52 +03:00
* @link https://help.retailcrm.ru/Developers/ApiVersion5
*/
namespace RetailCrm\Http;
use RetailCrm\Exception\CurlException;
2016-03-12 01:54:33 +03:00
use RetailCrm\Exception\InvalidJsonException;
use RetailCrm\Exception\LimitException;
use RetailCrm\Response\ApiResponse;
/**
* PHP version 5.4
2016-03-09 02:31:29 +03:00
*
* HTTP client
2016-03-09 02:31:29 +03:00
*
* @category RetailCrm
* @package RetailCrm
* @author RetailCrm <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
2019-08-30 14:10:52 +03:00
* @link https://help.retailcrm.ru/Developers/ApiVersion5
*/
class Client
{
const METHOD_GET = 'GET';
const METHOD_POST = 'POST';
protected $url;
protected $defaultParameters;
2016-03-09 02:31:29 +03:00
/**
* Client constructor.
*
* @param string $url api url
* @param array $defaultParameters array of parameters
2019-08-30 14:10:52 +03:00
* @param bool $debug debug mode
2016-03-12 01:54:33 +03:00
*
* @throws \InvalidArgumentException
2016-03-09 02:31:29 +03:00
*/
2019-08-30 14:10:52 +03:00
public function __construct($url, array $defaultParameters = [], $debug = false)
{
2019-08-30 14:10:52 +03:00
if (false === stripos($url, 'https://') && false === $debug) {
2016-03-09 02:31:29 +03:00
throw new \InvalidArgumentException(
'API schema requires HTTPS protocol'
);
}
$this->url = $url;
$this->defaultParameters = $defaultParameters;
}
/**
* Make HTTP request
*
2016-03-09 02:31:29 +03:00
* @param string $path request url
* @param string $method (default: 'GET')
* @param array $parameters (default: array())
2018-01-10 11:35:57 +03:00
* @param bool $fullPath (default: false)
2016-03-09 02:31:29 +03:00
*
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*
2016-03-12 01:54:33 +03:00
* @throws \InvalidArgumentException
* @throws CurlException
* @throws InvalidJsonException
*
* @return ApiResponse
*/
2020-02-11 10:57:17 +03:00
public function makeRawRequest(
2015-05-08 18:03:05 +03:00
$path,
$method,
array $parameters = [],
$fullPath = false
2015-05-08 18:03:05 +03:00
) {
$allowedMethods = [self::METHOD_GET, self::METHOD_POST];
2016-03-12 01:54:33 +03:00
if (!in_array($method, $allowedMethods, false)) {
2016-03-09 02:31:29 +03:00
throw new \InvalidArgumentException(
sprintf(
'Method "%s" is not valid. Allowed methods are %s',
$method,
implode(', ', $allowedMethods)
)
);
}
$parameters = array_merge($this->defaultParameters, $parameters);
$url = $fullPath ? $path : $this->url . $path;
2015-05-08 18:03:05 +03:00
2016-03-12 01:54:33 +03:00
if (self::METHOD_GET === $method && count($parameters)) {
2016-01-09 15:23:50 +03:00
$url .= '?' . http_build_query($parameters, '', '&');
}
2019-08-30 14:10:52 +03:00
if (self::METHOD_POST === $method && '/files/upload' == $path) {
$url .= '?apiKey=' . $parameters['apiKey'];
}
2016-03-12 01:54:33 +03:00
$curlHandler = curl_init();
curl_setopt($curlHandler, CURLOPT_URL, $url);
curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curlHandler, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($curlHandler, CURLOPT_FAILONERROR, false);
curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curlHandler, CURLOPT_TIMEOUT, 30);
curl_setopt($curlHandler, CURLOPT_CONNECTTIMEOUT, 30);
if (self::METHOD_POST === $method) {
2016-03-12 01:54:33 +03:00
curl_setopt($curlHandler, CURLOPT_POST, true);
2019-08-30 14:10:52 +03:00
if ('/files/upload' == $path) {
2020-02-11 10:57:17 +03:00
curl_setopt($curlHandler, CURLOPT_POSTFIELDS, file_get_contents($parameters['file']));
2019-08-30 14:10:52 +03:00
} else {
curl_setopt($curlHandler, CURLOPT_POSTFIELDS, $parameters);
}
}
2016-03-12 01:54:33 +03:00
$responseBody = curl_exec($curlHandler);
$statusCode = curl_getinfo($curlHandler, CURLINFO_HTTP_CODE);
if ($statusCode == 503) {
2019-08-30 14:10:52 +03:00
throw new LimitException("Service temporary unavailable");
}
2016-03-12 01:54:33 +03:00
$errno = curl_errno($curlHandler);
$error = curl_error($curlHandler);
2016-03-12 01:54:33 +03:00
curl_close($curlHandler);
2015-05-08 18:03:05 +03:00
if ($errno) {
throw new CurlException($error, $errno);
}
2015-05-08 18:03:05 +03:00
return new ApiResponse($statusCode, $responseBody);
}
2020-02-11 10:57:17 +03:00
/**
* Make HTTP request and deserialize JSON body (throws exception otherwise)
*
* @param string $path request url
* @param string $method (default: 'GET')
* @param array $parameters (default: array())
* @param bool $fullPath (default: false)
*
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*
* @throws \InvalidArgumentException
* @throws CurlException
* @throws InvalidJsonException
*
* @return ApiResponse
*/
public function makeRequest(
$path,
$method,
array $parameters = [],
$fullPath = false
) {
return $this->makeRawRequest($path, $method, $parameters, $fullPath)->asJsonResponse();
}
}