ref Version of php, module, opencart in get-requests

This commit is contained in:
anton 2024-10-14 13:35:53 +06:00
parent c893cf24fb
commit 8bcce7834f
4 changed files with 18 additions and 4 deletions
CHANGELOG.mdVERSION
src/upload
admin/controller/extension/module
system/library/retailcrm/lib/api

View file

@ -1,3 +1,6 @@
## v4.1.17
* Add parameters with versions of PHP, module, opencart
## v4.1.16
* Support for services in ICML

View file

@ -1 +1 @@
4.1.16
4.1.17

View file

@ -2,7 +2,7 @@
class ControllerExtensionModuleRetailcrm extends Controller
{
const VERSION_MODULE = '4.1.16';
const VERSION_MODULE = '4.1.17';
private $_error = [];
protected $log, $statuses, $payments, $deliveryTypes, $retailcrmApiClient, $moduleTitle, $tokenTitle;

View file

@ -7,6 +7,7 @@ class RetailcrmHttpClient
protected $url;
protected $defaultParameters;
protected $versionData;
/**
* Client constructor.
@ -25,7 +26,13 @@ class RetailcrmHttpClient
}
$this->url = $url;
$this->defaultParameters = $defaultParameters;
$this->defaultParameters = $defaultParameters;
$this->versionData = [
'php_version' => function_exists('phpversion') ? phpversion() : '',
'cms_source' => 'Opencart',
'module_version' => ControllerExtensionModuleRetailcrm::VERSION_MODULE,
'cms_version' => VERSION
];
}
/**
@ -60,7 +67,11 @@ class RetailcrmHttpClient
);
}
$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;