From e85c539324fd8d465b55a68ded9419e17a47ed44 Mon Sep 17 00:00:00 2001 From: anton Date: Mon, 14 Oct 2024 13:11:30 +0600 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B4=D0=B0=D1=87?= =?UTF-8?q?=D0=B0=20=D0=B4=D0=BE=D0=BF.=D0=BF=D0=B0=D1=80=D0=B0=D0=BC?= =?UTF-8?q?=D0=B5=D1=82=D1=80=D0=BE=D0=B2=20=D1=81=20=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D1=81=D0=B8=D1=8F=D0=BC=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ intaro.retailcrm/classes/general/Http/Client.php | 15 ++++++++++++++- intaro.retailcrm/description.ru | 2 +- intaro.retailcrm/install/version.php | 4 ++-- intaro.retailcrm/lib/component/constants.php | 1 + 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 440f9e0b..5b635f48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2024-10-14 v6.5.33 +- Добавлена передача версий php, модуля и Битрикс в get-запросах + ## 2024-10-03 v6.5.32 - Исправлена подписка на событие создания заказа при обновлении diff --git a/intaro.retailcrm/classes/general/Http/Client.php b/intaro.retailcrm/classes/general/Http/Client.php index cf1ccba5..9c0218f5 100644 --- a/intaro.retailcrm/classes/general/Http/Client.php +++ b/intaro.retailcrm/classes/general/Http/Client.php @@ -11,6 +11,7 @@ namespace RetailCrm\Http; +use Intaro\RetailCrm\Component\Constants; use RetailCrm\Exception\CurlException; use RetailCrm\Exception\InvalidJsonException; use RetailCrm\Response\ApiResponse; @@ -29,6 +30,7 @@ class Client protected $url; protected $defaultParameters; protected $retry; + protected $versionData; /** * Client constructor. @@ -46,6 +48,13 @@ class Client ); } + $this->versionData = [ + 'php_version' => function_exists('phpversion') ? phpversion() : '', + 'cms_source' => 'Bitrix', + 'module_version' => Constants::MODULE_VERSION, + 'cms_version' => SM_VERSION + ]; + $this->url = $url; $this->defaultParameters = $defaultParameters; $this->retry = 0; @@ -93,7 +102,11 @@ class Client ); } - $parameters = array_merge($this->defaultParameters, $parameters); + if (self::METHOD_GET === $method) { + $parameters = array_merge($this->defaultParameters, $parameters, $this->versionData); + } else { + $parameters = array_merge($this->defaultParameters, $parameters); + } $url = $this->url . $path; diff --git a/intaro.retailcrm/description.ru b/intaro.retailcrm/description.ru index 293bec97..fb45482c 100644 --- a/intaro.retailcrm/description.ru +++ b/intaro.retailcrm/description.ru @@ -1 +1 @@ -- Исправлена подписка на событие сохранения заказа при обновлении +- Добавлена передача версий модуля, php, Битрикс в get-запросах diff --git a/intaro.retailcrm/install/version.php b/intaro.retailcrm/install/version.php index f96b8ae8..bb690a8c 100644 --- a/intaro.retailcrm/install/version.php +++ b/intaro.retailcrm/install/version.php @@ -1,6 +1,6 @@ '6.5.32', - 'VERSION_DATE' => '2024-10-03 17:00:00' + 'VERSION' => '6.5.33', + 'VERSION_DATE' => '2024-10-14 17:00:00' ]; diff --git a/intaro.retailcrm/lib/component/constants.php b/intaro.retailcrm/lib/component/constants.php index 4e703674..34ec5925 100644 --- a/intaro.retailcrm/lib/component/constants.php +++ b/intaro.retailcrm/lib/component/constants.php @@ -18,6 +18,7 @@ namespace Intaro\RetailCrm\Component; */ class Constants { + public const MODULE_VERSION = '6.5.33'; public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null'; public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-'; public const CRM_USERS_MAP = 'crm_users_map';