1
0
mirror of synced 2025-02-21 17:33:13 +03:00

Added additional parameters to GET requests (#351)

This commit is contained in:
ellynoize 2024-10-15 12:27:57 +06:00 committed by GitHub
parent 618dbbe963
commit aa4e337cd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 22 additions and 7 deletions

View File

@ -1,3 +1,6 @@
## 2024-10-14 4.8.11
* Added additional parameters to GET requests
## 2024-10-08 4.8.10 ## 2024-10-08 4.8.10
* Fixed errors in catalog formation when changing synchronization parameters (sku/externalId) * Fixed errors in catalog formation when changing synchronization parameters (sku/externalId)

View File

@ -1 +1 @@
4.8.10 4.8.11

View File

@ -57,9 +57,9 @@ class WC_Retailcrm_Request
public function makeRequest( public function makeRequest(
$path, $path,
$method, $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)) { if (!in_array($method, $allowedMethods, false)) {
throw new \InvalidArgumentException( throw new \InvalidArgumentException(
@ -71,7 +71,15 @@ class WC_Retailcrm_Request
); );
} }
$parameters = array_merge($this->defaultParameters, $parameters); $parameters = self::METHOD_GET === $method
? array_merge($this->defaultParameters, $parameters, [
'cms_source' => 'WordPress',
'cms_version' => function_exists('get_bloginfo') ? get_bloginfo('version') : '',
'woo_version' => WC()->version ?? '',
'php_version' => function_exists('phpversion') ? phpversion() : '',
'module_version' => WC_Integration_Retailcrm::MODULE_VERSION,
])
: $parameters = array_merge($this->defaultParameters, $parameters);
$url = $this->url . $path; $url = $this->url . $path;

View File

@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.1 Requires PHP: 7.1
Requires at least: 5.3 Requires at least: 5.3
Tested up to: 6.5 Tested up to: 6.5
Stable tag: 4.8.10 Stable tag: 4.8.11
License: GPLv1 or later License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html License URI: http://www.gnu.org/licenses/gpl-1.0.html
@ -83,6 +83,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog == == Changelog ==
= 4.8.11 =
* Added additional parameters to GET requests
= 4.8.10 = = 4.8.10 =
* Fixed errors in catalog formation when changing synchronization parameters (sku/externalId) * Fixed errors in catalog formation when changing synchronization parameters (sku/externalId)

View File

@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com * Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC * Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/ * Author URI: http://retailcrm.pro/
* Version: 4.8.10 * Version: 4.8.11
* Tested up to: 6.5 * Tested up to: 6.5
* Requires Plugins: woocommerce * Requires Plugins: woocommerce
* WC requires at least: 5.4 * WC requires at least: 5.4
@ -27,6 +27,7 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
class WC_Integration_Retailcrm { class WC_Integration_Retailcrm {
const WOOCOMMERCE_SLUG = 'woocommerce'; const WOOCOMMERCE_SLUG = 'woocommerce';
const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php'; const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php';
const MODULE_VERSION = '4.8.11';
private static $instance; private static $instance;

View File

@ -16,7 +16,7 @@
* *
* @link https://wordpress.org/plugins/woo-retailcrm/ * @link https://wordpress.org/plugins/woo-retailcrm/
* *
* @version 4.8.10 * @version 4.8.11
* *
* @package RetailCRM * @package RetailCRM
*/ */