diff --git a/CHANGELOG.md b/CHANGELOG.md index e37a8b1..844da2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ ## 2024-10-14 4.8.11 -* Add parameters with versions of PHP, module, wordpress, woocommerce +* Added additional parameters to GET requests ## 2024-10-08 4.8.10 * Fixed errors in catalog formation when changing synchronization parameters (sku/externalId) diff --git a/src/include/api/class-wc-retailcrm-request.php b/src/include/api/class-wc-retailcrm-request.php index 06acbe7..167f8e1 100644 --- a/src/include/api/class-wc-retailcrm-request.php +++ b/src/include/api/class-wc-retailcrm-request.php @@ -26,7 +26,6 @@ class WC_Retailcrm_Request protected $url; protected $defaultParameters; - protected $versionData; /** * Client constructor. @@ -39,13 +38,6 @@ class WC_Retailcrm_Request { $this->url = $url; $this->defaultParameters = $defaultParameters; - $this->versionData = [ - 'php_version' => function_exists('phpversion') ? phpversion() : '', - 'cms_source' => 'Woocommerce', - 'module_version' => WC_Integration_Retailcrm::MODULE_VERSION, - 'woocommerce_version' => WC()->version ?? '', - 'cms_version' => function_exists('get_bloginfo') ? get_bloginfo('version') : '' - ]; } /** @@ -65,9 +57,9 @@ class WC_Retailcrm_Request public function makeRequest( $path, $method, - array $parameters = array() + array $parameters = [] ) { - $allowedMethods = array(self::METHOD_GET, self::METHOD_POST); + $allowedMethods = [self::METHOD_GET, self::METHOD_POST]; if (!in_array($method, $allowedMethods, false)) { throw new \InvalidArgumentException( @@ -79,11 +71,15 @@ class WC_Retailcrm_Request ); } - if (self::METHOD_GET === $method) { - $parameters = array_merge($this->defaultParameters, $parameters, $this->versionData); - } else { - $parameters = array_merge($this->defaultParameters, $parameters); - } + $parameters = self::METHOD_GET === $method + ? array_merge($this->defaultParameters, $parameters, [ + 'php_version' => function_exists('phpversion') ? phpversion() : '', + 'cms_source' => 'Woocommerce', + 'module_version' => WC_Integration_Retailcrm::MODULE_VERSION, + 'woocommerce_version' => WC()->version ?? '', + 'cms_version' => function_exists('get_bloginfo') ? get_bloginfo('version') : '', + ]) + : $parameters = array_merge($this->defaultParameters, $parameters); $url = $this->url . $path; diff --git a/src/readme.txt b/src/readme.txt index 8355529..96bd8d4 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -84,7 +84,7 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == = 4.8.11 = -* Add parameters with versions of PHP, module, wordpress, woocommerce +* Added additional parameters to GET requests = 4.8.10 = * Fixed errors in catalog formation when changing synchronization parameters (sku/externalId)