From 80fc22964e23f5adba84b01809b327c9e95eafba Mon Sep 17 00:00:00 2001 From: anton Date: Wed, 25 Sep 2024 10:49:30 +0300 Subject: [PATCH] replacing the file_get_content method with wp_remote_get --- CHANGELOG.md | 3 +++ VERSION | 2 +- .../url-validator/class-wc-retailcrm-url-validator.php | 10 ++++++++-- src/readme.txt | 3 +++ src/retailcrm.php | 2 +- src/uninstall.php | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24d40d6..694d0a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2024-09-25 4.8.6 +* replacing the file_get_content() method with wp_remote_get() + ## 2024-09-20 4.8.5 * Project testing has been updated diff --git a/VERSION b/VERSION index bb6ebd3..7ea5948 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.8.5 +4.8.6 diff --git a/src/include/validators/url-validator/class-wc-retailcrm-url-validator.php b/src/include/validators/url-validator/class-wc-retailcrm-url-validator.php index 0f1b245..2954eab 100644 --- a/src/include/validators/url-validator/class-wc-retailcrm-url-validator.php +++ b/src/include/validators/url-validator/class-wc-retailcrm-url-validator.php @@ -16,6 +16,7 @@ if (!class_exists('WC_Retailcrm_Url_Validator')) : { const CRM_DOMAINS_URL = 'https://infra-data.retailcrm.tech/crm-domains.json'; const BOX_DOMAINS_URL = 'https://infra-data.retailcrm.tech/box-domains.json'; + const CRM_ALL_DOMAINS = ["ecomlogic.com", "retailcrm.ru", "retailcrm.pro", "retailcrm.es", "simla.com", "simla.io", "retailcrm.io"]; /** * @param string $crmUrl @@ -169,9 +170,14 @@ if (!class_exists('WC_Retailcrm_Url_Validator')) : private function getValidDomains(string $domainUrl): array { try { - $content = json_decode(file_get_contents($domainUrl), true); + $content = wp_remote_get($domainUrl); - return array_column($content['domains'], 'domain'); + if (!$content instanceof WP_ERROR && $content['response']['code'] === 200) { + $domains = json_decode($content['body'], true); + return array_column($domains['domains'], 'domain'); + } else { + return self::CRM_ALL_DOMAINS; + } } catch (Exception $exception) { throw new ValidatorException($this->getFileError); } diff --git a/src/readme.txt b/src/readme.txt index b604677..4bf8dba 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == += 4.8.6 = +* replacing the file_get_content() method with wp_remote_get() + = 4.8.5 = * Project testing has been updated diff --git a/src/retailcrm.php b/src/retailcrm.php index f941f5f..24a7591 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -5,7 +5,7 @@ * Description: Integration plugin for WooCommerce & Simla.com * Author: RetailDriver LLC * Author URI: http://retailcrm.pro/ - * Version: 4.8.5 + * Version: 4.8.6 * Tested up to: 6.5 * Requires Plugins: woocommerce * WC requires at least: 5.4 diff --git a/src/uninstall.php b/src/uninstall.php index 56cfb4f..2db9e4a 100644 --- a/src/uninstall.php +++ b/src/uninstall.php @@ -16,7 +16,7 @@ * * @link https://wordpress.org/plugins/woo-retailcrm/ * - * @version 4.8.5 + * @version 4.8.6 * * @package RetailCRM */