Files
yookassa-sdk-php/lib/Client/CurlClient.php
T
Александра Д. Спиридонова defd504ff2 Добавлен idempotenceKey в документацию. Добавлен метод для установки дополнительных параметров curl
Добавлено описание в документацию по новому методу
2023-03-09 16:17:53 +03:00

548 lines
15 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* The MIT License
*
* Copyright (c) 2022 "YooMoney", NBСO LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace YooKassa\Client;
use Psr\Log\LoggerInterface;
use YooKassa\Common\Exceptions\ApiConnectionException;
use YooKassa\Common\Exceptions\ApiException;
use YooKassa\Common\Exceptions\AuthorizeException;
use YooKassa\Common\Exceptions\ExtensionNotFoundException;
use YooKassa\Common\ResponseObject;
use YooKassa\Helpers\RawHeadersParser;
/**
* Класс клиента Curl запросов
*
* @package YooKassa
*/
class CurlClient implements ApiClientInterface
{
/** @var array Настройки клиента */
private $config;
/** @var string|int shopId магазина */
private $shopId;
/** @var string Секретный ключ магазина */
private $shopPassword;
/** @var string OAuth токен*/
private $bearerToken;
/** @var int Настройка параметра CURLOPT_TIMEOUT*/
private $timeout = 80;
/** @var int Настройка параметра CURLOPT_CONNECTTIMEOUT */
private $connectionTimeout = 30;
/** @var string Настройка прокси-сервера, если нужен */
private $proxy;
/** @var UserAgent Строка user-agent для статистики */
private $userAgent;
/** @var bool Настройка удержания соединения */
private $keepAlive = true;
/** @var array Заголовки по умолчанию */
private $defaultHeaders = array(
'Content-Type' => 'application/json',
'Accept' => 'application/json',
);
/** @var resource Текущий ресурс для работы с curl */
private $curl;
/** @var LoggerInterface|null Объект для логирования запросов */
private $logger;
/**
* CurlClient constructor.
*/
public function __construct()
{
$this->userAgent = new UserAgent();
}
/**
* @param LoggerInterface|null $logger
*/
public function setLogger($logger)
{
$this->logger = $logger;
}
/**
* @inheritdoc
*
* @param string $path URL запроса
* @param string $method HTTP метод
* @param array $queryParams Массив GET параметров запроса
* @param string|null $httpBody Тело запроса
* @param array $headers Массив заголовков запроса
*
* @return ResponseObject
* @throws ApiConnectionException
* @throws ApiException
* @throws AuthorizeException
* @throws ExtensionNotFoundException
*/
public function call($path, $method, $queryParams, $httpBody = null, $headers = array())
{
$headers = $this->prepareHeaders($headers);
$this->logRequestParams($path, $method, $queryParams, $httpBody, $headers);
$url = $this->prepareUrl($path, $queryParams);
$this->prepareCurl($method, $httpBody, $this->implodeHeaders($headers), $url);
list($httpHeaders, $httpBody, $responseInfo) = $this->sendRequest();
if (!$this->keepAlive) {
$this->closeCurlConnection();
}
$this->logResponse($httpBody, $responseInfo, $httpHeaders);
return new ResponseObject(array(
'code' => $responseInfo['http_code'],
'headers' => $httpHeaders,
'body' => $httpBody,
));
}
/**
* Устанавливает параметры CURL
*
* @param string $optionName Имя параметра
* @param mixed $optionValue Значение параметра
*
* @return bool
*/
public function setCurlOption($optionName, $optionValue)
{
return curl_setopt($this->curl, $optionName, $optionValue);
}
/**
* @return resource
* @throws ExtensionNotFoundException
*/
private function initCurl()
{
if (!extension_loaded('curl')) {
throw new ExtensionNotFoundException('curl');
}
if (!$this->curl || !$this->keepAlive) {
$this->curl = curl_init();
}
return $this->curl;
}
/**
* Close connection
*/
public function closeCurlConnection()
{
if ($this->curl !== null) {
curl_close($this->curl);
}
}
/**
* Выполняет запрос, получает и возвращает обработанный ответ
*
* @return array
* @throws ApiConnectionException
*/
public function sendRequest()
{
$response = curl_exec($this->curl);
$httpHeaderSize = curl_getinfo($this->curl, CURLINFO_HEADER_SIZE);
$httpHeaders = RawHeadersParser::parse(substr($response, 0, $httpHeaderSize));
$httpBody = substr($response, $httpHeaderSize);
$responseInfo = curl_getinfo($this->curl);
$curlError = curl_error($this->curl);
$curlErrno = curl_errno($this->curl);
if ($response === false) {
$this->handleCurlError($curlError, $curlErrno);
}
return array($httpHeaders, $httpBody, $responseInfo);
}
/**
* Устанавливает тело запроса
*
* @param string $method HTTP метод
* @param string $httpBody Тело запроса
*/
public function setBody($method, $httpBody)
{
$this->setCurlOption(CURLOPT_CUSTOMREQUEST, $method);
if(!empty($httpBody)) {
$this->setCurlOption(CURLOPT_POSTFIELDS, $httpBody);
}
}
/**
* Устанавливает shopId магазина
*
* @param mixed $shopId shopId магазина
*
* @return $this
*/
public function setShopId($shopId)
{
$this->shopId = $shopId;
return $this;
}
/**
* Устанавливает секретный ключ магазина
*
* @param mixed $shopPassword Секретный ключ магазина
*
* @return $this
*/
public function setShopPassword($shopPassword)
{
$this->shopPassword = $shopPassword;
return $this;
}
/**
* Возвращает значение параметра CURLOPT_TIMEOUT
*
* @return int
*/
public function getTimeout()
{
return $this->timeout;
}
/**
* Устанавливает значение параметра CURLOPT_TIMEOUT
*
* @param int $timeout Максимальное количество секунд для выполнения функций cURL
*/
public function setTimeout($timeout)
{
$this->timeout = $timeout;
}
/**
* Возвращает значение параметра CURLOPT_CONNECTTIMEOUT
*
* @return int
*/
public function getConnectionTimeout()
{
return $this->connectionTimeout;
}
/**
* Устанавливает значение параметра CURLOPT_CONNECTTIMEOUT
*
* @param int $connectionTimeout Число секунд ожидания при попытке подключения
*/
public function setConnectionTimeout($connectionTimeout)
{
$this->connectionTimeout = $connectionTimeout;
}
/**
* Возвращает настройки прокси
*
* @return string
* @since 1.0.14
*/
public function getProxy()
{
return $this->proxy;
}
/**
* Устанавливает настройки прокси
*
* @param string $proxy Прокси сервер
*
* @since 1.0.14
*/
public function setProxy($proxy)
{
$this->proxy = $proxy;
}
/**
* Возвращает настройки
*
* @return mixed
*/
public function getConfig()
{
return $this->config;
}
/**
* Устанавливает настройки
*
* @param array $config Настройки клиента
*/
public function setConfig($config)
{
$this->config = $config;
}
/**
* Возвращает UserAgent
*
* @return UserAgent
*/
public function getUserAgent()
{
return $this->userAgent;
}
/**
* Устанавливает OAuth-токен магазина
*
* @param string $bearerToken OAuth-токен магазина
*
* @return $this
*/
public function setBearerToken($bearerToken)
{
$this->bearerToken = $bearerToken;
return $this;
}
/**
* Устанавливает флаг сохранения соединения
*
* @param bool $keepAlive Флаг сохранения настроек
*
* @return $this
*/
public function setKeepAlive($keepAlive)
{
$this->keepAlive = $keepAlive;
return $this;
}
/**
* @param string $error
* @param int $errno
*
* @throws ApiConnectionException
*/
private function handleCurlError($error, $errno)
{
switch ($errno) {
case CURLE_COULDNT_CONNECT:
case CURLE_COULDNT_RESOLVE_HOST:
case CURLE_OPERATION_TIMEOUTED:
$msg = 'Could not connect to YooKassa API. Please check your internet connection and try again.';
break;
case CURLE_SSL_CACERT:
case CURLE_SSL_PEER_CERTIFICATE:
$msg = 'Could not verify SSL certificate.';
break;
default:
$msg = 'Unexpected error communicating.';
}
$msg .= "\n\n(Network error [errno $errno]: $error)";
throw new ApiConnectionException($msg);
}
/**
* @return mixed
*/
private function getUrl()
{
$config = $this->config;
return $config['url'];
}
/**
* @param array $headers
*
* @return array
* @throws AuthorizeException
*/
private function prepareHeaders($headers)
{
$headers = array_merge($this->defaultHeaders, $headers);
$headers[UserAgent::HEADER] = $this->getUserAgent()->getHeaderString();
if ($this->shopId && $this->shopPassword) {
$encodedAuth = base64_encode($this->shopId . ':' . $this->shopPassword);
$headers['Authorization'] = 'Basic ' . $encodedAuth;
} else if ($this->bearerToken) {
$headers['Authorization'] = 'Bearer ' . $this->bearerToken;
}
if (empty($headers['Authorization'])) {
throw new AuthorizeException('Authorization headers not set');
}
return $headers;
}
/**
* @param array $headers
* @return array
*/
private function implodeHeaders($headers)
{
return array_map(function ($key, $value) { return $key . ':' . $value; }, array_keys($headers), $headers);
}
/**
* @param string $path
* @param string $method
* @param array $queryParams
* @param string $httpBody
* @param array $headers
*/
private function logRequestParams($path, $method, $queryParams, $httpBody, $headers)
{
if ($this->logger !== null) {
$message = 'Send request: ' . $method . ' ' . $path;
$context = array();
if (!empty($queryParams)) {
$context['_params'] = $queryParams;
}
if (!empty($httpBody)) {
$data = json_decode($httpBody, true);
if (JSON_ERROR_NONE !== json_last_error()) {
$data = $httpBody;
}
$context['_body'] = $data;
}
if (!empty($headers)) {
$context['_headers'] = $headers;
}
$this->logger->info($message, $context);
}
}
/**
* @param string $path
* @param array $queryParams
*
* @return string
*/
private function prepareUrl($path, $queryParams)
{
$url = $this->getUrl() . $path;
if (!empty($queryParams)) {
$url = $url . '?' . http_build_query($queryParams);
}
return $url;
}
/**
* @param string $httpBody
* @param array $responseInfo
* @param array $httpHeaders
*/
private function logResponse($httpBody, $responseInfo, $httpHeaders)
{
if ($this->logger !== null) {
$message = 'Response with code ' . $responseInfo['http_code'] . ' received.';
$context = array();
if (!empty($httpBody)) {
$data = json_decode($httpBody, true);
if (JSON_ERROR_NONE !== json_last_error()) {
$data = $httpBody;
}
$context['_body'] = $data;
}
if (!empty($httpHeaders)) {
$context['_headers'] = $httpHeaders;
}
$this->logger->info($message, $context);
}
}
/**
* @param string $method
* @param string $httpBody
* @param array $headers
* @param string $url
* @throws ExtensionNotFoundException
*/
private function prepareCurl($method, $httpBody, $headers, $url)
{
$this->initCurl();
$this->setCurlOption(CURLOPT_URL, $url);
$this->setCurlOption(CURLOPT_RETURNTRANSFER, true);
$this->setCurlOption(CURLOPT_HEADER, true);
$this->setCurlOption(CURLOPT_BINARYTRANSFER, true);
if ($this->proxy) {
$this->setCurlOption(CURLOPT_PROXY, $this->proxy);
$this->setCurlOption(CURLOPT_HTTPPROXYTUNNEL, true);
}
$this->setBody($method, $httpBody);
$this->setCurlOption(CURLOPT_HTTPHEADER, $headers);
$this->setCurlOption(CURLOPT_CONNECTTIMEOUT, $this->connectionTimeout);
$this->setCurlOption(CURLOPT_TIMEOUT, $this->timeout);
$this->setAdvancedCurlOptions();
}
/**
* @return void
*/
public function setAdvancedCurlOptions()
{
}
}