From 4c654b5eba741b1a1cc02b8e99d67b7bea2b00e6 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Wed, 7 Jun 2017 16:26:52 +0300 Subject: [PATCH 01/75] Initial commit --- LICENSE | 21 +++++++++++++++++++++ README.md | 1 + 2 files changed, 22 insertions(+) create mode 100644 LICENSE create mode 100644 README.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6e851f2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 retailCRM + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..ecacefe --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# woocommerce-module \ No newline at end of file From 295c58e4a8c37dcf0b37859b8e10d0f5062d8ea0 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Wed, 7 Jun 2017 16:29:57 +0300 Subject: [PATCH 02/75] init --- LICENSE | 2 +- retailcrm/include-custom/index.php | 1 + .../include/api/class-wc-retailcrm-client.php | 1861 +++++++++++++++++ .../api/class-wc-retailcrm-exception-curl.php | 16 + .../api/class-wc-retailcrm-exception-json.php | 17 + .../include/api/class-wc-retailcrm-proxy.php | 63 + .../api/class-wc-retailcrm-request.php | 118 ++ .../api/class-wc-retailcrm-response.php | 170 ++ retailcrm/include/api/index.php | 1 + retailcrm/include/class-wc-retailcrm-base.php | 212 ++ .../include/class-wc-retailcrm-customers.php | 121 ++ .../include/class-wc-retailcrm-history.php | 407 ++++ retailcrm/include/class-wc-retailcrm-icml.php | 461 ++++ .../class-wc-retailcrm-inventories.php | 75 + .../include/class-wc-retailcrm-orders.php | 284 +++ retailcrm/include/index.php | 1 + retailcrm/index.php | 1 + retailcrm/retailcrm.php | 353 ++++ retailcrm/uninstall.php | 30 + 19 files changed, 4193 insertions(+), 1 deletion(-) create mode 100644 retailcrm/include-custom/index.php create mode 100644 retailcrm/include/api/class-wc-retailcrm-client.php create mode 100644 retailcrm/include/api/class-wc-retailcrm-exception-curl.php create mode 100644 retailcrm/include/api/class-wc-retailcrm-exception-json.php create mode 100644 retailcrm/include/api/class-wc-retailcrm-proxy.php create mode 100644 retailcrm/include/api/class-wc-retailcrm-request.php create mode 100644 retailcrm/include/api/class-wc-retailcrm-response.php create mode 100644 retailcrm/include/api/index.php create mode 100644 retailcrm/include/class-wc-retailcrm-base.php create mode 100644 retailcrm/include/class-wc-retailcrm-customers.php create mode 100644 retailcrm/include/class-wc-retailcrm-history.php create mode 100644 retailcrm/include/class-wc-retailcrm-icml.php create mode 100644 retailcrm/include/class-wc-retailcrm-inventories.php create mode 100644 retailcrm/include/class-wc-retailcrm-orders.php create mode 100644 retailcrm/include/index.php create mode 100644 retailcrm/index.php create mode 100644 retailcrm/retailcrm.php create mode 100644 retailcrm/uninstall.php diff --git a/LICENSE b/LICENSE index 6e851f2..7d0bf51 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 retailCRM +Copyright (c) 2017 RetailDriver LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/retailcrm/include-custom/index.php b/retailcrm/include-custom/index.php new file mode 100644 index 0000000..e71af0e --- /dev/null +++ b/retailcrm/include-custom/index.php @@ -0,0 +1 @@ + + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion4 + */ + + if ( ! class_exists( 'WC_Retailcrm_Request' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-request.php' ); + } + + if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); + } + + class WC_Retailcrm_Client + { + + const VERSION = 'v4'; + + protected $client; + + /** + * Site code + */ + protected $siteCode; + + /** + * WC_Retailcrm_Request creating + * + * @param string $url api url + * @param string $apiKey api key + * @param string $site site code + * + * @throws \InvalidArgumentException + */ + public function __construct($url, $apiKey, $site = null) + { + if ('/' !== $url[strlen($url) - 1]) { + $url .= '/'; + } + + $url = $url . 'api/' . self::VERSION; + + $this->client = new WC_Retailcrm_Request($url, array('apiKey' => $apiKey)); + $this->siteCode = $site; + } + + /** + * Returns users list + * + * @param array $filter + * @param null $page + * @param null $limit + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function usersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/users', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get user groups + * + * @param null $page + * @param null $limit + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * + * @return WC_Retailcrm_Response + */ + public function usersGroups($page = null, $limit = null) + { + $parameters = array(); + + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/user-groups', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Returns user data + * + * @param integer $id user ID + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function usersGet($id) + { + return $this->client->makeRequest("/users/$id", WC_Retailcrm_Request::METHOD_GET); + } + + /** + * Returns filtered orders list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create a order + * + * @param array $order order data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersCreate(array $order, $site = null) + { + if (!count($order)) { + throw new \InvalidArgumentException( + 'Parameter `order` must contains a data' + ); + } + + return $this->client->makeRequest( + '/orders/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('order' => json_encode($order))) + ); + } + + /** + * Save order IDs' (id and externalId) association in the CRM + * + * @param array $ids order identificators + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersFixExternalIds(array $ids) + { + if (! count($ids)) { + throw new \InvalidArgumentException( + 'Method parameter must contains at least one IDs pair' + ); + } + + return $this->client->makeRequest( + '/orders/fix-external-ids', + WC_Retailcrm_Request::METHOD_POST, + array('orders' => json_encode($ids) + ) + ); + } + + /** + * Returns statuses of the orders + * + * @param array $ids (default: array()) + * @param array $externalIds (default: array()) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersStatuses(array $ids = array(), array $externalIds = array()) + { + $parameters = array(); + + if (count($ids)) { + $parameters['ids'] = $ids; + } + if (count($externalIds)) { + $parameters['externalIds'] = $externalIds; + } + + return $this->client->makeRequest( + '/orders/statuses', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Upload array of the orders + * + * @param array $orders array of orders + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersUpload(array $orders, $site = null) + { + if (!count($orders)) { + throw new \InvalidArgumentException( + 'Parameter `orders` must contains array of the orders' + ); + } + + return $this->client->makeRequest( + '/orders/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('orders' => json_encode($orders))) + ); + } + + /** + * Get order by id or externalId + * + * @param string $id order identificator + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersGet($id, $by = 'externalId', $site = null) + { + $this->checkIdParameter($by); + + return $this->client->makeRequest( + "/orders/$id", + WC_Retailcrm_Request::METHOD_GET, + $this->fillSite($site, array('by' => $by)) + ); + } + + /** + * Edit a order + * + * @param array $order order data + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersEdit(array $order, $by = 'externalId', $site = null) + { + if (!count($order)) { + throw new \InvalidArgumentException( + 'Parameter `order` must contains a data' + ); + } + + $this->checkIdParameter($by); + + if (!array_key_exists($by, $order)) { + throw new \InvalidArgumentException( + sprintf('Order array must contain the "%s" parameter.', $by) + ); + } + + return $this->client->makeRequest( + sprintf('/orders/%s/edit', $order[$by]), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('order' => json_encode($order), 'by' => $by) + ) + ); + } + + /** + * Get orders history + * @param array $filter + * @param null $page + * @param null $limit + * + * @return WC_Retailcrm_Response + */ + public function ordersHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Returns filtered customers list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/customers', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create a customer + * + * @param array $customer customer data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersCreate(array $customer, $site = null) + { + if (! count($customer)) { + throw new \InvalidArgumentException( + 'Parameter `customer` must contains a data' + ); + } + + return $this->client->makeRequest( + '/customers/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('customer' => json_encode($customer))) + ); + } + + /** + * Save customer IDs' (id and externalId) association in the CRM + * + * @param array $ids ids mapping + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersFixExternalIds(array $ids) + { + if (! count($ids)) { + throw new \InvalidArgumentException( + 'Method parameter must contains at least one IDs pair' + ); + } + + return $this->client->makeRequest( + '/customers/fix-external-ids', + WC_Retailcrm_Request::METHOD_POST, + array('customers' => json_encode($ids)) + ); + } + + /** + * Upload array of the customers + * + * @param array $customers array of customers + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersUpload(array $customers, $site = null) + { + if (! count($customers)) { + throw new \InvalidArgumentException( + 'Parameter `customers` must contains array of the customers' + ); + } + + return $this->client->makeRequest( + '/customers/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('customers' => json_encode($customers))) + ); + } + + /** + * Get customer by id or externalId + * + * @param string $id customer identificator + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersGet($id, $by = 'externalId', $site = null) + { + $this->checkIdParameter($by); + + return $this->client->makeRequest( + "/customers/$id", + WC_Retailcrm_Request::METHOD_GET, + $this->fillSite($site, array('by' => $by)) + ); + } + + /** + * Edit a customer + * + * @param array $customer customer data + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersEdit(array $customer, $by = 'externalId', $site = null) + { + if (!count($customer)) { + throw new \InvalidArgumentException( + 'Parameter `customer` must contains a data' + ); + } + + $this->checkIdParameter($by); + + if (!array_key_exists($by, $customer)) { + throw new \InvalidArgumentException( + sprintf('Customer array must contain the "%s" parameter.', $by) + ); + } + + return $this->client->makeRequest( + sprintf('/customers/%s/edit', $customer[$by]), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('customer' => json_encode($customer), 'by' => $by) + ) + ); + } + + /** + * Get customers history + * @param array $filter + * @param null $page + * @param null $limit + * + * @return WC_Retailcrm_Response + */ + public function customersHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/customers/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get orders assembly list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/packs', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create orders assembly + * + * @param array $pack pack data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksCreate(array $pack, $site = null) + { + if (!count($pack)) { + throw new \InvalidArgumentException( + 'Parameter `pack` must contains a data' + ); + } + + return $this->client->makeRequest( + '/orders/packs/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('pack' => json_encode($pack))) + ); + } + + /** + * Get orders assembly history + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/packs/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get orders assembly by id + * + * @param string $id pack identificator + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksGet($id) + { + if (empty($id)) { + throw new \InvalidArgumentException('Parameter `id` must be set'); + } + + return $this->client->makeRequest( + "/orders/packs/$id", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Delete orders assembly by id + * + * @param string $id pack identificator + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksDelete($id) + { + if (empty($id)) { + throw new \InvalidArgumentException('Parameter `id` must be set'); + } + + return $this->client->makeRequest( + sprintf('/orders/packs/%s/delete', $id), + WC_Retailcrm_Request::METHOD_POST + ); + } + + /** + * Edit orders assembly + * + * @param array $pack pack data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksEdit(array $pack, $site = null) + { + if (!count($pack) || empty($pack['id'])) { + throw new \InvalidArgumentException( + 'Parameter `pack` must contains a data & pack `id` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/orders/packs/%s/edit', $pack['id']), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('pack' => json_encode($pack))) + ); + } + + /** + * Get purchace prices & stock balance + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeInventories(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/store/inventories', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get store settings + * + * @param string $code get settings code + * + * @return WC_Retailcrm_Response + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function storeSettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/store/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit store configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function storeSettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/store/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($configuration)) + ); + } + + /** + * Upload store inventories + * + * @param array $offers offers data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeInventoriesUpload(array $offers, $site = null) + { + if (!count($offers)) { + throw new \InvalidArgumentException( + 'Parameter `offers` must contains array of the offers' + ); + } + + return $this->client->makeRequest( + '/store/inventories/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('offers' => json_encode($offers))) + ); + } + + /** + * Upload store prices + * + * @param array $prices prices data + * @param string $site default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storePricesUpload(array $prices, $site = null) + { + if (!count($prices)) { + throw new \InvalidArgumentException( + 'Parameter `prices` must contains array of the prices' + ); + } + + return $this->client->makeRequest( + '/store/prices/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('prices' => json_encode($prices))) + ); + } + + /** + * Get products + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeProducts(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/store/products', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get delivery settings + * + * @param string $code + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliverySettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/delivery/generic/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit delivery configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function deliverySettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/delivery/generic/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($configuration)) + ); + } + + /** + * Delivery tracking update + * + * @param string $code + * @param array $statusUpdate + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function deliveryTracking($code, array $statusUpdate) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + if (!count($statusUpdate)) { + throw new \InvalidArgumentException( + 'Parameter `statusUpdate` must contains a data' + ); + } + + return $this->client->makeRequest( + sprintf('/delivery/generic/%s/tracking', $code), + WC_Retailcrm_Request::METHOD_POST, + array('statusUpdate' => json_encode($statusUpdate)) + ); + } + + /** + * Returns available county list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function countriesList() + { + return $this->client->makeRequest( + '/reference/countries', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Returns deliveryServices list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryServicesList() + { + return $this->client->makeRequest( + '/reference/delivery-services', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit deliveryService + * + * @param array $data delivery service data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryServicesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/delivery-services/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('deliveryService' => json_encode($data)) + ); + } + + /** + * Returns deliveryTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryTypesList() + { + return $this->client->makeRequest( + '/reference/delivery-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit deliveryType + * + * @param array $data delivery type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/delivery-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('deliveryType' => json_encode($data)) + ); + } + + /** + * Returns orderMethods list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderMethodsList() + { + return $this->client->makeRequest( + '/reference/order-methods', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit orderMethod + * + * @param array $data order method data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderMethodsEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/order-methods/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('orderMethod' => json_encode($data)) + ); + } + + /** + * Returns orderTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderTypesList() + { + return $this->client->makeRequest( + '/reference/order-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit orderType + * + * @param array $data order type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/order-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('orderType' => json_encode($data)) + ); + } + + /** + * Returns paymentStatuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentStatusesList() + { + return $this->client->makeRequest( + '/reference/payment-statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit paymentStatus + * + * @param array $data payment status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentStatusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/payment-statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('paymentStatus' => json_encode($data)) + ); + } + + /** + * Returns paymentTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentTypesList() + { + return $this->client->makeRequest( + '/reference/payment-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit paymentType + * + * @param array $data payment type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/payment-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('paymentType' => json_encode($data)) + ); + } + + /** + * Returns productStatuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function productStatusesList() + { + return $this->client->makeRequest( + '/reference/product-statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit productStatus + * + * @param array $data product status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function productStatusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/product-statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('productStatus' => json_encode($data)) + ); + } + + /** + * Returns sites list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function sitesList() + { + return $this->client->makeRequest( + '/reference/sites', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit site + * + * @param array $data site data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function sitesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/sites/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('site' => json_encode($data)) + ); + } + + /** + * Returns statusGroups list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusGroupsList() + { + return $this->client->makeRequest( + '/reference/status-groups', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Returns statuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusesList() + { + return $this->client->makeRequest( + '/reference/statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit order status + * + * @param array $data status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('status' => json_encode($data)) + ); + } + + /** + * Returns stores list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storesList() + { + return $this->client->makeRequest( + '/reference/stores', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit store + * + * @param array $data site data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + if (!array_key_exists('name', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "name" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/stores/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('store' => json_encode($data)) + ); + } + + /** + * Get prices types + * + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function pricesTypes() + { + return $this->client->makeRequest( + '/reference/price-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit price type + * + * @param array $data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function pricesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + if (!array_key_exists('name', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "name" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/price-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('priceType' => json_encode($data)) + ); + } + + /** + * Get telephony settings + * + * @param string $code + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function telephonySettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/telephony/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit telephony settings + * + * @param string $code symbolic code + * @param string $clientId client id + * @param boolean $active telephony activity + * @param mixed $name service name + * @param mixed $makeCallUrl service init url + * @param mixed $image service logo url(svg file) + * + * @param array $additionalCodes + * @param array $externalPhones + * @param bool $allowEdit + * @param bool $inputEventSupported + * @param bool $outputEventSupported + * @param bool $hangupEventSupported + * @param bool $changeUserStatusUrl + * + * @return WC_Retailcrm_Response + */ + public function telephonySettingsEdit( + $code, + $clientId, + $active = false, + $name = false, + $makeCallUrl = false, + $image = false, + $additionalCodes = array(), + $externalPhones = array(), + $allowEdit = false, + $inputEventSupported = false, + $outputEventSupported = false, + $hangupEventSupported = false, + $changeUserStatusUrl = false + ) + { + if (!isset($code)) { + throw new \InvalidArgumentException('Code must be set'); + } + + $parameters['code'] = $code; + + if (!isset($clientId)) { + throw new \InvalidArgumentException('client id must be set'); + } + + $parameters['clientId'] = $clientId; + + if (!isset($active)) { + $parameters['active'] = false; + } else { + $parameters['active'] = $active; + } + + if (!isset($name)) { + throw new \InvalidArgumentException('name must be set'); + } + + if (isset($name)) { + $parameters['name'] = $name; + } + + if (isset($makeCallUrl)) { + $parameters['makeCallUrl'] = $makeCallUrl; + } + + if (isset($image)) { + $parameters['image'] = $image; + } + + if (isset($additionalCodes)) { + $parameters['additionalCodes'] = $additionalCodes; + } + + if (isset($externalPhones)) { + $parameters['externalPhones'] = $externalPhones; + } + + if (isset($allowEdit)) { + $parameters['allowEdit'] = $allowEdit; + } + + if (isset($inputEventSupported)) { + $parameters['inputEventSupported'] = $inputEventSupported; + } + + if (isset($outputEventSupported)) { + $parameters['outputEventSupported'] = $outputEventSupported; + } + + if (isset($hangupEventSupported)) { + $parameters['hangupEventSupported'] = $hangupEventSupported; + } + + if (isset($changeUserStatusUrl)) { + $parameters['changeUserStatusUrl'] = $changeUserStatusUrl; + } + + return $this->client->makeRequest( + "/telephony/setting/$code/edit", + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($parameters)) + ); + } + + /** + * Call event + * + * @param string $phone phone number + * @param string $type call type + * @param array $codes + * @param string $hangupStatus + * @param string $externalPhone + * @param array $webAnalyticsData + * + * @return WC_Retailcrm_Response + * @internal param string $code additional phone code + * @internal param string $status call status + * + */ + public function telephonyCallEvent( + $phone, + $type, + $codes, + $hangupStatus, + $externalPhone = null, + $webAnalyticsData = array() + ) + { + if (!isset($phone)) { + throw new \InvalidArgumentException('Phone number must be set'); + } + + if (!isset($type)) { + throw new \InvalidArgumentException('Type must be set (in|out|hangup)'); + } + + if (empty($codes)) { + throw new \InvalidArgumentException('Codes array must be set'); + } + + $parameters['phone'] = $phone; + $parameters['type'] = $type; + $parameters['codes'] = $codes; + $parameters['hangupStatus'] = $hangupStatus; + $parameters['callExternalId'] = $externalPhone; + $parameters['webAnalyticsData'] = $webAnalyticsData; + + + return $this->client->makeRequest( + '/telephony/call/event', + WC_Retailcrm_Request::METHOD_POST, + array('event' => json_encode($parameters)) + ); + } + + /** + * Upload calls + * + * @param array $calls calls data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function telephonyCallsUpload(array $calls) + { + if (!count($calls)) { + throw new \InvalidArgumentException( + 'Parameter `calls` must contains array of the calls' + ); + } + + return $this->client->makeRequest( + '/telephony/calls/upload', + WC_Retailcrm_Request::METHOD_POST, + array('calls' => json_encode($calls)) + ); + } + + /** + * Get call manager + * + * @param string $phone phone number + * @param bool $details detailed information + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function telephonyCallManager($phone, $details) + { + if (!isset($phone)) { + throw new \InvalidArgumentException('Phone number must be set'); + } + + $parameters['phone'] = $phone; + $parameters['details'] = isset($details) ? $details : 0; + + return $this->client->makeRequest( + '/telephony/manager', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Edit marketplace configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function marketplaceSettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/marketplace/external/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($configuration)) + ); + } + + /** + * Update CRM basic statistic + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statisticUpdate() + { + return $this->client->makeRequest( + '/statistic/update', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Return current site + * + * @return string + */ + public function getSite() + { + return $this->siteCode; + } + + /** + * Set site + * + * @param string $site site code + * + * @return void + */ + public function setSite($site) + { + $this->siteCode = $site; + } + + /** + * Check ID parameter + * + * @param string $by identify by + * + * @throws \InvalidArgumentException + * + * @return bool + */ + protected function checkIdParameter($by) + { + $allowedForBy = array( + 'externalId', + 'id' + ); + + if (!in_array($by, $allowedForBy, false)) { + throw new \InvalidArgumentException( + sprintf( + 'Value "%s" for "by" param is not valid. Allowed values are %s.', + $by, + implode(', ', $allowedForBy) + ) + ); + } + + return true; + } + + /** + * Fill params by site value + * + * @param string $site site code + * @param array $params input parameters + * + * @return array + */ + protected function fillSite($site, array $params) + { + if ($site) { + $params['site'] = $site; + } elseif ($this->siteCode) { + $params['site'] = $this->siteCode; + } + + return $params; + } + } diff --git a/retailcrm/include/api/class-wc-retailcrm-exception-curl.php b/retailcrm/include/api/class-wc-retailcrm-exception-curl.php new file mode 100644 index 0000000..f22c34e --- /dev/null +++ b/retailcrm/include/api/class-wc-retailcrm-exception-curl.php @@ -0,0 +1,16 @@ + + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion4 + */ + class WC_Retailcrm_Exception_Curl extends \RuntimeException + { + } diff --git a/retailcrm/include/api/class-wc-retailcrm-exception-json.php b/retailcrm/include/api/class-wc-retailcrm-exception-json.php new file mode 100644 index 0000000..acb8cfa --- /dev/null +++ b/retailcrm/include/api/class-wc-retailcrm-exception-json.php @@ -0,0 +1,17 @@ + + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion4 + */ + + class WC_Retailcrm_Exception_Json extends \DomainException + { + } diff --git a/retailcrm/include/api/class-wc-retailcrm-proxy.php b/retailcrm/include/api/class-wc-retailcrm-proxy.php new file mode 100644 index 0000000..ed8d763 --- /dev/null +++ b/retailcrm/include/api/class-wc-retailcrm-proxy.php @@ -0,0 +1,63 @@ +logger = new WC_Logger(); + + if ( ! class_exists( 'WC_Retailcrm_Client' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-client.php' ); + } + + if ($api_url && $api_key) { + $this->retailcrm = new WC_Retailcrm_Client($api_url, $api_key); + } + } + + public function __call($method, $arguments) + { + try { + $response = call_user_func_array(array($this->retailcrm, $method), $arguments); + + if ($response->isSuccessful()) { + $result = ' Ok'; + } else { + $result = sprintf( + $method ." : Error: [HTTP-code %s] %s", + $response->getStatusCode(), + $response->getErrorMsg() + ); + + if (isset($response['errors'])) { + foreach ($response['errors'] as $error) { + $result .= " $error"; + } + } + } + + $this->logger->add('retailcrm', sprintf("[%s] %s", $method, $result)); + } catch (WC_Retailcrm_Exception_Curl $exception) { + $this->logger->add('retailcrm', sprintf("[%s] %s - %s", $method, $exception->getMessage(), $result)); + } catch (WC_Retailcrm_Exception_Json $exception) { + $this->logger->add('retailcrm', sprintf("[%s] %s - %s", $method, $exception->getMessage(), $result)); + } catch (InvalidArgumentException $exception) { + $this->logger->add('retailcrm', sprintf("[%s] %s - %s", $method, $exception->getMessage(), $result)); + } + + return $response; + } + } +endif; \ No newline at end of file diff --git a/retailcrm/include/api/class-wc-retailcrm-request.php b/retailcrm/include/api/class-wc-retailcrm-request.php new file mode 100644 index 0000000..00cf9b3 --- /dev/null +++ b/retailcrm/include/api/class-wc-retailcrm-request.php @@ -0,0 +1,118 @@ + + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion4 + */ + + if ( ! class_exists( 'WC_Retailcrm_Exception_Curl' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-exception-curl.php' ); + } + + if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); + } + + class WC_Retailcrm_Request + { + const METHOD_GET = 'GET'; + const METHOD_POST = 'POST'; + + protected $url; + protected $defaultParameters; + + /** + * Client constructor. + * + * @param string $url api url + * @param array $defaultParameters array of parameters + * + * @throws \InvalidArgumentException + */ + public function __construct($url, array $defaultParameters = array()) + { + if (false === stripos($url, 'https://')) { + throw new \InvalidArgumentException( + 'API schema requires HTTPS protocol' + ); + } + + $this->url = $url; + $this->defaultParameters = $defaultParameters; + } + + /** + * Make HTTP request + * + * @param string $path request url + * @param string $method (default: 'GET') + * @param array $parameters (default: array()) + * + * @SuppressWarnings(PHPMD.ExcessiveParameterList) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * + * @return WC_Retailcrm_Response + */ + public function makeRequest( + $path, + $method, + array $parameters = array() + ) { + $allowedMethods = array(self::METHOD_GET, self::METHOD_POST); + + if (!in_array($method, $allowedMethods, false)) { + throw new \InvalidArgumentException( + sprintf( + 'Method "%s" is not valid. Allowed methods are %s', + $method, + implode(', ', $allowedMethods) + ) + ); + } + + $parameters = array_merge($this->defaultParameters, $parameters); + + $url = $this->url . $path; + + if (self::METHOD_GET === $method && count($parameters)) { + $url .= '?' . http_build_query($parameters, '', '&'); + } + + $curlHandler = curl_init(); + curl_setopt($curlHandler, CURLOPT_URL, $url); + curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curlHandler, CURLOPT_FOLLOWLOCATION, 1); + curl_setopt($curlHandler, CURLOPT_FAILONERROR, false); + curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, false); + curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, false); + curl_setopt($curlHandler, CURLOPT_TIMEOUT, 30); + curl_setopt($curlHandler, CURLOPT_CONNECTTIMEOUT, 30); + + if (self::METHOD_POST === $method) { + curl_setopt($curlHandler, CURLOPT_POST, true); + curl_setopt($curlHandler, CURLOPT_POSTFIELDS, $parameters); + } + + $responseBody = curl_exec($curlHandler); + $statusCode = curl_getinfo($curlHandler, CURLINFO_HTTP_CODE); + $errno = curl_errno($curlHandler); + $error = curl_error($curlHandler); + + curl_close($curlHandler); + + if ($errno) { + throw new WC_Retailcrm_Exception_Curl($error, $errno); + } + + return new WC_Retailcrm_Response($statusCode, $responseBody); + } + } diff --git a/retailcrm/include/api/class-wc-retailcrm-response.php b/retailcrm/include/api/class-wc-retailcrm-response.php new file mode 100644 index 0000000..c3d753c --- /dev/null +++ b/retailcrm/include/api/class-wc-retailcrm-response.php @@ -0,0 +1,170 @@ + + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion4 + */ + + if ( ! class_exists( 'WC_Retailcrm_Exception_Json' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-exception-json.php' ); + } + + + class WC_Retailcrm_Response implements \ArrayAccess + { + // HTTP response status code + protected $statusCode; + + // response assoc array + protected $response; + + /** + * ApiResponse constructor. + * + * @param int $statusCode HTTP status code + * @param mixed $responseBody HTTP body + * + * @throws WC_Retailcrm_Exception_Json + */ + public function __construct($statusCode, $responseBody = null) + { + $this->statusCode = (int) $statusCode; + + if (!empty($responseBody)) { + $response = json_decode($responseBody, true); + + if (!$response && JSON_ERROR_NONE !== ($error = json_last_error())) { + throw new WC_Retailcrm_Exception_Json( + "Invalid JSON in the API response body. Error code #$error", + $error + ); + } + + $this->response = $response; + } + } + + /** + * Return HTTP response status code + * + * @return int + */ + public function getStatusCode() + { + return $this->statusCode; + } + + /** + * HTTP request was successful + * + * @return bool + */ + public function isSuccessful() + { + return $this->statusCode < 400; + } + + /** + * Allow to access for the property throw class method + * + * @param string $name method name + * @param mixed $arguments method parameters + * + * @throws \InvalidArgumentException + * + * @return mixed + */ + public function __call($name, $arguments) + { + // convert getSomeProperty to someProperty + $propertyName = strtolower(substr($name, 3, 1)) . substr($name, 4); + + if (!isset($this->response[$propertyName])) { + throw new \InvalidArgumentException("Method \"$name\" not found"); + } + + return $this->response[$propertyName]; + } + + /** + * Allow to access for the property throw object property + * + * @param string $name property name + * + * @throws \InvalidArgumentException + * + * @return mixed + */ + public function __get($name) + { + if (!isset($this->response[$name])) { + throw new \InvalidArgumentException("Property \"$name\" not found"); + } + + return $this->response[$name]; + } + + /** + * Offset set + * + * @param mixed $offset offset + * @param mixed $value value + * + * @throws \BadMethodCallException + * @return void + */ + public function offsetSet($offset, $value) + { + throw new \BadMethodCallException('This activity not allowed'); + } + + /** + * Offset unset + * + * @param mixed $offset offset + * + * @throws \BadMethodCallException + * @return void + */ + public function offsetUnset($offset) + { + throw new \BadMethodCallException('This call not allowed'); + } + + /** + * Check offset + * + * @param mixed $offset offset + * + * @return bool + */ + public function offsetExists($offset) + { + return isset($this->response[$offset]); + } + + /** + * Get offset + * + * @param mixed $offset offset + * + * @throws \InvalidArgumentException + * + * @return mixed + */ + public function offsetGet($offset) + { + if (!isset($this->response[$offset])) { + throw new \InvalidArgumentException("Property \"$offset\" not found"); + } + + return $this->response[$offset]; + } + } diff --git a/retailcrm/include/api/index.php b/retailcrm/include/api/index.php new file mode 100644 index 0000000..e71af0e --- /dev/null +++ b/retailcrm/include/api/index.php @@ -0,0 +1 @@ +id = 'integration-retailcrm'; + $this->method_title = __( 'Retailcrm', 'woocommerce-integration-retailcrm' ); + $this->method_description = __( 'Интеграция с системой управления Retailcrm.', 'woocommerce-integration-retailcrm' ); + + // Load the settings. + + $this->init_form_fields(); + $this->init_settings(); + + // Actions. + add_action( 'woocommerce_update_options_integration_' . $this->id, array( $this, 'process_admin_options' ) ); + } + + /** + * Initialize integration settings form fields. + */ + public function init_form_fields() { + + $this->form_fields = array( + array( 'title' => __( 'Общие настройки', 'woocommerce' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), + + 'api_url' => array( + 'title' => __( 'API URL', 'woocommerce-integration-retailcrm' ), + 'type' => 'text', + 'description' => __( 'Введите адрес вашей CRM (https://yourdomain.retailcrm.ru).', 'woocommerce-integration-retailcrm' ), + 'desc_tip' => true, + 'default' => '' + ), + 'api_key' => array( + 'title' => __( 'API Ключ', 'woocommerce-integration-retailcrm' ), + 'type' => 'text', + 'description' => __( 'Введите ключ API. Вы можете найти его в интерфейсе администратора Retailcrm.', 'woocommerce-integration-retailcrm' ), + 'desc_tip' => true, + 'default' => '' + ) + ); + + if ($this->get_option( 'api_url' ) != '' && $this->get_option( 'api_key' ) != '') { + + if ( ! class_exists( 'WC_Retailcrm_Client' ) ) { + include_once( __DIR__ . '/api/class-wc-retailcrm-client.php' ); + } + + $retailcrm = new WC_Retailcrm_Client( + $this->get_option( 'api_url' ), + $this->get_option( 'api_key' ) + ); + + /** + * Shipping options + */ + + $shipping_option_list = array(); + $retailcrm_shipping_list = $retailcrm->deliveryTypesList(); + + foreach ($retailcrm_shipping_list['deliveryTypes'] as $retailcrm_shipping_type) { + $shipping_option_list[$retailcrm_shipping_type['code']] = $retailcrm_shipping_type['name']; + } + + $wc_shipping = new WC_Shipping(); + $wc_shipping_list = $wc_shipping->get_shipping_methods(); + + $this->form_fields[] = array( + 'title' => __( 'Способы доставки', 'woocommerce' ), + 'type' => 'title', + 'description' => '', + 'id' => 'shipping_options' + ); + + foreach ( $wc_shipping_list as $shipping ) { + if ( isset( $shipping->enabled ) && $shipping->enabled == 'yes' ) { + $key = $shipping->id; + $name = $key; + $this->form_fields[$name] = array( + 'title' => __( $shipping->method_title, 'textdomain' ), + 'description' => __( $shipping->method_description, 'textdomain' ), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $shipping_option_list, + 'desc_tip' => true, + ); + } + } + + /** + * Payment options + */ + + $payment_option_list = array(); + $retailcrm_payment_list = $retailcrm->paymentTypesList(); + + foreach ($retailcrm_payment_list['paymentTypes'] as $retailcrm_payment_type) { + $payment_option_list[$retailcrm_payment_type['code']] = $retailcrm_payment_type['name']; + } + + $wc_payment = new WC_Payment_Gateways(); + $wc_payment_list = $wc_payment->get_available_payment_gateways(); + + $this->form_fields[] = array( + 'title' => __( 'Способы оплаты', 'woocommerce' ), + 'type' => 'title', + 'description' => '', + 'id' => 'payment_options' + ); + + foreach ( $wc_payment_list as $payment ) { + if ( isset( $payment->enabled ) && $payment->enabled == 'yes' ) { + $key = $payment->id; + $name = $key; + $this->form_fields[$name] = array( + 'title' => __( $payment->method_title, 'textdomain' ), + 'description' => __( $payment->method_description, 'textdomain' ), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $payment_option_list, + 'desc_tip' => true, + ); + } + } + + /** + * Statuses options + */ + $statuses_option_list = array(); + $retailcrm_statuses_list = $retailcrm->statusesList(); + + foreach ($retailcrm_statuses_list['statuses'] as $retailcrm_status) { + $statuses_option_list[$retailcrm_status['code']] = $retailcrm_status['name']; + } + + $wc_statuses = wc_get_order_statuses(); + + $this->form_fields[] = array( + 'title' => __( 'Статусы', 'woocommerce' ), + 'type' => 'title', + 'description' => '', + 'id' => 'statuses_options' + ); + + foreach ( $wc_statuses as $idx => $name ) { + $uid = str_replace('wc-', '', $idx); + $this->form_fields[$uid] = array( + 'title' => __( $name, 'textdomain' ), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $statuses_option_list, + 'desc_tip' => true, + ); + } + + $this->form_fields[] = array( + 'title' => __( 'Настройки остатков', 'woocommerce' ), + 'type' => 'title', + 'description' => '', + 'id' => 'invent_options' + ); + + $this->form_fields['sync'] = array( + 'label' => __( 'Выгружать остатки из CRM', 'textdomain' ), + 'title' => 'Остатки', + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => 'Отметьте данный пункт, если хотите выгружать остатки товаров из CRM в магазин.' + ); + + $this->form_fields[] = array( + 'title' => __( 'Настройки выгрузки', 'woocommerce' ), + 'type' => 'title', + 'description' => '', + 'id' => 'upload_options' + ); + + $this->form_fields['uploadToCrm'] = array( + 'label' => __( 'Выгрузить все заказы и клиентов', 'textdomain' ), + 'title' => 'Выгрузка заказов и клиентов', + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => 'Поставьте галочку, и нажмите сохранить, чтобы выгрузить все существующие заказы и клиентов.' + ); + } + } +} + +endif; diff --git a/retailcrm/include/class-wc-retailcrm-customers.php b/retailcrm/include/class-wc-retailcrm-customers.php new file mode 100644 index 0000000..ca21839 --- /dev/null +++ b/retailcrm/include/class-wc-retailcrm-customers.php @@ -0,0 +1,121 @@ +retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); + + if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { + include_once( __DIR__ . '/api/class-wc-retailcrm-proxy.php' ); + } + + $this->retailcrm = new WC_Retailcrm_Proxy( + $this->retailcrm_settings['api_url'], + $this->retailcrm_settings['api_key'] + ); + } + + public function customersUpload() + { + $users = get_users(); + $data_customers = array(); + + foreach ($users as $user) { + if ($user->roles[0] != 'customer') continue; + + $customer = new WC_Customer($user->ID); + + $data_customer = array( + 'createdAt' => $user->data->user_registered, + 'externalId' => $user->ID, + 'firstName' => !empty($customer->get_first_name()) ? $customer->get_first_name() : $customer->get_username(), + 'lastName' => $customer->get_last_name(), + 'email' => $user->data->user_email, + 'phones' => array( + array( + 'number' => $customer->get_billing_phone() + ) + ), + 'address' => array( + 'index' => $customer->get_billing_postcode(), + 'countryIso' => $customer->get_billing_country(), + 'region' => $customer->get_billing_state(), + 'city' => $customer->get_billing_city(), + 'text' => $customer->get_billing_address_1() . ',' . $customer->get_billing_address_2() + ) + ); + + $data_customers[] = $data_customer; + } + + $data = array_chunk($data_customers, 50); + + foreach ($data as $array_customers) { + $this->retailcrm->customersUpload($array_customers); + } + } + + public function createCustomer($customer_id) + { + $customer = new WC_Customer($customer_id); + + if ($customer->get_role() == 'customer'){ + + $data_customer = $this->processCustomer($customer); + + $this->retailcrm->customersCreate($data_customer); + } + } + + public function updateCustomer($customer_id) + { + $customer = new WC_Customer($customer_id); + + if ($customer->get_role() == 'customer'){ + + $data_customer = $this->processCustomer($customer); + + $this->retailcrm->customersEdit($data_customer); + } + } + + protected function processCustomer($customer) + { + $createdAt = $customer->get_date_created(); + $data_customer = array( + 'createdAt' => $createdAt->date('Y-m-d H:i:s '), + 'externalId' => $customer_id, + 'firstName' => !empty($customer->get_first_name()) ? $customer->get_first_name() : $customer->get_username(), + 'lastName' => $customer->get_last_name(), + 'email' => $customer->get_email(), + 'phones' => array( + array( + 'number' => $customer->get_billing_phone() + ) + ), + 'address' => array( + 'index' => $customer->get_billing_postcode(), + 'countryIso' => $customer->get_billing_country(), + 'region' => $customer->get_billing_state(), + 'city' => $customer->get_billing_city(), + 'text' => $customer->get_billing_address_1() . ',' . $customer->get_billing_address_2() + ) + ); + + return $data_customer; + } + } +endif; diff --git a/retailcrm/include/class-wc-retailcrm-history.php b/retailcrm/include/class-wc-retailcrm-history.php new file mode 100644 index 0000000..558c4f2 --- /dev/null +++ b/retailcrm/include/class-wc-retailcrm-history.php @@ -0,0 +1,407 @@ +retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); + + if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { + include_once( __DIR__ . '/api/class-wc-retailcrm-proxy.php' ); + } + + $this->retailcrm = new WC_Retailcrm_Proxy( + $this->retailcrm_settings['api_url'], + $this->retailcrm_settings['api_key'] + ); + + $this->startDate = new DateTime(date('Y-m-d H:i:s', strtotime('-1 days', strtotime(date('Y-m-d H:i:s'))))); + $this->startDateOrders = $this->startDate; + $this->startDateCustomers = $this->startDate; + } + + public function getHistory() + { + if (isset($this->retailcrm_settings['history_orders'])) { + $this->startDateOrders = new DateTime($this->retailcrm_settings['history_orders']); + } + + if (isset($this->retailcrm_settings['history_customers'])) { + $this->startDateCustomers = new DateTime($this->retailcrm_settings['history_orders']); + } + + $this->ordersHistory($this->startDateOrders->format('Y-m-d H:i:s')); + + $this->customersHistory($this->startDateCustomers->format('Y-m-d H:i:s')); + + } + + protected function customersHistory($date) + { + $response = $this->retailcrm->customersHistory(array('startDate' => $date)); + + if ($response->isSuccessful()) { + $generatedAt = $response->generatedAt; + + foreach ($response['history'] as $record) { + + $this->removeFuncsHook(); + + if ($record['field'] == 'first_name' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'first_name', $record['newValue']); + } + } + + elseif ($record['field'] == 'last_name' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'last_name', $record['newValue']); + } + } + + elseif ($record['field'] == 'email' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'billing_email', $record['newValue']); + } + } + + elseif ($record['field'] == 'phones' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'billing_phone', $record['newValue']); + } + } + + elseif ($record['field'] == 'address.region' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'billing_state', $record['newValue']); + } + } + + elseif ($record['field'] == 'address.index' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'billing_postcode', $record['newValue']); + } + } + + elseif ($record['field'] == 'address.country' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'billing_country', $record['newValue']); + } + } + + elseif ($record['field'] == 'address.city' && $record['customer']['externalId']) { + if ($record['newValue']){ + update_user_meta($record['customer']['externalId'], 'billing_city', $record['newValue']); + } + } + + $this->addFuncsHook(); + } + + } + + if (empty($response)) { + return; + } + + $this->retailcrm_settings['history_customers'] = $generatedAt; + update_option('woocommerce_integration-retailcrm_settings', $this->retailcrm_settings); + } + + protected function ordersHistory($date) + { + $options = array_flip(array_filter($this->retailcrm_settings)); + + $response = $this->retailcrm->ordersHistory(array('startDate' => $date)); + + if ($response->isSuccessful()) { + + $generatedAt = $response->generatedAt; + + foreach ($response['history'] as $record) { + + $this->removeFuncsHook(); + + if ($record['field'] == 'status' && !empty($record['newValue']) && !empty($record['oldValue'])) { + $newStatus = $record['newValue']['code']; + if (!empty($options[$newStatus]) && !empty($record['order']['externalId'])) { + $order = new WC_Order($record['order']['externalId']); + $order->update_status($options[$newStatus]); + } + } + + elseif($record['field'] == 'order_product' && $record['newValue']) { + $product = wc_get_product($record['item']['offer']['externalId']); + $order = new WC_Order($record['order']['externalId']); + $order->add_product($product, $record['item']['quantity']); + + $this->update_total($order); + } + + elseif($record['field'] == 'order_product.quantity' && $record['newValue']) { + $order = new WC_Order($record['order']['externalId']); + $product = wc_get_product($record['item']['offer']['externalId']); + $items = $order->get_items(); + $args = array('qty' => $record['newValue']); + + foreach ($items as $order_item_id => $item) { + if ($item['variation_id'] != 0 ) { + $offer_id = $item['variation_id']; + } else { + $offer_id = $item['product_id']; + } + if ($offer_id == $record['item']['offer']['externalId']) { + $order->update_product($order_item_id, $product, $args); + + $this->update_total($order); + } + } + } + + elseif ($record['field'] == 'order_product' && !$record['newValue']) { + $order = new WC_Order($record['order']['externalId']); + $items = $order->get_items(); + + foreach ($items as $order_item_id => $item) { + if ($item['variation_id'] != 0 ) { + $offer_id = $item['variation_id']; + } else { + $offer_id = $item['product_id']; + } + if ($offer_id == $record['item']['offer']['externalId']) { + wc_delete_order_item($order_item_id); + + $this->update_total($order); + } + } + } + + elseif ($record['field'] == 'delivery_type') { + $newValue = $record['newValue']['code']; + if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { + $order = new WC_Order($record['order']['externalId']); + $items = $order->get_items('shipping'); + $wc_shipping = new WC_Shipping(); + $wc_shipping_list = $wc_shipping->get_shipping_methods(); + + foreach ($wc_shipping_list as $method) { + if ($method->id == $options[$newValue]) { + $deliveryCost = $method->cost; + } + } + + $item_id = $this->getShippingItemId($items); + $args = array( + 'method_id' => $options[$newValue], + 'cost' => $deliveryCost ? $deliveryCost : 0 + ); + $order->update_shipping( $item_id, $args ); + + $this->update_total($order); + } + } + + elseif ($record['field'] == 'delivery_address.region') { + $order = new WC_Order($record['order']['externalId']); + $address = array( + 'state' => $record['newValue'] + ); + $order->set_address($address, 'shipping'); + } + + elseif ($record['field'] == 'delivery_address.city') { + $order = new WC_Order($record['order']['externalId']); + $address = array( + 'city' => $record['newValue'] + ); + $order->set_address($address, 'shipping'); + } + + elseif ($record['field'] == 'delivery_address.street') { + $order = new WC_Order($record['order']['externalId']); + $address = array( + 'address_1' => $record['newValue'] + ); + $order->set_address($address, 'shipping'); + } + + elseif ($record['field'] == 'delivery_address.building') { + $order = new WC_Order($record['order']['externalId']); + $address = array( + 'address_2' => $record['newValue'] + ); + $order->set_address($address, 'shipping'); + } + + elseif ($record['field'] == 'payment_type') { + $order = new WC_Order($record['order']['externalId']); + $newValue = $record['newValue']['code']; + if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { + $payment = new WC_Payment_Gateways(); + $payment_types = $payment->get_available_payment_gateways(); + if (isset($payment_types[$options[$newValue]])) { + $order->set_payment_method($payment_types[$options[$newValue]]); + } + } + } + + elseif (isset($record['created']) && + $record['created'] == 1 && + !isset($record['order']['externalId'])) { + + $args = array( + 'status' => $options[$record['order']['status']], + 'customer_id' => isset($record['order']['customer']['externalId']) ? + $record['order']['customer']['externalId'] : + null + ); + + $order_record = $record['order']; + $order_data = wc_create_order($args); + $order = new WC_Order($order_data->id); + + $address_shipping = array( + 'first_name' => $order_record['firstName'], + 'last_name' => $order_record['lastName'], + 'company' => '', + 'email' => $order_record['email'], + 'phone' => $order_record['phone'], + 'address_1' => $order_record['delivery']['address']['text'], + 'address_2' => '', + 'city' => $order_record['delivery']['address']['city'], + 'state' => $order_record['delivery']['address']['region'], + 'postcode' => isset($order_record['delivery']['address']['postcode']) ? $order_record['delivery']['address']['postcode'] : '', + 'country' => $order_record['delivery']['address']['countryIso'] + ); + $address_billing = array( + 'first_name' => $order_record['customer']['firstName'], + 'last_name' => $order_record['customer']['lastName'], + 'company' => '', + 'email' => $order_record['customer']['email'], + 'phone' => $order_record['customer'][0]['number'], + 'address_1' => $order_record['customer']['address']['text'], + 'address_2' => '', + 'city' => $order_record['customer']['address']['city'], + 'state' => $order_record['customer']['address']['region'], + 'postcode' => isset($order_record['customer']['address']['postcode']) ? $order_record['customer']['address']['postcode'] : '', + 'country' => $order_record['customer']['address']['countryIso'] + ); + + if ($order_record['paymentType']) { + $payment = new WC_Payment_Gateways(); + $payment_types = $payment->get_available_payment_gateways(); + if (isset($payment_types[$options[$order_record['paymentType']]])) { + $order->set_payment_method($payment_types[$options[$order_record['paymentType']]]); + } + } + + $order->set_address($address_billing, 'billing'); + $order->set_address($address_shipping, 'shipping'); + $product_data = $order_record['items']; + + foreach ($product_data as $product) { + $order->add_product(wc_get_product($product['offer']['externalId']), $product['quantity']); + } + + $wc_shipping = new WC_Shipping(); + $wc_shipping_types = $wc_shipping->get_shipping_methods(); + + foreach ($wc_shipping_types as $shipping_type) { + if ($shipping_type->id == $options[$order_record['delivery']['code']]) { + $shipping_method_id = $shipping_type->id; + $shipping_method_title = $shipping_type->title; + $shipping_total = $shipping_type->cost; + } + } + + $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); + $order->add_shipping($shipping_rate); + + $this->update_total($order); + + $ids[] = array( + 'id' => (int)$order_record['id'], + 'externalId' => (int)$order_data->id + ); + + $this->retailcrm->ordersFixExternalIds($ids); + } + + $this->addFuncsHook(); + } + + } + + if (empty($response)) { + return; + } + + $this->retailcrm_settings['history_orders'] = $generatedAt; + update_option('woocommerce_integration-retailcrm_settings', $this->retailcrm_settings); + + } + + protected function removeFuncsHook() + { + remove_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); + remove_action('woocommerce_saved_order_items', 'retailcrm_update_order_items', 10, 2); + remove_action('update_post_meta', 'retailcrm_update_order', 11, 4); + remove_action('woocommerce_payment_complete', 'retailcrm_update_order_payment', 11, 1); + remove_action('woocommerce_checkout_update_user_meta', 'update_customer', 10, 2); + } + + protected function addFuncsHook() + { + if (!has_action('woocommerce_checkout_update_user_meta', 'update_customer')) { + add_action('woocommerce_checkout_update_user_meta', 'update_customer', 10, 2); + } + if (!has_action('woocommerce_order_status_changed', 'retailcrm_update_order_status')) { + add_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); + } + if (!has_action('woocommerce_saved_order_items', 'retailcrm_update_order_items')) { + add_action('woocommerce_saved_order_items', 'retailcrm_update_order_items', 10, 2); + } + if (!has_action('update_post_meta', 'retailcrm_update_order')) { + add_action('update_post_meta', 'retailcrm_update_order', 11, 4); + } + if (!has_action('woocommerce_payment_complete', 'retailcrm_update_order_payment')) { + add_action('woocommerce_payment_complete', 'retailcrm_update_order_payment', 11, 1); + } + } + + protected function getShippingItemId($items) + { + if ($items) { + + foreach ($items as $key => $value) { + $item_id[] = $key; + } + } + + return $item_id[0]; + } + + + protected function update_total($order) + { + $order->update_taxes(); + $order->calculate_totals(); + } + } +endif; diff --git a/retailcrm/include/class-wc-retailcrm-icml.php b/retailcrm/include/class-wc-retailcrm-icml.php new file mode 100644 index 0000000..e852a3f --- /dev/null +++ b/retailcrm/include/class-wc-retailcrm-icml.php @@ -0,0 +1,461 @@ +shop = get_bloginfo( 'name' ); + $this->file = ABSPATH . 'retailcrm.xml'; + $this->tmpFile = sprintf('%s.tmp', $this->file); + } + + /** + * Generate file + */ + public function generate() + { + $categories = $this->get_wc_categories_taxonomies(); + $offers = $this->get_wc_products_taxonomies(); + + if (file_exists($this->tmpFile)) { + if (filectime($this->tmpFile) + $this->fileLifeTime < time()) { + unlink($this->tmpFile); + $this->writeHead(); + } + } else { + $this->writeHead(); + } + + try { + if (!empty($categories)) { + $this->writeCategories($categories); + unset($categories); + } + + if (!empty($offers)) { + $this->writeOffers($offers); + unset($offers); + } + + $dom = dom_import_simplexml(simplexml_load_file($this->tmpFile))->ownerDocument; + $dom->formatOutput = true; + $formatted = $dom->saveXML(); + + unset($dom, $this->xml); + + file_put_contents($this->tmpFile, $formatted); + rename($this->tmpFile, $this->file); + } catch (Exception $e) { + unlink($this->tmpFile); + } + } + + /** + * Load tmp data + * + * @return \SimpleXMLElement + */ + private function loadXml() + { + return new SimpleXMLElement( + $this->tmpFile, + LIBXML_NOENT | LIBXML_NOCDATA | LIBXML_COMPACT | LIBXML_PARSEHUGE, + true + ); + } + + /** + * Generate xml header + */ + private function writeHead() + { + $string = sprintf( + '%s', + date('Y-m-d H:i:s'), + $this->shop + ); + + file_put_contents($this->tmpFile, $string, LOCK_EX); + } + + /** + * Write categories in file + * + * @param $categories + */ + private function writeCategories($categories) + { + $chunkCategories = array_chunk($categories, $this->chunk); + foreach ($chunkCategories as $categories) { + $this->xml = $this->loadXml(); + + $this->categories = $this->xml->shop->categories; + $this->addCategories($categories); + + $this->xml->asXML($this->tmpFile); + } + + unset($this->categories); + } + + /** + * Write products in file + * + * @param $offers + */ + private function writeOffers($offers) + { + $chunkOffers = array_chunk($offers, $this->chunk); + foreach ($chunkOffers as $offers) { + $this->xml = $this->loadXml(); + + $this->offers = $this->xml->shop->offers; + $this->addOffers($offers); + + $this->xml->asXML($this->tmpFile); + } + + unset($this->offers); + } + + /** + * Add categories + * + * @param $categories + */ + private function addCategories($categories) + { + $categories = self::filterRecursive($categories); + + foreach($categories as $category) { + if (!array_key_exists('name', $category) || !array_key_exists('id', $category)) { + continue; + } + + /** @var SimpleXMLElement $e */ + /** @var SimpleXMLElement $cat */ + + $cat = $this->categories; + $e = $cat->addChild('category', $category['name']); + + $e->addAttribute('id', $category['id']); + + if (array_key_exists('parentId', $category) && $category['parentId'] > 0) { + $e->addAttribute('parentId', $category['parentId']); + } + } + } + + /** + * Add offers + * + * @param $offers + */ + private function addOffers($offers) + { + $offers = self::filterRecursive($offers); + + foreach ($offers as $key => $offer) { + + if (!array_key_exists('id', $offer)) { + continue; + } + + $e = $this->offers->addChild('offer'); + + $e->addAttribute('id', $offer['id']); + + if (!array_key_exists('productId', $offer) || empty($offer['productId'])) { + $offer['productId'] = $offer['id']; + } + $e->addAttribute('productId', $offer['productId']); + + if (!empty($offer['quantity'])) { + $e->addAttribute('quantity', (int) $offer['quantity']); + } else { + $e->addAttribute('quantity', 0); + } + + if (isset($offer['categoryId']) && $offer['categoryId']) { + if (is_array($offer['categoryId'])) { + foreach ($offer['categoryId'] as $categoryId) { + $e->addChild('categoryId', $categoryId); + } + } else { + $e->addChild('categoryId', $offer['categoryId']); + } + } + + if (!array_key_exists('name', $offer) || empty($offer['name'])) { + $offer['name'] = 'Без названия'; + } + + if (!array_key_exists('productName', $offer) || empty($offer['productName'])) { + $offer['productName'] = $offer['name']; + } + + unset($offer['id'], $offer['productId'], $offer['categoryId'], $offer['quantity']); + array_walk($offer, array($this, 'setOffersProperties'), $e); + + if (array_key_exists('params', $offer) && !empty($offer['params'])) { + array_walk($offer['params'], array($this, 'setOffersParams'), $e); + } + + unset($offers[$key]); + } + } + + /** + * Set offer properties + * + * @param $value + * @param $key + * @param $e + */ + private function setOffersProperties($value, $key, &$e) { + if (in_array($key, $this->properties) && $key != 'params') { + /** @var SimpleXMLElement $e */ + $e->addChild($key, htmlspecialchars($value)); + } + } + + /** + * Set offer params + * + * @param $value + * @param $key + * @param $e + */ + private function setOffersParams($value, $key, &$e) { + if ( + array_key_exists('code', $value) && + array_key_exists('name', $value) && + array_key_exists('value', $value) && + !empty($value['code']) && + !empty($value['name']) && + !empty($value['value']) + ) { + /** @var SimpleXMLElement $e */ + $param = $e->addChild('param', htmlspecialchars($value['value'])); + $param->addAttribute('code', $value['code']); + $param->addAttribute('name', substr(htmlspecialchars($value['name']), 0, 200)); + unset($key); + } + } + + /** + * Filter result array + * + * @param $haystack + * + * @return mixed + */ + public static function filterRecursive($haystack) + { + foreach ($haystack as $key => $value) { + if (is_array($value)) { + $haystack[$key] = self::filterRecursive($haystack[$key]); + } + + if (is_null($haystack[$key]) || $haystack[$key] === '' || count($haystack[$key]) == 0) { + unset($haystack[$key]); + } elseif (!is_array($value)) { + $haystack[$key] = trim($value); + } + } + + return $haystack; + } + + /** + * Get WC products + * + * @return array + */ + private function get_wc_products_taxonomies() { + $full_product_list = array(); + $loop = new WP_Query(array('post_type' => array('product', 'product_variation'), 'posts_per_page' => -1)); + + while ($loop->have_posts()) : $loop->the_post(); + $theid = get_the_ID(); + if ( version_compare( get_option( 'woocommerce_db_version' ), '3.0', '<' ) ) { + $product = new WC_Product($theid); + $parent = new WC_Product($product->get_parent()); + } + else { + if (get_post_type($theid) == 'product') { + $product = new WC_Product_Simple($theid); + } + elseif (get_post_type($theid) == 'product_variation') { + $post = get_post($theid); + + if (get_post($post->post_parent)) { + $product = new WC_Product_Variation($theid); + $parent = new WC_Product_Simple($product->get_parent_id()); + } + } + } + + if ($this->get_parent_product($product) > 0) { + $image = wp_get_attachment_image_src( get_post_thumbnail_id( $parent->get_id() ), 'single-post-thumbnail' ); + $term_list = wp_get_post_terms($parent->get_id(), 'product_cat', array('fields' => 'ids')); + $attributes = get_post_meta( $parent->get_id() , '_product_attributes' ); + } else { + $image = wp_get_attachment_image_src( get_post_thumbnail_id( $theid ), 'single-post-thumbnail' ); + $term_list = wp_get_post_terms($product->get_id(), 'product_cat', array('fields' => 'ids')); + $attributes = get_post_meta( $product->get_id() , '_product_attributes' ); + } + + $attributes = (isset($attributes[0])) ? $attributes[0] : $attributes; + + $params = array(); + + $weight = $product->get_weight(); + + if (!empty($weight)) { + $params[] = array('code' => 'weight', 'name' => 'Weight', 'value' => $weight); + } + + if (!empty($attributes)) { + foreach ($attributes as $attribute_name => $attribute) { + $attributeValue = get_post_meta($product->get_id(), 'attribute_'.$attribute_name); + $attributeValue = end($attributeValue); + if ($attribute['is_visible'] == 1 && !empty($attribute['value'])) { + $params[] = array( + 'code' => $attribute_name, + 'name' => $attribute['name'], + 'value' => $attributeValue + ); + } + } + } + + if ($product->get_sku() != '') { + $params[] = array('code' => 'sku', 'name' => 'SKU', 'value' => $product->get_sku()); + } + + $product_data = array( + 'id' => $product->get_id(), + 'productId' => ($this->get_parent_product($product) > 0) ? $parent->get_id() : $product->get_id(), + 'name' => $product->get_title(), + 'productName' => ($this->get_parent_product($product) > 0) ? $parent->get_title() : $product->get_title(), + 'price' => $this->get_price_with_tax($product), + 'purchasePrice' => $product->get_regular_price(), + 'picture' => $image[0], + 'url' => ($this->get_parent_product($product) > 0) ? $parent->get_permalink() : $product->get_permalink(), + 'quantity' => is_null($product->get_stock_quantity()) ? 0 : $product->get_stock_quantity(), + 'categoryId' => $term_list + ); + + if (!empty($params)) { + $product_data['params'] = $params; + } + + $full_product_list[] = $product_data; + unset($product_data); + endwhile; + + return $full_product_list; + } + + /** + * Get WC categories + * + * @return array + */ + private function get_wc_categories_taxonomies() { + $categories = array(); + $taxonomy = 'product_cat'; + $orderby = 'parent'; + $show_count = 0; // 1 for yes, 0 for no + $pad_counts = 0; // 1 for yes, 0 for no + $hierarchical = 1; // 1 for yes, 0 for no + $title = ''; + $empty = 0; + + $args = array( + 'taxonomy' => $taxonomy, + 'orderby' => $orderby, + 'show_count' => $show_count, + 'pad_counts' => $pad_counts, + 'hierarchical' => $hierarchical, + 'title_li' => $title, + 'hide_empty' => $empty + ); + + $wcatTerms = get_categories( $args ); + + foreach ($wcatTerms as $term) { + $categories[] = array( + 'id' => $term->term_id, + 'parentId' => $term->parent, + 'name' => $term->name + ); + } + + return $categories; + } + + private function get_parent_product($product) { + global $woocommerce; + if ( version_compare( $woocommerce->version, '3.0', '<' ) ) { + return $product->get_parent(); + } else { + return $product->get_parent_id(); + } + } + + private function get_price_with_tax($product) { + global $woocommerce; + if ( version_compare( $woocommerce->version, '3.0', '<' ) ) { + return $product->get_price_including_tax(); + } else { + return wc_get_price_including_tax($product); + } + } + } + +endif; diff --git a/retailcrm/include/class-wc-retailcrm-inventories.php b/retailcrm/include/class-wc-retailcrm-inventories.php new file mode 100644 index 0000000..f4a5efc --- /dev/null +++ b/retailcrm/include/class-wc-retailcrm-inventories.php @@ -0,0 +1,75 @@ +retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); + + if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { + include_once( __DIR__ . '/api/class-wc-retailcrm-proxy.php' ); + } + + $this->retailcrm = new WC_Retailcrm_Proxy( + $this->retailcrm_settings['api_url'], + $this->retailcrm_settings['api_key'] + ); + } + + public function load_stocks() + { + $page = 1; + + do { + $result = $this->retailcrm->storeInventories(array(), $page, 250); + $totalPageCount = $result['pagination']['totalPageCount']; + $page++; + + foreach ($result['offers'] as $offer) { + if (isset($offer['externalId'])) { + $post = get_post($offer['externalId']); + + if ($post->post_type == 'product') { + $product = new WC_Product_Simple($offer['externalId']); + update_post_meta($offer['externalId'], '_manage_stock', 'yes'); + $product->set_stock($offer['quantity']); + } elseif ($post->post_type == 'product_variation') { + $args = array(); + if ($post->post_parent) { + $args['parent_id'] = $post->post_parent; + $args['parent'] = new WC_Product_Simple($post->post_parent); + } + $product = new WC_Product_Variation($offer['externalId'], $args); + update_post_meta($offer['externalId'], '_manage_stock', 'yes'); + $product->set_stock($offer['quantity']); + } + } + } + + } while ($page < $totalPageCount); + } + + public function updateQuantity() + { + $options = array_filter(get_option( 'woocommerce_integration-retailcrm_settings' )); + + if ($options['sync'] == 'yes') { + $this->load_stocks(); + } else { + return false; + } + } + } +endif; diff --git a/retailcrm/include/class-wc-retailcrm-orders.php b/retailcrm/include/class-wc-retailcrm-orders.php new file mode 100644 index 0000000..887e170 --- /dev/null +++ b/retailcrm/include/class-wc-retailcrm-orders.php @@ -0,0 +1,284 @@ +retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); + + if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { + include_once( __DIR__ . '/api/class-wc-retailcrm-proxy.php' ); + } + + $this->retailcrm = new WC_Retailcrm_Proxy( + $this->retailcrm_settings['api_url'], + $this->retailcrm_settings['api_key'] + ); + } + + /** + * Upload orders to CRM + */ + public function ordersUpload() + { + $orders = get_posts(array( + 'numberposts' => -1, + 'post_type' => wc_get_order_types('view-orders'), + 'post_status' => array_keys(wc_get_order_statuses()) + )); + + $orders_data = array(); + + foreach ($orders as $data_order) { + $order_data = $this->processOrder($data_order->ID); + + $order = new WC_Order($order_id); + $customer = $order->get_user(); + + if ($customer != false) { + $order_data['customer']['externalId'] = $customer->get('ID'); + } + + $orders_data[] = $order_data; + } + + $uploadOrders = array_chunk($orders_data, 50); + + foreach ($uploadOrders as $uploadOrder) { + $this->retailcrm->ordersUpload($uploadOrder); + } + } + + /** + * Create order + * + * @param $order_id + */ + public function orderCreate($order_id) + { + $order_data = $this->processOrder($order_id); + + $order = new WC_Order($order_id); + $customer = $order->get_user(); + + if ($customer != false) { + $search = $this->retailcrm->customersGet($customer->get('ID')); + + if (!$search->isSuccessful()) { + $customer_data = array( + 'externalId' => $customer->get('ID'), + 'firstName' => $order_data['firstName'], + 'lastName' => $order_data['lastName'], + 'email' => $order_data['email'] + ); + + $this->retailcrm->customersCreate($customer_data); + + } else { + $order_data['customer']['externalId'] = $search['customer']['externalId']; + } + } + + $this->retailcrm->ordersCreate($order_data); + } + + /** + * Update shipping address + * + * @param $order_id, $address + */ + public function orderUpdateShippingAddress($order_id, $address) { + $address['externalId'] = $order_id; + + $response = $this->retailcrm->ordersEdit($address); + } + + /** + * Update order status + * + * @param $order_id + */ + public function orderUpdateStatus($order_id) { + $order = new WC_Order( $order_id ); + + $order_data = array( + 'externalId' => $order_id, + 'status' => $this->retailcrm_settings[$order->get_status()] + ); + + $response = $this->retailcrm->ordersEdit($order_data); + } + + /** + * Update order payment type + * + * @param $order_id + */ + public function orderUpdatePaymentType($order_id, $payment_method) { + + $order_data = array( + 'externalId' => $order_id, + 'paymentType' => $this->retailcrm_settings[$payment_method] + ); + + $response = $this->retailcrm->ordersEdit($order_data); + } + + /** + * Update order payment + * + * @param $order_id + */ + public function orderUpdatePayment($order_id) { + $order = new WC_Order( $order_id ); + + $order_data = array( + 'externalId' => $order_id, + 'paymentStatus' => 'paid' + ); + + $response = $this->retailcrm->ordersEdit($order_data); + } + + /** + * Update order items + * + * @param $order_id, $data + */ + public function orderUpdateItems($order_id, $data) { + $order = new WC_Order( $order_id ); + + $order_data['externalId'] = $order_id; + $shipping_method = end($data['shipping_method']); + $shipping_cost = end($data['shipping_cost']); + $products = $order->get_items(); + $items = array(); + + foreach ($products as $order_item_id => $product) { + if ($product['variation_id'] > 0) { + $offer_id = $product['variation_id']; + } else { + $offer_id = $product['product_id']; + } + + $_product = wc_get_product($offer_id); + $items[] = array( + 'offer' => array('externalId' => $offer_id), + 'productName' => $product['name'], + 'initialPrice' => (float)$_product->get_price(), + 'quantity' => $product['qty'] + ); + } + + $order_data['items'] = $items; + + if (!empty($shipping_method) && !empty($this->retailcrm_settings[$shipping_method])) { + $order_data['delivery']['code'] = $this->retailcrm_settings[$shipping_method]; + } + + if (!empty($shipping_cost)) { + $shipping_cost = str_replace(',', '.', $shipping_cost); + $order_data['delivery']['cost'] = $shipping_cost; + } + + $response = $this->retailcrm->ordersEdit($order_data); + } + + public function processOrder($order_id) + { + if ( !$order_id ){ + return; + } + + $order = new WC_Order( $order_id ); + $order_data = array(); + + $order_data['externalId'] = $order->id; + $order_data['number'] = $order->get_order_number(); + $order_data['createdAt'] = $order->order_date; + + if (!empty($order->payment_method) && !empty($this->retailcrm_settings[$order->payment_method])) { + $order_data['paymentType'] = $this->retailcrm_settings[$order->payment_method]; + } + + if(!empty($order->get_items( 'shipping' )) && $order->get_items( 'shipping' ) != '') { + $shipping = end($order->get_items( 'shipping' )); + $shipping_code = explode(':', $shipping['method_id']); + $shipping_method = $shipping_code[0]; + $shipping_cost = $shipping['cost']; + + if (!empty($shipping_method) && !empty($this->retailcrm_settings[$shipping_method])) { + $order_data['delivery']['code'] = $this->retailcrm_settings[$shipping_method]; + } + + if (!empty($shipping_cost)) { + $order_data['delivery']['cost'] = $shipping_cost; + } + } + + if ($order->is_paid()) { + $order_data['paymentStatus'] = 'paid'; + } + + $status = $order->get_status(); + $order_data['status'] = $this->retailcrm_settings[$status]; + + $user_data = $order->get_address(); + + if (!empty($user_data)) { + + if (!empty($user_data['first_name'])) $order_data['firstName'] = $user_data['first_name']; + if (!empty($user_data['last_name'])) $order_data['lastName'] = $user_data['last_name']; + if (!empty($user_data['phone'])) $order_data['phone'] = $user_data['phone']; + if (!empty($user_data['email'])) $order_data['email'] = $user_data['email']; + if (!empty($user_data['postcode'])) $order_data['delivery']['address']['index'] = $user_data['postcode']; + if (!empty($user_data['state'])) $order_data['delivery']['address']['region'] = $user_data['state']; + if (!empty($user_data['city'])) $order_data['delivery']['address']['city'] = $user_data['city']; + if (!empty($user_data['country'])) $order_data['delivery']['address']['countryIso'] = $user_data['country']; + + $order_data['delivery']['address']['text'] = sprintf( + "%s %s %s %s %s", + $user_data['postcode'], + $user_data['state'], + $user_data['city'], + $user_data['address_1'], + $user_data['address_2'] + ); + } + + $order_items = array(); + + foreach ($order->get_items() as $item) { + $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; + $_product = wc_get_product($uid); + + if ($_product) { + $order_item = array( + 'offer' => array('externalId' => $uid), + 'productName' => $item['name'], + 'initialPrice' => (float)$_product->get_price(), + 'quantity' => $item['qty'], + ); + } + + $order_items[] = $order_item; + } + + $order_data['items'] = $order_items; + + return $order_data; + } + } +endif; diff --git a/retailcrm/include/index.php b/retailcrm/include/index.php new file mode 100644 index 0000000..e71af0e --- /dev/null +++ b/retailcrm/include/index.php @@ -0,0 +1 @@ +updateQuantity(); +} + +/** + * Generate ICML file + */ +function generate_icml() +{ + if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) { + include_once( __DIR__ . check_custom_icml() ); + } + + $icml = new WC_Retailcrm_Icml(); + $icml->generate(); +} + +/** + * Create order + * + * @param $order_id + */ +function retailcrm_process_order($order_id) +{ + if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { + include_once( __DIR__ . check_custom_order() ); + } + + $order_class = new WC_Retailcrm_Orders(); + $order_class->orderCreate($order_id); +} + +/** + * Update order status + * + * @param $order_id + */ +function retailcrm_update_order_status($order_id) +{ + if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { + include_once( __DIR__ . check_custom_order() ); + } + + $order_class = new WC_Retailcrm_Orders(); + $order_class->orderUpdateStatus($order_id); +} + +/** + * Update order payment + * + * @param $order_id + */ +function retailcrm_update_order_payment($order_id) +{ + if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { + include_once( __DIR__ . check_custom_order() ); + } + + $order_class = new WC_Retailcrm_Orders(); + $order_class->orderUpdatePayment($order_id); +} + +/** + * Update order + * + * @param $meta_id, $order_id, $meta_key, $_meta_value + */ +function retailcrm_update_order($meta_id, $order_id, $meta_key, $_meta_value) +{ + if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { + include_once( __DIR__ . check_custom_order() ); + } + $order_class = new WC_Retailcrm_Orders(); + + if ($meta_key == '_payment_method') { + $order_class->orderUpdatePaymentType($order_id, $_meta_value); + } + + $address = array(); + + if ($meta_key == '_shipping_first_name') $address['firstName'] = $_meta_value; + if ($meta_key == '_shipping_last_name') $address['lastName'] = $_meta_value; + if ($meta_key == '_billing_phone') $address['phone'] = $_meta_value; + if ($meta_key == '_billing_email') $address['email'] = $_meta_value; + if ($meta_key == '_shipping_city') $address['delivery']['address']['city'] = $_meta_value; + if ($meta_key == '_shipping_state') $address['delivery']['address']['region'] = $_meta_value; + if ($meta_key == '_shipping_postcode') $address['delivery']['address']['index'] = $_meta_value; + if ($meta_key == '_shipping_country') $address['delivery']['address']['countryIso'] = $_meta_value; + if ($meta_key == '_shipping_address_1') $address['delivery']['address']['text'] = $_meta_value; + if ($meta_key == '_shipping_address_2') $address['delivery']['address']['text'] .= $_meta_value; + + if (!empty($address)) { + $order_class->orderUpdateShippingAddress($order_id, $address); + } +} + +/** + * Update order items + * + * @param $order_id, $data + */ +function retailcrm_update_order_items($order_id, $data) +{ + if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { + include_once( __DIR__ . check_custom_order() ); + } + + $order_class = new WC_Retailcrm_Orders(); + $order_class->orderUpdateItems($order_id, $data); +} + +function retailcrm_history_get() +{ + if ( ! class_exists( 'WC_Retailcrm_History' ) ) { + include_once( __DIR__ . '/include/class-wc-retailcrm-history.php' ); + } + + $history_class = new WC_Retailcrm_History(); + $history_class->getHistory(); +} + +function create_customer($customer_id) { + if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) { + include_once( __DIR__ . '/include/class-wc-retailcrm-customers.php' ); + } + + $customer_class = new WC_Retailcrm_Customers(); + $customer_class->createCustomer($customer_id); +} + +function update_customer($customer_id, $data) { + if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) { + include_once( __DIR__ . '/include/class-wc-retailcrm-customers.php' ); + } + + $customer_class = new WC_Retailcrm_Customers(); + $customer_class->updateCustomer($customer_id); +} + +function register_icml_generation() { + // Make sure this event hasn't been scheduled + if( !wp_next_scheduled( 'retailcrm_icml' ) ) { + // Schedule the event + wp_schedule_event( time(), 'three_hours', 'retailcrm_icml' ); + } +} + +function register_retailcrm_history() { + // Make sure this event hasn't been scheduled + if( !wp_next_scheduled( 'retailcrm_history' ) ) { + // Schedule the event + wp_schedule_event( time(), 'five_minutes', 'retailcrm_history' ); + } +} + +function check_inventories() { + if( !wp_next_scheduled( 'retailcrm_inventories' ) ) { + // Schedule the event + wp_schedule_event( time(), 'fiveteen_minutes', 'retailcrm_inventories' ); + } +} + +function filter_cron_schedules($param) { + return array( + 'five_minutes' => array( + 'interval' => 300, // seconds + 'display' => __('Every 5 minutes') + ), + 'three_hours' => array( + 'interval' => 10800, // seconds + 'display' => __('Every 3 hours') + ), + 'fiveteen_minutes' => array( + 'interval' => 900, // seconds + 'display' => __('Every 1 hour') + ) + ); +} + +function upload_to_crm() { + if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { + include_once( __DIR__ . check_custom_order() ); + } + + if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) { + include_once( __DIR__ . '/include/class-wc-retailcrm-customers.php' ); + } + + $options = array_filter(get_option( 'woocommerce_integration-retailcrm_settings' )); + + if ($options['uploadToCrm'] == 'yes' && !isset($options['uploaded'])) { + $options['uploadToCrm'] = 'no'; + $options['uploaded'] = 'yes'; + + $orders = new WC_Retailcrm_Orders(); + $customers = new WC_Retailcrm_Customers(); + $customers->customersUpload(); + $orders->ordersUpload(); + + update_option('woocommerce_integration-retailcrm_settings', $options); + } + + if (isset($options['uploaded'])) { + $options['uploadToCrm'] = 'no'; + update_option('woocommerce_integration-retailcrm_settings', $options); + } +} + +function ajax_upload() { + $ajax_url = admin_url('admin-ajax.php'); + ?> + + Date: Wed, 7 Jun 2017 17:52:51 +0300 Subject: [PATCH 03/75] creating uninstall file --- retailcrm/uninstall.php | 64 ++++++++++++++++++++++++----------------- 1 file changed, 38 insertions(+), 26 deletions(-) diff --git a/retailcrm/uninstall.php b/retailcrm/uninstall.php index d524945..a2bce27 100644 --- a/retailcrm/uninstall.php +++ b/retailcrm/uninstall.php @@ -1,30 +1,42 @@ query( "DELETE FROM $wpdb->options WHERE option_name = 'woocommerce_integration-retailcrm_settings';" ); + +// Clear any cached data that has been removed +wp_cache_flush(); \ No newline at end of file From cef1b4af10b7879a736c9c9d05f4f676cd4c0571 Mon Sep 17 00:00:00 2001 From: iyzoer Date: Wed, 14 Jun 2017 12:02:29 +0300 Subject: [PATCH 04/75] uploads customers and orders on click button --- retailcrm/include/class-wc-retailcrm-base.php | 63 +++++++++++++++---- retailcrm/retailcrm.php | 27 +++----- 2 files changed, 59 insertions(+), 31 deletions(-) diff --git a/retailcrm/include/class-wc-retailcrm-base.php b/retailcrm/include/class-wc-retailcrm-base.php index 3a47726..f52e111 100644 --- a/retailcrm/include/class-wc-retailcrm-base.php +++ b/retailcrm/include/class-wc-retailcrm-base.php @@ -191,22 +191,59 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : 'description' => 'Отметьте данный пункт, если хотите выгружать остатки товаров из CRM в магазин.' ); - $this->form_fields[] = array( - 'title' => __( 'Настройки выгрузки', 'woocommerce' ), - 'type' => 'title', - 'description' => '', - 'id' => 'upload_options' - ); + $options = array_filter(get_option( 'woocommerce_integration-ecomlogic_settings' )); - $this->form_fields['uploadToCrm'] = array( - 'label' => __( 'Выгрузить все заказы и клиентов', 'textdomain' ), - 'title' => 'Выгрузка заказов и клиентов', - 'class' => 'checkbox', - 'type' => 'checkbox', - 'description' => 'Поставьте галочку, и нажмите сохранить, чтобы выгрузить все существующие заказы и клиентов.' - ); + if (!isset($options['uploads'])) { + $this->form_fields[] = array( + 'title' => __( 'Выгрузка клиентов и заказов', 'woocommerce' ), + 'type' => 'title', + 'description' => '', + 'id' => 'upload_options' + ); + + $this->form_fields['upload-button'] = array( + 'label' => 'Выгрузить', + 'title' => __( 'Выгрузка клиентов и заказов', 'woocommerce-integration-ecomlogic' ), + 'type' => 'button', + 'description' => __( 'Пакетная выгрузка существующих клиентов и заказов.', 'woocommerce-integration-ecomlogic' ), + 'desc_tip' => true, + 'id' => 'uploads-ecomlogic' + ); + } } } + + public function generate_button_html( $key, $data ) { + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( + 'class' => 'button-secondary', + 'css' => '', + 'custom_attributes' => array(), + 'desc_tip' => false, + 'description' => '', + 'title' => '', + ); + + $data = wp_parse_args( $data, $defaults ); + + ob_start(); + ?> + + + + get_tooltip_html( $data ); ?> + + +
+ + + get_description_html( $data ); ?> +
+ + + customersUpload(); + $orders->ordersUpload(); - $orders = new WC_Retailcrm_Orders(); - $customers = new WC_Retailcrm_Customers(); - $customers->customersUpload(); - $orders->ordersUpload(); - - update_option('woocommerce_integration-retailcrm_settings', $options); - } - - if (isset($options['uploaded'])) { - $options['uploadToCrm'] = 'no'; - update_option('woocommerce_integration-retailcrm_settings', $options); - } + $options['uploads'] = 'yes'; + update_option('woocommerce_integration-ecomlogic_settings', $options); } function ajax_upload() { $ajax_url = admin_url('admin-ajax.php'); ?> + Date: Mon, 18 Dec 2017 15:19:04 +0200 Subject: [PATCH 26/75] Weight and dimensions in icml (#41) --- .../include/class-wc-retailcrm-history.php | 510 +++++++++--------- .../include/class-wc-retailcrm-icml.php | 52 +- woo-retailcrm/retailcrm.php | 2 +- woo-retailcrm/uninstall.php | 6 +- 4 files changed, 305 insertions(+), 265 deletions(-) diff --git a/woo-retailcrm/include/class-wc-retailcrm-history.php b/woo-retailcrm/include/class-wc-retailcrm-history.php index 16cf747..ddd2519 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-history.php +++ b/woo-retailcrm/include/class-wc-retailcrm-history.php @@ -142,295 +142,303 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $this->removeFuncsHook(); - if ($record['field'] == 'status' && !empty($record['newValue']) && !empty($record['oldValue'])) { - $newStatus = $record['newValue']['code']; - if (!empty($options[$newStatus]) && !empty($record['order']['externalId'])) { - $order = new WC_Order($record['order']['externalId']); - $order->update_status($options[$newStatus]); - } - } - - elseif($record['field'] == 'order_product' && $record['newValue']) { - $product = wc_get_product($record['item']['offer']['externalId']); - $order = new WC_Order($record['order']['externalId']); - $order->add_product($product, $record['item']['quantity']); - - $this->update_total($order); - } - - elseif($record['field'] == 'order_product.quantity' && $record['newValue']) { - - $order = new WC_Order($record['order']['externalId']); - $product = wc_get_product($record['item']['offer']['externalId']); - $items = $order->get_items(); - - foreach ($items as $order_item_id => $item) { - if ($item['variation_id'] != 0 ) { - $offer_id = $item['variation_id']; - } else { - $offer_id = $item['product_id']; - } - if ($offer_id == $record['item']['offer']['externalId']) { - wc_delete_order_item($order_item_id); - $order->add_product($product, $record['newValue']); - $this->update_total($order); - } - } - } - - elseif ($record['field'] == 'order_product' && !$record['newValue']) { - $order = new WC_Order($record['order']['externalId']); - $items = $order->get_items(); - - foreach ($items as $order_item_id => $item) { - if ($item['variation_id'] != 0 ) { - $offer_id = $item['variation_id']; - } else { - $offer_id = $item['product_id']; - } - if ($offer_id == $record['item']['offer']['externalId']) { - wc_delete_order_item($order_item_id); - $this->update_total($order); - } - } - } - - elseif ($record['field'] == 'delivery_type') { - $newValue = $record['newValue']['code']; - - if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { - if (isset($options[$newValue])) { + try { + if ($record['field'] == 'status' && !empty($record['newValue']) && !empty($record['oldValue'])) { + $newStatus = $record['newValue']['code']; + if (!empty($options[$newStatus]) && !empty($record['order']['externalId'])) { $order = new WC_Order($record['order']['externalId']); - $items = $order->get_items('shipping'); - $item_id = $this->getShippingItemId($items); - $crmOrder = $this->retailcrm->ordersGet($record['order']['externalId']); - $shipping_methods = get_wc_shipping_methods(true); - - if (isset($shipping_methods[$options[$newValue]])) { - $method_id = $options[$newValue]; - } else { - $method_id = explode(':', $options[$newValue]); - $method_id = $method_id[0]; - $shipping_method = $shipping_methods[$method_id]['shipping_methods'][$options[$newValue]]; - } - - if ( is_object($crmOrder)) { - if ($crmOrder->isSuccessful()) { - $deliveryCost = isset($crmOrder['order']['delivery']['cost']) ? $crmOrder['order']['delivery']['cost'] : 0; - } - } - - $args = array( - 'method_id' => $options[$newValue], - 'method_title' => isset($shipping_method) ? $shipping_method['title'] : $shipping_methods[$options[$newValue]]['name'], - 'total' => $deliveryCost - ); - - $item = $order->get_item((int)$item_id); - $item->set_order_id((int)$order->get_id()); - $item->set_props($args); - $item->save(); - } - - $updateOrder = new WC_Order((int)$order->get_id()); - $this->update_total($updateOrder); - } - } - - elseif ($record['field'] == 'delivery_address.region') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_state($record['newValue']); - } - - elseif ($record['field'] == 'delivery_address.city') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_city($record['newValue']); - } - - elseif ($record['field'] == 'delivery_address.street') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_address_1($record['newValue']); - } - - elseif ($record['field'] == 'delivery_address.building') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_address_2($record['newValue']); - } - - elseif ($record['field'] == 'payment_type') { - $order = new WC_Order($record['order']['externalId']); - $newValue = $record['newValue']['code']; - if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { - $payment = new WC_Payment_Gateways(); - $payment_types = $payment->get_available_payment_gateways(); - if (isset($payment_types[$options[$newValue]])) { - update_post_meta($order->get_id(), '_payment_method', $payment->id); + $order->update_status($options[$newStatus]); } } - } - elseif ($record['field'] == 'payments') { - $response = $this->retailcrm->ordersGet($record['order']['externalId']); - - if ($response->isSuccessful()) { - $order_data = $response['order']; + elseif($record['field'] == 'order_product' && $record['newValue']) { + $product = wc_get_product($record['item']['offer']['externalId']); $order = new WC_Order($record['order']['externalId']); - $payment = new WC_Payment_Gateways(); - $payment_types = $payment->get_available_payment_gateways(); + $order->add_product($product, $record['item']['quantity']); - if (count($order_data['payments']) == 1) { - $paymentType = end($order_data['payments']); - if (isset($payment_types[$options[$paymentType['type']]])) { - $payment = $payment_types[$options[$paymentType['type']]]; - update_post_meta($order->get_id(), '_payment_method', $payment->id); - } - } else { - foreach ($order_data['payments'] as $payment_data) { - if (isset($payment_data['externalId'])) { - $paymentType = $payment_data; - } - } + $this->update_total($order); + } - if (!isset($paymentType)) { - $paymentType = $order_data['payments'][0]; - } + elseif($record['field'] == 'order_product.quantity' && $record['newValue']) { - if (isset($payment_types[$options[$paymentType['type']]])) { - update_post_meta($order->get_id(), '_payment_method', $payment->id); - } + $order = new WC_Order($record['order']['externalId']); + $product = wc_get_product($record['item']['offer']['externalId']); + $items = $order->get_items(); + + foreach ($items as $order_item_id => $item) { + if ($item['variation_id'] != 0 ) { + $offer_id = $item['variation_id']; + } else { + $offer_id = $item['product_id']; + } + if ($offer_id == $record['item']['offer']['externalId']) { + wc_delete_order_item($order_item_id); + $order->add_product($product, $record['newValue']); + $this->update_total($order); + } + } + } + + elseif ($record['field'] == 'order_product' && !$record['newValue']) { + $order = new WC_Order($record['order']['externalId']); + $items = $order->get_items(); + + foreach ($items as $order_item_id => $item) { + if ($item['variation_id'] != 0 ) { + $offer_id = $item['variation_id']; + } else { + $offer_id = $item['product_id']; + } + if ($offer_id == $record['item']['offer']['externalId']) { + wc_delete_order_item($order_item_id); + $this->update_total($order); + } } } - } - elseif (isset($record['created']) && - $record['created'] == 1 && - !isset($record['order']['externalId'])) { + elseif ($record['field'] == 'delivery_type') { + $newValue = $record['newValue']['code']; - $args = array( - 'status' => $options[$record['order']['status']], - 'customer_id' => isset($record['order']['customer']['externalId']) ? - $record['order']['customer']['externalId'] : - null - ); + if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { + if (isset($options[$newValue])) { + $order = new WC_Order($record['order']['externalId']); + $items = $order->get_items('shipping'); + $item_id = $this->getShippingItemId($items); + $crmOrder = $this->retailcrm->ordersGet($record['order']['externalId']); + $shipping_methods = get_wc_shipping_methods(true); - $order_record = $record['order']; - $order_data = wc_create_order($args); - $order = new WC_Order($order_data->id); - - $address_shipping = array( - 'first_name' => $order_record['firstName'], - 'last_name' => isset($order_record['lastName']) ? $order_record['lastName'] : '', - 'company' => '', - 'email' => isset($order_record['email']) ? $order_record['email'] : '', - 'phone' => isset($order_record['phone']) ? $order_record['phone'] : '', - 'address_1' => isset($order_record['delivery']['address']['text']) ? $order_record['delivery']['address']['text'] : '', - 'address_2' => '', - 'city' => isset($order_record['delivery']['address']['city']) ? $order_record['delivery']['address']['city'] : '', - 'state' => isset($order_record['delivery']['address']['region']) ? $order_record['delivery']['address']['region'] : '', - 'postcode' => isset($order_record['delivery']['address']['postcode']) ? $order_record['delivery']['address']['postcode'] : '', - 'country' => $order_record['delivery']['address']['countryIso'] - ); - $address_billing = array( - 'first_name' => $order_record['customer']['firstName'], - 'last_name' => isset($order_record['customer']['lastName']) ? $order_record['customer']['lastName'] : '', - 'company' => '', - 'email' => isset($order_record['customer']['email']) ? $order_record['customer']['email'] : '', - 'phone' => isset($order_record['customer'][0]['number']) ? $order_record['customer'][0]['number'] : '', - 'address_1' => isset($order_record['customer']['address']['text']) ? $order_record['customer']['address']['text'] : '', - 'address_2' => '', - 'city' => isset($order_record['customer']['address']['city']) ? $order_record['customer']['address']['city'] : '', - 'state' => isset($order_record['customer']['address']['region']) ? $order_record['customer']['address']['region'] : '', - 'postcode' => isset($order_record['customer']['address']['postcode']) ? $order_record['customer']['address']['postcode'] : '', - 'country' => $order_record['customer']['address']['countryIso'] - ); - - if ($this->retailcrm_settings['api_version'] == 'v5') { - if ($order_record['payments']) { - $payment = new WC_Payment_Gateways(); - - if (count($order_record['payments']) == 1) { - $payment_types = $payment->get_available_payment_gateways(); - $paymentType = end($order_record['payments']); - - if (isset($payment_types[$options[$paymentType['type']]])) { - $order->set_payment_method($payment_types[$options[$paymentType['type']]]); + if (isset($shipping_methods[$options[$newValue]])) { + $method_id = $options[$newValue]; + } else { + $method_id = explode(':', $options[$newValue]); + $method_id = $method_id[0]; + $shipping_method = $shipping_methods[$method_id]['shipping_methods'][$options[$newValue]]; } + + if ( is_object($crmOrder)) { + if ($crmOrder->isSuccessful()) { + $deliveryCost = isset($crmOrder['order']['delivery']['cost']) ? $crmOrder['order']['delivery']['cost'] : 0; + } + } + + $args = array( + 'method_id' => $options[$newValue], + 'method_title' => isset($shipping_method) ? $shipping_method['title'] : $shipping_methods[$options[$newValue]]['name'], + 'total' => $deliveryCost + ); + + $item = $order->get_item((int)$item_id); + $item->set_order_id((int)$order->get_id()); + $item->set_props($args); + $item->save(); } + + $updateOrder = new WC_Order((int)$order->get_id()); + $this->update_total($updateOrder); } - } else { - if ($order_record['paymentType']) { + } + + elseif ($record['field'] == 'delivery_address.region') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_state($record['newValue']); + } + + elseif ($record['field'] == 'delivery_address.city') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_city($record['newValue']); + } + + elseif ($record['field'] == 'delivery_address.street') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_address_1($record['newValue']); + } + + elseif ($record['field'] == 'delivery_address.building') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_address_2($record['newValue']); + } + + elseif ($record['field'] == 'payment_type') { + $order = new WC_Order($record['order']['externalId']); + $newValue = $record['newValue']['code']; + if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { $payment = new WC_Payment_Gateways(); $payment_types = $payment->get_available_payment_gateways(); - if (isset($payment_types[$options[$order_record['paymentType']]])) { - $order->set_payment_method($payment_types[$options[$order_record['paymentType']]]); + if (isset($payment_types[$options[$newValue]])) { + update_post_meta($order->get_id(), '_payment_method', $payment->id); } } } - $order->set_address($address_billing, 'billing'); - $order->set_address($address_shipping, 'shipping'); - $product_data = isset($order_record['items']) ? $order_record['items'] : array(); + elseif ($record['field'] == 'payments') { + $response = $this->retailcrm->ordersGet($record['order']['externalId']); - if ($product_data) { - foreach ($product_data as $product) { - $order->add_product(wc_get_product($product['offer']['externalId']), $product['quantity']); + if ($response->isSuccessful()) { + $order_data = $response['order']; + $order = new WC_Order($record['order']['externalId']); + $payment = new WC_Payment_Gateways(); + $payment_types = $payment->get_available_payment_gateways(); + + if (count($order_data['payments']) == 1) { + $paymentType = end($order_data['payments']); + if (isset($payment_types[$options[$paymentType['type']]])) { + $payment = $payment_types[$options[$paymentType['type']]]; + update_post_meta($order->get_id(), '_payment_method', $payment->id); + } + } else { + foreach ($order_data['payments'] as $payment_data) { + if (isset($payment_data['externalId'])) { + $paymentType = $payment_data; + } + } + + if (!isset($paymentType)) { + $paymentType = $order_data['payments'][0]; + } + + if (isset($payment_types[$options[$paymentType['type']]])) { + update_post_meta($order->get_id(), '_payment_method', $payment->id); + } + } } } - if (array_key_exists('delivery', $order_record)) { - $deliveryCode = isset($order_record['delivery']['code']) ? $order_record['delivery']['code'] : false; + elseif (isset($record['created']) && + $record['created'] == 1 && + !isset($record['order']['externalId'])) { - if ($deliveryCode && isset($options[$deliveryCode])) { - $delivery = explode(':', $options[$deliveryCode]); + $args = array( + 'status' => $options[$record['order']['status']], + 'customer_id' => isset($record['order']['customer']['externalId']) ? + $record['order']['customer']['externalId'] : + null + ); - if (isset($delivery[1])) { - $instance_id = $delivery[1]; + $order_record = $record['order']; + $order_data = wc_create_order($args); + $order = new WC_Order($order_data->id); + + $address_shipping = array( + 'first_name' => $order_record['firstName'], + 'last_name' => isset($order_record['lastName']) ? $order_record['lastName'] : '', + 'company' => '', + 'email' => isset($order_record['email']) ? $order_record['email'] : '', + 'phone' => isset($order_record['phone']) ? $order_record['phone'] : '', + 'address_1' => isset($order_record['delivery']['address']['text']) ? $order_record['delivery']['address']['text'] : '', + 'address_2' => '', + 'city' => isset($order_record['delivery']['address']['city']) ? $order_record['delivery']['address']['city'] : '', + 'state' => isset($order_record['delivery']['address']['region']) ? $order_record['delivery']['address']['region'] : '', + 'postcode' => isset($order_record['delivery']['address']['postcode']) ? $order_record['delivery']['address']['postcode'] : '', + 'country' => $order_record['delivery']['address']['countryIso'] + ); + $address_billing = array( + 'first_name' => $order_record['customer']['firstName'], + 'last_name' => isset($order_record['customer']['lastName']) ? $order_record['customer']['lastName'] : '', + 'company' => '', + 'email' => isset($order_record['customer']['email']) ? $order_record['customer']['email'] : '', + 'phone' => isset($order_record['customer'][0]['number']) ? $order_record['customer'][0]['number'] : '', + 'address_1' => isset($order_record['customer']['address']['text']) ? $order_record['customer']['address']['text'] : '', + 'address_2' => '', + 'city' => isset($order_record['customer']['address']['city']) ? $order_record['customer']['address']['city'] : '', + 'state' => isset($order_record['customer']['address']['region']) ? $order_record['customer']['address']['region'] : '', + 'postcode' => isset($order_record['customer']['address']['postcode']) ? $order_record['customer']['address']['postcode'] : '', + 'country' => $order_record['customer']['address']['countryIso'] + ); + + if ($this->retailcrm_settings['api_version'] == 'v5') { + if ($order_record['payments']) { + $payment = new WC_Payment_Gateways(); + + if (count($order_record['payments']) == 1) { + $payment_types = $payment->get_available_payment_gateways(); + $paymentType = end($order_record['payments']); + + if (isset($payment_types[$options[$paymentType['type']]])) { + $order->set_payment_method($payment_types[$options[$paymentType['type']]]); + } + } } - } - - if (isset($instance_id)) { - $wc_shipping = WC_Shipping_Zones::get_shipping_method($instance_id); - $shipping_method_title = $wc_shipping->method_title; - $shipping_method_id = $options[$deliveryCode]; - $shipping_total = $order_record['delivery']['cost']; } else { - $wc_shipping = new WC_Shipping(); - $wc_shipping_types = $wc_shipping->get_shipping_methods(); - - foreach ($wc_shipping_types as $shipping_type) { - if ($shipping_type->id == $options[$deliveryCode]) { - $shipping_method_id = $shipping_type->id; - $shipping_method_title = $shipping_type->method_title; - $shipping_total = $order_record['delivery']['cost']; + if ($order_record['paymentType']) { + $payment = new WC_Payment_Gateways(); + $payment_types = $payment->get_available_payment_gateways(); + if (isset($payment_types[$options[$order_record['paymentType']]])) { + $order->set_payment_method($payment_types[$options[$order_record['paymentType']]]); } } } - if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { - $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); - $order->add_shipping($shipping_rate); - } else { - $shipping = new WC_Order_Item_Shipping(); - $shipping->set_props( array( - 'method_title' => $shipping_method_title, - 'method_id' => $shipping_method_id, - 'total' => wc_format_decimal($shipping_total), - 'order_id' => $order->id - ) ); - $shipping->save(); - $order->add_item( $shipping ); + $order->set_address($address_billing, 'billing'); + $order->set_address($address_shipping, 'shipping'); + $product_data = isset($order_record['items']) ? $order_record['items'] : array(); + + if ($product_data) { + foreach ($product_data as $product) { + $order->add_product(wc_get_product($product['offer']['externalId']), $product['quantity']); + } } + + if (array_key_exists('delivery', $order_record)) { + $deliveryCode = isset($order_record['delivery']['code']) ? $order_record['delivery']['code'] : false; + + if ($deliveryCode && isset($options[$deliveryCode])) { + $delivery = explode(':', $options[$deliveryCode]); + + if (isset($delivery[1])) { + $instance_id = $delivery[1]; + } + } + + if (isset($instance_id)) { + $wc_shipping = WC_Shipping_Zones::get_shipping_method($instance_id); + $shipping_method_title = $wc_shipping->method_title; + $shipping_method_id = $options[$deliveryCode]; + $shipping_total = $order_record['delivery']['cost']; + } else { + $wc_shipping = new WC_Shipping(); + $wc_shipping_types = $wc_shipping->get_shipping_methods(); + + foreach ($wc_shipping_types as $shipping_type) { + if ($shipping_type->id == $options[$deliveryCode]) { + $shipping_method_id = $shipping_type->id; + $shipping_method_title = $shipping_type->method_title; + $shipping_total = $order_record['delivery']['cost']; + } + } + } + + if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { + $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); + $order->add_shipping($shipping_rate); + } else { + $shipping = new WC_Order_Item_Shipping(); + $shipping->set_props( array( + 'method_title' => $shipping_method_title, + 'method_id' => $shipping_method_id, + 'total' => wc_format_decimal($shipping_total), + 'order_id' => $order->id + ) ); + $shipping->save(); + $order->add_item( $shipping ); + } + } + + $this->update_total($order); + + $ids[] = array( + 'id' => (int)$order_record['id'], + 'externalId' => (int)$order_data->id + ); + + $this->retailcrm->ordersFixExternalIds($ids); } + } catch (Exception $exception) { + $logger = new WC_Logger(); + $logger->add('retailcrm', sprintf("[%s] - %s", $exception->getMessage(), 'Exception in file - ' . $exception->getFile() . ' on line ' . $exception->getLine())); - $this->update_total($order); - - $ids[] = array( - 'id' => (int)$order_record['id'], - 'externalId' => (int)$order_data->id - ); - - $this->retailcrm->ordersFixExternalIds($ids); + continue; } + $this->addFuncsHook(); } } diff --git a/woo-retailcrm/include/class-wc-retailcrm-icml.php b/woo-retailcrm/include/class-wc-retailcrm-icml.php index 92dbeee..09aeb05 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-icml.php +++ b/woo-retailcrm/include/class-wc-retailcrm-icml.php @@ -240,10 +240,14 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : array_walk($offer['params'], array($this, 'setOffersParams'), $e); } - if ($offer['dimension']) { + if (array_key_exists('dimension', $offer)) { $e->addChild('dimension', $offer['dimension']); } + if (array_key_exists('weight', $offer)) { + $e->addChild('weight', $offer['weight']); + } + unset($offers[$key]); } } @@ -365,7 +369,9 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : } } - if ($product->get_type() == 'variable') continue; + if ($product->get_type() == 'variable') { + continue; + } if ($product->get_type() == 'simple' || $parent && $parent->get_type() == 'variable') { if ($this->get_parent_product($product) > 0) { @@ -406,10 +412,6 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : $post->post_title . $attrName : $post->post_title; - if ($product->get_weight() != '') { - $params[] = array('code' => 'weight', 'name' => 'Вес', 'value' => $product->get_weight()); - } - if ($product->get_sku() != '') { $params[] = array('code' => 'article', 'name' => 'Артикул', 'value' => $product->get_sku()); } @@ -417,15 +419,21 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : $dimension = ''; if ($product->get_length() != '') { - $dimension = $product->get_length(); + $dimension = wc_get_dimension($product->get_length(), 'cm'); } if ($product->get_width() != '') { - $dimension .= '/' . $product->get_width(); + $dimension .= '/' . wc_get_dimension($product->get_width(), 'cm'); } if ($product->get_height() != '') { - $dimension .= '/' . $product->get_height(); + $dimension .= '/' . wc_get_dimension($product->get_height(), 'cm'); + } + + $weight = ''; + + if ($product->get_weight() != '') { + $weight = wc_get_weight($product->get_weight(), 'kg'); } $product_data = array( @@ -438,7 +446,8 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : 'url' => ($this->get_parent_product($product) > 0) ? $parent->get_permalink() : $product->get_permalink(), 'quantity' => is_null($product->get_stock_quantity()) ? 0 : $product->get_stock_quantity(), 'categoryId' => $term_list, - 'dimension' => $dimension + 'dimension' => $dimension, + 'weight' => $weight ); if (!empty($params)) { @@ -501,6 +510,15 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : return $categories; } + /** + * Get product id + * + * @global object $woocommerce + * + * @param object $product + * + * @return int + */ private function get_parent_product($product) { global $woocommerce; if ( version_compare( $woocommerce->version, '3.0', '<' ) ) { @@ -510,6 +528,15 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : } } + /** + * Get product price + * + * @global object $woocommerce + * + * @param object $product + * + * @return float + */ private function get_price_with_tax($product) { global $woocommerce; if ( version_compare( $woocommerce->version, '3.0', '<' ) ) { @@ -519,6 +546,11 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : } } + /** + * Get product statuses + * + * @return array + */ private function checkPostStatuses() { $options = get_option( 'woocommerce_integration-retailcrm_settings' ); $status_args = array(); diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index bbfa994..4ea6269 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ Date: Wed, 10 Jan 2018 14:26:05 +0300 Subject: [PATCH 27/75] Deleted space in the date, discount for order items (#43) --- .../include/class-wc-retailcrm-customers.php | 30 ++++++++++++- .../include/class-wc-retailcrm-orders.php | 42 ++++++++----------- woo-retailcrm/retailcrm.php | 2 +- woo-retailcrm/uninstall.php | 2 +- 4 files changed, 47 insertions(+), 29 deletions(-) diff --git a/woo-retailcrm/include/class-wc-retailcrm-customers.php b/woo-retailcrm/include/class-wc-retailcrm-customers.php index fbd689e..bbbb508 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-customers.php +++ b/woo-retailcrm/include/class-wc-retailcrm-customers.php @@ -28,7 +28,12 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : $this->retailcrm_settings['api_version'] ); } - + + /** + * Upload customers to CRM + * + * @return void + */ public function customersUpload() { $users = get_users(); @@ -69,6 +74,13 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : } } + /** + * Create customer in CRM + * + * @param int $customer_id + * + * @return void + */ public function createCustomer($customer_id) { $customer = new WC_Customer($customer_id); @@ -81,6 +93,13 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : } } + /** + * Edit customer in CRM + * + * @param int $customer_id + * + * @return void + */ public function updateCustomer($customer_id) { $customer = new WC_Customer($customer_id); @@ -93,12 +112,19 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : } } + /** + * Process customer + * + * @param object $customer + * + * @return array $data_customer + */ protected function processCustomer($customer) { $createdAt = $customer->get_date_created(); $firstName = $customer->get_first_name(); $data_customer = array( - 'createdAt' => $createdAt->date('Y-m-d H:i:s '), + 'createdAt' => $createdAt->date('Y-m-d H:i:s'), 'externalId' => $customer_id, 'firstName' => $firstName ? $firstName : $customer->get_username(), 'lastName' => $customer->get_last_name(), diff --git a/woo-retailcrm/include/class-wc-retailcrm-orders.php b/woo-retailcrm/include/class-wc-retailcrm-orders.php index a5b2347..acf272a 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-orders.php +++ b/woo-retailcrm/include/class-wc-retailcrm-orders.php @@ -14,6 +14,9 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : */ class WC_Retailcrm_Orders { + protected $retailcrm_settings; + protected $retailcrm; + public function __construct() { $this->retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); @@ -275,7 +278,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : * * @param int $order_id * - * @return arr + * @return array $order_data */ public function processOrder($order_id) { @@ -292,16 +295,6 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $order_data['createdAt'] = trim($order_data_info['date']); $order_data['customerComment'] = $order_data_info['customer_comment']; - if ( $order_data_info['discount_total'] ) { - $discount = $order_data_info['discount_total'] + $order_data_info['discount_tax']; - - if ($this->retailcrm_settings['api_version'] == 'v5') { - if ($discount > 0) $order_data['discountManualAmount'] = $discount; - } else { - if ($discount > 0) $order_data['discount'] = $discount; - } - } - if ( !empty( $order_data_info['payment_method'] ) && !empty($this->retailcrm_settings[$order_data_info['payment_method']]) && $this->retailcrm_settings['api_version'] != 'v5') { $order_data['paymentType'] = $this->retailcrm_settings[$order_data_info['payment_method']]; } @@ -376,26 +369,25 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : foreach ($order->get_items() as $item) { $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; $_product = wc_get_product($uid); + $price = wc_get_price_including_tax($_product); if ($_product) { $product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0; $product_tax = $item->get_total_tax() ? $item->get_total_tax() / $item->get_quantity() : 0; $price_item = $product_price + $product_tax; + $discount_price = $price - $price_item; - if ($this->retailcrm_settings['api_version'] != 'v3') { - $order_item = array( - 'offer' => array('externalId' => $uid), - 'productName' => $item['name'], - 'initialPrice' => (float)$price_item, - 'quantity' => $item['qty'], - ); - } else { - $order_item = array( - 'productId' => $uid, - 'productName' => $item['name'], - 'initialPrice' => (float)$price_item, - 'quantity' => $item['qty'], - ); + $order_item = array( + 'offer' => array('externalId' => $uid), + 'productName' => $item['name'], + 'initialPrice' => (float)$price, + 'quantity' => $item['qty'], + ); + + if ($this->retailcrm_settings['api_version'] == 'v5') { + $order_item['discountManualAmount'] = $discount_price; + } elseif ($this->retailcrm_settings['api_version'] == 'v4') { + $order_item['discount'] = $discount_price; } } diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index 4ea6269..add5549 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ Date: Tue, 23 Jan 2018 14:09:44 +0300 Subject: [PATCH 28/75] Update payment, fix transferring shipping types, fix calculating discount (#44) --- .../api/class-wc-retailcrm-client-v3.php | 836 --- .../api/class-wc-retailcrm-client-v4.php | 3732 ++++++------- .../api/class-wc-retailcrm-client-v5.php | 4742 ++++++++--------- .../api/class-wc-retailcrm-exception-curl.php | 28 +- .../api/class-wc-retailcrm-exception-json.php | 26 +- .../include/api/class-wc-retailcrm-proxy.php | 9 +- .../api/class-wc-retailcrm-request.php | 195 +- .../api/class-wc-retailcrm-response.php | 294 +- .../include/class-wc-retailcrm-base.php | 2 +- .../include/class-wc-retailcrm-history.php | 582 +- .../include/class-wc-retailcrm-orders.php | 58 +- woo-retailcrm/retailcrm.php | 12 +- woo-retailcrm/uninstall.php | 2 +- 13 files changed, 4851 insertions(+), 5667 deletions(-) delete mode 100644 woo-retailcrm/include/api/class-wc-retailcrm-client-v3.php diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-client-v3.php b/woo-retailcrm/include/api/class-wc-retailcrm-client-v3.php deleted file mode 100644 index 5d1527a..0000000 --- a/woo-retailcrm/include/api/class-wc-retailcrm-client-v3.php +++ /dev/null @@ -1,836 +0,0 @@ - - * @license https://opensource.org/licenses/MIT MIT License - * @link http://retailcrm.ru/docs/Developers/ApiVersion3 - */ - - if ( ! class_exists( 'WC_Retailcrm_Request' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-request.php' ); - } - - if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); - } - - class WC_Retailcrm_Client_V3 - { - protected $client; - - /** - * Site code - */ - protected $siteCode; - - /** - * Client creating - * - * @param string $url - * @param string $apiKey - * @param string $site - */ - public function __construct($url, $apiKey, $version = null, $site = null) - { - if ('/' != substr($url, strlen($url) - 1, 1)) { - $url .= '/'; - } - - $url = $version == null ? $url . 'api' : $url . 'api/' . $version; - - $this->client = new WC_Retailcrm_Request($url, array('apiKey' => $apiKey)); - $this->siteCode = $site; - } - - /** - * Returns api versions list - * - * @return WC_Retailcrm_Response - */ - public function apiVersions() - { - return $this->client->makeRequest('/api-versions', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Create a order - * - * @param array $order - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function ordersCreate(array $order, $site = null) - { - if (!sizeof($order)) { - throw new InvalidArgumentException('Parameter `order` must contains a data'); - } - - return $this->client->makeRequest("/orders/create", WC_Retailcrm_Request::METHOD_POST, $this->fillSite($site, array( - 'order' => json_encode($order) - ))); - } - - /** - * Edit a order - * - * @param array $order - * @param string $by - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function ordersEdit(array $order, $by = 'externalId', $site = null) - { - if (!sizeof($order)) { - throw new InvalidArgumentException('Parameter `order` must contains a data'); - } - - $this->checkIdParameter($by); - - if (!isset($order[$by])) { - throw new InvalidArgumentException(sprintf('Order array must contain the "%s" parameter.', $by)); - } - - return $this->client->makeRequest( - "/orders/" . $order[$by] . "/edit", - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array( - 'order' => json_encode($order), - 'by' => $by, - )) - ); - } - - /** - * Upload array of the orders - * - * @param array $orders - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function ordersUpload(array $orders, $site = null) - { - if (!sizeof($orders)) { - throw new InvalidArgumentException('Parameter `orders` must contains array of the orders'); - } - - return $this->client->makeRequest("/orders/upload", WC_Retailcrm_Request::METHOD_POST, $this->fillSite($site, array( - 'orders' => json_encode($orders), - ))); - } - - /** - * Get order by id or externalId - * - * @param string $id - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function ordersGet($id, $by = 'externalId', $site = null) - { - $this->checkIdParameter($by); - - return $this->client->makeRequest("/orders/$id", WC_Retailcrm_Request::METHOD_GET, $this->fillSite($site, array( - 'by' => $by - ))); - } - - /** - * Returns a orders history - * - * @param DateTime $startDate (default: null) - * @param DateTime $endDate (default: null) - * @param int $limit (default: 100) - * @param int $offset (default: 0) - * @param bool $skipMyChanges (default: true) - * @return WC_Retailcrm_Response - */ - public function ordersHistory( - DateTime $startDate = null, - DateTime $endDate = null, - $limit = 100, - $offset = 0, - $skipMyChanges = true - ) { - $parameters = array(); - - if ($startDate) { - $parameters['startDate'] = $startDate->format('Y-m-d H:i:s'); - } - if ($endDate) { - $parameters['endDate'] = $endDate->format('Y-m-d H:i:s'); - } - if ($limit) { - $parameters['limit'] = (int) $limit; - } - if ($offset) { - $parameters['offset'] = (int) $offset; - } - if ($skipMyChanges) { - $parameters['skipMyChanges'] = (bool) $skipMyChanges; - } - - return $this->client->makeRequest('/orders/history', WC_Retailcrm_Request::METHOD_GET, $parameters); - } - - /** - * Returns filtered orders list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * @return WC_Retailcrm_Response - */ - public function ordersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (sizeof($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest('/orders', WC_Retailcrm_Request::METHOD_GET, $parameters); - } - - /** - * Returns statuses of the orders - * - * @param array $ids (default: array()) - * @param array $externalIds (default: array()) - * @return WC_Retailcrm_Response - */ - public function ordersStatuses(array $ids = array(), array $externalIds = array()) - { - $parameters = array(); - - if (sizeof($ids)) { - $parameters['ids'] = $ids; - } - if (sizeof($externalIds)) { - $parameters['externalIds'] = $externalIds; - } - - return $this->client->makeRequest('/orders/statuses', WC_Retailcrm_Request::METHOD_GET, $parameters); - } - - /** - * Save order IDs' (id and externalId) association in the CRM - * - * @param array $ids - * @return WC_Retailcrm_Response - */ - public function ordersFixExternalIds(array $ids) - { - if (!sizeof($ids)) { - throw new InvalidArgumentException('Method parameter must contains at least one IDs pair'); - } - - return $this->client->makeRequest("/orders/fix-external-ids", WC_Retailcrm_Request::METHOD_POST, array( - 'orders' => json_encode($ids), - )); - } - - /** - * Get orders assembly history - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * @return WC_Retailcrm_Response - */ - public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (sizeof($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest('/orders/packs/history', WC_Retailcrm_Request::METHOD_GET, $parameters); - } - - /** - * Create a customer - * - * @param array $customer - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function customersCreate(array $customer, $site = null) - { - if (!sizeof($customer)) { - throw new InvalidArgumentException('Parameter `customer` must contains a data'); - } - - return $this->client->makeRequest("/customers/create", WC_Retailcrm_Request::METHOD_POST, $this->fillSite($site, array( - 'customer' => json_encode($customer) - ))); - } - - /** - * Edit a customer - * - * @param array $customer - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function customersEdit(array $customer, $by = 'externalId', $site = null) - { - if (!sizeof($customer)) { - throw new InvalidArgumentException('Parameter `customer` must contains a data'); - } - - $this->checkIdParameter($by); - - if (!isset($customer[$by])) { - throw new InvalidArgumentException(sprintf('Customer array must contain the "%s" parameter.', $by)); - } - - return $this->client->makeRequest( - "/customers/" . $customer[$by] . "/edit", - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array( - 'customer' => json_encode($customer), - 'by' => $by - ) - ) - ); - } - - /** - * Upload array of the customers - * - * @param array $customers - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function customersUpload(array $customers, $site = null) - { - if (!sizeof($customers)) { - throw new InvalidArgumentException('Parameter `customers` must contains array of the customers'); - } - - return $this->client->makeRequest("/customers/upload", WC_Retailcrm_Request::METHOD_POST, $this->fillSite($site, array( - 'customers' => json_encode($customers), - ))); - } - - /** - * Get customer by id or externalId - * - * @param string $id - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function customersGet($id, $by = 'externalId', $site = null) - { - $this->checkIdParameter($by); - - return $this->client->makeRequest("/customers/$id", WC_Retailcrm_Request::METHOD_GET, $this->fillSite($site, array( - 'by' => $by - ))); - } - - /** - * Returns filtered customers list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * @return WC_Retailcrm_Response - */ - public function customersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (sizeof($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest('/customers', WC_Retailcrm_Request::METHOD_GET, $parameters); - } - - /** - * Save customer IDs' (id and externalId) association in the CRM - * - * @param array $ids - * @return WC_Retailcrm_Response - */ - public function customersFixExternalIds(array $ids) - { - if (!sizeof($ids)) { - throw new InvalidArgumentException('Method parameter must contains at least one IDs pair'); - } - - return $this->client->makeRequest("/customers/fix-external-ids", WC_Retailcrm_Request::METHOD_POST, array( - 'customers' => json_encode($ids), - )); - } - - /** - * Get purchace prices & stock balance - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function storeInventories(array $filter = array(), $page = null, $limit = null, $site = null) - { - $parameters = array(); - - if (sizeof($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest('/store/inventories', WC_Retailcrm_Request::METHOD_GET, $this->fillSite($site, $parameters)); - } - - /** - * Upload store inventories - * - * @param array $offers - * @param string $site (default: null) - * @return WC_Retailcrm_Response - */ - public function storeInventoriesUpload(array $offers, $site = null) - { - if (!sizeof($offers)) { - throw new InvalidArgumentException('Parameter `offers` must contains array of the customers'); - } - - return $this->client->makeRequest( - "/store/inventories/upload", - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('offers' => json_encode($offers))) - ); - } - - /** - * Returns deliveryServices list - * - * @return WC_Retailcrm_Response - */ - public function deliveryServicesList() - { - return $this->client->makeRequest('/reference/delivery-services', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns deliveryTypes list - * - * @return WC_Retailcrm_Response - */ - public function deliveryTypesList() - { - return $this->client->makeRequest('/reference/delivery-types', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns orderMethods list - * - * @return WC_Retailcrm_Response - */ - public function orderMethodsList() - { - return $this->client->makeRequest('/reference/order-methods', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns orderTypes list - * - * @return WC_Retailcrm_Response - */ - public function orderTypesList() - { - return $this->client->makeRequest('/reference/order-types', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns paymentStatuses list - * - * @return WC_Retailcrm_Response - */ - public function paymentStatusesList() - { - return $this->client->makeRequest('/reference/payment-statuses', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns paymentTypes list - * - * @return WC_Retailcrm_Response - */ - public function paymentTypesList() - { - return $this->client->makeRequest('/reference/payment-types', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns productStatuses list - * - * @return WC_Retailcrm_Response - */ - public function productStatusesList() - { - return $this->client->makeRequest('/reference/product-statuses', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns statusGroups list - * - * @return WC_Retailcrm_Response - */ - public function statusGroupsList() - { - return $this->client->makeRequest('/reference/status-groups', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns statuses list - * - * @return WC_Retailcrm_Response - */ - public function statusesList() - { - return $this->client->makeRequest('/reference/statuses', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns sites list - * - * @return WC_Retailcrm_Response - */ - public function sitesList() - { - return $this->client->makeRequest('/reference/sites', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns stores list - * - * @return WC_Retailcrm_Response - */ - public function storesList() - { - return $this->client->makeRequest('/reference/stores', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Edit deliveryService - * - * @param array $data delivery service data - * @return WC_Retailcrm_Response - */ - public function deliveryServicesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/delivery-services/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'deliveryService' => json_encode($data) - ) - ); - } - - /** - * Edit deliveryType - * - * @param array $data delivery type data - * @return WC_Retailcrm_Response - */ - public function deliveryTypesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/delivery-types/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'deliveryType' => json_encode($data) - ) - ); - } - - /** - * Edit orderMethod - * - * @param array $data order method data - * @return WC_Retailcrm_Response - */ - public function orderMethodsEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/order-methods/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'orderMethod' => json_encode($data) - ) - ); - } - - /** - * Edit orderType - * - * @param array $data order type data - * @return WC_Retailcrm_Response - */ - public function orderTypesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/order-types/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'orderType' => json_encode($data) - ) - ); - } - - /** - * Edit paymentStatus - * - * @param array $data payment status data - * @return WC_Retailcrm_Response - */ - public function paymentStatusesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/payment-statuses/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'paymentStatus' => json_encode($data) - ) - ); - } - - /** - * Edit paymentType - * - * @param array $data payment type data - * @return WC_Retailcrm_Response - */ - public function paymentTypesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/payment-types/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'paymentType' => json_encode($data) - ) - ); - } - - /** - * Edit productStatus - * - * @param array $data product status data - * @return WC_Retailcrm_Response - */ - public function productStatusesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/product-statuses/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'productStatus' => json_encode($data) - ) - ); - } - - /** - * Edit order status - * - * @param array $data status data - * @return WC_Retailcrm_Response - */ - public function statusesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/statuses/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'status' => json_encode($data) - ) - ); - } - - /** - * Edit site - * - * @param array $data site data - * @return WC_Retailcrm_Response - */ - public function sitesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - return $this->client->makeRequest( - '/reference/sites/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'site' => json_encode($data) - ) - ); - } - - /** - * Edit store - * - * @param array $data site data - * @return WC_Retailcrm_Response - */ - public function storesEdit(array $data) - { - if (!isset($data['code'])) { - throw new InvalidArgumentException('Data must contain "code" parameter.'); - } - - if (!isset($data['name'])) { - throw new InvalidArgumentException('Data must contain "name" parameter.'); - } - - return $this->client->makeRequest( - '/reference/stores/' . $data['code'] . '/edit', - WC_Retailcrm_Request::METHOD_POST, - array( - 'store' => json_encode($data) - ) - ); - } - - /** - * Update CRM basic statistic - * - * @return WC_Retailcrm_Response - */ - public function statisticUpdate() - { - return $this->client->makeRequest('/statistic/update', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Return current site - * - * @return string - */ - public function getSite() - { - return $this->siteCode; - } - - /** - * Set site - * - * @param string $site - * @return void - */ - public function setSite($site) - { - $this->siteCode = $site; - } - - /** - * Check ID parameter - * - * @param string $by - * @return bool - */ - protected function checkIdParameter($by) - { - $allowedForBy = array('externalId', 'id'); - if (!in_array($by, $allowedForBy)) { - throw new InvalidArgumentException(sprintf( - 'Value "%s" for parameter "by" is not valid. Allowed values are %s.', - $by, - implode(', ', $allowedForBy) - )); - } - - return true; - } - - /** - * Fill params by site value - * - * @param string $site - * @param array $params - * @return array - */ - protected function fillSite($site, array $params) - { - if ($site) { - $params['site'] = $site; - } elseif ($this->siteCode) { - $params['site'] = $this->siteCode; - } - - return $params; - } - } diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-client-v4.php b/woo-retailcrm/include/api/class-wc-retailcrm-client-v4.php index 08d4ab6..1cce88f 100644 --- a/woo-retailcrm/include/api/class-wc-retailcrm-client-v4.php +++ b/woo-retailcrm/include/api/class-wc-retailcrm-client-v4.php @@ -1,1868 +1,1868 @@ - * @license https://opensource.org/licenses/MIT MIT License - * @link http://retailcrm.ru/docs/Developers/ApiVersion4 - */ - - if ( ! class_exists( 'WC_Retailcrm_Request' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-request.php' ); - } - - if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); - } - - class WC_Retailcrm_Client_V4 - { - protected $client; - - /** - * Site code - */ - protected $siteCode; - - /** - * Client creating - * - * @param string $url api url - * @param string $apiKey api key - * @param string $site site code - * - * @throws \InvalidArgumentException - */ - public function __construct($url, $apiKey, $version = null, $site = null) - { - if ('/' !== $url[strlen($url) - 1]) { - $url .= '/'; - } - - $url = $version == null ? $url . 'api' : $url . 'api/' . $version; - - $this->client = new WC_Retailcrm_Request($url, array('apiKey' => $apiKey)); - $this->siteCode = $site; - } - - /** - * Returns api versions list - * - * @return WC_Retailcrm_Response - */ - public function apiVersions() - { - return $this->client->makeRequest('/api-versions', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns users list - * - * @param array $filter - * @param null $page - * @param null $limit - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function usersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/users', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get user groups - * - * @param null $page - * @param null $limit - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * - * @return WC_Retailcrm_Response - */ - public function usersGroups($page = null, $limit = null) - { - $parameters = array(); - - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/user-groups', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Returns user data - * - * @param integer $id user ID - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function usersGet($id) - { - return $this->client->makeRequest("/users/$id", WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns filtered orders list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create a order - * - * @param array $order order data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersCreate(array $order, $site = null) - { - if (!count($order)) { - throw new \InvalidArgumentException( - 'Parameter `order` must contains a data' - ); - } - - return $this->client->makeRequest( - '/orders/create', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('order' => json_encode($order))) - ); - } - - /** - * Save order IDs' (id and externalId) association in the CRM - * - * @param array $ids order identificators - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersFixExternalIds(array $ids) - { - if (! count($ids)) { - throw new \InvalidArgumentException( - 'Method parameter must contains at least one IDs pair' - ); - } - - return $this->client->makeRequest( - '/orders/fix-external-ids', - WC_Retailcrm_Request::METHOD_POST, - array('orders' => json_encode($ids) - ) - ); - } - - /** - * Returns statuses of the orders - * - * @param array $ids (default: array()) - * @param array $externalIds (default: array()) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersStatuses(array $ids = array(), array $externalIds = array()) - { - $parameters = array(); - - if (count($ids)) { - $parameters['ids'] = $ids; - } - if (count($externalIds)) { - $parameters['externalIds'] = $externalIds; - } - - return $this->client->makeRequest( - '/orders/statuses', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Upload array of the orders - * - * @param array $orders array of orders - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersUpload(array $orders, $site = null) - { - if (!count($orders)) { - throw new \InvalidArgumentException( - 'Parameter `orders` must contains array of the orders' - ); - } - - return $this->client->makeRequest( - '/orders/upload', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('orders' => json_encode($orders))) - ); - } - - /** - * Get order by id or externalId - * - * @param string $id order identificator - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersGet($id, $by = 'externalId', $site = null) - { - $this->checkIdParameter($by); - - return $this->client->makeRequest( - "/orders/$id", - WC_Retailcrm_Request::METHOD_GET, - $this->fillSite($site, array('by' => $by)) - ); - } - - /** - * Edit a order - * - * @param array $order order data - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersEdit(array $order, $by = 'externalId', $site = null) - { - if (!count($order)) { - throw new \InvalidArgumentException( - 'Parameter `order` must contains a data' - ); - } - - $this->checkIdParameter($by); - - if (!array_key_exists($by, $order)) { - throw new \InvalidArgumentException( - sprintf('Order array must contain the "%s" parameter.', $by) - ); - } - - return $this->client->makeRequest( - sprintf('/orders/%s/edit', $order[$by]), - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array('order' => json_encode($order), 'by' => $by) - ) - ); - } - - /** - * Get orders history - * @param array $filter - * @param null $page - * @param null $limit - * - * @return WC_Retailcrm_Response - */ - public function ordersHistory(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders/history', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Returns filtered customers list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/customers', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create a customer - * - * @param array $customer customer data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersCreate(array $customer, $site = null) - { - if (! count($customer)) { - throw new \InvalidArgumentException( - 'Parameter `customer` must contains a data' - ); - } - - return $this->client->makeRequest( - '/customers/create', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('customer' => json_encode($customer))) - ); - } - - /** - * Save customer IDs' (id and externalId) association in the CRM - * - * @param array $ids ids mapping - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersFixExternalIds(array $ids) - { - if (! count($ids)) { - throw new \InvalidArgumentException( - 'Method parameter must contains at least one IDs pair' - ); - } - - return $this->client->makeRequest( - '/customers/fix-external-ids', - WC_Retailcrm_Request::METHOD_POST, - array('customers' => json_encode($ids)) - ); - } - - /** - * Upload array of the customers - * - * @param array $customers array of customers - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersUpload(array $customers, $site = null) - { - if (! count($customers)) { - throw new \InvalidArgumentException( - 'Parameter `customers` must contains array of the customers' - ); - } - - return $this->client->makeRequest( - '/customers/upload', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('customers' => json_encode($customers))) - ); - } - - /** - * Get customer by id or externalId - * - * @param string $id customer identificator - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersGet($id, $by = 'externalId', $site = null) - { - $this->checkIdParameter($by); - - return $this->client->makeRequest( - "/customers/$id", - WC_Retailcrm_Request::METHOD_GET, - $this->fillSite($site, array('by' => $by)) - ); - } - - /** - * Edit a customer - * - * @param array $customer customer data - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersEdit(array $customer, $by = 'externalId', $site = null) - { - if (!count($customer)) { - throw new \InvalidArgumentException( - 'Parameter `customer` must contains a data' - ); - } - - $this->checkIdParameter($by); - - if (!array_key_exists($by, $customer)) { - throw new \InvalidArgumentException( - sprintf('Customer array must contain the "%s" parameter.', $by) - ); - } - - return $this->client->makeRequest( - sprintf('/customers/%s/edit', $customer[$by]), - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array('customer' => json_encode($customer), 'by' => $by) - ) - ); - } - - /** - * Get customers history - * @param array $filter - * @param null $page - * @param null $limit - * - * @return WC_Retailcrm_Response - */ - public function customersHistory(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/customers/history', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get orders assembly list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders/packs', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create orders assembly - * - * @param array $pack pack data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksCreate(array $pack, $site = null) - { - if (!count($pack)) { - throw new \InvalidArgumentException( - 'Parameter `pack` must contains a data' - ); - } - - return $this->client->makeRequest( - '/orders/packs/create', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('pack' => json_encode($pack))) - ); - } - - /** - * Get orders assembly history - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders/packs/history', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get orders assembly by id - * - * @param string $id pack identificator - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksGet($id) - { - if (empty($id)) { - throw new \InvalidArgumentException('Parameter `id` must be set'); - } - - return $this->client->makeRequest( - "/orders/packs/$id", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Delete orders assembly by id - * - * @param string $id pack identificator - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksDelete($id) - { - if (empty($id)) { - throw new \InvalidArgumentException('Parameter `id` must be set'); - } - - return $this->client->makeRequest( - sprintf('/orders/packs/%s/delete', $id), - WC_Retailcrm_Request::METHOD_POST - ); - } - - /** - * Edit orders assembly - * - * @param array $pack pack data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksEdit(array $pack, $site = null) - { - if (!count($pack) || empty($pack['id'])) { - throw new \InvalidArgumentException( - 'Parameter `pack` must contains a data & pack `id` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/orders/packs/%s/edit', $pack['id']), - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('pack' => json_encode($pack))) - ); - } - - /** - * Get purchace prices & stock balance - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storeInventories(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/store/inventories', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get store settings - * - * @param string $code get settings code - * - * @return WC_Retailcrm_Response - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function storeSettingsGet($code) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - return $this->client->makeRequest( - "/store/setting/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit store configuration - * - * @param array $configuration - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function storeSettingsEdit(array $configuration) - { - if (!count($configuration) || empty($configuration['code'])) { - throw new \InvalidArgumentException( - 'Parameter `configuration` must contains a data & configuration `code` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/store/setting/%s/edit', $configuration['code']), - WC_Retailcrm_Request::METHOD_POST, - array('configuration' => json_encode($configuration)) - ); - } - - /** - * Upload store inventories - * - * @param array $offers offers data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storeInventoriesUpload(array $offers, $site = null) - { - if (!count($offers)) { - throw new \InvalidArgumentException( - 'Parameter `offers` must contains array of the offers' - ); - } - - return $this->client->makeRequest( - '/store/inventories/upload', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('offers' => json_encode($offers))) - ); - } - - /** - * Upload store prices - * - * @param array $prices prices data - * @param string $site default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storePricesUpload(array $prices, $site = null) - { - if (!count($prices)) { - throw new \InvalidArgumentException( - 'Parameter `prices` must contains array of the prices' - ); - } - - return $this->client->makeRequest( - '/store/prices/upload', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('prices' => json_encode($prices))) - ); - } - - /** - * Get products - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storeProducts(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/store/products', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get delivery settings - * - * @param string $code - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliverySettingsGet($code) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - return $this->client->makeRequest( - "/delivery/generic/setting/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit delivery configuration - * - * @param array $configuration - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function deliverySettingsEdit(array $configuration) - { - if (!count($configuration) || empty($configuration['code'])) { - throw new \InvalidArgumentException( - 'Parameter `configuration` must contains a data & configuration `code` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/delivery/generic/setting/%s/edit', $configuration['code']), - WC_Retailcrm_Request::METHOD_POST, - array('configuration' => json_encode($configuration)) - ); - } - - /** - * Delivery tracking update - * - * @param string $code - * @param array $statusUpdate - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function deliveryTracking($code, array $statusUpdate) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - if (!count($statusUpdate)) { - throw new \InvalidArgumentException( - 'Parameter `statusUpdate` must contains a data' - ); - } - - return $this->client->makeRequest( - sprintf('/delivery/generic/%s/tracking', $code), - WC_Retailcrm_Request::METHOD_POST, - array('statusUpdate' => json_encode($statusUpdate)) - ); - } - - /** - * Returns available county list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function countriesList() - { - return $this->client->makeRequest( - '/reference/countries', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Returns deliveryServices list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryServicesList() - { - return $this->client->makeRequest( - '/reference/delivery-services', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit deliveryService - * - * @param array $data delivery service data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryServicesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/delivery-services/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('deliveryService' => json_encode($data)) - ); - } - - /** - * Returns deliveryTypes list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryTypesList() - { - return $this->client->makeRequest( - '/reference/delivery-types', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit deliveryType - * - * @param array $data delivery type data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryTypesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/delivery-types/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('deliveryType' => json_encode($data)) - ); - } - - /** - * Returns orderMethods list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderMethodsList() - { - return $this->client->makeRequest( - '/reference/order-methods', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit orderMethod - * - * @param array $data order method data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderMethodsEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/order-methods/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('orderMethod' => json_encode($data)) - ); - } - - /** - * Returns orderTypes list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderTypesList() - { - return $this->client->makeRequest( - '/reference/order-types', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit orderType - * - * @param array $data order type data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderTypesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/order-types/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('orderType' => json_encode($data)) - ); - } - - /** - * Returns paymentStatuses list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentStatusesList() - { - return $this->client->makeRequest( - '/reference/payment-statuses', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit paymentStatus - * - * @param array $data payment status data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentStatusesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/payment-statuses/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('paymentStatus' => json_encode($data)) - ); - } - - /** - * Returns paymentTypes list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentTypesList() - { - return $this->client->makeRequest( - '/reference/payment-types', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit paymentType - * - * @param array $data payment type data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentTypesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/payment-types/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('paymentType' => json_encode($data)) - ); - } - - /** - * Returns productStatuses list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function productStatusesList() - { - return $this->client->makeRequest( - '/reference/product-statuses', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit productStatus - * - * @param array $data product status data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function productStatusesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/product-statuses/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('productStatus' => json_encode($data)) - ); - } - - /** - * Returns sites list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function sitesList() - { - return $this->client->makeRequest( - '/reference/sites', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit site - * - * @param array $data site data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function sitesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/sites/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('site' => json_encode($data)) - ); - } - - /** - * Returns statusGroups list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statusGroupsList() - { - return $this->client->makeRequest( - '/reference/status-groups', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Returns statuses list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statusesList() - { - return $this->client->makeRequest( - '/reference/statuses', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit order status - * - * @param array $data status data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statusesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/statuses/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('status' => json_encode($data)) - ); - } - - /** - * Returns stores list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storesList() - { - return $this->client->makeRequest( - '/reference/stores', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit store - * - * @param array $data site data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - if (!array_key_exists('name', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "name" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/stores/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('store' => json_encode($data)) - ); - } - - /** - * Get prices types - * - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function pricesTypes() - { - return $this->client->makeRequest( - '/reference/price-types', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit price type - * - * @param array $data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function pricesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - if (!array_key_exists('name', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "name" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/price-types/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('priceType' => json_encode($data)) - ); - } - - /** - * Get telephony settings - * - * @param string $code - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function telephonySettingsGet($code) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - return $this->client->makeRequest( - "/telephony/setting/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit telephony settings - * - * @param string $code symbolic code - * @param string $clientId client id - * @param boolean $active telephony activity - * @param mixed $name service name - * @param mixed $makeCallUrl service init url - * @param mixed $image service logo url(svg file) - * - * @param array $additionalCodes - * @param array $externalPhones - * @param bool $allowEdit - * @param bool $inputEventSupported - * @param bool $outputEventSupported - * @param bool $hangupEventSupported - * @param bool $changeUserStatusUrl - * - * @return WC_Retailcrm_Response - */ - public function telephonySettingsEdit( - $code, - $clientId, - $active = false, - $name = false, - $makeCallUrl = false, - $image = false, - $additionalCodes = array(), - $externalPhones = array(), - $allowEdit = false, - $inputEventSupported = false, - $outputEventSupported = false, - $hangupEventSupported = false, - $changeUserStatusUrl = false - ) - { - if (!isset($code)) { - throw new \InvalidArgumentException('Code must be set'); - } - - $parameters['code'] = $code; - - if (!isset($clientId)) { - throw new \InvalidArgumentException('client id must be set'); - } - - $parameters['clientId'] = $clientId; - - if (!isset($active)) { - $parameters['active'] = false; - } else { - $parameters['active'] = $active; - } - - if (!isset($name)) { - throw new \InvalidArgumentException('name must be set'); - } - - if (isset($name)) { - $parameters['name'] = $name; - } - - if (isset($makeCallUrl)) { - $parameters['makeCallUrl'] = $makeCallUrl; - } - - if (isset($image)) { - $parameters['image'] = $image; - } - - if (isset($additionalCodes)) { - $parameters['additionalCodes'] = $additionalCodes; - } - - if (isset($externalPhones)) { - $parameters['externalPhones'] = $externalPhones; - } - - if (isset($allowEdit)) { - $parameters['allowEdit'] = $allowEdit; - } - - if (isset($inputEventSupported)) { - $parameters['inputEventSupported'] = $inputEventSupported; - } - - if (isset($outputEventSupported)) { - $parameters['outputEventSupported'] = $outputEventSupported; - } - - if (isset($hangupEventSupported)) { - $parameters['hangupEventSupported'] = $hangupEventSupported; - } - - if (isset($changeUserStatusUrl)) { - $parameters['changeUserStatusUrl'] = $changeUserStatusUrl; - } - - return $this->client->makeRequest( - "/telephony/setting/$code/edit", - WC_Retailcrm_Request::METHOD_POST, - array('configuration' => json_encode($parameters)) - ); - } - - /** - * Call event - * - * @param string $phone phone number - * @param string $type call type - * @param array $codes - * @param string $hangupStatus - * @param string $externalPhone - * @param array $webAnalyticsData - * - * @return WC_Retailcrm_Response - * @internal param string $code additional phone code - * @internal param string $status call status - * - */ - public function telephonyCallEvent( - $phone, - $type, - $codes, - $hangupStatus, - $externalPhone = null, - $webAnalyticsData = array() - ) - { - if (!isset($phone)) { - throw new \InvalidArgumentException('Phone number must be set'); - } - - if (!isset($type)) { - throw new \InvalidArgumentException('Type must be set (in|out|hangup)'); - } - - if (empty($codes)) { - throw new \InvalidArgumentException('Codes array must be set'); - } - - $parameters['phone'] = $phone; - $parameters['type'] = $type; - $parameters['codes'] = $codes; - $parameters['hangupStatus'] = $hangupStatus; - $parameters['callExternalId'] = $externalPhone; - $parameters['webAnalyticsData'] = $webAnalyticsData; - - - return $this->client->makeRequest( - '/telephony/call/event', - WC_Retailcrm_Request::METHOD_POST, - array('event' => json_encode($parameters)) - ); - } - - /** - * Upload calls - * - * @param array $calls calls data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function telephonyCallsUpload(array $calls) - { - if (!count($calls)) { - throw new \InvalidArgumentException( - 'Parameter `calls` must contains array of the calls' - ); - } - - return $this->client->makeRequest( - '/telephony/calls/upload', - WC_Retailcrm_Request::METHOD_POST, - array('calls' => json_encode($calls)) - ); - } - - /** - * Get call manager - * - * @param string $phone phone number - * @param bool $details detailed information - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function telephonyCallManager($phone, $details) - { - if (!isset($phone)) { - throw new \InvalidArgumentException('Phone number must be set'); - } - - $parameters['phone'] = $phone; - $parameters['details'] = isset($details) ? $details : 0; - - return $this->client->makeRequest( - '/telephony/manager', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Edit marketplace configuration - * - * @param array $configuration - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function marketplaceSettingsEdit(array $configuration) - { - if (!count($configuration) || empty($configuration['code'])) { - throw new \InvalidArgumentException( - 'Parameter `configuration` must contains a data & configuration `code` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/marketplace/external/setting/%s/edit', $configuration['code']), - WC_Retailcrm_Request::METHOD_POST, - array('configuration' => json_encode($configuration)) - ); - } - - /** - * Update CRM basic statistic - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statisticUpdate() - { - return $this->client->makeRequest( - '/statistic/update', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Return current site - * - * @return string - */ - public function getSite() - { - return $this->siteCode; - } - - /** - * Set site - * - * @param string $site site code - * - * @return void - */ - public function setSite($site) - { - $this->siteCode = $site; - } - - /** - * Check ID parameter - * - * @param string $by identify by - * - * @throws \InvalidArgumentException - * - * @return bool - */ - protected function checkIdParameter($by) - { - $allowedForBy = array( - 'externalId', - 'id' - ); - - if (!in_array($by, $allowedForBy, false)) { - throw new \InvalidArgumentException( - sprintf( - 'Value "%s" for "by" param is not valid. Allowed values are %s.', - $by, - implode(', ', $allowedForBy) - ) - ); - } - - return true; - } - - /** - * Fill params by site value - * - * @param string $site site code - * @param array $params input parameters - * - * @return array - */ - protected function fillSite($site, array $params) - { - if ($site) { - $params['site'] = $site; - } elseif ($this->siteCode) { - $params['site'] = $this->siteCode; - } - - return $params; - } - } +/** + * PHP version 5.3 + * + * Request class + * + * @category Integration + * @package WC_Retailcrm_Client + * @author RetailCRM + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion4 + */ + +if ( ! class_exists( 'WC_Retailcrm_Request' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-request.php' ); +} + +if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); +} + +class WC_Retailcrm_Client_V4 +{ + protected $client; + + /** + * Site code + */ + protected $siteCode; + + /** + * Client creating + * + * @param string $url api url + * @param string $apiKey api key + * @param string $site site code + * + * @throws \InvalidArgumentException + */ + public function __construct($url, $apiKey, $version = null, $site = null) + { + if ('/' !== $url[strlen($url) - 1]) { + $url .= '/'; + } + + $url = $version == null ? $url . 'api' : $url . 'api/' . $version; + + $this->client = new WC_Retailcrm_Request($url, array('apiKey' => $apiKey)); + $this->siteCode = $site; + } + + /** + * Returns api versions list + * + * @return WC_Retailcrm_Response + */ + public function apiVersions() + { + return $this->client->makeRequest('/api-versions', WC_Retailcrm_Request::METHOD_GET); + } + + /** + * Returns users list + * + * @param array $filter + * @param null $page + * @param null $limit + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function usersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/users', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get user groups + * + * @param null $page + * @param null $limit + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * + * @return WC_Retailcrm_Response + */ + public function usersGroups($page = null, $limit = null) + { + $parameters = array(); + + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/user-groups', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Returns user data + * + * @param integer $id user ID + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function usersGet($id) + { + return $this->client->makeRequest("/users/$id", WC_Retailcrm_Request::METHOD_GET); + } + + /** + * Returns filtered orders list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create a order + * + * @param array $order order data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersCreate(array $order, $site = null) + { + if (!count($order)) { + throw new \InvalidArgumentException( + 'Parameter `order` must contains a data' + ); + } + + return $this->client->makeRequest( + '/orders/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('order' => json_encode($order))) + ); + } + + /** + * Save order IDs' (id and externalId) association in the CRM + * + * @param array $ids order identificators + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersFixExternalIds(array $ids) + { + if (! count($ids)) { + throw new \InvalidArgumentException( + 'Method parameter must contains at least one IDs pair' + ); + } + + return $this->client->makeRequest( + '/orders/fix-external-ids', + WC_Retailcrm_Request::METHOD_POST, + array('orders' => json_encode($ids) + ) + ); + } + + /** + * Returns statuses of the orders + * + * @param array $ids (default: array()) + * @param array $externalIds (default: array()) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersStatuses(array $ids = array(), array $externalIds = array()) + { + $parameters = array(); + + if (count($ids)) { + $parameters['ids'] = $ids; + } + if (count($externalIds)) { + $parameters['externalIds'] = $externalIds; + } + + return $this->client->makeRequest( + '/orders/statuses', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Upload array of the orders + * + * @param array $orders array of orders + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersUpload(array $orders, $site = null) + { + if (!count($orders)) { + throw new \InvalidArgumentException( + 'Parameter `orders` must contains array of the orders' + ); + } + + return $this->client->makeRequest( + '/orders/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('orders' => json_encode($orders))) + ); + } + + /** + * Get order by id or externalId + * + * @param string $id order identificator + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersGet($id, $by = 'externalId', $site = null) + { + $this->checkIdParameter($by); + + return $this->client->makeRequest( + "/orders/$id", + WC_Retailcrm_Request::METHOD_GET, + $this->fillSite($site, array('by' => $by)) + ); + } + + /** + * Edit a order + * + * @param array $order order data + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersEdit(array $order, $by = 'externalId', $site = null) + { + if (!count($order)) { + throw new \InvalidArgumentException( + 'Parameter `order` must contains a data' + ); + } + + $this->checkIdParameter($by); + + if (!array_key_exists($by, $order)) { + throw new \InvalidArgumentException( + sprintf('Order array must contain the "%s" parameter.', $by) + ); + } + + return $this->client->makeRequest( + sprintf('/orders/%s/edit', $order[$by]), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('order' => json_encode($order), 'by' => $by) + ) + ); + } + + /** + * Get orders history + * @param array $filter + * @param null $page + * @param null $limit + * + * @return WC_Retailcrm_Response + */ + public function ordersHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Returns filtered customers list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/customers', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create a customer + * + * @param array $customer customer data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersCreate(array $customer, $site = null) + { + if (! count($customer)) { + throw new \InvalidArgumentException( + 'Parameter `customer` must contains a data' + ); + } + + return $this->client->makeRequest( + '/customers/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('customer' => json_encode($customer))) + ); + } + + /** + * Save customer IDs' (id and externalId) association in the CRM + * + * @param array $ids ids mapping + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersFixExternalIds(array $ids) + { + if (! count($ids)) { + throw new \InvalidArgumentException( + 'Method parameter must contains at least one IDs pair' + ); + } + + return $this->client->makeRequest( + '/customers/fix-external-ids', + WC_Retailcrm_Request::METHOD_POST, + array('customers' => json_encode($ids)) + ); + } + + /** + * Upload array of the customers + * + * @param array $customers array of customers + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersUpload(array $customers, $site = null) + { + if (! count($customers)) { + throw new \InvalidArgumentException( + 'Parameter `customers` must contains array of the customers' + ); + } + + return $this->client->makeRequest( + '/customers/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('customers' => json_encode($customers))) + ); + } + + /** + * Get customer by id or externalId + * + * @param string $id customer identificator + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersGet($id, $by = 'externalId', $site = null) + { + $this->checkIdParameter($by); + + return $this->client->makeRequest( + "/customers/$id", + WC_Retailcrm_Request::METHOD_GET, + $this->fillSite($site, array('by' => $by)) + ); + } + + /** + * Edit a customer + * + * @param array $customer customer data + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersEdit(array $customer, $by = 'externalId', $site = null) + { + if (!count($customer)) { + throw new \InvalidArgumentException( + 'Parameter `customer` must contains a data' + ); + } + + $this->checkIdParameter($by); + + if (!array_key_exists($by, $customer)) { + throw new \InvalidArgumentException( + sprintf('Customer array must contain the "%s" parameter.', $by) + ); + } + + return $this->client->makeRequest( + sprintf('/customers/%s/edit', $customer[$by]), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('customer' => json_encode($customer), 'by' => $by) + ) + ); + } + + /** + * Get customers history + * @param array $filter + * @param null $page + * @param null $limit + * + * @return WC_Retailcrm_Response + */ + public function customersHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/customers/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get orders assembly list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/packs', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create orders assembly + * + * @param array $pack pack data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksCreate(array $pack, $site = null) + { + if (!count($pack)) { + throw new \InvalidArgumentException( + 'Parameter `pack` must contains a data' + ); + } + + return $this->client->makeRequest( + '/orders/packs/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('pack' => json_encode($pack))) + ); + } + + /** + * Get orders assembly history + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/packs/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get orders assembly by id + * + * @param string $id pack identificator + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksGet($id) + { + if (empty($id)) { + throw new \InvalidArgumentException('Parameter `id` must be set'); + } + + return $this->client->makeRequest( + "/orders/packs/$id", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Delete orders assembly by id + * + * @param string $id pack identificator + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksDelete($id) + { + if (empty($id)) { + throw new \InvalidArgumentException('Parameter `id` must be set'); + } + + return $this->client->makeRequest( + sprintf('/orders/packs/%s/delete', $id), + WC_Retailcrm_Request::METHOD_POST + ); + } + + /** + * Edit orders assembly + * + * @param array $pack pack data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksEdit(array $pack, $site = null) + { + if (!count($pack) || empty($pack['id'])) { + throw new \InvalidArgumentException( + 'Parameter `pack` must contains a data & pack `id` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/orders/packs/%s/edit', $pack['id']), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('pack' => json_encode($pack))) + ); + } + + /** + * Get purchace prices & stock balance + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeInventories(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/store/inventories', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get store settings + * + * @param string $code get settings code + * + * @return WC_Retailcrm_Response + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function storeSettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/store/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit store configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function storeSettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/store/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($configuration)) + ); + } + + /** + * Upload store inventories + * + * @param array $offers offers data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeInventoriesUpload(array $offers, $site = null) + { + if (!count($offers)) { + throw new \InvalidArgumentException( + 'Parameter `offers` must contains array of the offers' + ); + } + + return $this->client->makeRequest( + '/store/inventories/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('offers' => json_encode($offers))) + ); + } + + /** + * Upload store prices + * + * @param array $prices prices data + * @param string $site default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storePricesUpload(array $prices, $site = null) + { + if (!count($prices)) { + throw new \InvalidArgumentException( + 'Parameter `prices` must contains array of the prices' + ); + } + + return $this->client->makeRequest( + '/store/prices/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('prices' => json_encode($prices))) + ); + } + + /** + * Get products + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeProducts(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/store/products', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get delivery settings + * + * @param string $code + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliverySettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/delivery/generic/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit delivery configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function deliverySettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/delivery/generic/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($configuration)) + ); + } + + /** + * Delivery tracking update + * + * @param string $code + * @param array $statusUpdate + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function deliveryTracking($code, array $statusUpdate) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + if (!count($statusUpdate)) { + throw new \InvalidArgumentException( + 'Parameter `statusUpdate` must contains a data' + ); + } + + return $this->client->makeRequest( + sprintf('/delivery/generic/%s/tracking', $code), + WC_Retailcrm_Request::METHOD_POST, + array('statusUpdate' => json_encode($statusUpdate)) + ); + } + + /** + * Returns available county list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function countriesList() + { + return $this->client->makeRequest( + '/reference/countries', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Returns deliveryServices list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryServicesList() + { + return $this->client->makeRequest( + '/reference/delivery-services', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit deliveryService + * + * @param array $data delivery service data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryServicesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/delivery-services/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('deliveryService' => json_encode($data)) + ); + } + + /** + * Returns deliveryTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryTypesList() + { + return $this->client->makeRequest( + '/reference/delivery-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit deliveryType + * + * @param array $data delivery type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/delivery-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('deliveryType' => json_encode($data)) + ); + } + + /** + * Returns orderMethods list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderMethodsList() + { + return $this->client->makeRequest( + '/reference/order-methods', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit orderMethod + * + * @param array $data order method data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderMethodsEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/order-methods/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('orderMethod' => json_encode($data)) + ); + } + + /** + * Returns orderTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderTypesList() + { + return $this->client->makeRequest( + '/reference/order-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit orderType + * + * @param array $data order type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/order-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('orderType' => json_encode($data)) + ); + } + + /** + * Returns paymentStatuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentStatusesList() + { + return $this->client->makeRequest( + '/reference/payment-statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit paymentStatus + * + * @param array $data payment status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentStatusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/payment-statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('paymentStatus' => json_encode($data)) + ); + } + + /** + * Returns paymentTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentTypesList() + { + return $this->client->makeRequest( + '/reference/payment-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit paymentType + * + * @param array $data payment type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/payment-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('paymentType' => json_encode($data)) + ); + } + + /** + * Returns productStatuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function productStatusesList() + { + return $this->client->makeRequest( + '/reference/product-statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit productStatus + * + * @param array $data product status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function productStatusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/product-statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('productStatus' => json_encode($data)) + ); + } + + /** + * Returns sites list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function sitesList() + { + return $this->client->makeRequest( + '/reference/sites', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit site + * + * @param array $data site data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function sitesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/sites/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('site' => json_encode($data)) + ); + } + + /** + * Returns statusGroups list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusGroupsList() + { + return $this->client->makeRequest( + '/reference/status-groups', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Returns statuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusesList() + { + return $this->client->makeRequest( + '/reference/statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit order status + * + * @param array $data status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('status' => json_encode($data)) + ); + } + + /** + * Returns stores list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storesList() + { + return $this->client->makeRequest( + '/reference/stores', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit store + * + * @param array $data site data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + if (!array_key_exists('name', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "name" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/stores/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('store' => json_encode($data)) + ); + } + + /** + * Get prices types + * + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function pricesTypes() + { + return $this->client->makeRequest( + '/reference/price-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit price type + * + * @param array $data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function pricesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + if (!array_key_exists('name', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "name" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/price-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('priceType' => json_encode($data)) + ); + } + + /** + * Get telephony settings + * + * @param string $code + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function telephonySettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/telephony/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit telephony settings + * + * @param string $code symbolic code + * @param string $clientId client id + * @param boolean $active telephony activity + * @param mixed $name service name + * @param mixed $makeCallUrl service init url + * @param mixed $image service logo url(svg file) + * + * @param array $additionalCodes + * @param array $externalPhones + * @param bool $allowEdit + * @param bool $inputEventSupported + * @param bool $outputEventSupported + * @param bool $hangupEventSupported + * @param bool $changeUserStatusUrl + * + * @return WC_Retailcrm_Response + */ + public function telephonySettingsEdit( + $code, + $clientId, + $active = false, + $name = false, + $makeCallUrl = false, + $image = false, + $additionalCodes = array(), + $externalPhones = array(), + $allowEdit = false, + $inputEventSupported = false, + $outputEventSupported = false, + $hangupEventSupported = false, + $changeUserStatusUrl = false + ) + { + if (!isset($code)) { + throw new \InvalidArgumentException('Code must be set'); + } + + $parameters['code'] = $code; + + if (!isset($clientId)) { + throw new \InvalidArgumentException('client id must be set'); + } + + $parameters['clientId'] = $clientId; + + if (!isset($active)) { + $parameters['active'] = false; + } else { + $parameters['active'] = $active; + } + + if (!isset($name)) { + throw new \InvalidArgumentException('name must be set'); + } + + if (isset($name)) { + $parameters['name'] = $name; + } + + if (isset($makeCallUrl)) { + $parameters['makeCallUrl'] = $makeCallUrl; + } + + if (isset($image)) { + $parameters['image'] = $image; + } + + if (isset($additionalCodes)) { + $parameters['additionalCodes'] = $additionalCodes; + } + + if (isset($externalPhones)) { + $parameters['externalPhones'] = $externalPhones; + } + + if (isset($allowEdit)) { + $parameters['allowEdit'] = $allowEdit; + } + + if (isset($inputEventSupported)) { + $parameters['inputEventSupported'] = $inputEventSupported; + } + + if (isset($outputEventSupported)) { + $parameters['outputEventSupported'] = $outputEventSupported; + } + + if (isset($hangupEventSupported)) { + $parameters['hangupEventSupported'] = $hangupEventSupported; + } + + if (isset($changeUserStatusUrl)) { + $parameters['changeUserStatusUrl'] = $changeUserStatusUrl; + } + + return $this->client->makeRequest( + "/telephony/setting/$code/edit", + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($parameters)) + ); + } + + /** + * Call event + * + * @param string $phone phone number + * @param string $type call type + * @param array $codes + * @param string $hangupStatus + * @param string $externalPhone + * @param array $webAnalyticsData + * + * @return WC_Retailcrm_Response + * @internal param string $code additional phone code + * @internal param string $status call status + * + */ + public function telephonyCallEvent( + $phone, + $type, + $codes, + $hangupStatus, + $externalPhone = null, + $webAnalyticsData = array() + ) + { + if (!isset($phone)) { + throw new \InvalidArgumentException('Phone number must be set'); + } + + if (!isset($type)) { + throw new \InvalidArgumentException('Type must be set (in|out|hangup)'); + } + + if (empty($codes)) { + throw new \InvalidArgumentException('Codes array must be set'); + } + + $parameters['phone'] = $phone; + $parameters['type'] = $type; + $parameters['codes'] = $codes; + $parameters['hangupStatus'] = $hangupStatus; + $parameters['callExternalId'] = $externalPhone; + $parameters['webAnalyticsData'] = $webAnalyticsData; + + + return $this->client->makeRequest( + '/telephony/call/event', + WC_Retailcrm_Request::METHOD_POST, + array('event' => json_encode($parameters)) + ); + } + + /** + * Upload calls + * + * @param array $calls calls data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function telephonyCallsUpload(array $calls) + { + if (!count($calls)) { + throw new \InvalidArgumentException( + 'Parameter `calls` must contains array of the calls' + ); + } + + return $this->client->makeRequest( + '/telephony/calls/upload', + WC_Retailcrm_Request::METHOD_POST, + array('calls' => json_encode($calls)) + ); + } + + /** + * Get call manager + * + * @param string $phone phone number + * @param bool $details detailed information + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function telephonyCallManager($phone, $details) + { + if (!isset($phone)) { + throw new \InvalidArgumentException('Phone number must be set'); + } + + $parameters['phone'] = $phone; + $parameters['details'] = isset($details) ? $details : 0; + + return $this->client->makeRequest( + '/telephony/manager', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Edit marketplace configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function marketplaceSettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/marketplace/external/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($configuration)) + ); + } + + /** + * Update CRM basic statistic + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statisticUpdate() + { + return $this->client->makeRequest( + '/statistic/update', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Return current site + * + * @return string + */ + public function getSite() + { + return $this->siteCode; + } + + /** + * Set site + * + * @param string $site site code + * + * @return void + */ + public function setSite($site) + { + $this->siteCode = $site; + } + + /** + * Check ID parameter + * + * @param string $by identify by + * + * @throws \InvalidArgumentException + * + * @return bool + */ + protected function checkIdParameter($by) + { + $allowedForBy = array( + 'externalId', + 'id' + ); + + if (!in_array($by, $allowedForBy, false)) { + throw new \InvalidArgumentException( + sprintf( + 'Value "%s" for "by" param is not valid. Allowed values are %s.', + $by, + implode(', ', $allowedForBy) + ) + ); + } + + return true; + } + + /** + * Fill params by site value + * + * @param string $site site code + * @param array $params input parameters + * + * @return array + */ + protected function fillSite($site, array $params) + { + if ($site) { + $params['site'] = $site; + } elseif ($this->siteCode) { + $params['site'] = $this->siteCode; + } + + return $params; + } +} diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-client-v5.php b/woo-retailcrm/include/api/class-wc-retailcrm-client-v5.php index 5a54a2a..e298daf 100644 --- a/woo-retailcrm/include/api/class-wc-retailcrm-client-v5.php +++ b/woo-retailcrm/include/api/class-wc-retailcrm-client-v5.php @@ -1,2381 +1,2381 @@ + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion5 + */ + +if ( ! class_exists( 'WC_Retailcrm_Request' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-request.php' ); +} + +if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); +} + +class WC_Retailcrm_Client_V5 +{ + protected $client; + /** - * PHP version 5.3 - * - * Request class - * - * @category Integration - * @package WC_Retailcrm_Client - * @author RetailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://retailcrm.ru/docs/Developers/ApiVersion5 + * Site code */ + protected $siteCode; - if ( ! class_exists( 'WC_Retailcrm_Request' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-request.php' ); - } - - if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); - } - - class WC_Retailcrm_Client_V5 + /** + * Client creating + * + * @param string $url api url + * @param string $apiKey api key + * @param string $site site code + * + * @throws \InvalidArgumentException + * + */ + public function __construct($url, $apiKey, $version = null, $site = null) { - protected $client; - - /** - * Site code - */ - protected $siteCode; - - /** - * Client creating - * - * @param string $url api url - * @param string $apiKey api key - * @param string $site site code - * - * @throws \InvalidArgumentException - * - */ - public function __construct($url, $apiKey, $version = null, $site = null) - { - if ('/' !== $url[strlen($url) - 1]) { - $url .= '/'; - } - - $url = $version == null ? $url . 'api' : $url . 'api/' . $version; - - $this->client = new WC_Retailcrm_Request($url, array('apiKey' => $apiKey)); - $this->siteCode = $site; - } - - /** - * Returns api versions list - * - * @return WC_Retailcrm_Response - */ - public function apiVersions() - { - return $this->client->makeRequest('/api-versions', WC_Retailcrm_Request::METHOD_GET); - } - - /** - * Returns users list - * - * @param array $filter - * @param null $page - * @param null $limit - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function usersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/users', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Returns user data - * - * @param integer $id user ID - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function usersGet($id) - { - return $this->client->makeRequest("/users/$id", WC_Retailcrm_Request::METHOD_GET); + if ('/' !== $url[strlen($url) - 1]) { + $url .= '/'; } - /** - * Change user status - * - * @param integer $id user ID - * @param string $status user status - * - * @return WC_Retailcrm_Response - */ - public function usersStatus($id, $status) - { - $statuses = array("free", "busy", "dinner", "break"); - - if (empty($status) || !in_array($status, $statuses)) { - throw new \InvalidArgumentException( - 'Parameter `status` must be not empty & must be equal one of these values: free|busy|dinner|break' - ); - } - - return $this->client->makeRequest( - "/users/$id/status", - WC_Retailcrm_Request::METHOD_POST, - array('status' => $status) - ); - } - - /** - * Get segments list - * - * @param array $filter - * @param null $limit - * @param null $page - * - * @return WC_Retailcrm_Response - */ - public function segmentsList(array $filter = array(), $limit = null, $page = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/segments', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get custom fields list - * - * @param array $filter - * @param null $limit - * @param null $page - * - * @return WC_Retailcrm_Response - */ - public function customFieldsList(array $filter = array(), $limit = null, $page = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/custom-fields', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create custom field - * - * @param $entity - * @param $customField - * - * @return WC_Retailcrm_Response - */ - public function customFieldsCreate($entity, $customField) - { - if (!count($customField) || - empty($customField['code']) || - empty($customField['name']) || - empty($customField['type']) - ) { - throw new \InvalidArgumentException( - 'Parameter `customField` must contain a data & fields `code`, `name` & `type` must be set' - ); - } - - if (empty($entity) || $entity != 'customer' || $entity != 'order') { - throw new \InvalidArgumentException( - 'Parameter `entity` must contain a data & value must be `order` or `customer`' - ); - } - - return $this->client->makeRequest( - "/custom-fields/$entity/create", - WC_Retailcrm_Request::METHOD_POST, - array('customField' => json_encode($customField)) - ); - } - - /** - * Edit custom field - * - * @param $entity - * @param $customField - * - * @return WC_Retailcrm_Response - */ - public function customFieldsEdit($entity, $customField) - { - if (!count($customField) || empty($customField['code'])) { - throw new \InvalidArgumentException( - 'Parameter `customField` must contain a data & fields `code` must be set' - ); - } - - if (empty($entity) || $entity != 'customer' || $entity != 'order') { - throw new \InvalidArgumentException( - 'Parameter `entity` must contain a data & value must be `order` or `customer`' - ); - } - - return $this->client->makeRequest( - "/custom-fields/$entity/edit/{$customField['code']}", - WC_Retailcrm_Request::METHOD_POST, - array('customField' => json_encode($customField)) - ); - } - - /** - * Get custom field - * - * @param $entity - * @param $code - * - * @return WC_Retailcrm_Response - */ - public function customFieldsGet($entity, $code) - { - if (empty($code)) { - throw new \InvalidArgumentException( - 'Parameter `code` must be not empty' - ); - } - - if (empty($entity) || $entity != 'customer' || $entity != 'order') { - throw new \InvalidArgumentException( - 'Parameter `entity` must contain a data & value must be `order` or `customer`' - ); - } - - return $this->client->makeRequest( - "/custom-fields/$entity/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Get custom dictionaries list - * - * @param array $filter - * @param null $limit - * @param null $page - * - * @return WC_Retailcrm_Response - */ - public function customDictionariesList(array $filter = array(), $limit = null, $page = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/custom-fields/dictionaries', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create custom dictionary - * - * @param $customDictionary - * - * @return WC_Retailcrm_Response - */ - public function customDictionariesCreate($customDictionary) - { - if (!count($customDictionary) || - empty($customDictionary['code']) || - empty($customDictionary['elements']) - ) { - throw new \InvalidArgumentException( - 'Parameter `dictionary` must contain a data & fields `code` & `elemets` must be set' - ); - } - - return $this->client->makeRequest( - "/custom-fields/dictionaries/{$customDictionary['code']}/create", - WC_Retailcrm_Request::METHOD_POST, - array('customDictionary' => json_encode($customDictionary)) - ); - } - - /** - * Edit custom dictionary - * - * @param $customDictionary - * - * @return WC_Retailcrm_Response - */ - public function customDictionariesEdit($customDictionary) - { - if (!count($customDictionary) || - empty($customDictionary['code']) || - empty($customDictionary['elements']) - ) { - throw new \InvalidArgumentException( - 'Parameter `dictionary` must contain a data & fields `code` & `elemets` must be set' - ); - } - - return $this->client->makeRequest( - "/custom-fields/dictionaries/{$customDictionary['code']}/edit", - WC_Retailcrm_Request::METHOD_POST, - array('customDictionary' => json_encode($customDictionary)) - ); - } - - /** - * Get custom dictionary - * - * @param $code - * - * @return WC_Retailcrm_Response - */ - public function customDictionariesGet($code) - { - if (empty($code)) { - throw new \InvalidArgumentException( - 'Parameter `code` must be not empty' - ); - } - - return $this->client->makeRequest( - "/custom-fields/dictionaries/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Returns filtered orders list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create a order - * - * @param array $order order data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersCreate(array $order, $site = null) - { - if (!count($order)) { - throw new \InvalidArgumentException( - 'Parameter `order` must contains a data' - ); - } - - return $this->client->makeRequest( - '/orders/create', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('order' => json_encode($order))) - ); - } - - /** - * Save order IDs' (id and externalId) association in the CRM - * - * @param array $ids order identificators - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersFixExternalIds(array $ids) - { - if (! count($ids)) { - throw new \InvalidArgumentException( - 'Method parameter must contains at least one IDs pair' - ); - } - - return $this->client->makeRequest( - '/orders/fix-external-ids', - WC_Retailcrm_Request::METHOD_POST, - array('orders' => json_encode($ids) - ) - ); - } - - /** - * Returns statuses of the orders - * - * @param array $ids (default: array()) - * @param array $externalIds (default: array()) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersStatuses(array $ids = array(), array $externalIds = array()) - { - $parameters = array(); - - if (count($ids)) { - $parameters['ids'] = $ids; - } - if (count($externalIds)) { - $parameters['externalIds'] = $externalIds; - } - - return $this->client->makeRequest( - '/orders/statuses', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Upload array of the orders - * - * @param array $orders array of orders - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersUpload(array $orders, $site = null) - { - if (!count($orders)) { - throw new \InvalidArgumentException( - 'Parameter `orders` must contains array of the orders' - ); - } - - return $this->client->makeRequest( - '/orders/upload', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('orders' => json_encode($orders))) - ); - } - - /** - * Get order by id or externalId - * - * @param string $id order identificator - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersGet($id, $by = 'externalId', $site = null) - { - $this->checkIdParameter($by); - - return $this->client->makeRequest( - "/orders/$id", - WC_Retailcrm_Request::METHOD_GET, - $this->fillSite($site, array('by' => $by)) - ); - } - - /** - * Edit a order - * - * @param array $order order data - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersEdit(array $order, $by = 'externalId', $site = null) - { - if (!count($order)) { - throw new \InvalidArgumentException( - 'Parameter `order` must contains a data' - ); - } - - $this->checkIdParameter($by); - - if (!array_key_exists($by, $order)) { - throw new \InvalidArgumentException( - sprintf('Order array must contain the "%s" parameter.', $by) - ); - } - - return $this->client->makeRequest( - sprintf('/orders/%s/edit', $order[$by]), - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array('order' => json_encode($order), 'by' => $by) - ) - ); - } - - /** - * Get orders history - * @param array $filter - * @param null $page - * @param null $limit - * - * @return WC_Retailcrm_Response - */ - public function ordersHistory(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders/history', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Combine orders - * - * @param string $technique - * @param array $order - * @param array $resultOrder - * - * @return WC_Retailcrm_Response - */ - public function ordersCombine($order, $resultOrder, $technique = 'ours') - { - $techniques = array('ours', 'summ', 'theirs'); - - if (!count($order) || !count($resultOrder)) { - throw new \InvalidArgumentException( - 'Parameters `order` & `resultOrder` must contains a data' - ); - } - - if (!in_array($technique, $techniques)) { - throw new \InvalidArgumentException( - 'Parameter `technique` must be on of ours|summ|theirs' - ); - } - - return $this->client->makeRequest( - '/orders/combine', - WC_Retailcrm_Request::METHOD_POST, - array( - 'technique' => $technique, - 'order' => json_encode($order), - 'resultOrder' => json_encode($resultOrder) - ) - ); - } - - /** - * Create an order payment - * - * @param array $payment order data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPaymentCreate(array $payment) - { - if (!count($payment)) { - throw new \InvalidArgumentException( - 'Parameter `payment` must contains a data' - ); - } - - return $this->client->makeRequest( - '/orders/payments/create', - WC_Retailcrm_Request::METHOD_POST, - array('payment' => json_encode($payment)) - ); - } - - /** - * Edit an order payment - * - * @param array $payment order data - * @param string $by by key - * @param null $site site code - * - * @return WC_Retailcrm_Response - */ - public function ordersPaymentEdit(array $payment, $by = 'externalId', $site = null) - { - if (!count($payment)) { - throw new \InvalidArgumentException( - 'Parameter `payment` must contains a data' - ); - } - - $this->checkIdParameter($by); - - if (!array_key_exists($by, $payment)) { - throw new \InvalidArgumentException( - sprintf('Order array must contain the "%s" parameter.', $by) - ); - } - - return $this->client->makeRequest( - sprintf('/orders/payments/%s/edit', $payment[$by]), - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array('payment' => json_encode($payment), 'by' => $by) - ) - ); - } - - /** - * Edit an order payment - * - * @param string $id payment id - * - * @return WC_Retailcrm_Response - */ - public function ordersPaymentDelete($id) - { - if (!$id) { - throw new \InvalidArgumentException( - 'Parameter `id` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/orders/payments/%s/delete', $id), - WC_Retailcrm_Request::METHOD_POST - ); - } - - /** - * Returns filtered customers list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/customers', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create a customer - * - * @param array $customer customer data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersCreate(array $customer, $site = null) - { - if (! count($customer)) { - throw new \InvalidArgumentException( - 'Parameter `customer` must contains a data' - ); - } - - return $this->client->makeRequest( - '/customers/create', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('customer' => json_encode($customer))) - ); - } - - /** - * Save customer IDs' (id and externalId) association in the CRM - * - * @param array $ids ids mapping - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersFixExternalIds(array $ids) - { - if (! count($ids)) { - throw new \InvalidArgumentException( - 'Method parameter must contains at least one IDs pair' - ); - } - - return $this->client->makeRequest( - '/customers/fix-external-ids', - WC_Retailcrm_Request::METHOD_POST, - array('customers' => json_encode($ids)) - ); - } - - /** - * Upload array of the customers - * - * @param array $customers array of customers - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersUpload(array $customers, $site = null) - { - if (! count($customers)) { - throw new \InvalidArgumentException( - 'Parameter `customers` must contains array of the customers' - ); - } - - return $this->client->makeRequest( - '/customers/upload', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('customers' => json_encode($customers))) - ); - } - - /** - * Get customer by id or externalId - * - * @param string $id customer identificator - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersGet($id, $by = 'externalId', $site = null) - { - $this->checkIdParameter($by); - - return $this->client->makeRequest( - "/customers/$id", - WC_Retailcrm_Request::METHOD_GET, - $this->fillSite($site, array('by' => $by)) - ); - } - - /** - * Edit a customer - * - * @param array $customer customer data - * @param string $by (default: 'externalId') - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersEdit(array $customer, $by = 'externalId', $site = null) - { - if (!count($customer)) { - throw new \InvalidArgumentException( - 'Parameter `customer` must contains a data' - ); - } - - $this->checkIdParameter($by); - - if (!array_key_exists($by, $customer)) { - throw new \InvalidArgumentException( - sprintf('Customer array must contain the "%s" parameter.', $by) - ); - } - - return $this->client->makeRequest( - sprintf('/customers/%s/edit', $customer[$by]), - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array('customer' => json_encode($customer), 'by' => $by) - ) - ); - } - - /** - * Get customers history - * @param array $filter - * @param null $page - * @param null $limit - * - * @return WC_Retailcrm_Response - */ - public function customersHistory(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/customers/history', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Combine customers - * - * @param array $customers - * @param array $resultCustomer - * - * @return WC_Retailcrm_Response - */ - public function customersCombine(array $customers, $resultCustomer) - { - - if (!count($customers) || !count($resultCustomer)) { - throw new \InvalidArgumentException( - 'Parameters `customers` & `resultCustomer` must contains a data' - ); - } - - return $this->client->makeRequest( - '/customers/combine', - WC_Retailcrm_Request::METHOD_POST, - array( - 'customers' => json_encode($customers), - 'resultCustomer' => json_encode($resultCustomer) - ) - ); - } - - /** - * Returns filtered customers notes list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersNotesList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - return $this->client->makeRequest( - '/customers/notes', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create customer note - * - * @param array $note (default: array()) - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersNotesCreate($note, $site = null) - { - if (empty($note['customer']['id']) && empty($note['customer']['externalId'])) { - throw new \InvalidArgumentException( - 'Customer identifier must be set' - ); - } - return $this->client->makeRequest( - '/customers/notes/create', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('note' => json_encode($note))) - ); - } - - /** - * Delete customer note - * - * @param integer $id - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function customersNotesDelete($id) - { - if (empty($id)) { - throw new \InvalidArgumentException( - 'Note id must be set' - ); - } - return $this->client->makeRequest( - "/customers/notes/$id/delete", - WC_Retailcrm_Request::METHOD_POST - ); - } - - /** - * Get orders assembly list - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksList(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders/packs', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create orders assembly - * - * @param array $pack pack data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksCreate(array $pack, $site = null) - { - if (!count($pack)) { - throw new \InvalidArgumentException( - 'Parameter `pack` must contains a data' - ); - } - - return $this->client->makeRequest( - '/orders/packs/create', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('pack' => json_encode($pack))) - ); - } - - /** - * Get orders assembly history - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/orders/packs/history', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get orders assembly by id - * - * @param string $id pack identificator - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksGet($id) - { - if (empty($id)) { - throw new \InvalidArgumentException('Parameter `id` must be set'); - } - - return $this->client->makeRequest( - "/orders/packs/$id", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Delete orders assembly by id - * - * @param string $id pack identificator - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksDelete($id) - { - if (empty($id)) { - throw new \InvalidArgumentException('Parameter `id` must be set'); - } - - return $this->client->makeRequest( - sprintf('/orders/packs/%s/delete', $id), - WC_Retailcrm_Request::METHOD_POST - ); - } - - /** - * Edit orders assembly - * - * @param array $pack pack data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function ordersPacksEdit(array $pack, $site = null) - { - if (!count($pack) || empty($pack['id'])) { - throw new \InvalidArgumentException( - 'Parameter `pack` must contains a data & pack `id` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/orders/packs/%s/edit', $pack['id']), - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('pack' => json_encode($pack))) - ); - } - - /** - * Get tasks list - * - * @param array $filter - * @param null $limit - * @param null $page - * - * @return WC_Retailcrm_Response - */ - public function tasksList(array $filter = array(), $limit = null, $page = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } + $url = $version == null ? $url . 'api' : $url . 'api/' . $version; - return $this->client->makeRequest( - '/tasks', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Create task - * - * @param array $task - * @param null $site - * - * @return WC_Retailcrm_Response - * - */ - public function tasksCreate($task, $site = null) - { - if (!count($task)) { - throw new \InvalidArgumentException( - 'Parameter `task` must contain a data' - ); - } - - return $this->client->makeRequest( - "/tasks/create", - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array('task' => json_encode($task)) - ) - ); - } - - /** - * Edit task - * - * @param array $task - * @param null $site - * - * @return WC_Retailcrm_Response - * - */ - public function tasksEdit($task, $site = null) - { - if (!count($task)) { - throw new \InvalidArgumentException( - 'Parameter `task` must contain a data' - ); - } - - return $this->client->makeRequest( - "/tasks/{$task['id']}/edit", - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite( - $site, - array('task' => json_encode($task)) - ) - ); - } - - /** - * Get custom dictionary - * - * @param $id - * - * @return WC_Retailcrm_Response - */ - public function tasksGet($id) - { - if (empty($id)) { - throw new \InvalidArgumentException( - 'Parameter `id` must be not empty' - ); - } - - return $this->client->makeRequest( - "/tasks/$id", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Get products groups - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storeProductsGroups(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/store/product-groups', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get purchace prices & stock balance - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storeInventories(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/store/inventories', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get store settings - * - * @param string $code get settings code - * - * @return WC_Retailcrm_Response - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function storeSettingsGet($code) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - return $this->client->makeRequest( - "/store/setting/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit store configuration - * - * @param array $configuration - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function storeSettingsEdit(array $configuration) - { - if (!count($configuration) || empty($configuration['code'])) { - throw new \InvalidArgumentException( - 'Parameter `configuration` must contains a data & configuration `code` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/store/setting/%s/edit', $configuration['code']), - WC_Retailcrm_Request::METHOD_POST, - $configuration - ); - } - - /** - * Upload store inventories - * - * @param array $offers offers data - * @param string $site (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storeInventoriesUpload(array $offers, $site = null) - { - if (!count($offers)) { - throw new \InvalidArgumentException( - 'Parameter `offers` must contains array of the offers' - ); - } - - return $this->client->makeRequest( - '/store/inventories/upload', - WC_Retailcrm_Request::METHOD_POST, - $this->fillSite($site, array('offers' => json_encode($offers))) - ); - } - - /** - * Get products - * - * @param array $filter (default: array()) - * @param int $page (default: null) - * @param int $limit (default: null) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storeProducts(array $filter = array(), $page = null, $limit = null) - { - $parameters = array(); - - if (count($filter)) { - $parameters['filter'] = $filter; - } - if (null !== $page) { - $parameters['page'] = (int) $page; - } - if (null !== $limit) { - $parameters['limit'] = (int) $limit; - } - - return $this->client->makeRequest( - '/store/products', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Get delivery settings - * - * @param string $code - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliverySettingsGet($code) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - return $this->client->makeRequest( - "/delivery/generic/setting/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit delivery configuration - * - * @param array $configuration - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function deliverySettingsEdit(array $configuration) - { - if (!count($configuration) || empty($configuration['code'])) { - throw new \InvalidArgumentException( - 'Parameter `configuration` must contains a data & configuration `code` must be set' - ); - } - - return $this->client->makeRequest( - sprintf('/delivery/generic/setting/%s/edit', $configuration['code']), - WC_Retailcrm_Request::METHOD_POST, - array('configuration' => json_encode($configuration)) - ); - } - - /** - * Delivery tracking update - * - * @param string $code - * @param array $statusUpdate - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function deliveryTracking($code, array $statusUpdate) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - if (!count($statusUpdate)) { - throw new \InvalidArgumentException( - 'Parameter `statusUpdate` must contains a data' - ); - } - - return $this->client->makeRequest( - sprintf('/delivery/generic/%s/tracking', $code), - WC_Retailcrm_Request::METHOD_POST, - $statusUpdate - ); - } - - /** - * Returns available county list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function countriesList() - { - return $this->client->makeRequest( - '/reference/countries', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Returns deliveryServices list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryServicesList() - { - return $this->client->makeRequest( - '/reference/delivery-services', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit deliveryService - * - * @param array $data delivery service data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryServicesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/delivery-services/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('deliveryService' => json_encode($data)) - ); - } - - /** - * Returns deliveryTypes list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryTypesList() - { - return $this->client->makeRequest( - '/reference/delivery-types', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit deliveryType - * - * @param array $data delivery type data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function deliveryTypesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/delivery-types/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('deliveryType' => json_encode($data)) - ); - } - - /** - * Returns orderMethods list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderMethodsList() - { - return $this->client->makeRequest( - '/reference/order-methods', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit orderMethod - * - * @param array $data order method data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderMethodsEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/order-methods/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('orderMethod' => json_encode($data)) - ); - } - - /** - * Returns orderTypes list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderTypesList() - { - return $this->client->makeRequest( - '/reference/order-types', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit orderType - * - * @param array $data order type data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function orderTypesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/order-types/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('orderType' => json_encode($data)) - ); - } - - /** - * Returns paymentStatuses list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentStatusesList() - { - return $this->client->makeRequest( - '/reference/payment-statuses', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit paymentStatus - * - * @param array $data payment status data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentStatusesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/payment-statuses/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('paymentStatus' => json_encode($data)) - ); - } - - /** - * Returns paymentTypes list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentTypesList() - { - return $this->client->makeRequest( - '/reference/payment-types', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit paymentType - * - * @param array $data payment type data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function paymentTypesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/payment-types/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('paymentType' => json_encode($data)) - ); - } - - /** - * Returns productStatuses list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function productStatusesList() - { - return $this->client->makeRequest( - '/reference/product-statuses', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit productStatus - * - * @param array $data product status data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function productStatusesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/product-statuses/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('productStatus' => json_encode($data)) - ); - } - - /** - * Returns sites list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function sitesList() - { - return $this->client->makeRequest( - '/reference/sites', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit site - * - * @param array $data site data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function sitesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/sites/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('site' => json_encode($data)) - ); - } - - /** - * Returns statusGroups list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statusGroupsList() - { - return $this->client->makeRequest( - '/reference/status-groups', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Returns statuses list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statusesList() - { - return $this->client->makeRequest( - '/reference/statuses', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit order status - * - * @param array $data status data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statusesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/statuses/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('status' => json_encode($data)) - ); - } - - /** - * Returns stores list - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storesList() - { - return $this->client->makeRequest( - '/reference/stores', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit store - * - * @param array $data site data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function storesEdit(array $data) - { - if (!array_key_exists('code', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "code" parameter.' - ); - } - - if (!array_key_exists('name', $data)) { - throw new \InvalidArgumentException( - 'Data must contain "name" parameter.' - ); - } - - return $this->client->makeRequest( - sprintf('/reference/stores/%s/edit', $data['code']), - WC_Retailcrm_Request::METHOD_POST, - array('store' => json_encode($data)) - ); - } - - /** - * Get telephony settings - * - * @param string $code - * - * @throws WC_Retailcrm_Exception_Json - * @throws WC_Retailcrm_Exception_Curl - * @throws \InvalidArgumentException - * - * @return WC_Retailcrm_Response - */ - public function telephonySettingsGet($code) - { - if (empty($code)) { - throw new \InvalidArgumentException('Parameter `code` must be set'); - } - - return $this->client->makeRequest( - "/telephony/setting/$code", - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Edit telephony settings - * - * @param string $code symbolic code - * @param string $clientId client id - * @param boolean $active telephony activity - * @param mixed $name service name - * @param mixed $makeCallUrl service init url - * @param mixed $image service logo url(svg file) - * - * @param array $additionalCodes - * @param array $externalPhones - * @param bool $allowEdit - * @param bool $inputEventSupported - * @param bool $outputEventSupported - * @param bool $hangupEventSupported - * @param bool $changeUserStatusUrl - * - * @return WC_Retailcrm_Response - */ - public function telephonySettingsEdit( - $code, - $clientId, - $active = false, - $name = false, - $makeCallUrl = false, - $image = false, - $additionalCodes = array(), - $externalPhones = array(), - $allowEdit = false, - $inputEventSupported = false, - $outputEventSupported = false, - $hangupEventSupported = false, - $changeUserStatusUrl = false - ) - { - if (!isset($code)) { - throw new \InvalidArgumentException('Code must be set'); - } - - $parameters['code'] = $code; - - if (!isset($clientId)) { - throw new \InvalidArgumentException('client id must be set'); - } - - $parameters['clientId'] = $clientId; - - if (!isset($active)) { - $parameters['active'] = false; - } else { - $parameters['active'] = $active; - } - - if (!isset($name)) { - throw new \InvalidArgumentException('name must be set'); - } - - if (isset($name)) { - $parameters['name'] = $name; - } - - if (isset($makeCallUrl)) { - $parameters['makeCallUrl'] = $makeCallUrl; - } - - if (isset($image)) { - $parameters['image'] = $image; - } - - if (isset($additionalCodes)) { - $parameters['additionalCodes'] = $additionalCodes; - } - - if (isset($externalPhones)) { - $parameters['externalPhones'] = $externalPhones; - } - - if (isset($allowEdit)) { - $parameters['allowEdit'] = $allowEdit; - } - - if (isset($inputEventSupported)) { - $parameters['inputEventSupported'] = $inputEventSupported; - } - - if (isset($outputEventSupported)) { - $parameters['outputEventSupported'] = $outputEventSupported; - } - - if (isset($hangupEventSupported)) { - $parameters['hangupEventSupported'] = $hangupEventSupported; - } - - if (isset($changeUserStatusUrl)) { - $parameters['changeUserStatusUrl'] = $changeUserStatusUrl; - } - - return $this->client->makeRequest( - "/telephony/setting/$code/edit", - WC_Retailcrm_Request::METHOD_POST, - array('configuration' => json_encode($parameters)) - ); - } - - /** - * Call event - * - * @param string $phone phone number - * @param string $type call type - * @param array $codes - * @param string $hangupStatus - * @param string $externalPhone - * @param array $webAnalyticsData - * - * @return WC_Retailcrm_Response - * @internal param string $code additional phone code - * @internal param string $status call status - * - */ - public function telephonyCallEvent( - $phone, - $type, - $codes, - $hangupStatus, - $externalPhone = null, - $webAnalyticsData = array() - ) - { - if (!isset($phone)) { - throw new \InvalidArgumentException('Phone number must be set'); - } - - if (!isset($type)) { - throw new \InvalidArgumentException('Type must be set (in|out|hangup)'); - } - - if (empty($codes)) { - throw new \InvalidArgumentException('Codes array must be set'); - } - - $parameters['phone'] = $phone; - $parameters['type'] = $type; - $parameters['codes'] = $codes; - $parameters['hangupStatus'] = $hangupStatus; - $parameters['callExternalId'] = $externalPhone; - $parameters['webAnalyticsData'] = $webAnalyticsData; - - - return $this->client->makeRequest( - '/telephony/call/event', - WC_Retailcrm_Request::METHOD_POST, - array('event' => json_encode($parameters)) - ); - } - - /** - * Upload calls - * - * @param array $calls calls data - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function telephonyCallsUpload(array $calls) - { - if (!count($calls)) { - throw new \InvalidArgumentException( - 'Parameter `calls` must contains array of the calls' - ); - } - - return $this->client->makeRequest( - '/telephony/calls/upload', - WC_Retailcrm_Request::METHOD_POST, - array('calls' => json_encode($calls)) - ); - } - - /** - * Get call manager - * - * @param string $phone phone number - * @param bool $details detailed information - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function telephonyCallManager($phone, $details) - { - if (!isset($phone)) { - throw new \InvalidArgumentException('Phone number must be set'); - } - - $parameters['phone'] = $phone; - $parameters['details'] = isset($details) ? $details : 0; - - return $this->client->makeRequest( - '/telephony/manager', - WC_Retailcrm_Request::METHOD_GET, - $parameters - ); - } - - /** - * Update CRM basic statistic - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * @throws WC_Retailcrm_Exception_Json - * - * @return WC_Retailcrm_Response - */ - public function statisticUpdate() - { - return $this->client->makeRequest( - '/statistic/update', - WC_Retailcrm_Request::METHOD_GET - ); - } - - /** - * Return current site - * - * @return string - */ - public function getSite() - { - return $this->siteCode; - } - - /** - * Set site - * - * @param string $site site code - * - * @return void - */ - public function setSite($site) - { - $this->siteCode = $site; - } - - /** - * Check ID parameter - * - * @param string $by identify by - * - * @throws \InvalidArgumentException - * - * @return bool - */ - protected function checkIdParameter($by) - { - $allowedForBy = array( - 'externalId', - 'id' - ); - - if (!in_array($by, $allowedForBy, false)) { - throw new \InvalidArgumentException( - sprintf( - 'Value "%s" for "by" param is not valid. Allowed values are %s.', - $by, - implode(', ', $allowedForBy) - ) - ); - } - - return true; - } - - /** - * Fill params by site value - * - * @param string $site site code - * @param array $params input parameters - * - * @return array - */ - protected function fillSite($site, array $params) - { - if ($site) { - $params['site'] = $site; - } elseif ($this->siteCode) { - $params['site'] = $this->siteCode; - } - - return $params; - } + $this->client = new WC_Retailcrm_Request($url, array('apiKey' => $apiKey)); + $this->siteCode = $site; } + + /** + * Returns api versions list + * + * @return WC_Retailcrm_Response + */ + public function apiVersions() + { + return $this->client->makeRequest('/api-versions', WC_Retailcrm_Request::METHOD_GET); + } + + /** + * Returns users list + * + * @param array $filter + * @param null $page + * @param null $limit + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function usersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/users', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Returns user data + * + * @param integer $id user ID + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function usersGet($id) + { + return $this->client->makeRequest("/users/$id", WC_Retailcrm_Request::METHOD_GET); + } + + /** + * Change user status + * + * @param integer $id user ID + * @param string $status user status + * + * @return WC_Retailcrm_Response + */ + public function usersStatus($id, $status) + { + $statuses = array("free", "busy", "dinner", "break"); + + if (empty($status) || !in_array($status, $statuses)) { + throw new \InvalidArgumentException( + 'Parameter `status` must be not empty & must be equal one of these values: free|busy|dinner|break' + ); + } + + return $this->client->makeRequest( + "/users/$id/status", + WC_Retailcrm_Request::METHOD_POST, + array('status' => $status) + ); + } + + /** + * Get segments list + * + * @param array $filter + * @param null $limit + * @param null $page + * + * @return WC_Retailcrm_Response + */ + public function segmentsList(array $filter = array(), $limit = null, $page = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/segments', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get custom fields list + * + * @param array $filter + * @param null $limit + * @param null $page + * + * @return WC_Retailcrm_Response + */ + public function customFieldsList(array $filter = array(), $limit = null, $page = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/custom-fields', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create custom field + * + * @param $entity + * @param $customField + * + * @return WC_Retailcrm_Response + */ + public function customFieldsCreate($entity, $customField) + { + if (!count($customField) || + empty($customField['code']) || + empty($customField['name']) || + empty($customField['type']) + ) { + throw new \InvalidArgumentException( + 'Parameter `customField` must contain a data & fields `code`, `name` & `type` must be set' + ); + } + + if (empty($entity) || $entity != 'customer' || $entity != 'order') { + throw new \InvalidArgumentException( + 'Parameter `entity` must contain a data & value must be `order` or `customer`' + ); + } + + return $this->client->makeRequest( + "/custom-fields/$entity/create", + WC_Retailcrm_Request::METHOD_POST, + array('customField' => json_encode($customField)) + ); + } + + /** + * Edit custom field + * + * @param $entity + * @param $customField + * + * @return WC_Retailcrm_Response + */ + public function customFieldsEdit($entity, $customField) + { + if (!count($customField) || empty($customField['code'])) { + throw new \InvalidArgumentException( + 'Parameter `customField` must contain a data & fields `code` must be set' + ); + } + + if (empty($entity) || $entity != 'customer' || $entity != 'order') { + throw new \InvalidArgumentException( + 'Parameter `entity` must contain a data & value must be `order` or `customer`' + ); + } + + return $this->client->makeRequest( + "/custom-fields/$entity/edit/{$customField['code']}", + WC_Retailcrm_Request::METHOD_POST, + array('customField' => json_encode($customField)) + ); + } + + /** + * Get custom field + * + * @param $entity + * @param $code + * + * @return WC_Retailcrm_Response + */ + public function customFieldsGet($entity, $code) + { + if (empty($code)) { + throw new \InvalidArgumentException( + 'Parameter `code` must be not empty' + ); + } + + if (empty($entity) || $entity != 'customer' || $entity != 'order') { + throw new \InvalidArgumentException( + 'Parameter `entity` must contain a data & value must be `order` or `customer`' + ); + } + + return $this->client->makeRequest( + "/custom-fields/$entity/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Get custom dictionaries list + * + * @param array $filter + * @param null $limit + * @param null $page + * + * @return WC_Retailcrm_Response + */ + public function customDictionariesList(array $filter = array(), $limit = null, $page = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/custom-fields/dictionaries', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create custom dictionary + * + * @param $customDictionary + * + * @return WC_Retailcrm_Response + */ + public function customDictionariesCreate($customDictionary) + { + if (!count($customDictionary) || + empty($customDictionary['code']) || + empty($customDictionary['elements']) + ) { + throw new \InvalidArgumentException( + 'Parameter `dictionary` must contain a data & fields `code` & `elemets` must be set' + ); + } + + return $this->client->makeRequest( + "/custom-fields/dictionaries/{$customDictionary['code']}/create", + WC_Retailcrm_Request::METHOD_POST, + array('customDictionary' => json_encode($customDictionary)) + ); + } + + /** + * Edit custom dictionary + * + * @param $customDictionary + * + * @return WC_Retailcrm_Response + */ + public function customDictionariesEdit($customDictionary) + { + if (!count($customDictionary) || + empty($customDictionary['code']) || + empty($customDictionary['elements']) + ) { + throw new \InvalidArgumentException( + 'Parameter `dictionary` must contain a data & fields `code` & `elemets` must be set' + ); + } + + return $this->client->makeRequest( + "/custom-fields/dictionaries/{$customDictionary['code']}/edit", + WC_Retailcrm_Request::METHOD_POST, + array('customDictionary' => json_encode($customDictionary)) + ); + } + + /** + * Get custom dictionary + * + * @param $code + * + * @return WC_Retailcrm_Response + */ + public function customDictionariesGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException( + 'Parameter `code` must be not empty' + ); + } + + return $this->client->makeRequest( + "/custom-fields/dictionaries/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Returns filtered orders list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create a order + * + * @param array $order order data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersCreate(array $order, $site = null) + { + if (!count($order)) { + throw new \InvalidArgumentException( + 'Parameter `order` must contains a data' + ); + } + + return $this->client->makeRequest( + '/orders/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('order' => json_encode($order))) + ); + } + + /** + * Save order IDs' (id and externalId) association in the CRM + * + * @param array $ids order identificators + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersFixExternalIds(array $ids) + { + if (! count($ids)) { + throw new \InvalidArgumentException( + 'Method parameter must contains at least one IDs pair' + ); + } + + return $this->client->makeRequest( + '/orders/fix-external-ids', + WC_Retailcrm_Request::METHOD_POST, + array('orders' => json_encode($ids) + ) + ); + } + + /** + * Returns statuses of the orders + * + * @param array $ids (default: array()) + * @param array $externalIds (default: array()) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersStatuses(array $ids = array(), array $externalIds = array()) + { + $parameters = array(); + + if (count($ids)) { + $parameters['ids'] = $ids; + } + if (count($externalIds)) { + $parameters['externalIds'] = $externalIds; + } + + return $this->client->makeRequest( + '/orders/statuses', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Upload array of the orders + * + * @param array $orders array of orders + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersUpload(array $orders, $site = null) + { + if (!count($orders)) { + throw new \InvalidArgumentException( + 'Parameter `orders` must contains array of the orders' + ); + } + + return $this->client->makeRequest( + '/orders/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('orders' => json_encode($orders))) + ); + } + + /** + * Get order by id or externalId + * + * @param string $id order identificator + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersGet($id, $by = 'externalId', $site = null) + { + $this->checkIdParameter($by); + + return $this->client->makeRequest( + "/orders/$id", + WC_Retailcrm_Request::METHOD_GET, + $this->fillSite($site, array('by' => $by)) + ); + } + + /** + * Edit a order + * + * @param array $order order data + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersEdit(array $order, $by = 'externalId', $site = null) + { + if (!count($order)) { + throw new \InvalidArgumentException( + 'Parameter `order` must contains a data' + ); + } + + $this->checkIdParameter($by); + + if (!array_key_exists($by, $order)) { + throw new \InvalidArgumentException( + sprintf('Order array must contain the "%s" parameter.', $by) + ); + } + + return $this->client->makeRequest( + sprintf('/orders/%s/edit', $order[$by]), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('order' => json_encode($order), 'by' => $by) + ) + ); + } + + /** + * Get orders history + * @param array $filter + * @param null $page + * @param null $limit + * + * @return WC_Retailcrm_Response + */ + public function ordersHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Combine orders + * + * @param string $technique + * @param array $order + * @param array $resultOrder + * + * @return WC_Retailcrm_Response + */ + public function ordersCombine($order, $resultOrder, $technique = 'ours') + { + $techniques = array('ours', 'summ', 'theirs'); + + if (!count($order) || !count($resultOrder)) { + throw new \InvalidArgumentException( + 'Parameters `order` & `resultOrder` must contains a data' + ); + } + + if (!in_array($technique, $techniques)) { + throw new \InvalidArgumentException( + 'Parameter `technique` must be on of ours|summ|theirs' + ); + } + + return $this->client->makeRequest( + '/orders/combine', + WC_Retailcrm_Request::METHOD_POST, + array( + 'technique' => $technique, + 'order' => json_encode($order), + 'resultOrder' => json_encode($resultOrder) + ) + ); + } + + /** + * Create an order payment + * + * @param array $payment order data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPaymentCreate(array $payment) + { + if (!count($payment)) { + throw new \InvalidArgumentException( + 'Parameter `payment` must contains a data' + ); + } + + return $this->client->makeRequest( + '/orders/payments/create', + WC_Retailcrm_Request::METHOD_POST, + array('payment' => json_encode($payment)) + ); + } + + /** + * Edit an order payment + * + * @param array $payment order data + * @param string $by by key + * @param null $site site code + * + * @return WC_Retailcrm_Response + */ + public function ordersPaymentEdit(array $payment, $by = 'externalId', $site = null) + { + if (!count($payment)) { + throw new \InvalidArgumentException( + 'Parameter `payment` must contains a data' + ); + } + + $this->checkIdParameter($by); + + if (!array_key_exists($by, $payment)) { + throw new \InvalidArgumentException( + sprintf('Order array must contain the "%s" parameter.', $by) + ); + } + + return $this->client->makeRequest( + sprintf('/orders/payments/%s/edit', $payment[$by]), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('payment' => json_encode($payment), 'by' => $by) + ) + ); + } + + /** + * Edit an order payment + * + * @param string $id payment id + * + * @return WC_Retailcrm_Response + */ + public function ordersPaymentDelete($id) + { + if (!$id) { + throw new \InvalidArgumentException( + 'Parameter `id` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/orders/payments/%s/delete', $id), + WC_Retailcrm_Request::METHOD_POST + ); + } + + /** + * Returns filtered customers list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/customers', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create a customer + * + * @param array $customer customer data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersCreate(array $customer, $site = null) + { + if (! count($customer)) { + throw new \InvalidArgumentException( + 'Parameter `customer` must contains a data' + ); + } + + return $this->client->makeRequest( + '/customers/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('customer' => json_encode($customer))) + ); + } + + /** + * Save customer IDs' (id and externalId) association in the CRM + * + * @param array $ids ids mapping + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersFixExternalIds(array $ids) + { + if (! count($ids)) { + throw new \InvalidArgumentException( + 'Method parameter must contains at least one IDs pair' + ); + } + + return $this->client->makeRequest( + '/customers/fix-external-ids', + WC_Retailcrm_Request::METHOD_POST, + array('customers' => json_encode($ids)) + ); + } + + /** + * Upload array of the customers + * + * @param array $customers array of customers + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersUpload(array $customers, $site = null) + { + if (! count($customers)) { + throw new \InvalidArgumentException( + 'Parameter `customers` must contains array of the customers' + ); + } + + return $this->client->makeRequest( + '/customers/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('customers' => json_encode($customers))) + ); + } + + /** + * Get customer by id or externalId + * + * @param string $id customer identificator + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersGet($id, $by = 'externalId', $site = null) + { + $this->checkIdParameter($by); + + return $this->client->makeRequest( + "/customers/$id", + WC_Retailcrm_Request::METHOD_GET, + $this->fillSite($site, array('by' => $by)) + ); + } + + /** + * Edit a customer + * + * @param array $customer customer data + * @param string $by (default: 'externalId') + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersEdit(array $customer, $by = 'externalId', $site = null) + { + if (!count($customer)) { + throw new \InvalidArgumentException( + 'Parameter `customer` must contains a data' + ); + } + + $this->checkIdParameter($by); + + if (!array_key_exists($by, $customer)) { + throw new \InvalidArgumentException( + sprintf('Customer array must contain the "%s" parameter.', $by) + ); + } + + return $this->client->makeRequest( + sprintf('/customers/%s/edit', $customer[$by]), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('customer' => json_encode($customer), 'by' => $by) + ) + ); + } + + /** + * Get customers history + * @param array $filter + * @param null $page + * @param null $limit + * + * @return WC_Retailcrm_Response + */ + public function customersHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/customers/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Combine customers + * + * @param array $customers + * @param array $resultCustomer + * + * @return WC_Retailcrm_Response + */ + public function customersCombine(array $customers, $resultCustomer) + { + + if (!count($customers) || !count($resultCustomer)) { + throw new \InvalidArgumentException( + 'Parameters `customers` & `resultCustomer` must contains a data' + ); + } + + return $this->client->makeRequest( + '/customers/combine', + WC_Retailcrm_Request::METHOD_POST, + array( + 'customers' => json_encode($customers), + 'resultCustomer' => json_encode($resultCustomer) + ) + ); + } + + /** + * Returns filtered customers notes list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersNotesList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + return $this->client->makeRequest( + '/customers/notes', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create customer note + * + * @param array $note (default: array()) + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersNotesCreate($note, $site = null) + { + if (empty($note['customer']['id']) && empty($note['customer']['externalId'])) { + throw new \InvalidArgumentException( + 'Customer identifier must be set' + ); + } + return $this->client->makeRequest( + '/customers/notes/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('note' => json_encode($note))) + ); + } + + /** + * Delete customer note + * + * @param integer $id + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function customersNotesDelete($id) + { + if (empty($id)) { + throw new \InvalidArgumentException( + 'Note id must be set' + ); + } + return $this->client->makeRequest( + "/customers/notes/$id/delete", + WC_Retailcrm_Request::METHOD_POST + ); + } + + /** + * Get orders assembly list + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksList(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/packs', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create orders assembly + * + * @param array $pack pack data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksCreate(array $pack, $site = null) + { + if (!count($pack)) { + throw new \InvalidArgumentException( + 'Parameter `pack` must contains a data' + ); + } + + return $this->client->makeRequest( + '/orders/packs/create', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('pack' => json_encode($pack))) + ); + } + + /** + * Get orders assembly history + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/orders/packs/history', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get orders assembly by id + * + * @param string $id pack identificator + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksGet($id) + { + if (empty($id)) { + throw new \InvalidArgumentException('Parameter `id` must be set'); + } + + return $this->client->makeRequest( + "/orders/packs/$id", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Delete orders assembly by id + * + * @param string $id pack identificator + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksDelete($id) + { + if (empty($id)) { + throw new \InvalidArgumentException('Parameter `id` must be set'); + } + + return $this->client->makeRequest( + sprintf('/orders/packs/%s/delete', $id), + WC_Retailcrm_Request::METHOD_POST + ); + } + + /** + * Edit orders assembly + * + * @param array $pack pack data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function ordersPacksEdit(array $pack, $site = null) + { + if (!count($pack) || empty($pack['id'])) { + throw new \InvalidArgumentException( + 'Parameter `pack` must contains a data & pack `id` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/orders/packs/%s/edit', $pack['id']), + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('pack' => json_encode($pack))) + ); + } + + /** + * Get tasks list + * + * @param array $filter + * @param null $limit + * @param null $page + * + * @return WC_Retailcrm_Response + */ + public function tasksList(array $filter = array(), $limit = null, $page = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/tasks', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Create task + * + * @param array $task + * @param null $site + * + * @return WC_Retailcrm_Response + * + */ + public function tasksCreate($task, $site = null) + { + if (!count($task)) { + throw new \InvalidArgumentException( + 'Parameter `task` must contain a data' + ); + } + + return $this->client->makeRequest( + "/tasks/create", + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('task' => json_encode($task)) + ) + ); + } + + /** + * Edit task + * + * @param array $task + * @param null $site + * + * @return WC_Retailcrm_Response + * + */ + public function tasksEdit($task, $site = null) + { + if (!count($task)) { + throw new \InvalidArgumentException( + 'Parameter `task` must contain a data' + ); + } + + return $this->client->makeRequest( + "/tasks/{$task['id']}/edit", + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite( + $site, + array('task' => json_encode($task)) + ) + ); + } + + /** + * Get custom dictionary + * + * @param $id + * + * @return WC_Retailcrm_Response + */ + public function tasksGet($id) + { + if (empty($id)) { + throw new \InvalidArgumentException( + 'Parameter `id` must be not empty' + ); + } + + return $this->client->makeRequest( + "/tasks/$id", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Get products groups + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeProductsGroups(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/store/product-groups', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get purchace prices & stock balance + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeInventories(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/store/inventories', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get store settings + * + * @param string $code get settings code + * + * @return WC_Retailcrm_Response + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function storeSettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/store/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit store configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function storeSettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/store/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + $configuration + ); + } + + /** + * Upload store inventories + * + * @param array $offers offers data + * @param string $site (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeInventoriesUpload(array $offers, $site = null) + { + if (!count($offers)) { + throw new \InvalidArgumentException( + 'Parameter `offers` must contains array of the offers' + ); + } + + return $this->client->makeRequest( + '/store/inventories/upload', + WC_Retailcrm_Request::METHOD_POST, + $this->fillSite($site, array('offers' => json_encode($offers))) + ); + } + + /** + * Get products + * + * @param array $filter (default: array()) + * @param int $page (default: null) + * @param int $limit (default: null) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storeProducts(array $filter = array(), $page = null, $limit = null) + { + $parameters = array(); + + if (count($filter)) { + $parameters['filter'] = $filter; + } + if (null !== $page) { + $parameters['page'] = (int) $page; + } + if (null !== $limit) { + $parameters['limit'] = (int) $limit; + } + + return $this->client->makeRequest( + '/store/products', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Get delivery settings + * + * @param string $code + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliverySettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/delivery/generic/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit delivery configuration + * + * @param array $configuration + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function deliverySettingsEdit(array $configuration) + { + if (!count($configuration) || empty($configuration['code'])) { + throw new \InvalidArgumentException( + 'Parameter `configuration` must contains a data & configuration `code` must be set' + ); + } + + return $this->client->makeRequest( + sprintf('/delivery/generic/setting/%s/edit', $configuration['code']), + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($configuration)) + ); + } + + /** + * Delivery tracking update + * + * @param string $code + * @param array $statusUpdate + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function deliveryTracking($code, array $statusUpdate) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + if (!count($statusUpdate)) { + throw new \InvalidArgumentException( + 'Parameter `statusUpdate` must contains a data' + ); + } + + return $this->client->makeRequest( + sprintf('/delivery/generic/%s/tracking', $code), + WC_Retailcrm_Request::METHOD_POST, + $statusUpdate + ); + } + + /** + * Returns available county list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function countriesList() + { + return $this->client->makeRequest( + '/reference/countries', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Returns deliveryServices list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryServicesList() + { + return $this->client->makeRequest( + '/reference/delivery-services', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit deliveryService + * + * @param array $data delivery service data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryServicesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/delivery-services/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('deliveryService' => json_encode($data)) + ); + } + + /** + * Returns deliveryTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryTypesList() + { + return $this->client->makeRequest( + '/reference/delivery-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit deliveryType + * + * @param array $data delivery type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function deliveryTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/delivery-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('deliveryType' => json_encode($data)) + ); + } + + /** + * Returns orderMethods list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderMethodsList() + { + return $this->client->makeRequest( + '/reference/order-methods', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit orderMethod + * + * @param array $data order method data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderMethodsEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/order-methods/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('orderMethod' => json_encode($data)) + ); + } + + /** + * Returns orderTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderTypesList() + { + return $this->client->makeRequest( + '/reference/order-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit orderType + * + * @param array $data order type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function orderTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/order-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('orderType' => json_encode($data)) + ); + } + + /** + * Returns paymentStatuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentStatusesList() + { + return $this->client->makeRequest( + '/reference/payment-statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit paymentStatus + * + * @param array $data payment status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentStatusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/payment-statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('paymentStatus' => json_encode($data)) + ); + } + + /** + * Returns paymentTypes list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentTypesList() + { + return $this->client->makeRequest( + '/reference/payment-types', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit paymentType + * + * @param array $data payment type data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function paymentTypesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/payment-types/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('paymentType' => json_encode($data)) + ); + } + + /** + * Returns productStatuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function productStatusesList() + { + return $this->client->makeRequest( + '/reference/product-statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit productStatus + * + * @param array $data product status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function productStatusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/product-statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('productStatus' => json_encode($data)) + ); + } + + /** + * Returns sites list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function sitesList() + { + return $this->client->makeRequest( + '/reference/sites', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit site + * + * @param array $data site data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function sitesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/sites/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('site' => json_encode($data)) + ); + } + + /** + * Returns statusGroups list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusGroupsList() + { + return $this->client->makeRequest( + '/reference/status-groups', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Returns statuses list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusesList() + { + return $this->client->makeRequest( + '/reference/statuses', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit order status + * + * @param array $data status data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statusesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/statuses/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('status' => json_encode($data)) + ); + } + + /** + * Returns stores list + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storesList() + { + return $this->client->makeRequest( + '/reference/stores', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit store + * + * @param array $data site data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function storesEdit(array $data) + { + if (!array_key_exists('code', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "code" parameter.' + ); + } + + if (!array_key_exists('name', $data)) { + throw new \InvalidArgumentException( + 'Data must contain "name" parameter.' + ); + } + + return $this->client->makeRequest( + sprintf('/reference/stores/%s/edit', $data['code']), + WC_Retailcrm_Request::METHOD_POST, + array('store' => json_encode($data)) + ); + } + + /** + * Get telephony settings + * + * @param string $code + * + * @throws WC_Retailcrm_Exception_Json + * @throws WC_Retailcrm_Exception_Curl + * @throws \InvalidArgumentException + * + * @return WC_Retailcrm_Response + */ + public function telephonySettingsGet($code) + { + if (empty($code)) { + throw new \InvalidArgumentException('Parameter `code` must be set'); + } + + return $this->client->makeRequest( + "/telephony/setting/$code", + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Edit telephony settings + * + * @param string $code symbolic code + * @param string $clientId client id + * @param boolean $active telephony activity + * @param mixed $name service name + * @param mixed $makeCallUrl service init url + * @param mixed $image service logo url(svg file) + * + * @param array $additionalCodes + * @param array $externalPhones + * @param bool $allowEdit + * @param bool $inputEventSupported + * @param bool $outputEventSupported + * @param bool $hangupEventSupported + * @param bool $changeUserStatusUrl + * + * @return WC_Retailcrm_Response + */ + public function telephonySettingsEdit( + $code, + $clientId, + $active = false, + $name = false, + $makeCallUrl = false, + $image = false, + $additionalCodes = array(), + $externalPhones = array(), + $allowEdit = false, + $inputEventSupported = false, + $outputEventSupported = false, + $hangupEventSupported = false, + $changeUserStatusUrl = false + ) + { + if (!isset($code)) { + throw new \InvalidArgumentException('Code must be set'); + } + + $parameters['code'] = $code; + + if (!isset($clientId)) { + throw new \InvalidArgumentException('client id must be set'); + } + + $parameters['clientId'] = $clientId; + + if (!isset($active)) { + $parameters['active'] = false; + } else { + $parameters['active'] = $active; + } + + if (!isset($name)) { + throw new \InvalidArgumentException('name must be set'); + } + + if (isset($name)) { + $parameters['name'] = $name; + } + + if (isset($makeCallUrl)) { + $parameters['makeCallUrl'] = $makeCallUrl; + } + + if (isset($image)) { + $parameters['image'] = $image; + } + + if (isset($additionalCodes)) { + $parameters['additionalCodes'] = $additionalCodes; + } + + if (isset($externalPhones)) { + $parameters['externalPhones'] = $externalPhones; + } + + if (isset($allowEdit)) { + $parameters['allowEdit'] = $allowEdit; + } + + if (isset($inputEventSupported)) { + $parameters['inputEventSupported'] = $inputEventSupported; + } + + if (isset($outputEventSupported)) { + $parameters['outputEventSupported'] = $outputEventSupported; + } + + if (isset($hangupEventSupported)) { + $parameters['hangupEventSupported'] = $hangupEventSupported; + } + + if (isset($changeUserStatusUrl)) { + $parameters['changeUserStatusUrl'] = $changeUserStatusUrl; + } + + return $this->client->makeRequest( + "/telephony/setting/$code/edit", + WC_Retailcrm_Request::METHOD_POST, + array('configuration' => json_encode($parameters)) + ); + } + + /** + * Call event + * + * @param string $phone phone number + * @param string $type call type + * @param array $codes + * @param string $hangupStatus + * @param string $externalPhone + * @param array $webAnalyticsData + * + * @return WC_Retailcrm_Response + * @internal param string $code additional phone code + * @internal param string $status call status + * + */ + public function telephonyCallEvent( + $phone, + $type, + $codes, + $hangupStatus, + $externalPhone = null, + $webAnalyticsData = array() + ) + { + if (!isset($phone)) { + throw new \InvalidArgumentException('Phone number must be set'); + } + + if (!isset($type)) { + throw new \InvalidArgumentException('Type must be set (in|out|hangup)'); + } + + if (empty($codes)) { + throw new \InvalidArgumentException('Codes array must be set'); + } + + $parameters['phone'] = $phone; + $parameters['type'] = $type; + $parameters['codes'] = $codes; + $parameters['hangupStatus'] = $hangupStatus; + $parameters['callExternalId'] = $externalPhone; + $parameters['webAnalyticsData'] = $webAnalyticsData; + + + return $this->client->makeRequest( + '/telephony/call/event', + WC_Retailcrm_Request::METHOD_POST, + array('event' => json_encode($parameters)) + ); + } + + /** + * Upload calls + * + * @param array $calls calls data + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function telephonyCallsUpload(array $calls) + { + if (!count($calls)) { + throw new \InvalidArgumentException( + 'Parameter `calls` must contains array of the calls' + ); + } + + return $this->client->makeRequest( + '/telephony/calls/upload', + WC_Retailcrm_Request::METHOD_POST, + array('calls' => json_encode($calls)) + ); + } + + /** + * Get call manager + * + * @param string $phone phone number + * @param bool $details detailed information + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function telephonyCallManager($phone, $details) + { + if (!isset($phone)) { + throw new \InvalidArgumentException('Phone number must be set'); + } + + $parameters['phone'] = $phone; + $parameters['details'] = isset($details) ? $details : 0; + + return $this->client->makeRequest( + '/telephony/manager', + WC_Retailcrm_Request::METHOD_GET, + $parameters + ); + } + + /** + * Update CRM basic statistic + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * @throws WC_Retailcrm_Exception_Json + * + * @return WC_Retailcrm_Response + */ + public function statisticUpdate() + { + return $this->client->makeRequest( + '/statistic/update', + WC_Retailcrm_Request::METHOD_GET + ); + } + + /** + * Return current site + * + * @return string + */ + public function getSite() + { + return $this->siteCode; + } + + /** + * Set site + * + * @param string $site site code + * + * @return void + */ + public function setSite($site) + { + $this->siteCode = $site; + } + + /** + * Check ID parameter + * + * @param string $by identify by + * + * @throws \InvalidArgumentException + * + * @return bool + */ + protected function checkIdParameter($by) + { + $allowedForBy = array( + 'externalId', + 'id' + ); + + if (!in_array($by, $allowedForBy, false)) { + throw new \InvalidArgumentException( + sprintf( + 'Value "%s" for "by" param is not valid. Allowed values are %s.', + $by, + implode(', ', $allowedForBy) + ) + ); + } + + return true; + } + + /** + * Fill params by site value + * + * @param string $site site code + * @param array $params input parameters + * + * @return array + */ + protected function fillSite($site, array $params) + { + if ($site) { + $params['site'] = $site; + } elseif ($this->siteCode) { + $params['site'] = $this->siteCode; + } + + return $params; + } +} diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-exception-curl.php b/woo-retailcrm/include/api/class-wc-retailcrm-exception-curl.php index 9d741e1..177cd3b 100644 --- a/woo-retailcrm/include/api/class-wc-retailcrm-exception-curl.php +++ b/woo-retailcrm/include/api/class-wc-retailcrm-exception-curl.php @@ -1,16 +1,16 @@ - * @license https://opensource.org/licenses/MIT MIT License - * @link http://retailcrm.ru/docs/Developers/ApiVersion4 - */ - class WC_Retailcrm_Exception_Curl extends \RuntimeException - { - } +/** + * PHP version 5.3 + * + * WC_Retailcrm_Exception_Curl class + * + * @category RetailCRM + * @package WC_Retailcrm_Exception_Curl + * @author RetailCRM + * @license https://opensource.org/licenses/MIT MIT License + * @link http://retailcrm.ru/docs/Developers/ApiVersion4 + */ +class WC_Retailcrm_Exception_Curl extends \RuntimeException +{ +} diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-exception-json.php b/woo-retailcrm/include/api/class-wc-retailcrm-exception-json.php index 9f8f16c..403adf2 100644 --- a/woo-retailcrm/include/api/class-wc-retailcrm-exception-json.php +++ b/woo-retailcrm/include/api/class-wc-retailcrm-exception-json.php @@ -1,16 +1,16 @@ - * @license https://opensource.org/licenses/MIT MIT License - */ +/** + * PHP version 5.3 + * + * WC_Retailcrm_Exception_Json class + * + * @category RetailCRM + * @package WC_Retailcrm_Exception_Json + * @author RetailCRM + * @license https://opensource.org/licenses/MIT MIT License + */ - class WC_Retailcrm_Exception_Json extends \DomainException - { - } +class WC_Retailcrm_Exception_Json extends \DomainException +{ +} diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php b/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php index 48ec0e9..6be9439 100644 --- a/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php +++ b/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php @@ -21,10 +21,6 @@ if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) : { $this->logger = new WC_Logger(); - if ( ! class_exists( 'WC_Retailcrm_Client_V3' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-client-v3.php' ); - } - if ( ! class_exists( 'WC_Retailcrm_Client_V4' ) ) { include_once( __DIR__ . '/class-wc-retailcrm-client-v4.php' ); } @@ -34,9 +30,6 @@ if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) : } switch ($api_vers) { - case 'v3': - $this->retailcrm = new WC_Retailcrm_Client_V3($api_url, $api_key, $api_vers); - break; case 'v4': $this->retailcrm = new WC_Retailcrm_Client_V4($api_url, $api_key, $api_vers); break; @@ -44,7 +37,7 @@ if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) : $this->retailcrm = new WC_Retailcrm_Client_V5($api_url, $api_key, $api_vers); break; case null: - $this->retailcrm = new WC_Retailcrm_Client_V3($api_url, $api_key, $api_vers); + $this->retailcrm = new WC_Retailcrm_Client_V4($api_url, $api_key, $api_vers); break; } } diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-request.php b/woo-retailcrm/include/api/class-wc-retailcrm-request.php index 53ce65c..a70420c 100644 --- a/woo-retailcrm/include/api/class-wc-retailcrm-request.php +++ b/woo-retailcrm/include/api/class-wc-retailcrm-request.php @@ -1,117 +1,116 @@ - * @license https://opensource.org/licenses/MIT MIT License - */ +/** + * PHP version 5.3 + * + * Request class + * + * @category Integration + * @package WC_Retailcrm_Request + * @author RetailCRM + * @license https://opensource.org/licenses/MIT MIT License + */ - if ( ! class_exists( 'WC_Retailcrm_Exception_Curl' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-exception-curl.php' ); - } +if ( ! class_exists( 'WC_Retailcrm_Exception_Curl' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-exception-curl.php' ); +} - if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); - } +if ( ! class_exists( 'WC_Retailcrm_Response' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-response.php' ); +} - class WC_Retailcrm_Request - { - const METHOD_GET = 'GET'; - const METHOD_POST = 'POST'; +class WC_Retailcrm_Request +{ + const METHOD_GET = 'GET'; + const METHOD_POST = 'POST'; - protected $url; - protected $defaultParameters; + protected $url; + protected $defaultParameters; - /** - * Client constructor. - * - * @param string $url api url - * @param array $defaultParameters array of parameters - * - * @throws \InvalidArgumentException - */ - public function __construct($url, array $defaultParameters = array()) - { - if (false === stripos($url, 'https://')) { - throw new \InvalidArgumentException( - 'API schema requires HTTPS protocol' - ); - } + /** + * Client constructor. + * + * @param string $url api url + * @param array $defaultParameters array of parameters + * + * @throws \InvalidArgumentException + */ + public function __construct($url, array $defaultParameters = array()) + { + if (false === stripos($url, 'https://')) { + throw new \InvalidArgumentException( + 'API schema requires HTTPS protocol' + ); + } - $this->url = $url; - $this->defaultParameters = $defaultParameters; - } + $this->url = $url; + $this->defaultParameters = $defaultParameters; + } - /** - * Make HTTP request - * - * @param string $path request url - * @param string $method (default: 'GET') - * @param array $parameters (default: array()) - * - * @SuppressWarnings(PHPMD.ExcessiveParameterList) - * - * @throws \InvalidArgumentException - * @throws WC_Retailcrm_Exception_Curl - * - * @return WC_Retailcrm_Response - */ - public function makeRequest( - $path, - $method, - array $parameters = array() - ) { - $allowedMethods = array(self::METHOD_GET, self::METHOD_POST); + /** + * Make HTTP request + * + * @param string $path request url + * @param string $method (default: 'GET') + * @param array $parameters (default: array()) + * + * @SuppressWarnings(PHPMD.ExcessiveParameterList) + * + * @throws \InvalidArgumentException + * @throws WC_Retailcrm_Exception_Curl + * + * @return WC_Retailcrm_Response + */ + public function makeRequest( + $path, + $method, + array $parameters = array() + ) { + $allowedMethods = array(self::METHOD_GET, self::METHOD_POST); - if (!in_array($method, $allowedMethods, false)) { - throw new \InvalidArgumentException( - sprintf( - 'Method "%s" is not valid. Allowed methods are %s', - $method, - implode(', ', $allowedMethods) - ) - ); - } + if (!in_array($method, $allowedMethods, false)) { + throw new \InvalidArgumentException( + sprintf( + 'Method "%s" is not valid. Allowed methods are %s', + $method, + implode(', ', $allowedMethods) + ) + ); + } - $parameters = array_merge($this->defaultParameters, $parameters); + $parameters = array_merge($this->defaultParameters, $parameters); - $url = $this->url . $path; + $url = $this->url . $path; - if (self::METHOD_GET === $method && count($parameters)) { - $url .= '?' . http_build_query($parameters, '', '&'); - } + if (self::METHOD_GET === $method && count($parameters)) { + $url .= '?' . http_build_query($parameters, '', '&'); + } - $curlHandler = curl_init(); - curl_setopt($curlHandler, CURLOPT_URL, $url); - curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($curlHandler, CURLOPT_FOLLOWLOCATION, 1); - curl_setopt($curlHandler, CURLOPT_FAILONERROR, false); - curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, false); - curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, false); - curl_setopt($curlHandler, CURLOPT_TIMEOUT, 30); - curl_setopt($curlHandler, CURLOPT_CONNECTTIMEOUT, 30); + $curlHandler = curl_init(); + curl_setopt($curlHandler, CURLOPT_URL, $url); + curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curlHandler, CURLOPT_FAILONERROR, false); + curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, false); + curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, false); + curl_setopt($curlHandler, CURLOPT_TIMEOUT, 30); + curl_setopt($curlHandler, CURLOPT_CONNECTTIMEOUT, 30); - if (self::METHOD_POST === $method) { - curl_setopt($curlHandler, CURLOPT_POST, true); - curl_setopt($curlHandler, CURLOPT_POSTFIELDS, $parameters); - } + if (self::METHOD_POST === $method) { + curl_setopt($curlHandler, CURLOPT_POST, true); + curl_setopt($curlHandler, CURLOPT_POSTFIELDS, $parameters); + } - $responseBody = curl_exec($curlHandler); - $statusCode = curl_getinfo($curlHandler, CURLINFO_HTTP_CODE); - $errno = curl_errno($curlHandler); - $error = curl_error($curlHandler); + $responseBody = curl_exec($curlHandler); + $statusCode = curl_getinfo($curlHandler, CURLINFO_HTTP_CODE); + $errno = curl_errno($curlHandler); + $error = curl_error($curlHandler); - curl_close($curlHandler); + curl_close($curlHandler); - if ($errno) { - throw new WC_Retailcrm_Exception_Curl($error, $errno); - } + if ($errno) { + throw new WC_Retailcrm_Exception_Curl($error, $errno); + } - return new WC_Retailcrm_Response($statusCode, $responseBody); - } - } + return new WC_Retailcrm_Response($statusCode, $responseBody); + } +} diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-response.php b/woo-retailcrm/include/api/class-wc-retailcrm-response.php index 3372e48..e9e8ed9 100644 --- a/woo-retailcrm/include/api/class-wc-retailcrm-response.php +++ b/woo-retailcrm/include/api/class-wc-retailcrm-response.php @@ -1,169 +1,169 @@ - * @license https://opensource.org/licenses/MIT MIT License - */ +/** + * PHP version 5.3 + * + * Response class + * + * @category Integration + * @package WC_Retailcrm_Response + * @author RetailCRM + * @license https://opensource.org/licenses/MIT MIT License + */ - if ( ! class_exists( 'WC_Retailcrm_Exception_Json' ) ) { - include_once( __DIR__ . '/class-wc-retailcrm-exception-json.php' ); - } +if ( ! class_exists( 'WC_Retailcrm_Exception_Json' ) ) { + include_once( __DIR__ . '/class-wc-retailcrm-exception-json.php' ); +} - class WC_Retailcrm_Response implements \ArrayAccess - { - // HTTP response status code - protected $statusCode; +class WC_Retailcrm_Response implements \ArrayAccess +{ + // HTTP response status code + protected $statusCode; - // response assoc array - protected $response; + // response assoc array + protected $response; - /** - * ApiResponse constructor. - * - * @param int $statusCode HTTP status code - * @param mixed $responseBody HTTP body - * - * @throws WC_Retailcrm_Exception_Json - */ - public function __construct($statusCode, $responseBody = null) - { - $this->statusCode = (int) $statusCode; + /** + * ApiResponse constructor. + * + * @param int $statusCode HTTP status code + * @param mixed $responseBody HTTP body + * + * @throws WC_Retailcrm_Exception_Json + */ + public function __construct($statusCode, $responseBody = null) + { + $this->statusCode = (int) $statusCode; - if (!empty($responseBody)) { - $response = json_decode($responseBody, true); + if (!empty($responseBody)) { + $response = json_decode($responseBody, true); - if (!$response && JSON_ERROR_NONE !== ($error = json_last_error())) { - throw new WC_Retailcrm_Exception_Json( - "Invalid JSON in the API response body. Error code #$error", - $error - ); - } + if (!$response && JSON_ERROR_NONE !== ($error = json_last_error())) { + throw new WC_Retailcrm_Exception_Json( + "Invalid JSON in the API response body. Error code #$error", + $error + ); + } - $this->response = $response; - } - } + $this->response = $response; + } + } - /** - * Return HTTP response status code - * - * @return int - */ - public function getStatusCode() - { - return $this->statusCode; - } + /** + * Return HTTP response status code + * + * @return int + */ + public function getStatusCode() + { + return $this->statusCode; + } - /** - * HTTP request was successful - * - * @return bool - */ - public function isSuccessful() - { - return $this->statusCode < 400; - } + /** + * HTTP request was successful + * + * @return bool + */ + public function isSuccessful() + { + return $this->statusCode < 400; + } - /** - * Allow to access for the property throw class method - * - * @param string $name method name - * @param mixed $arguments method parameters - * - * @throws \InvalidArgumentException - * - * @return mixed - */ - public function __call($name, $arguments) - { - // convert getSomeProperty to someProperty - $propertyName = strtolower(substr($name, 3, 1)) . substr($name, 4); + /** + * Allow to access for the property throw class method + * + * @param string $name method name + * @param mixed $arguments method parameters + * + * @throws \InvalidArgumentException + * + * @return mixed + */ + public function __call($name, $arguments) + { + // convert getSomeProperty to someProperty + $propertyName = strtolower(substr($name, 3, 1)) . substr($name, 4); - if (!isset($this->response[$propertyName])) { - throw new \InvalidArgumentException("Method \"$name\" not found"); - } + if (!isset($this->response[$propertyName])) { + throw new \InvalidArgumentException("Method \"$name\" not found"); + } - return $this->response[$propertyName]; - } + return $this->response[$propertyName]; + } - /** - * Allow to access for the property throw object property - * - * @param string $name property name - * - * @throws \InvalidArgumentException - * - * @return mixed - */ - public function __get($name) - { - if (!isset($this->response[$name])) { - throw new \InvalidArgumentException("Property \"$name\" not found"); - } + /** + * Allow to access for the property throw object property + * + * @param string $name property name + * + * @throws \InvalidArgumentException + * + * @return mixed + */ + public function __get($name) + { + if (!isset($this->response[$name])) { + throw new \InvalidArgumentException("Property \"$name\" not found"); + } - return $this->response[$name]; - } + return $this->response[$name]; + } - /** - * Offset set - * - * @param mixed $offset offset - * @param mixed $value value - * - * @throws \BadMethodCallException - * @return void - */ - public function offsetSet($offset, $value) - { - throw new \BadMethodCallException('This activity not allowed'); - } + /** + * Offset set + * + * @param mixed $offset offset + * @param mixed $value value + * + * @throws \BadMethodCallException + * @return void + */ + public function offsetSet($offset, $value) + { + throw new \BadMethodCallException('This activity not allowed'); + } - /** - * Offset unset - * - * @param mixed $offset offset - * - * @throws \BadMethodCallException - * @return void - */ - public function offsetUnset($offset) - { - throw new \BadMethodCallException('This call not allowed'); - } + /** + * Offset unset + * + * @param mixed $offset offset + * + * @throws \BadMethodCallException + * @return void + */ + public function offsetUnset($offset) + { + throw new \BadMethodCallException('This call not allowed'); + } - /** - * Check offset - * - * @param mixed $offset offset - * - * @return bool - */ - public function offsetExists($offset) - { - return isset($this->response[$offset]); - } + /** + * Check offset + * + * @param mixed $offset offset + * + * @return bool + */ + public function offsetExists($offset) + { + return isset($this->response[$offset]); + } - /** - * Get offset - * - * @param mixed $offset offset - * - * @throws \InvalidArgumentException - * - * @return mixed - */ - public function offsetGet($offset) - { - if (!isset($this->response[$offset])) { - throw new \InvalidArgumentException("Property \"$offset\" not found"); - } + /** + * Get offset + * + * @param mixed $offset offset + * + * @throws \InvalidArgumentException + * + * @return mixed + */ + public function offsetGet($offset) + { + if (!isset($this->response[$offset])) { + throw new \InvalidArgumentException("Property \"$offset\" not found"); + } - return $this->response[$offset]; - } - } + return $this->response[$offset]; + } +} diff --git a/woo-retailcrm/include/class-wc-retailcrm-base.php b/woo-retailcrm/include/class-wc-retailcrm-base.php index 91f951f..d43a1dd 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-base.php +++ b/woo-retailcrm/include/class-wc-retailcrm-base.php @@ -311,8 +311,8 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : public function validate_api_version_field( $key, $value ) { $post = $this->get_post_data(); + $versionMap = array( - 'v3' => '3.0', 'v4' => '4.0', 'v5' => '5.0' ); diff --git a/woo-retailcrm/include/class-wc-retailcrm-history.php b/woo-retailcrm/include/class-wc-retailcrm-history.php index ddd2519..64b879a 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-history.php +++ b/woo-retailcrm/include/class-wc-retailcrm-history.php @@ -143,295 +143,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $this->removeFuncsHook(); try { - if ($record['field'] == 'status' && !empty($record['newValue']) && !empty($record['oldValue'])) { - $newStatus = $record['newValue']['code']; - if (!empty($options[$newStatus]) && !empty($record['order']['externalId'])) { - $order = new WC_Order($record['order']['externalId']); - $order->update_status($options[$newStatus]); - } - } - - elseif($record['field'] == 'order_product' && $record['newValue']) { - $product = wc_get_product($record['item']['offer']['externalId']); - $order = new WC_Order($record['order']['externalId']); - $order->add_product($product, $record['item']['quantity']); - - $this->update_total($order); - } - - elseif($record['field'] == 'order_product.quantity' && $record['newValue']) { - - $order = new WC_Order($record['order']['externalId']); - $product = wc_get_product($record['item']['offer']['externalId']); - $items = $order->get_items(); - - foreach ($items as $order_item_id => $item) { - if ($item['variation_id'] != 0 ) { - $offer_id = $item['variation_id']; - } else { - $offer_id = $item['product_id']; - } - if ($offer_id == $record['item']['offer']['externalId']) { - wc_delete_order_item($order_item_id); - $order->add_product($product, $record['newValue']); - $this->update_total($order); - } - } - } - - elseif ($record['field'] == 'order_product' && !$record['newValue']) { - $order = new WC_Order($record['order']['externalId']); - $items = $order->get_items(); - - foreach ($items as $order_item_id => $item) { - if ($item['variation_id'] != 0 ) { - $offer_id = $item['variation_id']; - } else { - $offer_id = $item['product_id']; - } - if ($offer_id == $record['item']['offer']['externalId']) { - wc_delete_order_item($order_item_id); - $this->update_total($order); - } - } - } - - elseif ($record['field'] == 'delivery_type') { - $newValue = $record['newValue']['code']; - - if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { - if (isset($options[$newValue])) { - $order = new WC_Order($record['order']['externalId']); - $items = $order->get_items('shipping'); - $item_id = $this->getShippingItemId($items); - $crmOrder = $this->retailcrm->ordersGet($record['order']['externalId']); - $shipping_methods = get_wc_shipping_methods(true); - - if (isset($shipping_methods[$options[$newValue]])) { - $method_id = $options[$newValue]; - } else { - $method_id = explode(':', $options[$newValue]); - $method_id = $method_id[0]; - $shipping_method = $shipping_methods[$method_id]['shipping_methods'][$options[$newValue]]; - } - - if ( is_object($crmOrder)) { - if ($crmOrder->isSuccessful()) { - $deliveryCost = isset($crmOrder['order']['delivery']['cost']) ? $crmOrder['order']['delivery']['cost'] : 0; - } - } - - $args = array( - 'method_id' => $options[$newValue], - 'method_title' => isset($shipping_method) ? $shipping_method['title'] : $shipping_methods[$options[$newValue]]['name'], - 'total' => $deliveryCost - ); - - $item = $order->get_item((int)$item_id); - $item->set_order_id((int)$order->get_id()); - $item->set_props($args); - $item->save(); - } - - $updateOrder = new WC_Order((int)$order->get_id()); - $this->update_total($updateOrder); - } - } - - elseif ($record['field'] == 'delivery_address.region') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_state($record['newValue']); - } - - elseif ($record['field'] == 'delivery_address.city') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_city($record['newValue']); - } - - elseif ($record['field'] == 'delivery_address.street') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_address_1($record['newValue']); - } - - elseif ($record['field'] == 'delivery_address.building') { - $order = new WC_Order($record['order']['externalId']); - $order->set_shipping_address_2($record['newValue']); - } - - elseif ($record['field'] == 'payment_type') { - $order = new WC_Order($record['order']['externalId']); - $newValue = $record['newValue']['code']; - if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { - $payment = new WC_Payment_Gateways(); - $payment_types = $payment->get_available_payment_gateways(); - if (isset($payment_types[$options[$newValue]])) { - update_post_meta($order->get_id(), '_payment_method', $payment->id); - } - } - } - - elseif ($record['field'] == 'payments') { - $response = $this->retailcrm->ordersGet($record['order']['externalId']); - - if ($response->isSuccessful()) { - $order_data = $response['order']; - $order = new WC_Order($record['order']['externalId']); - $payment = new WC_Payment_Gateways(); - $payment_types = $payment->get_available_payment_gateways(); - - if (count($order_data['payments']) == 1) { - $paymentType = end($order_data['payments']); - if (isset($payment_types[$options[$paymentType['type']]])) { - $payment = $payment_types[$options[$paymentType['type']]]; - update_post_meta($order->get_id(), '_payment_method', $payment->id); - } - } else { - foreach ($order_data['payments'] as $payment_data) { - if (isset($payment_data['externalId'])) { - $paymentType = $payment_data; - } - } - - if (!isset($paymentType)) { - $paymentType = $order_data['payments'][0]; - } - - if (isset($payment_types[$options[$paymentType['type']]])) { - update_post_meta($order->get_id(), '_payment_method', $payment->id); - } - } - } - } - - elseif (isset($record['created']) && - $record['created'] == 1 && - !isset($record['order']['externalId'])) { - - $args = array( - 'status' => $options[$record['order']['status']], - 'customer_id' => isset($record['order']['customer']['externalId']) ? - $record['order']['customer']['externalId'] : - null - ); - - $order_record = $record['order']; - $order_data = wc_create_order($args); - $order = new WC_Order($order_data->id); - - $address_shipping = array( - 'first_name' => $order_record['firstName'], - 'last_name' => isset($order_record['lastName']) ? $order_record['lastName'] : '', - 'company' => '', - 'email' => isset($order_record['email']) ? $order_record['email'] : '', - 'phone' => isset($order_record['phone']) ? $order_record['phone'] : '', - 'address_1' => isset($order_record['delivery']['address']['text']) ? $order_record['delivery']['address']['text'] : '', - 'address_2' => '', - 'city' => isset($order_record['delivery']['address']['city']) ? $order_record['delivery']['address']['city'] : '', - 'state' => isset($order_record['delivery']['address']['region']) ? $order_record['delivery']['address']['region'] : '', - 'postcode' => isset($order_record['delivery']['address']['postcode']) ? $order_record['delivery']['address']['postcode'] : '', - 'country' => $order_record['delivery']['address']['countryIso'] - ); - $address_billing = array( - 'first_name' => $order_record['customer']['firstName'], - 'last_name' => isset($order_record['customer']['lastName']) ? $order_record['customer']['lastName'] : '', - 'company' => '', - 'email' => isset($order_record['customer']['email']) ? $order_record['customer']['email'] : '', - 'phone' => isset($order_record['customer'][0]['number']) ? $order_record['customer'][0]['number'] : '', - 'address_1' => isset($order_record['customer']['address']['text']) ? $order_record['customer']['address']['text'] : '', - 'address_2' => '', - 'city' => isset($order_record['customer']['address']['city']) ? $order_record['customer']['address']['city'] : '', - 'state' => isset($order_record['customer']['address']['region']) ? $order_record['customer']['address']['region'] : '', - 'postcode' => isset($order_record['customer']['address']['postcode']) ? $order_record['customer']['address']['postcode'] : '', - 'country' => $order_record['customer']['address']['countryIso'] - ); - - if ($this->retailcrm_settings['api_version'] == 'v5') { - if ($order_record['payments']) { - $payment = new WC_Payment_Gateways(); - - if (count($order_record['payments']) == 1) { - $payment_types = $payment->get_available_payment_gateways(); - $paymentType = end($order_record['payments']); - - if (isset($payment_types[$options[$paymentType['type']]])) { - $order->set_payment_method($payment_types[$options[$paymentType['type']]]); - } - } - } - } else { - if ($order_record['paymentType']) { - $payment = new WC_Payment_Gateways(); - $payment_types = $payment->get_available_payment_gateways(); - if (isset($payment_types[$options[$order_record['paymentType']]])) { - $order->set_payment_method($payment_types[$options[$order_record['paymentType']]]); - } - } - } - - $order->set_address($address_billing, 'billing'); - $order->set_address($address_shipping, 'shipping'); - $product_data = isset($order_record['items']) ? $order_record['items'] : array(); - - if ($product_data) { - foreach ($product_data as $product) { - $order->add_product(wc_get_product($product['offer']['externalId']), $product['quantity']); - } - } - - if (array_key_exists('delivery', $order_record)) { - $deliveryCode = isset($order_record['delivery']['code']) ? $order_record['delivery']['code'] : false; - - if ($deliveryCode && isset($options[$deliveryCode])) { - $delivery = explode(':', $options[$deliveryCode]); - - if (isset($delivery[1])) { - $instance_id = $delivery[1]; - } - } - - if (isset($instance_id)) { - $wc_shipping = WC_Shipping_Zones::get_shipping_method($instance_id); - $shipping_method_title = $wc_shipping->method_title; - $shipping_method_id = $options[$deliveryCode]; - $shipping_total = $order_record['delivery']['cost']; - } else { - $wc_shipping = new WC_Shipping(); - $wc_shipping_types = $wc_shipping->get_shipping_methods(); - - foreach ($wc_shipping_types as $shipping_type) { - if ($shipping_type->id == $options[$deliveryCode]) { - $shipping_method_id = $shipping_type->id; - $shipping_method_title = $shipping_type->method_title; - $shipping_total = $order_record['delivery']['cost']; - } - } - } - - if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { - $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); - $order->add_shipping($shipping_rate); - } else { - $shipping = new WC_Order_Item_Shipping(); - $shipping->set_props( array( - 'method_title' => $shipping_method_title, - 'method_id' => $shipping_method_id, - 'total' => wc_format_decimal($shipping_total), - 'order_id' => $order->id - ) ); - $shipping->save(); - $order->add_item( $shipping ); - } - } - - $this->update_total($order); - - $ids[] = array( - 'id' => (int)$order_record['id'], - 'externalId' => (int)$order_data->id - ); - - $this->retailcrm->ordersFixExternalIds($ids); - } + $this->orderEdit($record, $options); } catch (Exception $exception) { $logger = new WC_Logger(); $logger->add('retailcrm', sprintf("[%s] - %s", $exception->getMessage(), 'Exception in file - ' . $exception->getFile() . ' on line ' . $exception->getLine())); @@ -497,6 +209,298 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } + protected function orderEdit($record, $options) + { + if ($record['field'] == 'status' && !empty($record['newValue']) && !empty($record['oldValue'])) { + $newStatus = $record['newValue']['code']; + if (!empty($options[$newStatus]) && !empty($record['order']['externalId'])) { + $order = new WC_Order($record['order']['externalId']); + $order->update_status($options[$newStatus]); + } + } + + elseif($record['field'] == 'order_product' && $record['newValue']) { + $product = wc_get_product($record['item']['offer']['externalId']); + $order = new WC_Order($record['order']['externalId']); + $order->add_product($product, $record['item']['quantity']); + + $this->update_total($order); + } + + elseif($record['field'] == 'order_product.quantity' && $record['newValue']) { + $order = new WC_Order($record['order']['externalId']); + $product = wc_get_product($record['item']['offer']['externalId']); + $items = $order->get_items(); + + foreach ($items as $order_item_id => $item) { + if ($item['variation_id'] != 0 ) { + $offer_id = $item['variation_id']; + } else { + $offer_id = $item['product_id']; + } + if ($offer_id == $record['item']['offer']['externalId']) { + wc_delete_order_item($order_item_id); + $order->add_product($product, $record['newValue']); + $this->update_total($order); + } + } + } + + elseif ($record['field'] == 'order_product' && !$record['newValue']) { + $order = new WC_Order($record['order']['externalId']); + $items = $order->get_items(); + + foreach ($items as $order_item_id => $item) { + if ($item['variation_id'] != 0 ) { + $offer_id = $item['variation_id']; + } else { + $offer_id = $item['product_id']; + } + if ($offer_id == $record['item']['offer']['externalId']) { + wc_delete_order_item($order_item_id); + $this->update_total($order); + } + } + } + + elseif ($record['field'] == 'delivery_type') { + $newValue = $record['newValue']['code']; + + if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { + if (isset($options[$newValue])) { + $order = new WC_Order($record['order']['externalId']); + $items = $order->get_items('shipping'); + $item_id = $this->getShippingItemId($items); + $crmOrder = $this->retailcrm->ordersGet($record['order']['externalId']); + $shipping_methods = get_wc_shipping_methods(true); + + if (isset($shipping_methods[$options[$newValue]])) { + $method_id = $options[$newValue]; + } else { + $method_id = explode(':', $options[$newValue]); + $method_id = $method_id[0]; + $shipping_method = $shipping_methods[$method_id]['shipping_methods'][$options[$newValue]]; + } + + if ( is_object($crmOrder)) { + if ($crmOrder->isSuccessful()) { + $deliveryCost = isset($crmOrder['order']['delivery']['cost']) ? $crmOrder['order']['delivery']['cost'] : 0; + } + } + + $args = array( + 'method_id' => $options[$newValue], + 'method_title' => isset($shipping_method) ? $shipping_method['title'] : $shipping_methods[$options[$newValue]]['name'], + 'total' => $deliveryCost + ); + + $item = $order->get_item((int)$item_id); + $item->set_order_id((int)$order->get_id()); + $item->set_props($args); + $item->save(); + } + + $updateOrder = new WC_Order((int)$order->get_id()); + $this->update_total($updateOrder); + } + } + + elseif ($record['field'] == 'delivery_address.region') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_state($record['newValue']); + } + + elseif ($record['field'] == 'delivery_address.city') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_city($record['newValue']); + } + + elseif ($record['field'] == 'delivery_address.street') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_address_1($record['newValue']); + } + + elseif ($record['field'] == 'delivery_address.building') { + $order = new WC_Order($record['order']['externalId']); + $order->set_shipping_address_2($record['newValue']); + } + + elseif ($record['field'] == 'payment_type') { + $order = new WC_Order($record['order']['externalId']); + $newValue = $record['newValue']['code']; + if (!empty($options[$newValue]) && !empty($record['order']['externalId'])) { + $payment = new WC_Payment_Gateways(); + $payment_types = $payment->get_available_payment_gateways(); + if (isset($payment_types[$options[$newValue]])) { + update_post_meta($order->get_id(), '_payment_method', $payment->id); + } + } + } + + elseif ($record['field'] == 'payments') { + $response = $this->retailcrm->ordersGet($record['order']['externalId']); + + if ($response->isSuccessful()) { + $order_data = $response['order']; + $order = new WC_Order($record['order']['externalId']); + $payment = new WC_Payment_Gateways(); + $payment_types = $payment->get_available_payment_gateways(); + + if (count($order_data['payments']) == 1) { + $paymentType = end($order_data['payments']); + if (isset($payment_types[$options[$paymentType['type']]])) { + $payment = $payment_types[$options[$paymentType['type']]]; + update_post_meta($order->get_id(), '_payment_method', $payment->id); + } + } else { + foreach ($order_data['payments'] as $payment_data) { + if (isset($payment_data['externalId'])) { + $paymentType = $payment_data; + } + } + + if (!isset($paymentType)) { + $paymentType = $order_data['payments'][0]; + } + + if (isset($payment_types[$options[$paymentType['type']]])) { + update_post_meta($order->get_id(), '_payment_method', $payment->id); + } + } + } + } + + elseif (isset($record['created']) && + $record['created'] == 1 && + !isset($record['order']['externalId'])) { + + $args = array( + 'status' => $options[$record['order']['status']], + 'customer_id' => isset($record['order']['customer']['externalId']) ? + $record['order']['customer']['externalId'] : + null + ); + + $order_record = $record['order']; + $order_data = wc_create_order($args); + $order = new WC_Order($order_data->id); + + $address_shipping = array( + 'first_name' => $order_record['firstName'], + 'last_name' => isset($order_record['lastName']) ? $order_record['lastName'] : '', + 'company' => '', + 'email' => isset($order_record['email']) ? $order_record['email'] : '', + 'phone' => isset($order_record['phone']) ? $order_record['phone'] : '', + 'address_1' => isset($order_record['delivery']['address']['text']) ? $order_record['delivery']['address']['text'] : '', + 'address_2' => '', + 'city' => isset($order_record['delivery']['address']['city']) ? $order_record['delivery']['address']['city'] : '', + 'state' => isset($order_record['delivery']['address']['region']) ? $order_record['delivery']['address']['region'] : '', + 'postcode' => isset($order_record['delivery']['address']['postcode']) ? $order_record['delivery']['address']['postcode'] : '', + 'country' => $order_record['delivery']['address']['countryIso'] + ); + $address_billing = array( + 'first_name' => $order_record['customer']['firstName'], + 'last_name' => isset($order_record['customer']['lastName']) ? $order_record['customer']['lastName'] : '', + 'company' => '', + 'email' => isset($order_record['customer']['email']) ? $order_record['customer']['email'] : '', + 'phone' => isset($order_record['customer'][0]['number']) ? $order_record['customer'][0]['number'] : '', + 'address_1' => isset($order_record['customer']['address']['text']) ? $order_record['customer']['address']['text'] : '', + 'address_2' => '', + 'city' => isset($order_record['customer']['address']['city']) ? $order_record['customer']['address']['city'] : '', + 'state' => isset($order_record['customer']['address']['region']) ? $order_record['customer']['address']['region'] : '', + 'postcode' => isset($order_record['customer']['address']['postcode']) ? $order_record['customer']['address']['postcode'] : '', + 'country' => $order_record['customer']['address']['countryIso'] + ); + + if ($this->retailcrm_settings['api_version'] == 'v5') { + if ($order_record['payments']) { + $payment = new WC_Payment_Gateways(); + + if (count($order_record['payments']) == 1) { + $payment_types = $payment->get_available_payment_gateways(); + $paymentType = end($order_record['payments']); + + if (isset($payment_types[$options[$paymentType['type']]])) { + $order->set_payment_method($payment_types[$options[$paymentType['type']]]); + } + } + } + } else { + if ($order_record['paymentType']) { + $payment = new WC_Payment_Gateways(); + $payment_types = $payment->get_available_payment_gateways(); + if (isset($payment_types[$options[$order_record['paymentType']]])) { + $order->set_payment_method($payment_types[$options[$order_record['paymentType']]]); + } + } + } + + $order->set_address($address_billing, 'billing'); + $order->set_address($address_shipping, 'shipping'); + $product_data = isset($order_record['items']) ? $order_record['items'] : array(); + + if ($product_data) { + foreach ($product_data as $product) { + $order->add_product(wc_get_product($product['offer']['externalId']), $product['quantity']); + } + } + + if (array_key_exists('delivery', $order_record)) { + $deliveryCode = isset($order_record['delivery']['code']) ? $order_record['delivery']['code'] : false; + + if ($deliveryCode && isset($options[$deliveryCode])) { + $delivery = explode(':', $options[$deliveryCode]); + + if (isset($delivery[1])) { + $instance_id = $delivery[1]; + } + } + + if (isset($instance_id)) { + $wc_shipping = WC_Shipping_Zones::get_shipping_method($instance_id); + $shipping_method_title = $wc_shipping->method_title; + $shipping_method_id = $options[$deliveryCode]; + $shipping_total = $order_record['delivery']['cost']; + } else { + $wc_shipping = new WC_Shipping(); + $wc_shipping_types = $wc_shipping->get_shipping_methods(); + + foreach ($wc_shipping_types as $shipping_type) { + if ($shipping_type->id == $options[$deliveryCode]) { + $shipping_method_id = $shipping_type->id; + $shipping_method_title = $shipping_type->method_title; + $shipping_total = $order_record['delivery']['cost']; + } + } + } + + if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { + $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); + $order->add_shipping($shipping_rate); + } else { + $shipping = new WC_Order_Item_Shipping(); + $shipping->set_props( array( + 'method_title' => $shipping_method_title, + 'method_id' => $shipping_method_id, + 'total' => wc_format_decimal($shipping_total), + 'order_id' => $order->id + ) ); + $shipping->save(); + $order->add_item( $shipping ); + } + } + + $this->update_total($order); + + $ids[] = array( + 'id' => (int)$order_record['id'], + 'externalId' => (int)$order_data->id + ); + + $this->retailcrm->ordersFixExternalIds($ids); + } + } + protected function getShippingItemId($items) { if ($items) { diff --git a/woo-retailcrm/include/class-wc-retailcrm-orders.php b/woo-retailcrm/include/class-wc-retailcrm-orders.php index acf272a..e5b5e0b 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-orders.php +++ b/woo-retailcrm/include/class-wc-retailcrm-orders.php @@ -277,10 +277,11 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : * process to combine order data * * @param int $order_id - * + * @param boolean $update + * * @return array $order_data */ - public function processOrder($order_id) + public function processOrder($order_id, $update = false) { if ( !$order_id ){ return; @@ -303,8 +304,8 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $shipping = end($order->get_items( 'shipping' )); $shipping_code = explode(':', $shipping['method_id']); - if (isset($this->retailcrm_settings[$shipping])) { - $shipping_method = $shipping; + if (isset($this->retailcrm_settings[$shipping['method_id']])) { + $shipping_method = $shipping['method_id']; } else { $shipping_method = $shipping_code[0]; } @@ -369,7 +370,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : foreach ($order->get_items() as $item) { $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; $_product = wc_get_product($uid); - $price = wc_get_price_including_tax($_product); + $price = round($item['line_subtotal'] + $item['line_subtotal_tax'], 2); if ($_product) { $product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0; @@ -384,10 +385,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : 'quantity' => $item['qty'], ); - if ($this->retailcrm_settings['api_version'] == 'v5') { - $order_item['discountManualAmount'] = $discount_price; - } elseif ($this->retailcrm_settings['api_version'] == 'v4') { - $order_item['discount'] = $discount_price; + if ($this->retailcrm_settings['api_version'] == 'v5' && round($discount_price, 2)) { + $order_item['discountManualAmount'] = round($discount_price, 2); + } elseif ($this->retailcrm_settings['api_version'] == 'v4' && round($discount_price, 2)) { + $order_item['discount'] = round($discount_price, 2); } } @@ -419,12 +420,24 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $payment['paidAt'] = trim($pay_date->date('Y-m-d H:i:s')); } - $order_data['payments'][] = $payment; + if (!$update) { + $order_data['payments'][] = $payment; + } else { + $this->editPayment($payment); + } } return $order_data; } + /** + * Create payment in CRM + * + * @param WC_Order $order + * @param int $order_id + * + * @return void + */ protected function createPayment($order, $order_id) { $payment = array( @@ -452,16 +465,35 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $this->retailcrm->ordersPaymentCreate($payment); } + /** + * Edit payment in CRM + * + * @param array $payment + * + * @return void + */ + protected function editPayment($payment) + { + $this->retailcrm->ordersPaymentEdit($payment); + } + + /** + * Edit order in CRM + * + * @param int $order_id + * + * @return void + */ public function updateOrder($order_id) { - $order = $this->processOrder($order_id); + $order = $this->processOrder($order_id, true); $response = $this->retailcrm->ordersEdit($order); - $order = new WC_Order($order_id); + $orderWc = new WC_Order($order_id); if ($response->isSuccessful()) { - $this->orderUpdatePaymentType($order_id, $order->payment_method); + $this->orderUpdatePaymentType($order_id, $orderWc->payment_method); } } } diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index add5549..708659a 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ Date: Thu, 1 Feb 2018 15:07:16 +0300 Subject: [PATCH 29/75] Fix customers and orders upload (#46) * Fix export clients and orders * Edit version --- .../include/class-wc-retailcrm-customers.php | 30 +++++++------ .../include/class-wc-retailcrm-orders.php | 44 +++++++++---------- woo-retailcrm/retailcrm.php | 2 +- woo-retailcrm/uninstall.php | 2 +- 4 files changed, 38 insertions(+), 40 deletions(-) diff --git a/woo-retailcrm/include/class-wc-retailcrm-customers.php b/woo-retailcrm/include/class-wc-retailcrm-customers.php index bbbb508..819252f 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-customers.php +++ b/woo-retailcrm/include/class-wc-retailcrm-customers.php @@ -40,7 +40,9 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : $data_customers = array(); foreach ($users as $user) { - if ($user->roles[0] != 'customer') continue; + if (!in_array('customer', $user->roles)) { + continue; + } $customer = new WC_Customer($user->ID); $firstName = $customer->get_first_name(); @@ -50,11 +52,6 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : 'firstName' => $firstName ? $firstName : $customer->get_username(), 'lastName' => $customer->get_last_name(), 'email' => $user->data->user_email, - 'phones' => array( - array( - 'number' => $customer->get_billing_phone() - ) - ), 'address' => array( 'index' => $customer->get_billing_postcode(), 'countryIso' => $customer->get_billing_country(), @@ -64,6 +61,12 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : ) ); + if ($customer->get_billing_phone()) { + $data_customer['phones'][] = array( + 'number' => $customer->get_billing_phone() + ); + } + $data_customers[] = $data_customer; } @@ -86,7 +89,6 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : $customer = new WC_Customer($customer_id); if ($customer->get_role() == 'customer'){ - $data_customer = $this->processCustomer($customer); $this->retailcrm->customersCreate($data_customer); @@ -105,7 +107,6 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : $customer = new WC_Customer($customer_id); if ($customer->get_role() == 'customer'){ - $data_customer = $this->processCustomer($customer); $this->retailcrm->customersEdit($data_customer); @@ -125,15 +126,10 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : $firstName = $customer->get_first_name(); $data_customer = array( 'createdAt' => $createdAt->date('Y-m-d H:i:s'), - 'externalId' => $customer_id, + 'externalId' => $customer->get_id(), 'firstName' => $firstName ? $firstName : $customer->get_username(), 'lastName' => $customer->get_last_name(), 'email' => $customer->get_email(), - 'phones' => array( - array( - 'number' => $customer->get_billing_phone() - ) - ), 'address' => array( 'index' => $customer->get_billing_postcode(), 'countryIso' => $customer->get_billing_country(), @@ -143,6 +139,12 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) : ) ); + if ($customer->get_billing_phone()) { + $data_customer['phones'][] = array( + 'number' => $customer->get_billing_phone() + ); + } + return $data_customer; } } diff --git a/woo-retailcrm/include/class-wc-retailcrm-orders.php b/woo-retailcrm/include/class-wc-retailcrm-orders.php index e5b5e0b..d1603a0 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-orders.php +++ b/woo-retailcrm/include/class-wc-retailcrm-orders.php @@ -48,7 +48,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : foreach ($orders as $data_order) { $order_data = $this->processOrder($data_order->ID); - $order = new WC_Order($order_id); + $order = new WC_Order($data_order->ID); $customer = $order->get_user(); if ($customer != false) { @@ -89,13 +89,12 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : ); $this->retailcrm->customersCreate($customer_data); - } else { $order_data['customer']['externalId'] = $search['customer']['externalId']; } } - $res = $this->retailcrm->ordersCreate($order_data); + $this->retailcrm->ordersCreate($order_data); } /** @@ -106,7 +105,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : public function orderUpdateShippingAddress($order_id, $address) { $address['externalId'] = $order_id; - $response = $this->retailcrm->ordersEdit($address); + $this->retailcrm->ordersEdit($address); } /** @@ -122,7 +121,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : 'status' => $this->retailcrm_settings[$order->get_status()] ); - $response = $this->retailcrm->ordersEdit($order_data); + $this->retailcrm->ordersEdit($order_data); } /** @@ -238,7 +237,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $order_data['delivery']['cost'] = $shipping_cost; } - $response = $this->retailcrm->ordersEdit($order_data); + $this->retailcrm->ordersEdit($order_data); } /** @@ -369,27 +368,24 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : foreach ($order->get_items() as $item) { $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; - $_product = wc_get_product($uid); $price = round($item['line_subtotal'] + $item['line_subtotal_tax'], 2); - if ($_product) { - $product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0; - $product_tax = $item->get_total_tax() ? $item->get_total_tax() / $item->get_quantity() : 0; - $price_item = $product_price + $product_tax; - $discount_price = $price - $price_item; + $product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0; + $product_tax = $item->get_total_tax() ? $item->get_total_tax() / $item->get_quantity() : 0; + $price_item = $product_price + $product_tax; + $discount_price = $price - $price_item; - $order_item = array( - 'offer' => array('externalId' => $uid), - 'productName' => $item['name'], - 'initialPrice' => (float)$price, - 'quantity' => $item['qty'], - ); + $order_item = array( + 'offer' => array('externalId' => $uid), + 'productName' => $item['name'], + 'initialPrice' => (float)$price, + 'quantity' => $item['qty'], + ); - if ($this->retailcrm_settings['api_version'] == 'v5' && round($discount_price, 2)) { - $order_item['discountManualAmount'] = round($discount_price, 2); - } elseif ($this->retailcrm_settings['api_version'] == 'v4' && round($discount_price, 2)) { - $order_item['discount'] = round($discount_price, 2); - } + if ($this->retailcrm_settings['api_version'] == 'v5' && round($discount_price, 2)) { + $order_item['discountManualAmount'] = round($discount_price, 2); + } elseif ($this->retailcrm_settings['api_version'] == 'v4' && round($discount_price, 2)) { + $order_item['discount'] = round($discount_price, 2); } $order_items[] = $order_item; @@ -497,4 +493,4 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } } } -endif; \ No newline at end of file +endif; diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index 708659a..2c31628 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ Date: Fri, 2 Feb 2018 12:13:45 +0300 Subject: [PATCH 30/75] Fix discount (#48) --- woo-retailcrm/include/class-wc-retailcrm-orders.php | 2 +- woo-retailcrm/retailcrm.php | 2 +- woo-retailcrm/uninstall.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/woo-retailcrm/include/class-wc-retailcrm-orders.php b/woo-retailcrm/include/class-wc-retailcrm-orders.php index d1603a0..32660a4 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-orders.php +++ b/woo-retailcrm/include/class-wc-retailcrm-orders.php @@ -368,7 +368,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : foreach ($order->get_items() as $item) { $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; - $price = round($item['line_subtotal'] + $item['line_subtotal_tax'], 2); + $price = round(($item['line_subtotal'] / $item->get_quantity()) + ($item['line_subtotal_tax'] / $item->get_quantity()), 2); $product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0; $product_tax = $item->get_total_tax() ? $item->get_total_tax() / $item->get_quantity() : 0; diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index 2c31628..c2c88ac 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ Date: Mon, 19 Feb 2018 16:59:49 +0300 Subject: [PATCH 31/75] Since id, order methods in history, fix icml generate for php 7.2 (#50) --- CHANGELOG.md | 7 + .../include/class-wc-retailcrm-base.php | 133 +++++++++- .../include/class-wc-retailcrm-history.php | 227 +++++++++++++----- .../include/class-wc-retailcrm-icml.php | 34 ++- .../include/class-wc-retailcrm-orders.php | 15 +- woo-retailcrm/retailcrm.php | 2 +- woo-retailcrm/uninstall.php | 2 +- 7 files changed, 323 insertions(+), 97 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..10d458e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +## 2018-02-19 v.2.0.6 +* Исправлено возникновение Warning на PHP 7.2 при генерации каталога товаров +* Добавлена настройка выгрузки заказов из RetailCRM с определенными способами оформления +* Выгрузка изменений из RetailCRM осуществляется по sinceId + +## 2018-02-02 v.2.0.5 +* Исправлен неверный подсчет скидки на товары \ No newline at end of file diff --git a/woo-retailcrm/include/class-wc-retailcrm-base.php b/woo-retailcrm/include/class-wc-retailcrm-base.php index d43a1dd..95b00f3 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-base.php +++ b/woo-retailcrm/include/class-wc-retailcrm-base.php @@ -103,12 +103,47 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : if ($this->get_option( 'api_url' ) != '' && $this->get_option( 'api_key' ) != '') { if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' && isset($_GET['tab']) && $_GET['tab'] == 'integration') { + add_action('admin_print_footer_scripts', array($this, 'show_blocks'), 99); + $retailcrm = new WC_Retailcrm_Proxy( $this->get_option( 'api_url' ), $this->get_option( 'api_key' ), $this->get_option( 'api_version') ); + /** + * Order methods options + */ + $order_methods_option = array(); + $order_methods_list = $retailcrm->orderMethodsList(); + + if ($order_methods_list->isSuccessful()) { + foreach ($order_methods_list['orderMethods'] as $order_method) { + if ($order_method['active'] == false) { + continue; + } + + $order_methods_option[$order_method['code']] = $order_method['name']; + } + + $this->form_fields[] = array( + 'title' => __( 'Способы оформления заказа', 'woocommerce' ), + 'type' => 'heading', + 'description' => '', + 'id' => 'order_methods_options' + ); + + $this->form_fields['order_methods'] = array( + 'label' => __( ' ', 'textdomain' ), + 'title' => 'Способы оформления заказа, доступные для выгрузки из RetailCRM', + 'class' => '', + 'type' => 'multiselect', + 'description' => 'Выберите способы оформления для заказов, которые будут выгружаться из RetailCRM на сайт', + 'options' => $order_methods_option, + 'select_buttons' => true + ); + } + /** * Shipping options */ @@ -124,7 +159,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $this->form_fields[] = array( 'title' => __( 'Способы доставки', 'woocommerce' ), - 'type' => 'title', + 'type' => 'heading', 'description' => '', 'id' => 'shipping_options' ); @@ -159,7 +194,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $this->form_fields[] = array( 'title' => __( 'Способы оплаты', 'woocommerce' ), - 'type' => 'title', + 'type' => 'heading', 'description' => '', 'id' => 'payment_options' ); @@ -196,7 +231,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $this->form_fields[] = array( 'title' => __( 'Статусы', 'woocommerce' ), - 'type' => 'title', + 'type' => 'heading', 'description' => '', 'id' => 'statuses_options' ); @@ -219,7 +254,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : */ $this->form_fields[] = array( 'title' => __( 'Настройки выгрузки остатков', 'woocommerce' ), - 'type' => 'title', + 'type' => 'heading', 'description' => '', 'id' => 'invent_options' ); @@ -240,7 +275,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : if (!isset($options['uploads'])) { $this->form_fields[] = array( 'title' => __( 'Выгрузка клиентов и заказов', 'woocommerce' ), - 'type' => 'title', + 'type' => 'heading', 'description' => '', 'id' => 'upload_options' ); @@ -277,6 +312,14 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : } } + /** + * Generate html button + * + * @param string $key + * @param array $data + * + * @return string + */ public function generate_button_html( $key, $data ) { $field = $this->plugin_id . $this->id . '_' . $key; $defaults = array( @@ -309,6 +352,44 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : return ob_get_clean(); } + /** + * Generate html title block settings + * + * @param string $key + * @param array $data + * + * @return string + */ + public function generate_heading_html($key, $data) { + $field_key = $this->get_field_key( $key ); + $defaults = array( + 'title' => '', + 'class' => '', + ); + + $data = wp_parse_args( $data, $defaults ); + + ob_start(); + ?> + +

+ +

+ + + get_post_data(); @@ -334,6 +415,14 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : } } + /** + * Validate API url + * + * @param string $key + * @param string $value + * + * @return string + */ public function validate_api_url_field( $key, $value ) { $post = $this->get_post_data(); $api = new WC_Retailcrm_Proxy( @@ -350,7 +439,15 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : return $value; } - + + /** + * Validate API key + * + * @param string $key + * @param string $value + * + * @return string + */ public function validate_api_key_field( $key, $value ) { $post = $this->get_post_data(); $api = new WC_Retailcrm_Proxy( @@ -371,6 +468,30 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : return $value; } + + /** + * Scritp show|hide block settings + */ + function show_blocks() { + ?> + + retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); + if (isset($this->retailcrm_settings['order_methods'])) { + $this->order_methods = $this->retailcrm_settings['order_methods']; + unset($this->retailcrm_settings['order_methods']); + } + if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { include_once( WP_PLUGIN_DIR . '/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php' ); } @@ -37,78 +47,103 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $this->startDateCustomers = $this->startDate; } + /** + * Get history method + * + * @return void + */ public function getHistory() { - if (isset($this->retailcrm_settings['history_orders'])) { + $orders_since_id = get_option('retailcrm_orders_history_since_id'); + $customers_since_id = get_option('retailcrm_customers_history_since_id'); + + if (!$orders_since_id && isset($this->retailcrm_settings['history_orders'])) { $this->startDateOrders = new DateTime($this->retailcrm_settings['history_orders']); } - if (isset($this->retailcrm_settings['history_customers'])) { + if (!$customers_since_id && isset($this->retailcrm_settings['history_customers'])) { $this->startDateCustomers = new DateTime($this->retailcrm_settings['history_orders']); } - $this->ordersHistory($this->startDateOrders->format('Y-m-d H:i:s')); - - $this->customersHistory($this->startDateCustomers->format('Y-m-d H:i:s')); + $this->customersHistory($this->startDateCustomers->format('Y-m-d H:i:s'), $customers_since_id); + $this->ordersHistory($this->startDateOrders->format('Y-m-d H:i:s'), $orders_since_id); } - protected function customersHistory($date) + /** + * History customers + * + * @param string $date + * @param int $since_id + * + * @return null + */ + protected function customersHistory($date, $since_id) { - $response = $this->retailcrm->customersHistory(array('startDate' => $date)); + if ($since_id) { + $response = $this->retailcrm->customersHistory(array('sinceId' => $since_id)); + } else { + $response = $this->retailcrm->customersHistory(array('startDate' => $date)); + } if ($response->isSuccessful()) { - $generatedAt = $response->generatedAt; + if (empty($response['history'])) { + return; + } - foreach ($response['history'] as $record) { + $history = $response['history']; + $end_change = end($history); + $new_since_id = $end_change['id']; + + foreach ($history as $record) { if ($record['source'] == 'api' && $record['apiKey']['current'] == true) { continue; } $this->removeFuncsHook(); - if ($record['field'] == 'first_name' && $record['customer']['externalId']) { + if ($record['field'] == 'first_name' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'first_name', $record['newValue']); } } - elseif ($record['field'] == 'last_name' && $record['customer']['externalId']) { + elseif ($record['field'] == 'last_name' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'last_name', $record['newValue']); } } - elseif ($record['field'] == 'email' && $record['customer']['externalId']) { + elseif ($record['field'] == 'email' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'billing_email', $record['newValue']); } } - elseif ($record['field'] == 'phones' && $record['customer']['externalId']) { + elseif ($record['field'] == 'phones' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'billing_phone', $record['newValue']); } } - elseif ($record['field'] == 'address.region' && $record['customer']['externalId']) { + elseif ($record['field'] == 'address.region' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'billing_state', $record['newValue']); } } - elseif ($record['field'] == 'address.index' && $record['customer']['externalId']) { + elseif ($record['field'] == 'address.index' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'billing_postcode', $record['newValue']); } } - elseif ($record['field'] == 'address.country' && $record['customer']['externalId']) { + elseif ($record['field'] == 'address.country' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'billing_country', $record['newValue']); } } - elseif ($record['field'] == 'address.city' && $record['customer']['externalId']) { + elseif ($record['field'] == 'address.city' && isset($record['customer']['externalId'])) { if ($record['newValue']){ update_user_meta($record['customer']['externalId'], 'billing_city', $record['newValue']); } @@ -122,20 +157,37 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : return; } - $this->retailcrm_settings['history_customers'] = $generatedAt; - update_option('woocommerce_integration-retailcrm_settings', $this->retailcrm_settings); + update_option('retailcrm_customers_history_since_id', $new_since_id); } - protected function ordersHistory($date) + /** + * History orders + * + * @param string $date + * @param int $since_id + * + * @return null + */ + protected function ordersHistory($date, $since_id) { $options = array_flip(array_filter($this->retailcrm_settings)); - $response = $this->retailcrm->ordersHistory(array('startDate' => $date)); + if ($since_id) { + $response = $this->retailcrm->ordersHistory(array('sinceId' => $since_id)); + } else { + $response = $this->retailcrm->ordersHistory(array('startDate' => $date)); + } if ($response->isSuccessful()) { - $generatedAt = $response->generatedAt; + if (empty($response['history'])) { + return; + } - foreach ($response['history'] as $record) { + $history = $response['history']; + $end_change = end($history); + $new_since_id = $end_change['id']; + + foreach ($history as $record) { if ($record['source'] == 'api' && $record['apiKey']['current'] == true) { continue; } @@ -159,11 +211,14 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : return; } - $this->retailcrm_settings['history_orders'] = $generatedAt; - update_option('woocommerce_integration-retailcrm_settings', $this->retailcrm_settings); - + update_option('retailcrm_orders_history_since_id', $new_since_id); } + /** + * Remove function hooks before download history changes + * + * @return void + */ protected function removeFuncsHook() { if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { @@ -178,6 +233,11 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } + /** + * Add function hooks after downloading history changes + * + * @return void + */ protected function addFuncsHook() { if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { @@ -209,6 +269,13 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } + /** + * Edit order in WC + * + * @param array $record + * @param array $options + * @return void + */ protected function orderEdit($record, $options) { if ($record['field'] == 'status' && !empty($record['newValue']) && !empty($record['oldValue'])) { @@ -370,20 +437,30 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } - elseif (isset($record['created']) && - $record['created'] == 1 && - !isset($record['order']['externalId'])) { + elseif (isset($record['created']) + && $record['created'] == 1 + && !isset($record['order']['externalId']) + ) { + if (is_array($this->order_methods) + && $this->order_methods + && isset($record['order']['orderMethod']) + && !in_array($record['order']['orderMethod'], $this->order_methods) + ) { + return; + } $args = array( - 'status' => $options[$record['order']['status']], + 'status' => isset($options[$record['order']['status']]) ? + isset($options[$record['order']['status']]) : + 'processing', 'customer_id' => isset($record['order']['customer']['externalId']) ? - $record['order']['customer']['externalId'] : - null + $record['order']['customer']['externalId'] : + null ); $order_record = $record['order']; $order_data = wc_create_order($args); - $order = new WC_Order($order_data->id); + $order = new WC_Order($order_data->get_id()); $address_shipping = array( 'first_name' => $order_record['firstName'], @@ -398,6 +475,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : 'postcode' => isset($order_record['delivery']['address']['postcode']) ? $order_record['delivery']['address']['postcode'] : '', 'country' => $order_record['delivery']['address']['countryIso'] ); + $address_billing = array( 'first_name' => $order_record['customer']['firstName'], 'last_name' => isset($order_record['customer']['lastName']) ? $order_record['customer']['lastName'] : '', @@ -418,18 +496,20 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : if (count($order_record['payments']) == 1) { $payment_types = $payment->get_available_payment_gateways(); - $paymentType = end($order_record['payments']); + $payments = $order_record['payments']; + $paymentType = end($payments); - if (isset($payment_types[$options[$paymentType['type']]])) { + if (isset($options[$paymentType['type']]) && isset($payment_types[$options[$paymentType['type']]])) { $order->set_payment_method($payment_types[$options[$paymentType['type']]]); } } } } else { - if ($order_record['paymentType']) { + if (isset($order_record['paymentType']) && $order_record['paymentType']) { $payment = new WC_Payment_Gateways(); $payment_types = $payment->get_available_payment_gateways(); - if (isset($payment_types[$options[$order_record['paymentType']]])) { + + if (isset($options[$order_record['paymentType']]) && isset($payment_types[$options[$order_record['paymentType']]])) { $order->set_payment_method($payment_types[$options[$order_record['paymentType']]]); } } @@ -456,37 +536,39 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } - if (isset($instance_id)) { - $wc_shipping = WC_Shipping_Zones::get_shipping_method($instance_id); - $shipping_method_title = $wc_shipping->method_title; - $shipping_method_id = $options[$deliveryCode]; - $shipping_total = $order_record['delivery']['cost']; - } else { - $wc_shipping = new WC_Shipping(); - $wc_shipping_types = $wc_shipping->get_shipping_methods(); + if (isset($options[$deliveryCode])) { + if (isset($instance_id)) { + $wc_shipping = WC_Shipping_Zones::get_shipping_method($instance_id); + $shipping_method_title = $wc_shipping->method_title; + $shipping_method_id = $options[$deliveryCode]; + $shipping_total = $order_record['delivery']['cost']; + } else { + $wc_shipping = new WC_Shipping(); + $wc_shipping_types = $wc_shipping->get_shipping_methods(); - foreach ($wc_shipping_types as $shipping_type) { - if ($shipping_type->id == $options[$deliveryCode]) { - $shipping_method_id = $shipping_type->id; - $shipping_method_title = $shipping_type->method_title; - $shipping_total = $order_record['delivery']['cost']; + foreach ($wc_shipping_types as $shipping_type) { + if ($shipping_type->id == $options[$deliveryCode]) { + $shipping_method_id = $shipping_type->id; + $shipping_method_title = $shipping_type->method_title; + $shipping_total = $order_record['delivery']['cost']; + } } } - } - if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { - $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); - $order->add_shipping($shipping_rate); - } else { - $shipping = new WC_Order_Item_Shipping(); - $shipping->set_props( array( - 'method_title' => $shipping_method_title, - 'method_id' => $shipping_method_id, - 'total' => wc_format_decimal($shipping_total), - 'order_id' => $order->id - ) ); - $shipping->save(); - $order->add_item( $shipping ); + if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { + $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); + $order->add_shipping($shipping_rate); + } else { + $shipping = new WC_Order_Item_Shipping(); + $shipping->set_props( array( + 'method_title' => $shipping_method_title, + 'method_id' => $shipping_method_id, + 'total' => wc_format_decimal($shipping_total), + 'order_id' => $order->get_id() + ) ); + $shipping->save(); + $order->add_item( $shipping ); + } } } @@ -494,13 +576,20 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $ids[] = array( 'id' => (int)$order_record['id'], - 'externalId' => (int)$order_data->id + 'externalId' => (int)$order_data->get_id() ); $this->retailcrm->ordersFixExternalIds($ids); } } + /** + * Get shipping + * + * @param array $items + * + * @return int + */ protected function getShippingItemId($items) { if ($items) { @@ -512,7 +601,13 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : return $item_id[0]; } - + /** + * Calculate totals in order + * + * @param type $order + * + * @return void + */ protected function update_total($order) { $order->calculate_totals(); diff --git a/woo-retailcrm/include/class-wc-retailcrm-icml.php b/woo-retailcrm/include/class-wc-retailcrm-icml.php index 09aeb05..5f0adb0 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-icml.php +++ b/woo-retailcrm/include/class-wc-retailcrm-icml.php @@ -304,7 +304,10 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : $haystack[$key] = self::filterRecursive($haystack[$key]); } - if (is_null($haystack[$key]) || $haystack[$key] === '' || count($haystack[$key]) == 0) { + if (is_null($haystack[$key]) + || $haystack[$key] === '' + || (is_array($haystack[$key]) && count($haystack[$key]) == 0) + ) { unset($haystack[$key]); } elseif (!is_array($value)) { $haystack[$key] = trim($value); @@ -317,7 +320,7 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : /** * Get WC products * - * @return array + * @return void */ private function get_wc_products_taxonomies($status_args) { if (!$status_args) { @@ -348,28 +351,19 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : while ($loop->have_posts()) : $loop->the_post(); $theid = get_the_ID(); + $post = get_post($theid); - if ( version_compare( get_option( 'woocommerce_db_version' ), '3.0', '<' ) ) { - $product = new WC_Product($theid); - $parent = new WC_Product($product->get_parent()); - } - else { - $post = get_post($theid); - - if (get_post_type($theid) == 'product') { + if (get_post_type($theid) == 'product') { + $product = wc_get_product($theid); + $parent = false; + } elseif (get_post_type($theid) == 'product_variation') { + if (get_post($post->post_parent)) { $product = wc_get_product($theid); - $parent = false; + $parent = wc_get_product($product->get_parent_id()); } - elseif (get_post_type($theid) == 'product_variation') { - - if (get_post($post->post_parent)) { - $product = wc_get_product($theid); - $parent = wc_get_product($product->get_parent_id()); - } - } } - if ($product->get_type() == 'variable') { + if ($product->get_type() == 'variable') { continue; } @@ -457,7 +451,7 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : if (isset($product_data)) { $full_product_list[] = $product_data; } - + unset($product_data); } endwhile; diff --git a/woo-retailcrm/include/class-wc-retailcrm-orders.php b/woo-retailcrm/include/class-wc-retailcrm-orders.php index 32660a4..3fe5c76 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-orders.php +++ b/woo-retailcrm/include/class-wc-retailcrm-orders.php @@ -128,9 +128,15 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : * Update order payment type * * @param $order_id + * + * @return null */ public function orderUpdatePaymentType($order_id, $payment_method) { + if (!isset($this->retailcrm_settings[$payment_method])) { + return; + } + if ($this->retailcrm_settings['api_version'] != 'v5') { $order_data = array( 'externalId' => $order_id, @@ -141,7 +147,9 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } else { $response = $this->retailcrm->ordersGet($order_id); - if ($response->isSuccessful()) $order = $response['order']; + if ($response->isSuccessful()) { + $order = $response['order']; + } foreach ($order['payments'] as $payment_data) { if ($payment_data['externalId'] == $order_id) { @@ -300,7 +308,8 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } if ($order->get_items( 'shipping' )) { - $shipping = end($order->get_items( 'shipping' )); + $shippings = $order->get_items( 'shipping' ); + $shipping = end($shippings); $shipping_code = explode(':', $shipping['method_id']); if (isset($this->retailcrm_settings[$shipping['method_id']])) { @@ -489,7 +498,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $orderWc = new WC_Order($order_id); if ($response->isSuccessful()) { - $this->orderUpdatePaymentType($order_id, $orderWc->payment_method); + $this->orderUpdatePaymentType($order_id, $orderWc->get_payment_method()); } } } diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index c2c88ac..70ffcf9 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ Date: Mon, 26 Feb 2018 09:58:41 +0300 Subject: [PATCH 32/75] Fix history, added vat rate in icml (#52) --- CHANGELOG.md | 5 + .../include/class-wc-retailcrm-history.php | 12 +- .../include/class-wc-retailcrm-icml.php | 236 +++++++++--------- woo-retailcrm/retailcrm.php | 2 +- woo-retailcrm/uninstall.php | 2 +- 5 files changed, 131 insertions(+), 126 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10d458e..261f5ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2018-02-26 v.2.1.0 +* Переработана механика генерации icml каталога товаров +* В icml каталог добавлена выгрузка налоговой ставки +* Исправлен пересчет итогов после изменения количества товара в RetailCRM + ## 2018-02-19 v.2.0.6 * Исправлено возникновение Warning на PHP 7.2 при генерации каталога товаров * Добавлена настройка выгрузки заказов из RetailCRM с определенными способами оформления diff --git a/woo-retailcrm/include/class-wc-retailcrm-history.php b/woo-retailcrm/include/class-wc-retailcrm-history.php index dbe1368..aea417a 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-history.php +++ b/woo-retailcrm/include/class-wc-retailcrm-history.php @@ -286,7 +286,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } - elseif($record['field'] == 'order_product' && $record['newValue']) { + elseif ($record['field'] == 'order_product' && $record['newValue']) { $product = wc_get_product($record['item']['offer']['externalId']); $order = new WC_Order($record['order']['externalId']); $order->add_product($product, $record['item']['quantity']); @@ -294,7 +294,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $this->update_total($order); } - elseif($record['field'] == 'order_product.quantity' && $record['newValue']) { + elseif ($record['field'] == 'order_product.quantity' && $record['newValue']) { $order = new WC_Order($record['order']['externalId']); $product = wc_get_product($record['item']['offer']['externalId']); $items = $order->get_items(); @@ -308,9 +308,11 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : if ($offer_id == $record['item']['offer']['externalId']) { wc_delete_order_item($order_item_id); $order->add_product($product, $record['newValue']); - $this->update_total($order); - } - } + } + } + + $newOrder = wc_get_order($record['order']['externalId']); + $this->update_total($newOrder); } elseif ($record['field'] == 'order_product' && !$record['newValue']) { diff --git a/woo-retailcrm/include/class-wc-retailcrm-icml.php b/woo-retailcrm/include/class-wc-retailcrm-icml.php index 5f0adb0..ac6d54f 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-icml.php +++ b/woo-retailcrm/include/class-wc-retailcrm-icml.php @@ -248,6 +248,10 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : $e->addChild('weight', $offer['weight']); } + if (array_key_exists('tax', $offer)) { + $e->addChild('vatRate', $offer['tax']); + } + unset($offers[$key]); } } @@ -336,134 +340,30 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : } $full_product_list = array(); - $offset = 0; - $limit = 100; - do { - $loop = new WP_Query( - array( - 'post_type' => array('product', 'product_variation'), - 'post_status' => $status_args, - 'posts_per_page' => $limit, - 'offset' => $offset - ) - ); + $products = wc_get_products( + array( + 'limit' => -1, + 'status' => $status_args + ) + ); - while ($loop->have_posts()) : $loop->the_post(); - $theid = get_the_ID(); - $post = get_post($theid); + foreach ($products as $offer) { - if (get_post_type($theid) == 'product') { - $product = wc_get_product($theid); - $parent = false; - } elseif (get_post_type($theid) == 'product_variation') { - if (get_post($post->post_parent)) { - $product = wc_get_product($theid); - $parent = wc_get_product($product->get_parent_id()); - } + if ($offer->get_type() == 'simple') { + $this->setOffer($full_product_list, $product_attributes, $offer); + } elseif ($offer->get_type() == 'variable') { + foreach ($offer->get_children() as $child_id) { + $child_product = wc_get_product($child_id); + $this->setOffer($full_product_list, $product_attributes, $child_product, $offer); } - - if ($product->get_type() == 'variable') { - continue; - } - - if ($product->get_type() == 'simple' || $parent && $parent->get_type() == 'variable') { - if ($this->get_parent_product($product) > 0) { - $image = wp_get_attachment_image_src( get_post_thumbnail_id( $theid ), 'single-post-thumbnail' ); - - if (!$image) { - $image = wp_get_attachment_image_src( get_post_thumbnail_id( $product->get_parent_id() ), 'single-post-thumbnail' ); - } - - $term_list = wp_get_post_terms($parent->get_id(), 'product_cat', array('fields' => 'ids')); - $attributes = get_post_meta( $parent->get_id() , '_product_attributes' ); - } else { - $image = wp_get_attachment_image_src( get_post_thumbnail_id( $theid ), 'single-post-thumbnail' ); - $term_list = wp_get_post_terms($product->get_id(), 'product_cat', array('fields' => 'ids')); - $attributes = get_post_meta( $product->get_id() , '_product_attributes' ); - } - - $attributes = (isset($attributes[0])) ? $attributes[0] : $attributes; - - $attrName = ''; - $params = array(); - - if (!empty($attributes)) { - foreach ($attributes as $attribute_name => $attribute) { - $attributeValue = $product->get_attribute($attribute_name); - if ($attribute['is_visible'] == 1 && !empty($attributeValue)) { - $params[] = array( - 'code' => $attribute_name, - 'name' => $product_attributes[$attribute_name], - 'value' => $attributeValue - ); - $attrName .= (!empty($attributeValue)) ? ' - ' . $attributeValue : ''; - } - } - } - - $name = ($post->post_title == $product->get_title()) ? - $post->post_title . $attrName : - $post->post_title; - - if ($product->get_sku() != '') { - $params[] = array('code' => 'article', 'name' => 'Артикул', 'value' => $product->get_sku()); - } - - $dimension = ''; - - if ($product->get_length() != '') { - $dimension = wc_get_dimension($product->get_length(), 'cm'); - } - - if ($product->get_width() != '') { - $dimension .= '/' . wc_get_dimension($product->get_width(), 'cm'); - } - - if ($product->get_height() != '') { - $dimension .= '/' . wc_get_dimension($product->get_height(), 'cm'); - } - - $weight = ''; - - if ($product->get_weight() != '') { - $weight = wc_get_weight($product->get_weight(), 'kg'); - } - - $product_data = array( - 'id' => $product->get_id(), - 'productId' => ($this->get_parent_product($product) > 0) ? $parent->get_id() : $product->get_id(), - 'name' => $name, - 'productName' => ($this->get_parent_product($product) > 0) ? $parent->get_title() : $product->get_title(), - 'price' => $this->get_price_with_tax($product), - 'picture' => $image[0], - 'url' => ($this->get_parent_product($product) > 0) ? $parent->get_permalink() : $product->get_permalink(), - 'quantity' => is_null($product->get_stock_quantity()) ? 0 : $product->get_stock_quantity(), - 'categoryId' => $term_list, - 'dimension' => $dimension, - 'weight' => $weight - ); - - if (!empty($params)) { - $product_data['params'] = $params; - } - - if (isset($product_data)) { - $full_product_list[] = $product_data; - } - - unset($product_data); - } - endwhile; + } + } if (isset($full_product_list) && $full_product_list) { $this->writeOffers($full_product_list); unset($full_product_list); } - - $offset += $limit; - - } while ($loop->have_posts()); } /** @@ -504,6 +404,104 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : return $categories; } + /** + * Set offer for icml catalog + * + * @param array $full_product_list + * @param array $product_attributes + * @param object WC_Product_Simple | WC_Product_Variation $product + * @param object WC_Product_Variable $parent default false + * + * @return void + */ + private function setOffer(&$full_product_list, $product_attributes, $product, $parent = false) { + if ($parent) { + $image = wp_get_attachment_image_src($product->get_image_id()); + + if (!$image) { + $image = wp_get_attachment_image_src($parent->get_image_id()); + } + + $term_list = $parent->get_category_ids(); + $attributes = get_post_meta($parent->get_id(), '_product_attributes'); + } else { + $image = wp_get_attachment_image_src($product->get_image_id()); + $term_list = $product->get_category_ids(); + $attributes = get_post_meta($product->get_id(), '_product_attributes'); + } + + $attributes = (isset($attributes[0])) ? $attributes[0] : $attributes; + + $params = array(); + + if (!empty($attributes)) { + foreach ($attributes as $attribute_name => $attribute) { + $attributeValue = $product->get_attribute($attribute_name); + if ($attribute['is_visible'] == 1 && !empty($attributeValue)) { + $params[] = array( + 'code' => $attribute_name, + 'name' => $product_attributes[$attribute_name], + 'value' => $attributeValue + ); + } + } + } + + if ($product->get_sku() != '') { + $params[] = array('code' => 'article', 'name' => 'Артикул', 'value' => $product->get_sku()); + } + + $dimension = ''; + + if ($product->get_length() != '') { + $dimension = wc_get_dimension($product->get_length(), 'cm'); + } + + if ($product->get_width() != '') { + $dimension .= '/' . wc_get_dimension($product->get_width(), 'cm'); + } + + if ($product->get_height() != '') { + $dimension .= '/' . wc_get_dimension($product->get_height(), 'cm'); + } + + $weight = ''; + + if ($product->get_weight() != '') { + $weight = wc_get_weight($product->get_weight(), 'kg'); + } + + if ($product->is_taxable()) { + $tax_rates = WC_Tax::get_rates($product->get_tax_class()); + $tax = reset($tax_rates); + } + + $product_data = array( + 'id' => $product->get_id(), + 'productId' => ($this->get_parent_product($product) > 0) ? $parent->get_id() : $product->get_id(), + 'name' => $product->get_name(), + 'productName' => ($this->get_parent_product($product) > 0) ? $parent->get_title() : $product->get_title(), + 'price' => $this->get_price_with_tax($product), + 'picture' => $image[0], + 'url' => ($this->get_parent_product($product) > 0) ? $parent->get_permalink() : $product->get_permalink(), + 'quantity' => is_null($product->get_stock_quantity()) ? 0 : $product->get_stock_quantity(), + 'categoryId' => $term_list, + 'dimension' => $dimension, + 'weight' => $weight, + 'tax' => isset($tax) ? $tax['rate'] : 'none' + ); + + if (!empty($params)) { + $product_data['params'] = $params; + } + + if (isset($product_data)) { + $full_product_list[] = $product_data; + } + + unset($product_data); + } + /** * Get product id * diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index 70ffcf9..9e26492 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ Date: Mon, 12 Mar 2018 11:00:11 +0300 Subject: [PATCH 33/75] Fix customers edit --- CHANGELOG.md | 3 +++ woo-retailcrm/retailcrm.php | 50 ++++++------------------------------- woo-retailcrm/uninstall.php | 2 +- 3 files changed, 12 insertions(+), 43 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 261f5ba..5ec4b75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2018-03-12 v.2.1.1 +* Исправлена ошибка редактирования информации о клиенте + ## 2018-02-26 v.2.1.0 * Переработана механика генерации icml каталога товаров * В icml каталог добавлена выгрузка налоговой ставки diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index 9e26492..be34c8a 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ orderUpdatePayment($order_id); } -/** - * Update order - * - * @param $meta_id, $order_id, $meta_key, $_meta_value - */ -function retailcrm_update_order($meta_id, $order_id, $meta_key, $_meta_value) -{ - if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { - include_once( check_custom_orders() ); - } - $order_class = new WC_Retailcrm_Orders(); - - if ($meta_key == '_payment_method') { - $order_class->orderUpdatePaymentType($order_id, $_meta_value); - } - - $address = array(); - - if ($meta_key == '_shipping_first_name') $address['firstName'] = $_meta_value; - if ($meta_key == '_shipping_last_name') $address['lastName'] = $_meta_value; - if ($meta_key == '_billing_phone') $address['phone'] = $_meta_value; - if ($meta_key == '_billing_email') $address['email'] = $_meta_value; - if ($meta_key == '_shipping_city') $address['delivery']['address']['city'] = $_meta_value; - if ($meta_key == '_shipping_state') $address['delivery']['address']['region'] = $_meta_value; - if ($meta_key == '_shipping_postcode') $address['delivery']['address']['index'] = $_meta_value; - if ($meta_key == '_shipping_country') $address['delivery']['address']['countryIso'] = $_meta_value; - if ($meta_key == '_shipping_address_1') $address['delivery']['address']['text'] = $_meta_value; - if ($meta_key == '_shipping_address_2') $address['delivery']['address']['text'] .= $_meta_value; - - if (!empty($address)) { - $order_class->orderUpdateShippingAddress($order_id, $address); - } -} - /** * Update order items * @@ -404,14 +370,14 @@ if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_ add_action('retailcrm_history', 'retailcrm_history_get'); add_action('retailcrm_icml', 'generate_icml'); add_action('retailcrm_inventories', 'load_stocks'); - add_action( 'init', 'check_inventories'); - add_action( 'init', 'register_icml_generation'); - add_action( 'init', 'register_retailcrm_history'); - add_action( 'wp_ajax_do_upload', 'upload_to_crm' ); - add_action( 'wp_ajax_generate_icml', 'generate_icml' ); + add_action('init', 'check_inventories'); + add_action('init', 'register_icml_generation'); + add_action('init', 'register_retailcrm_history'); + add_action('wp_ajax_do_upload', 'upload_to_crm'); + add_action('wp_ajax_generate_icml', 'generate_icml'); add_action('admin_print_footer_scripts', 'ajax_upload', 99); add_action('admin_print_footer_scripts', 'ajax_generate_icml', 99); - add_action( 'woocommerce_created_customer', 'create_customer', 10, 1 ); - add_action( 'woocommerce_checkout_update_user_meta', 10, 2 ); + add_action('woocommerce_created_customer', 'create_customer', 10, 1); + add_action('woocommerce_update_customer', 'update_customer', 10, 1); add_action('woocommerce_update_order', 'update_order', 11, 1); } diff --git a/woo-retailcrm/uninstall.php b/woo-retailcrm/uninstall.php index ae837f3..3113ee6 100644 --- a/woo-retailcrm/uninstall.php +++ b/woo-retailcrm/uninstall.php @@ -15,7 +15,7 @@ * * * @link https://wordpress.org/plugins/woo-retailcrm/ - * @since 2.1.0 + * @since 2.1.1 * * @package RetailCRM */ From 52218b0d22d05f474b5fc9d9ff8bd5f4ef3ea427 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Wed, 21 Mar 2018 11:03:16 +0300 Subject: [PATCH 34/75] Localization, universal analytics --- CHANGELOG.md | 4 + .../include/class-wc-retailcrm-base.php | 110 +++++++++++------- woo-retailcrm/languages/index.php | 2 + woo-retailcrm/languages/retailcrm-ru_RU.mo | Bin 0 -> 5167 bytes woo-retailcrm/retailcrm.php | 93 ++++++++++++++- woo-retailcrm/uninstall.php | 2 +- 6 files changed, 165 insertions(+), 46 deletions(-) create mode 100644 woo-retailcrm/languages/index.php create mode 100644 woo-retailcrm/languages/retailcrm-ru_RU.mo diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ec4b75..c94b27e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2018-03-21 v.2.1.2 +* Добавлена локализация плагина +* Добавлена интеграция с UA + ## 2018-03-12 v.2.1.1 * Исправлена ошибка редактирования информации о клиенте diff --git a/woo-retailcrm/include/class-wc-retailcrm-base.php b/woo-retailcrm/include/class-wc-retailcrm-base.php index 95b00f3..4b47186 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-base.php +++ b/woo-retailcrm/include/class-wc-retailcrm-base.php @@ -28,8 +28,8 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : } $this->id = 'integration-retailcrm'; - $this->method_title = __( 'RetailCRM', 'woocommerce-integration-retailcrm' ); - $this->method_description = __( 'Интеграция с системой управления Retailcrm.', 'woocommerce-integration-retailcrm' ); + $this->method_title = __('RetailCRM', 'retailcrm'); + $this->method_description = __('Integration with eComlogic managament system.', 'retailcrm'); // Load the settings. @@ -46,19 +46,19 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : public function init_form_fields() { $this->form_fields = array( - array( 'title' => __( 'General Options', 'woocommerce' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), + array( 'title' => __( 'General Options', 'retailcrm' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), 'api_url' => array( - 'title' => __( 'API URL', 'woocommerce-integration-retailcrm' ), + 'title' => __( 'API URL', 'retailcrm' ), 'type' => 'text', - 'description' => __( 'Введите адрес вашей CRM (https://yourdomain.retailcrm.ru).', 'woocommerce-integration-retailcrm' ), + 'description' => __( 'Enter with your API URL (https://yourdomain.ecomlogic.com).', 'retailcrm' ), 'desc_tip' => true, 'default' => '' ), 'api_key' => array( - 'title' => __( 'API Key', 'woocommerce-integration-retailcrm' ), + 'title' => __( 'API Key', 'retailcrm' ), 'type' => 'text', - 'description' => __( 'Введите ключ API. Вы можете найти его в интерфейсе администратора Retailcrm.', 'woocommerce-integration-retailcrm' ), + 'description' => __( 'Enter with your API Key. You can find this in eComlogic admin interface.', 'retailcrm' ), 'desc_tip' => true, 'default' => '' ) @@ -67,15 +67,15 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $api_version_list = array('v4' => 'v4','v5' => 'v5'); $this->form_fields[] = array( - 'title' => __( 'Настройки API', 'woocommerce' ), + 'title' => __( 'API settings', 'retailcrm' ), 'type' => 'title', 'description' => '', 'id' => 'api_options' ); $this->form_fields['api_version'] = array( - 'title' => __( 'API версия', 'textdomain' ), - 'description' => __( 'Выберите версию API, которую Вы хотите использовать', 'textdomain' ), + 'title' => __( 'API version', 'retailcrm' ), + 'description' => __( 'Select the API version you want to use', 'retailcrm' ), 'css' => 'min-width:50px;', 'class' => 'select', 'type' => 'select', @@ -84,7 +84,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : ); $this->form_fields[] = array( - 'title' => __( 'Настройки каталога', 'woocommerce' ), + 'title' => __( 'Catalog settings', 'retailcrm' ), 'type' => 'title', 'description' => '', 'id' => 'catalog_options' @@ -92,8 +92,8 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : foreach (get_post_statuses() as $status_key => $status_value) { $this->form_fields['p_' . $status_key] = array( - 'title' => __( $status_value, 'textdomain' ), - 'label' => __( ' ', 'textdomain' ), + 'title' => $status_value, + 'label' => ' ', 'description' => '', 'class' => 'checkbox', 'type' => 'checkbox', @@ -127,18 +127,18 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : } $this->form_fields[] = array( - 'title' => __( 'Способы оформления заказа', 'woocommerce' ), + 'title' => __('Order methods', 'retailcrm'), 'type' => 'heading', 'description' => '', 'id' => 'order_methods_options' ); $this->form_fields['order_methods'] = array( - 'label' => __( ' ', 'textdomain' ), - 'title' => 'Способы оформления заказа, доступные для выгрузки из RetailCRM', + 'label' => ' ', + 'title' => __('Ordering methods available for downloading from eComlogic', 'retailcrm'), 'class' => '', 'type' => 'multiselect', - 'description' => 'Выберите способы оформления для заказов, которые будут выгружаться из RetailCRM на сайт', + 'description' => __('Select the order methods that will be uploaded from eComlogic to site', 'retailcrm'), 'options' => $order_methods_option, 'select_buttons' => true ); @@ -158,7 +158,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $wc_shipping_list = get_wc_shipping_methods(); $this->form_fields[] = array( - 'title' => __( 'Способы доставки', 'woocommerce' ), + 'title' => __('Shipping methods', 'retailcrm'), 'type' => 'heading', 'description' => '', 'id' => 'shipping_options' @@ -167,8 +167,8 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : foreach ( $wc_shipping_list as $shipping_code => $shipping ) { if ( isset( $shipping['enabled'] ) && $shipping['enabled'] == 'yes' ) { $this->form_fields[$shipping_code] = array( - 'title' => __( $shipping['title'], 'textdomain' ), - 'description' => __( $shipping['description'], 'textdomain' ), + 'title' => __($shipping['title'], 'woocommerce'), + 'description' => __($shipping['description'], 'woocommerce'), 'css' => 'min-width:350px;', 'class' => 'select', 'type' => 'select', @@ -193,7 +193,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $wc_payment = new WC_Payment_Gateways(); $this->form_fields[] = array( - 'title' => __( 'Способы оплаты', 'woocommerce' ), + 'title' => __('Payment methods', 'retailcrm'), 'type' => 'heading', 'description' => '', 'id' => 'payment_options' @@ -204,8 +204,8 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $key = $payment->id; $name = $key; $this->form_fields[$name] = array( - 'title' => __( $payment->method_title, 'textdomain' ), - 'description' => __( $payment->method_description, 'textdomain' ), + 'title' => __($payment->method_title, 'woocommerce'), + 'description' => __($payment->method_description, 'woocommerce'), 'css' => 'min-width:350px;', 'class' => 'select', 'type' => 'select', @@ -230,7 +230,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $wc_statuses = wc_get_order_statuses(); $this->form_fields[] = array( - 'title' => __( 'Статусы', 'woocommerce' ), + 'title' => __('Statuses', 'retailcrm'), 'type' => 'heading', 'description' => '', 'id' => 'statuses_options' @@ -239,7 +239,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : foreach ( $wc_statuses as $idx => $name ) { $uid = str_replace('wc-', '', $idx); $this->form_fields[$uid] = array( - 'title' => __( $name, 'textdomain' ), + 'title' => __($name, 'woocommerce'), 'css' => 'min-width:350px;', 'class' => 'select', 'type' => 'select', @@ -253,18 +253,48 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : * Inventories options */ $this->form_fields[] = array( - 'title' => __( 'Настройки выгрузки остатков', 'woocommerce' ), + 'title' => __('Inventories settings', 'retailcrm'), 'type' => 'heading', 'description' => '', 'id' => 'invent_options' ); $this->form_fields['sync'] = array( - 'label' => __( 'Выгружать остатки из CRM', 'textdomain' ), - 'title' => 'Остатки', + 'label' => __('Sync inventories', 'retailcrm'), + 'title' => __('Inventories', 'retailcrm'), 'class' => 'checkbox', 'type' => 'checkbox', - 'description' => 'Отметьте данный пункт, если хотите выгружать остатки товаров из CRM в магазин.' + 'description' => __('Check this checkbox if you want to unload the rest of the products from CRM to site.', 'retailcrm') + ); + + /** + * UA options + */ + $this->form_fields[] = array( + 'title' => __('UA settings', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'invent_options' + ); + + $this->form_fields['ua'] = array( + 'label' => __('Activate UA', 'retailcrm'), + 'title' => __('UA', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => __('Check this checkbox if you want to unload information to UA.', 'retailcrm') + ); + + $this->form_fields['ua_code'] = array( + 'title' => __('UA code', 'retailcrm'), + 'class' => 'input', + 'type' => 'input' + ); + + $this->form_fields['ua_custom'] = array( + 'title' => __('Custom parameter', 'retailcrm'), + 'class' => 'input', + 'type' => 'input' ); /** @@ -274,17 +304,17 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : if (!isset($options['uploads'])) { $this->form_fields[] = array( - 'title' => __( 'Выгрузка клиентов и заказов', 'woocommerce' ), + 'title' => __('Uploads settings', 'retailcrm'), 'type' => 'heading', 'description' => '', 'id' => 'upload_options' ); $this->form_fields['upload-button'] = array( - 'label' => 'Выгрузить', - 'title' => __( 'Выгрузка клиентов и заказов', 'woocommerce-integration-retailcrm' ), + 'label' => __('Upload', 'retailcrm'), + 'title' => __('Upload all customers and orders', 'retailcrm' ), 'type' => 'button', - 'description' => __( 'Пакетная выгрузка существующих клиентов и заказов.', 'woocommerce-integration-retailcrm' ), + 'description' => __('Batch unloading of existing customers and orders.', 'retailcrm' ), 'desc_tip' => true, 'id' => 'uploads-retailcrm' ); @@ -294,17 +324,17 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : * Generate icml file */ $this->form_fields[] = array( - 'title' => __( 'Генерация каталога товаров', 'woocommerce' ), + 'title' => __( 'Generate ICML catalog', 'retailcrm' ), 'type' => 'title', 'description' => '', 'id' => 'icml_options' ); $this->form_fields[] = array( - 'label' => 'Сгенерировать', - 'title' => __( 'Генерация icml', 'woocommerce-integration-retailcrm' ), + 'label' => __('Generate', 'retailcrm'), + 'title' => __('Generate ICML', 'retailcrm'), 'type' => 'button', - 'description' => __( 'Данный функционал позволяет сгенерировать каталог товаров для выгрузки в CRM.', 'woocommerce-integration-retailcrm' ), + 'description' => __('This functionality allows you to generate a catalog of products for downloading to CRM.', 'retailcrm'), 'desc_tip' => true, 'id' => 'icml-retailcrm' ); @@ -407,7 +437,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : if ($response && $response->isSuccessful()) { if (!in_array($versionMap[$value], $response['versions'])) { - WC_Admin_Settings::add_error( esc_html__( '"Выбранная версия API недоступна"', 'woocommerce-integration-retailcrm' ) ); + WC_Admin_Settings::add_error( esc_html__( 'The selected version of the API is unavailable', 'retailcrm' ) ); $value = ''; } @@ -433,7 +463,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : $response = $api->apiVersions(); if ($response == NULL) { - WC_Admin_Settings::add_error( esc_html__( '"Введите корректный адрес CRM"', 'woocommerce-integration-retailcrm' ) ); + WC_Admin_Settings::add_error( esc_html__( 'Enter the correct CRM address', 'retailcrm' ) ); $value = ''; } @@ -462,7 +492,7 @@ if ( ! class_exists( 'WC_Retailcrm_Base' ) ) : } if (!$response->isSuccessful()) { - WC_Admin_Settings::add_error( esc_html__( '"Введитe правильный API ключ"', 'woocommerce-integration-retailcrm' ) ); + WC_Admin_Settings::add_error( esc_html__( 'Enter the correct API key', 'retailcrm' ) ); $value = ''; } diff --git a/woo-retailcrm/languages/index.php b/woo-retailcrm/languages/index.php new file mode 100644 index 0000000..9c87d13 --- /dev/null +++ b/woo-retailcrm/languages/index.php @@ -0,0 +1,2 @@ +~`n(U5ur`erZ z&CJFz5>gVUl;Si&4HXxOLPZ}c9+2bMi5;7JNMu7y5bq+{S5D0cPTXl_TSAvo_+Ty^?vZF1PkDY7>|JWg3l#* z5)>IO_)+j@;6vb5@EPzo;3T+xd%XSv_$cF3;3vUL;3MGM;1TdP_%wLm`{Mma!4ES& z0p16`nBX_T4>102vVH}8knx*f7Q6vwz;{8h_W_)F0Mww!+Y3Gg4uK-~Ti^%5S3&XP z2jC9yZEzU;T{8b5N=5Gu{>i=pQ1tBwp9ei~8~AIGBkH%H=>I*4De4{YbKqYyLmU zXD?U)tKbpv7a&{Jd*Bn`HjK}KPlBhwDky&Z0mNnXcaT5z5B{A1@BNrkKLV?u@VD*$ zSl*-Hml+R&`@j?6tKjRP#Nn}z$NP7H!t)`JC3OPa19}Pm9F+Axf)aKof0PsUOgm|-5m zW%5U2pNXf8eGa>O3K*8PUhtiUL|&4;Fa8v=dl=+21yn34DeraxBZX` z>a)DUrz#vD(MRoBgHz*0gMl4}j#~-L;I!=rj_0aEDRfR-p{=J1>VOrNs=DdcJgdw` z?M-X@j1$NqU1|oQSLcwn+_LukGM`yBWQA7EtLTpC_QZ_s+qz=AwvX(x8mii*Q#!0V zfiB7CN$-qyruD4X)H9YF>d;HnYR8@S{JIrlo6JrXQ1Txi4y(5I?I0A(<-6f~<<3>yfUJSczG=fW>@7twN3(cpXdGm@W zv&vgPQV-$S8H)OR-r$0Rv5QLTFAK$($ba5AB-)2Ovh)@)-_ z*_-L)yUCJ{Zgt$6HHzDkx(3Hz2Ym+$b+I_4ChVG|gXEl~L{eP6`5oBlZKi@cHicCy z)H6=4rcc_s*^mOX%W>9r>}lt&ny5OBM#>{K5n5q0fR2e-w?w{l`I*F^z}SYkwpB@S zh@sSD)9nzVCZ#~9n=U=UbFG>a&T6Yx^JW6$3ANL%Xl=D)Ev42iGlHBZloP}^tLQCL z1zqyWwqU1OOc_U245DevE|aVW-E-+Y>IOw>fD-UcT9y2I)^84|c45rGcSDLX>-m*| zI46UF8PCgf_7AAzzV{+w%#4&X&&BOA-;=W)U3zzRFgw^cZZ|wX%!~#Vr<^&^tOS`! zFR!;&88jQRIZ@rKx$pScWM;^>O~GUi(lPUTcW!WBCbuWEJEsS8`6u?|b5HKdF=|whC!G*8GUN7XNA88R6{BOBg9UwLEI&H3>xHpn!+k|7K$!@sSrlSkADSu_^|8X} zuzqHEv@lZKUpRPhe0XBwS+=^Brd6>sleSgQ>tf;9;ixIt+X!36W@z&w$4W@ z(IQi_cad}FTNgE{7yUF^;N&vv>&#x((PC>py2kmr=mrZ58Vz%;SJ;6j7UwYJ73936 z#VUj@N9!ygRHL6WB5na>CcBl1(KR_DCZg}#2;dYakgt$o*)z-X@Hu(IN=!c25)@8#*w8U^7U*<)?qT%KZ_T3V0 zS{Gxv-94)s33D8P*?ukT2pPKdk`cZVZ|_ohUHpM@R)t3KR>B3u(J)bg!03j#iG|Et z*aH_Zxe~3z#bGBl13stM8rK2>?&-8ww5o5@tv&L!?%pAa_C7Hqvx!*P) zF``6nR!6UiUAJ)Qx`ZJKt%)+mFT)RxO5&Lul&rtN>?$;%96cOm3G3rz5ZW<_q>j6l zG{Q{=bj>q$@*NRqg0j^QiB5y0q4GOI@)lEPBGymMobO%QLpl+VJb@rM8t8dfC6tD1^x=h&LDUs_l?R&S)sXUp!= zO=4+ZWJ$W>C^jLD>Ou8Jlr)12CMj;=rBEg+Q*Dg0`7aO94whoA;!Zny32&Rslafy{ zb*C-_Kt3UzSKVFlSL!F0)Jb%e5;-fCY8sdf48ND8l(0!^(WJk$@VK&iyA`1jW=w6H z_HFc%N_Ps6_woPVF_`$ zFEB4xgw)4|$cfhC-hG3z7N##tTN8)6mtyCB6AtdU8t*90PBm`Is>RN4OIp%Kv}Eo) z)JTe7#~6MAU=FFiRSn6{f-Y6uKVnJm6fHwc>s%-3*y8^GpU$MaNH^vG{~xgb1b+32 A)c^nh literal 0 HcmV?d00001 diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index be34c8a..8db7d09 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,11 +1,12 @@ createCustomer($customer_id); } -function update_customer($customer_id, $data) { +function update_customer($customer_id) { if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) { include_once( check_custom_customers() ); } @@ -324,7 +325,7 @@ function ajax_upload() { type: "POST", url: '?action=do_upload', success: function (response) { - alert('Заказы и клиенты выгружены'); + alert(''); console.log('AJAX response : ',response); } }); @@ -342,7 +343,7 @@ function ajax_generate_icml() { type: "POST", url: '?action=generate_icml', success: function (response) { - alert('Каталог товаров сформирован'); + alert(''); console.log('AJAX response : ',response); } }); @@ -360,11 +361,91 @@ function update_order($order_id) { $order_class->updateOrder($order_id); } +function initialize_analytics() { + $options = array_filter(get_option( 'woocommerce_integration-retailcrm_settings' )); + + if (isset($options['ua']) && $options['ua'] == 'yes') { + ?> + + get_items() as $item) { + $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; + $_product = wc_get_product($uid); + if ($_product) { + $order_item = array( + 'id' => $uid, + 'name' => $item['name'], + 'price' => (float)$_product->get_price(), + 'quantity' => $item['qty'], + ); + } + $order_items[] = $order_item; + } + + $url = parse_url(get_site_url()); + $domain = $url['host']; + ?> + + Date: Thu, 22 Mar 2018 16:53:15 +0300 Subject: [PATCH 35/75] Fix for php 5.3 --- CHANGELOG.md | 3 +++ woo-retailcrm/retailcrm.php | 6 +++--- woo-retailcrm/uninstall.php | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c94b27e..7d82f9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2018-03-22 v.2.1.3 +* Исправлена ошибка на php5.3 + ## 2018-03-21 v.2.1.2 * Добавлена локализация плагина * Добавлена интеграция с UA diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index 8db7d09..0e09d92 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ ga('require', 'ecommerce', 'ecommerce.js'); ga('ecommerce:addTransaction', { - 'id': get_data()['id']; ?>, + 'id': get_id(); ?>, 'affiliation': '', 'revenue': get_total(); ?>, 'shipping': get_total_tax(); ?>, @@ -423,7 +423,7 @@ function send_analytics() { ga('ecommerce:addItem', { - 'id': get_data()['id']; ?>, + 'id': get_id(); ?>, 'sku': , 'name': '', 'price': , diff --git a/woo-retailcrm/uninstall.php b/woo-retailcrm/uninstall.php index e6ff9f2..c1ed9db 100644 --- a/woo-retailcrm/uninstall.php +++ b/woo-retailcrm/uninstall.php @@ -15,7 +15,7 @@ * * * @link https://wordpress.org/plugins/woo-retailcrm/ - * @since 2.1.2 + * @since 2.1.3 * * @package RetailCRM */ From b04a9ce7015a16e42d56ffe906040c43a41ecbe0 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Tue, 10 Apr 2018 11:04:04 +0300 Subject: [PATCH 36/75] Fix analytics code, added filter to process order, fix picture in icml --- CHANGELOG.md | 5 + .../include/class-wc-retailcrm-icml.php | 6 +- .../include/class-wc-retailcrm-orders.php | 2 +- woo-retailcrm/retailcrm.php | 117 ++++++++++-------- woo-retailcrm/uninstall.php | 2 +- 5 files changed, 73 insertions(+), 59 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d82f9b..018d528 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2018-03-22 v.2.1.4 +* Исправлена ошибка при активированном модуле без настроек +* Добавлен фильтр при формировании массива заказа +* Исправлена генерация icml с неполной картинкой товара + ## 2018-03-22 v.2.1.3 * Исправлена ошибка на php5.3 diff --git a/woo-retailcrm/include/class-wc-retailcrm-icml.php b/woo-retailcrm/include/class-wc-retailcrm-icml.php index ac6d54f..10431cd 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-icml.php +++ b/woo-retailcrm/include/class-wc-retailcrm-icml.php @@ -416,16 +416,16 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : */ private function setOffer(&$full_product_list, $product_attributes, $product, $parent = false) { if ($parent) { - $image = wp_get_attachment_image_src($product->get_image_id()); + $image = wp_get_attachment_image_src($product->get_image_id(), 'full'); if (!$image) { - $image = wp_get_attachment_image_src($parent->get_image_id()); + $image = wp_get_attachment_image_src($parent->get_image_id(), 'full'); } $term_list = $parent->get_category_ids(); $attributes = get_post_meta($parent->get_id(), '_product_attributes'); } else { - $image = wp_get_attachment_image_src($product->get_image_id()); + $image = wp_get_attachment_image_src($product->get_image_id(), 'full'); $term_list = $product->get_category_ids(); $attributes = get_post_meta($product->get_id(), '_product_attributes'); } diff --git a/woo-retailcrm/include/class-wc-retailcrm-orders.php b/woo-retailcrm/include/class-wc-retailcrm-orders.php index 3fe5c76..9f66a60 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-orders.php +++ b/woo-retailcrm/include/class-wc-retailcrm-orders.php @@ -432,7 +432,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } } - return $order_data; + return apply_filters('retailcrm_process_order', $order_data); } /** diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php index 0e09d92..94615ce 100644 --- a/woo-retailcrm/retailcrm.php +++ b/woo-retailcrm/retailcrm.php @@ -1,6 +1,6 @@ - - ', getRetailCrmCookie('_ga')); + ga('send', 'pageview'); + + get_items() as $item) { - $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; - $_product = wc_get_product($uid); - if ($_product) { - $order_item = array( - 'id' => $uid, - 'name' => $item['name'], - 'price' => (float)$_product->get_price(), - 'quantity' => $item['qty'], - ); + if ($options && is_array($options)) { + $options = array_filter($options); + + if (isset($_GET['key']) && isset($options['ua']) && $options['ua'] == 'yes') { + $orderid = wc_get_order_id_by_order_key($_GET['key']); + $order = new WC_Order($orderid); + foreach ($order->get_items() as $item) { + $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; + $_product = wc_get_product($uid); + if ($_product) { + $order_item = array( + 'id' => $uid, + 'name' => $item['name'], + 'price' => (float)$_product->get_price(), + 'quantity' => $item['qty'], + ); + + $order_items[] = $order_item; + } } - $order_items[] = $order_item; - } - $url = parse_url(get_site_url()); - $domain = $url['host']; - ?> - - ga('ecommerce:send'); - - Date: Fri, 27 Apr 2018 11:19:02 +0300 Subject: [PATCH 37/75] v3.0.0 (#60) * Tests * Travis * Deployment script --- .gitignore | 3 +- .travis.yml | 36 + CHANGELOG.md | 19 +- Makefile | 19 + VERSION | 1 + composer.json | 16 + composer.lock | 1481 +++++++++++++++++ phpunit.xml.dist | 29 + .../api/class-wc-retailcrm-client-v4.php | 0 .../api/class-wc-retailcrm-client-v5.php | 0 .../api/class-wc-retailcrm-exception-curl.php | 0 .../api/class-wc-retailcrm-exception-json.php | 0 .../include/api/class-wc-retailcrm-proxy.php | 0 .../api/class-wc-retailcrm-request.php | 0 .../api/class-wc-retailcrm-response.php | 0 {woo-retailcrm => src}/include/api/index.php | 0 src/include/class-wc-retailcrm-base.php | 803 +++++++++ src/include/class-wc-retailcrm-customers.php | 168 ++ src/include/class-wc-retailcrm-ga.php | 115 ++ .../include/class-wc-retailcrm-history.php | 18 +- .../include/class-wc-retailcrm-icml.php | 2 +- .../class-wc-retailcrm-inventories.php | 89 + .../include/class-wc-retailcrm-orders.php | 325 ++-- src/include/class-wc-retailcrm-plugin.php | 55 + {woo-retailcrm => src}/include/functions.php | 0 {woo-retailcrm => src}/include/index.php | 0 {woo-retailcrm => src}/index.php | 0 {woo-retailcrm => src}/languages/index.php | 0 .../languages/retailcrm-ru_RU.mo | Bin src/readme.txt | 174 ++ src/retailcrm.php | 76 + {woo-retailcrm => src}/uninstall.php | 2 +- tests/bin/install.sh | 137 ++ tests/bin/script.sh | 8 + .../class-wc-retailcrm-response-helper.php | 13 + .../class-wc-retailcrm-test-case-helper.php | 45 + tests/phpunit/bootstrap.php | 27 + tests/phpunit/test-wc-retailcrm-base.php | 221 +++ tests/phpunit/test-wc-retailcrm-customers.php | 132 ++ .../phpunit/test-wc-retailcrm-inventories.php | 123 ++ tests/phpunit/test-wc-retailcrm-orders.php | 285 ++++ .../include/class-wc-retailcrm-base.php | 527 ------ .../include/class-wc-retailcrm-customers.php | 151 -- .../class-wc-retailcrm-inventories.php | 70 - woo-retailcrm/retailcrm.php | 475 ------ 45 files changed, 4187 insertions(+), 1458 deletions(-) create mode 100644 .travis.yml create mode 100644 Makefile create mode 100644 VERSION create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 phpunit.xml.dist rename {woo-retailcrm => src}/include/api/class-wc-retailcrm-client-v4.php (100%) rename {woo-retailcrm => src}/include/api/class-wc-retailcrm-client-v5.php (100%) rename {woo-retailcrm => src}/include/api/class-wc-retailcrm-exception-curl.php (100%) rename {woo-retailcrm => src}/include/api/class-wc-retailcrm-exception-json.php (100%) rename {woo-retailcrm => src}/include/api/class-wc-retailcrm-proxy.php (100%) rename {woo-retailcrm => src}/include/api/class-wc-retailcrm-request.php (100%) rename {woo-retailcrm => src}/include/api/class-wc-retailcrm-response.php (100%) rename {woo-retailcrm => src}/include/api/index.php (100%) create mode 100644 src/include/class-wc-retailcrm-base.php create mode 100644 src/include/class-wc-retailcrm-customers.php create mode 100644 src/include/class-wc-retailcrm-ga.php rename {woo-retailcrm => src}/include/class-wc-retailcrm-history.php (97%) rename {woo-retailcrm => src}/include/class-wc-retailcrm-icml.php (99%) create mode 100644 src/include/class-wc-retailcrm-inventories.php rename {woo-retailcrm => src}/include/class-wc-retailcrm-orders.php (53%) create mode 100644 src/include/class-wc-retailcrm-plugin.php rename {woo-retailcrm => src}/include/functions.php (100%) rename {woo-retailcrm => src}/include/index.php (100%) rename {woo-retailcrm => src}/index.php (100%) rename {woo-retailcrm => src}/languages/index.php (100%) rename {woo-retailcrm => src}/languages/retailcrm-ru_RU.mo (100%) create mode 100644 src/readme.txt create mode 100644 src/retailcrm.php rename {woo-retailcrm => src}/uninstall.php (98%) create mode 100755 tests/bin/install.sh create mode 100644 tests/bin/script.sh create mode 100644 tests/helpers/class-wc-retailcrm-response-helper.php create mode 100644 tests/helpers/class-wc-retailcrm-test-case-helper.php create mode 100644 tests/phpunit/bootstrap.php create mode 100644 tests/phpunit/test-wc-retailcrm-base.php create mode 100644 tests/phpunit/test-wc-retailcrm-customers.php create mode 100644 tests/phpunit/test-wc-retailcrm-inventories.php create mode 100644 tests/phpunit/test-wc-retailcrm-orders.php delete mode 100644 woo-retailcrm/include/class-wc-retailcrm-base.php delete mode 100644 woo-retailcrm/include/class-wc-retailcrm-customers.php delete mode 100644 woo-retailcrm/include/class-wc-retailcrm-inventories.php delete mode 100644 woo-retailcrm/retailcrm.php diff --git a/.gitignore b/.gitignore index 14bc68c..c809c58 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/nbproject/private/ \ No newline at end of file +/nbproject/private/ +/vendor/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0e710a8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,36 @@ +language: php + +sudo: false + +php: + - 5.4 + - 5.5 + - 5.6 + - 7.0 + - 7.1 + +env: + - WP_VERSION=latest WP_MULTISITE=0 + +matrix: + fast_finish: true + include: + - php: 5.3 + dist: precise + - php: 7.2 + env: WP_VERSION=latest WP_MULTISITE=0 RUN_PHPCS=1 + +before_script: + - bash tests/bin/install.sh wc_retailcrm_test root '' localhost $WP_VERSION + +script: + - bash tests/bin/script.sh + +deploy: + skip_cleanup: true + provider: script + script: make + on: + php: 7.1 + branch: master + condition: "$DEPLOY = true" diff --git a/CHANGELOG.md b/CHANGELOG.md index 018d528..7000f85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,27 +1,32 @@ -## 2018-03-22 v.2.1.4 +## 2018-04-26 v3.0.0 +* Добавлены тесты +* Произведен рефакторинг кода +* Добавлены хуки + +## 2018-03-22 v2.1.4 * Исправлена ошибка при активированном модуле без настроек * Добавлен фильтр при формировании массива заказа * Исправлена генерация icml с неполной картинкой товара -## 2018-03-22 v.2.1.3 +## 2018-03-22 v2.1.3 * Исправлена ошибка на php5.3 -## 2018-03-21 v.2.1.2 +## 2018-03-21 v2.1.2 * Добавлена локализация плагина * Добавлена интеграция с UA -## 2018-03-12 v.2.1.1 +## 2018-03-12 v2.1.1 * Исправлена ошибка редактирования информации о клиенте -## 2018-02-26 v.2.1.0 +## 2018-02-26 v2.1.0 * Переработана механика генерации icml каталога товаров * В icml каталог добавлена выгрузка налоговой ставки * Исправлен пересчет итогов после изменения количества товара в RetailCRM -## 2018-02-19 v.2.0.6 +## 2018-02-19 v2.0.6 * Исправлено возникновение Warning на PHP 7.2 при генерации каталога товаров * Добавлена настройка выгрузки заказов из RetailCRM с определенными способами оформления * Выгрузка изменений из RetailCRM осуществляется по sinceId -## 2018-02-02 v.2.0.5 +## 2018-02-02 v2.0.5 * Исправлен неверный подсчет скидки на товары \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..042da3c --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +FILE = $(TRAVIS_BUILD_DIR)/VERSION +VERSION = `cat $(FILE)` + +all: svn_clone prepare svn_commit remove_dir + +svn_clone: + mkdir /tmp/svn_plugin_dir + svn co $(SVNREPOURL) /tmp/svn_plugin_dir --username $(USERNAME) --password $(PASSWORD) --no-auth-cache + +prepare: /tmp/svn_plugin_dir + svn copy /tmp/svn_plugin_dir/trunk /tmp/svn_plugin_dir/tags/$(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache + rm -rf /tmp/svn_plugin_dir/trunk/* + cp -R $(TRAVIS_BUILD_DIR)/src/* /tmp/svn_plugin_dir/trunk + +svn_commit: /tmp/svn_plugin_dir/tags + svn ci /tmp/svn_plugin_dir -m $(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache + +remove_dir: + rm -rf /tmp/svn_plugin_dir diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..56fea8a --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +3.0.0 \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..12e462c --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "retailcrm/woocommerce-retailcrm", + "description": "Integration plugin for WooCommerce & RetailCRM", + "type": "wordpress-plugin", + "authors": [ + { + "name": "RetailDriver LLC", + "email": "integration@retailcrm.ru" + } + ], + "minimum-stability": "dev", + "require": {}, + "require-dev": { + "phpunit/phpunit": "6.*" + } +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..e5541ba --- /dev/null +++ b/composer.lock @@ -0,0 +1,1481 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "This file is @generated automatically" + ], + "content-hash": "07140d4f252afbd8967311bfadf35ede", + "packages": [], + "packages-dev": [ + { + "name": "doctrine/instantiator", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "870a62d7b0d63d4e0ffa8f2ce3ab7c8a53d1846d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/870a62d7b0d63d4e0ffa8f2ce3ab7c8a53d1846d", + "reference": "870a62d7b0d63d4e0ffa8f2ce3ab7c8a53d1846d", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "doctrine/coding-standard": "^4.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-shim": "^0.9.2", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://github.com/doctrine/instantiator", + "keywords": [ + "constructor", + "instantiate" + ], + "time": "2018-03-05T09:41:42+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.x-dev", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "9f807201f6e6a8b7ab3582d815511d1807c9c202" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/9f807201f6e6a8b7ab3582d815511d1807c9c202", + "reference": "9f807201f6e6a8b7ab3582d815511d1807c9c202", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "time": "2017-12-18T00:20:24+00:00" + }, + { + "name": "phar-io/manifest", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "014feadb268809af7c8e2f7ccd396b8494901f58" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/014feadb268809af7c8e2f7ccd396b8494901f58", + "reference": "014feadb268809af7c8e2f7ccd396b8494901f58", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^1.0.1", + "php": "^5.6 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "time": "2017-04-07T07:07:10+00:00" + }, + { + "name": "phar-io/version", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "time": "2017-03-05T17:38:23+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "time": "2017-09-11T18:02:19+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "4.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08", + "shasum": "" + }, + "require": { + "php": "^7.0", + "phpdocumentor/reflection-common": "^1.0.0", + "phpdocumentor/type-resolver": "^0.4.0", + "webmozart/assert": "^1.0" + }, + "require-dev": { + "doctrine/instantiator": "~1.0.5", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "time": "2017-11-30T07:14:17+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "0.4.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "shasum": "" + }, + "require": { + "php": "^5.5 || ^7.0", + "phpdocumentor/reflection-common": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^5.2||^4.8.24" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "time": "2017-07-14T14:27:02+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "5d4764d0b9beb04d5b36801c868cfc79a12c70a3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/5d4764d0b9beb04d5b36801c868cfc79a12c70a3", + "reference": "5d4764d0b9beb04d5b36801c868cfc79a12c70a3", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.2", + "php": "^5.3|^7.0", + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", + "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0" + }, + "require-dev": { + "phpspec/phpspec": "^2.5|^3.2", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.7.x-dev" + } + }, + "autoload": { + "psr-0": { + "Prophecy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "time": "2018-04-19T14:17:18+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "5.3.x-dev", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "83f09c29758c52e71bdb81ad2cc9124b85b5a4ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/83f09c29758c52e71bdb81ad2cc9124b85b5a4ef", + "reference": "83f09c29758c52e71bdb81ad2cc9124b85b5a4ef", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.0", + "phpunit/php-file-iterator": "^1.4.2", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^2.0.1", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.0", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-xdebug": "^2.5.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.3.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "time": "2018-04-07T12:06:18+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "1.4.x-dev", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "time": "2017-11-27T13:52:08+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "1.0.x-dev", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "9513098641797ce5f459dbc1de5a54c29b0ec1fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/9513098641797ce5f459dbc1de5a54c29b0ec1fb", + "reference": "9513098641797ce5f459dbc1de5a54c29b0ec1fb", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "time": "2018-01-06T05:27:16+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "2.0.x-dev", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "13eb9aba9626b1a3811c6a492acc9669d24bb85a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/13eb9aba9626b1a3811c6a492acc9669d24bb85a", + "reference": "13eb9aba9626b1a3811c6a492acc9669d24bb85a", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.2.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "time": "2017-11-27T08:47:38+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "6.5.x-dev", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "1617f456e1522f9b32723549ddc5a370f8322e91" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1617f456e1522f9b32723549ddc5a370f8322e91", + "reference": "1617f456e1522f9b32723549ddc5a370f8322e91", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.6.1", + "phar-io/manifest": "^1.0.1", + "phar-io/version": "^1.0", + "php": "^7.0", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^5.3", + "phpunit/php-file-iterator": "^1.4.3", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^1.0.9", + "phpunit/phpunit-mock-objects": "^5.0.5", + "sebastian/comparator": "^2.1", + "sebastian/diff": "^2.0", + "sebastian/environment": "^3.1", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^1.0", + "sebastian/version": "^2.0.1" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "3.0.2", + "phpunit/dbunit": "<3.0" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-xdebug": "*", + "phpunit/php-invoker": "^1.1" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.5.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "time": "2018-04-16T03:59:19+00:00" + }, + { + "name": "phpunit/phpunit-mock-objects", + "version": "5.0.x-dev", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", + "reference": "e244c19aec6a1f0a2ff9e498b9b4bed22537730a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/e244c19aec6a1f0a2ff9e498b9b4bed22537730a", + "reference": "e244c19aec6a1f0a2ff9e498b9b4bed22537730a", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.5", + "php": "^7.0", + "phpunit/php-text-template": "^1.2.1", + "sebastian/exporter": "^3.1" + }, + "conflict": { + "phpunit/phpunit": "<6.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.5" + }, + "suggest": { + "ext-soap": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Mock Object library for PHPUnit", + "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", + "keywords": [ + "mock", + "xunit" + ], + "time": "2018-01-07T17:10:51+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "3488be0a7b346cd6e5361510ed07e88f9bea2e88" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/3488be0a7b346cd6e5361510ed07e88f9bea2e88", + "reference": "3488be0a7b346cd6e5361510ed07e88f9bea2e88", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "time": "2017-03-04T10:23:55+00:00" + }, + { + "name": "sebastian/comparator", + "version": "2.1.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/diff": "^2.0 || ^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "time": "2018-02-01T13:46:46+00:00" + }, + { + "name": "sebastian/diff", + "version": "2.0.x-dev", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "abcc70409ddfb310a8cb41ef0c2e857425438cf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/abcc70409ddfb310a8cb41ef0c2e857425438cf4", + "reference": "abcc70409ddfb310a8cb41ef0c2e857425438cf4", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff" + ], + "time": "2017-12-14T11:32:19+00:00" + }, + { + "name": "sebastian/environment", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "cd35e43a53ec1c10424a5dec250c30e952e09ced" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd35e43a53ec1c10424a5dec250c30e952e09ced", + "reference": "cd35e43a53ec1c10424a5dec250c30e952e09ced", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "time": "2018-03-21T07:21:42+00:00" + }, + { + "name": "sebastian/exporter", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "573f8b71a29cc8afa5f8285d1aee4b4d52717637" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/573f8b71a29cc8afa5f8285d1aee4b4d52717637", + "reference": "573f8b71a29cc8afa5f8285d1aee4b4d52717637", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "time": "2017-11-16T09:48:09+00:00" + }, + { + "name": "sebastian/global-state", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "a27e666314b2df0ab686c2abdee43ffbda48ac10" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a27e666314b2df0ab686c2abdee43ffbda48ac10", + "reference": "a27e666314b2df0ab686c2abdee43ffbda48ac10", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "time": "2017-11-16T09:49:42+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "a496797f3bd6821bfe2acb594e0901dfb00572dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/a496797f3bd6821bfe2acb594e0901dfb00572dd", + "reference": "a496797f3bd6821bfe2acb594e0901dfb00572dd", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "time": "2017-11-16T09:50:04+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "ff755086ff55902772e3fae5dd5f29bcbae68285" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/ff755086ff55902772e3fae5dd5f29bcbae68285", + "reference": "ff755086ff55902772e3fae5dd5f29bcbae68285", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "time": "2018-01-07T16:00:13+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "0f7f5eb7697036c570aff6812a8efe60c417725e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0f7f5eb7697036c570aff6812a8efe60c417725e", + "reference": "0f7f5eb7697036c570aff6812a8efe60c417725e", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "time": "2017-11-16T10:04:08+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "fadc83f7c41fb2924e542635fea47ae546816ece" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/fadc83f7c41fb2924e542635fea47ae546816ece", + "reference": "fadc83f7c41fb2924e542635fea47ae546816ece", + "shasum": "" + }, + "require": { + "php": ">=5.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "time": "2016-10-03T07:43:09+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "time": "2016-10-03T07:35:21+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "time": "2017-04-07T12:08:54+00:00" + }, + { + "name": "webmozart/assert", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/webmozart/assert.git", + "reference": "23bf61bc8a7cc229d7ce8689b1bf818a9e192cac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozart/assert/zipball/23bf61bc8a7cc229d7ce8689b1bf818a9e192cac", + "reference": "23bf61bc8a7cc229d7ce8689b1bf818a9e192cac", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "time": "2018-04-19T15:46:26+00:00" + } + ], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [] +} diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..8057fd7 --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,29 @@ + + + + + tests/phpunit + + + + + src/include + + src/include/api + src/retailcrm.php + src/uninstall.php + + + + \ No newline at end of file diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-client-v4.php b/src/include/api/class-wc-retailcrm-client-v4.php similarity index 100% rename from woo-retailcrm/include/api/class-wc-retailcrm-client-v4.php rename to src/include/api/class-wc-retailcrm-client-v4.php diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-client-v5.php b/src/include/api/class-wc-retailcrm-client-v5.php similarity index 100% rename from woo-retailcrm/include/api/class-wc-retailcrm-client-v5.php rename to src/include/api/class-wc-retailcrm-client-v5.php diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-exception-curl.php b/src/include/api/class-wc-retailcrm-exception-curl.php similarity index 100% rename from woo-retailcrm/include/api/class-wc-retailcrm-exception-curl.php rename to src/include/api/class-wc-retailcrm-exception-curl.php diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-exception-json.php b/src/include/api/class-wc-retailcrm-exception-json.php similarity index 100% rename from woo-retailcrm/include/api/class-wc-retailcrm-exception-json.php rename to src/include/api/class-wc-retailcrm-exception-json.php diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php b/src/include/api/class-wc-retailcrm-proxy.php similarity index 100% rename from woo-retailcrm/include/api/class-wc-retailcrm-proxy.php rename to src/include/api/class-wc-retailcrm-proxy.php diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-request.php b/src/include/api/class-wc-retailcrm-request.php similarity index 100% rename from woo-retailcrm/include/api/class-wc-retailcrm-request.php rename to src/include/api/class-wc-retailcrm-request.php diff --git a/woo-retailcrm/include/api/class-wc-retailcrm-response.php b/src/include/api/class-wc-retailcrm-response.php similarity index 100% rename from woo-retailcrm/include/api/class-wc-retailcrm-response.php rename to src/include/api/class-wc-retailcrm-response.php diff --git a/woo-retailcrm/include/api/index.php b/src/include/api/index.php similarity index 100% rename from woo-retailcrm/include/api/index.php rename to src/include/api/index.php diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php new file mode 100644 index 0000000..95dae44 --- /dev/null +++ b/src/include/class-wc-retailcrm-base.php @@ -0,0 +1,803 @@ +id = 'integration-retailcrm'; + $this->method_title = __('RetailCRM', 'retailcrm'); + $this->method_description = __('Integration with eComlogic managament system.', 'retailcrm'); + + if ($retailcrm === false) { + $this->apiClient = $this->getApiClient(); + } else { + $this->apiClient = $retailcrm; + } + + self::$option_key = $this->get_option_key(); + // Load the settings. + $this->init_form_fields(); + $this->init_settings(); + + // Actions. + add_action('woocommerce_update_options_integration_' . $this->id, array($this, 'process_admin_options')); + + add_filter('cron_schedules', array($this, 'filter_cron_schedules'), 10, 1); + add_action('woocommerce_checkout_order_processed', array($this, 'retailcrm_process_order'), 10, 1); + add_action('retailcrm_history', array($this, 'retailcrm_history_get')); + add_action('retailcrm_icml', array($this, 'generate_icml')); + add_action('retailcrm_inventories', array($this, 'load_stocks')); + add_action('init', array($this, 'register_load_inventories')); + add_action('init', array($this, 'register_icml_generation')); + add_action('init', array($this, 'register_retailcrm_history')); + add_action('wp_ajax_do_upload', array($this, 'upload_to_crm')); + add_action('wp_ajax_generate_icml', array($this, 'generate_icml')); + add_action('admin_print_footer_scripts', array($this, 'ajax_upload'), 99); + add_action('admin_print_footer_scripts', array($this, 'ajax_generate_icml'), 99); + add_action('woocommerce_created_customer', array($this, 'create_customer'), 10, 1); + add_action('woocommerce_update_customer', array($this, 'update_customer'), 10, 1); + add_action('woocommerce_update_order', array($this, 'update_order'), 11, 1); + add_action('wp_print_scripts', array($this, 'initialize_analytics'), 98); + add_action('wp_print_footer_scripts', array($this, 'send_analytics'), 99); + } + + /** + * Check custom file + * + * @param string $file + * + * @return string + */ + public static function checkCustomFile($file) { + if (file_exists( WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-' . $file . '.php' )) { + return WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-' . $file . '.php'; + } + + return 'class-wc-retailcrm-' . $file . '.php'; + } + + public function filter_cron_schedules($schedules) { + return array_merge( + $schedules, + array( + 'five_minutes' => array( + 'interval' => 300, // seconds + 'display' => __('Every 5 minutes') + ), + 'three_hours' => array( + 'interval' => 10800, // seconds + 'display' => __('Every 3 hours') + ), + 'fiveteen_minutes' => array( + 'interval' => 900, // seconds + 'display' => __('Every 15 minutes') + ) + ) + ); + } + + public function generate_icml() { + if (!class_exists('WC_Retailcrm_Icml')) { + require_once (self::checkCustomFile('icml')); + } + + $retailcrm_icml = new WC_Retailcrm_Icml(); + $retailcrm_icml->generate(); + } + + /** + * Get history + */ + public function retailcrm_history_get() { + if (!class_exists('WC_Retailcrm_History')) { + include_once(self::checkCustomFile('history')); + } + + $retailcrm_history = new WC_Retailcrm_History($this->apiClient); + $retailcrm_history->getHistory(); + } + + /** + * @param int $order_id + */ + public function retailcrm_process_order($order_id) { + if (!class_exists('WC_Retailcrm_Orders')) { + include_once(self::checkCustomFile('orders')); + } + + $retailcm_order = new WC_Retailcrm_Orders($this->apiClient); + $retailcm_order->orderCreate($order_id); + } + + /** + * Load stock from retailCRM + */ + public function load_stocks() { + if (!class_exists('WC_Retailcrm_Inventories')) { + include_once(self::checkCustomFile('inventories')); + } + + $inventories = new WC_Retailcrm_Inventories($this->apiClient); + $inventories->updateQuantity(); + } + + public function register_load_inventories() { + if ( !wp_next_scheduled( 'retailcrm_inventories' ) ) { + // Schedule the event + wp_schedule_event( time(), 'fiveteen_minutes', 'retailcrm_inventories' ); + } + } + + public function register_icml_generation() { + // Make sure this event hasn't been scheduled + if ( !wp_next_scheduled( 'retailcrm_icml' ) ) { + // Schedule the event + wp_schedule_event( time(), 'three_hours', 'retailcrm_icml' ); + } + } + + public function register_retailcrm_history() { + // Make sure this event hasn't been scheduled + if ( !wp_next_scheduled( 'retailcrm_history' ) ) { + // Schedule the event + wp_schedule_event( time(), 'five_minutes', 'retailcrm_history' ); + } + } + + /** + * Upload archive customers and order to retailCRM + */ + public function upload_to_crm() { + if (!class_exists('WC_Retailcrm_Orders')) { + include_once(self::checkCustomFile('orders')); + } + + if (!class_exists('WC_Retailcrm_Customers')) { + include_once(self::checkCustomFile('customers')); + } + + $options = array_filter(get_option(self::$option_key)); + + $retailcrm_customers = new WC_Retailcrm_Customers($this->apiClient); + $retailcrm_orders = new WC_Retailcrm_Orders($this->apiClient); + + $retailcrm_customers->customersUpload(); + $retailcrm_orders->ordersUpload(); + + $options['uploads'] = 'yes'; + update_option('woocommerce_integration-retailcrm_settings', $options); + } + + public function ajax_upload() { + $ajax_url = admin_url('admin-ajax.php'); + ?> + + + + apiClient); + $retailcrm_customer->createCustomer($customer_id); + } + + /** + * Edit customer in retailCRM + * @param int $customer_id + */ + public function update_customer($customer_id) { + if (!class_exists('WC_Retailcrm_Customers')) { + include_once(self::checkCustomFile('customers')); + } + + $retailcrm_customer = new WC_Retailcrm_Customers($this->apiClient); + $retailcrm_customer->updateCustomer($customer_id); + } + + /** + * Edit order in retailCRM + * @param int $order_id + */ + public function update_order($order_id) { + if (!class_exists('WC_Retailcrm_Orders')) { + include_once(self::checkCustomFile('orders')); + } + + $retailcrm_order = new WC_Retailcrm_Orders($this->apiClient); + $retailcrm_order->updateOrder($order_id); + } + + /** + * Init google analytics code + */ + public function initialize_analytics() { + if (!class_exists('WC_Retailcrm_Google_Analytics')) { + include_once(self::checkCustomFile('ga')); + } + + if ($this->get_option('ua') && $this->get_option('ua_code')) { + $retailcrm_analytics = WC_Retailcrm_Google_Analytics::getInstance($this->settings); + echo $retailcrm_analytics->initialize_analytics(); + } else { + echo ''; + } + } + + /** + * Google analytics send code + */ + public function send_analytics() { + if (!class_exists('WC_Retailcrm_Google_Analytics')) { + include_once(self::checkCustomFile('ga')); + } + + if ($this->get_option('ua') && $this->get_option('ua_code')) { + $retailcrm_analytics = WC_Retailcrm_Google_Analytics::getInstance($this->settings); + echo $retailcrm_analytics->send_analytics(); + } else { + echo ''; + } + } + + /** + * Initialize integration settings form fields. + */ + public function init_form_fields() { + + $this->form_fields = array( + array( 'title' => __( 'General Options', 'retailcrm' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), + + 'api_url' => array( + 'title' => __( 'API URL', 'retailcrm' ), + 'type' => 'text', + 'description' => __( 'Enter with your API URL (https://yourdomain.ecomlogic.com).', 'retailcrm' ), + 'desc_tip' => true, + 'default' => '' + ), + 'api_key' => array( + 'title' => __( 'API Key', 'retailcrm' ), + 'type' => 'text', + 'description' => __( 'Enter with your API Key. You can find this in eComlogic admin interface.', 'retailcrm' ), + 'desc_tip' => true, + 'default' => '' + ) + ); + + $api_version_list = array( + 'v4' => 'v4', + 'v5' => 'v5' + ); + + $this->form_fields[] = array( + 'title' => __( 'API settings', 'retailcrm' ), + 'type' => 'title', + 'description' => '', + 'id' => 'api_options' + ); + + $this->form_fields['api_version'] = array( + 'title' => __( 'API version', 'retailcrm' ), + 'description' => __( 'Select the API version you want to use', 'retailcrm' ), + 'css' => 'min-width:50px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $api_version_list, + 'desc_tip' => true, + ); + + $this->form_fields[] = array( + 'title' => __( 'Catalog settings', 'retailcrm' ), + 'type' => 'title', + 'description' => '', + 'id' => 'catalog_options' + ); + + foreach (get_post_statuses() as $status_key => $status_value) { + $this->form_fields['p_' . $status_key] = array( + 'title' => $status_value, + 'label' => ' ', + 'description' => '', + 'class' => 'checkbox', + 'type' => 'checkbox', + 'desc_tip' => true, + ); + } + + if ($this->apiClient) { + if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' + && isset($_GET['tab']) && $_GET['tab'] == 'integration' + ) { + add_action('admin_print_footer_scripts', array($this, 'show_blocks'), 99); + + /** + * Order methods options + */ + $order_methods_option = array(); + $order_methods_list = $this->apiClient->orderMethodsList(); + + if ($order_methods_list->isSuccessful()) { + foreach ($order_methods_list['orderMethods'] as $order_method) { + if ($order_method['active'] == false) { + continue; + } + + $order_methods_option[$order_method['code']] = $order_method['name']; + } + + $this->form_fields[] = array( + 'title' => __('Order methods', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'order_methods_options' + ); + + $this->form_fields['order_methods'] = array( + 'label' => ' ', + 'title' => __('Ordering methods available for downloading from eComlogic', 'retailcrm'), + 'class' => '', + 'type' => 'multiselect', + 'description' => __('Select the order methods that will be uploaded from eComlogic to site', 'retailcrm'), + 'options' => $order_methods_option, + 'select_buttons' => true + ); + } + + /** + * Shipping options + */ + $shipping_option_list = array(); + $retailcrm_shipping_list = $this->apiClient->deliveryTypesList(); + + if ($retailcrm_shipping_list->isSuccessful()) { + foreach ($retailcrm_shipping_list['deliveryTypes'] as $retailcrm_shipping_type) { + $shipping_option_list[$retailcrm_shipping_type['code']] = $retailcrm_shipping_type['name']; + } + + $wc_shipping_list = get_wc_shipping_methods(); + + $this->form_fields[] = array( + 'title' => __('Shipping methods', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'shipping_options' + ); + + foreach ($wc_shipping_list as $shipping_code => $shipping) { + if (isset($shipping['enabled']) && $shipping['enabled'] == 'yes') { + $this->form_fields[$shipping_code] = array( + 'title' => __($shipping['title'], 'woocommerce'), + 'description' => __($shipping['description'], 'woocommerce'), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $shipping_option_list, + 'desc_tip' => true, + ); + } + } + } + + /** + * Payment options + */ + $payment_option_list = array(); + $retailcrm_payment_list = $this->apiClient->paymentTypesList(); + + if ($retailcrm_payment_list->isSuccessful()) { + foreach ($retailcrm_payment_list['paymentTypes'] as $retailcrm_payment_type) { + $payment_option_list[$retailcrm_payment_type['code']] = $retailcrm_payment_type['name']; + } + + $wc_payment = WC_Payment_Gateways::instance(); + + $this->form_fields[] = array( + 'title' => __('Payment methods', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'payment_options' + ); + + foreach ($wc_payment->get_available_payment_gateways() as $payment) { + if (isset($payment->enabled) && $payment->enabled == 'yes') { + $this->form_fields[$payment->id] = array( + 'title' => __($payment->method_title, 'woocommerce'), + 'description' => __($payment->method_description, 'woocommerce'), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $payment_option_list, + 'desc_tip' => true, + ); + } + } + } + + /** + * Statuses options + */ + $statuses_option_list = array(); + $retailcrm_statuses_list = $this->apiClient->statusesList(); + + if ($retailcrm_statuses_list->isSuccessful()) { + foreach ($retailcrm_statuses_list['statuses'] as $retailcrm_status) { + $statuses_option_list[$retailcrm_status['code']] = $retailcrm_status['name']; + } + + $wc_statuses = wc_get_order_statuses(); + + $this->form_fields[] = array( + 'title' => __('Statuses', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'statuses_options' + ); + + foreach ($wc_statuses as $idx => $name) { + $uid = str_replace('wc-', '', $idx); + $this->form_fields[$uid] = array( + 'title' => __($name, 'woocommerce'), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $statuses_option_list, + 'desc_tip' => true, + ); + } + } + + /** + * Inventories options + */ + $this->form_fields[] = array( + 'title' => __('Inventories settings', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'invent_options' + ); + + $this->form_fields['sync'] = array( + 'label' => __('Sync inventories', 'retailcrm'), + 'title' => __('Inventories', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => __('Check this checkbox if you want to unload the rest of the products from CRM to site.', 'retailcrm') + ); + + /** + * UA options + */ + $this->form_fields[] = array( + 'title' => __('UA settings', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'invent_options' + ); + + $this->form_fields['ua'] = array( + 'label' => __('Activate UA', 'retailcrm'), + 'title' => __('UA', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => __('Check this checkbox if you want to unload information to UA.', 'retailcrm') + ); + + $this->form_fields['ua_code'] = array( + 'title' => __('UA code', 'retailcrm'), + 'class' => 'input', + 'type' => 'input' + ); + + $this->form_fields['ua_custom'] = array( + 'title' => __('Custom parameter', 'retailcrm'), + 'class' => 'input', + 'type' => 'input' + ); + + /** + * Uploads options + */ + $options = array_filter(get_option(self::$option_key)); + + if (!isset($options['uploads'])) { + $this->form_fields[] = array( + 'title' => __('Uploads settings', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'upload_options' + ); + + $this->form_fields['upload-button'] = array( + 'label' => __('Upload', 'retailcrm'), + 'title' => __('Upload all customers and orders', 'retailcrm' ), + 'type' => 'button', + 'description' => __('Batch unloading of existing customers and orders.', 'retailcrm' ), + 'desc_tip' => true, + 'id' => 'uploads-retailcrm' + ); + } + + /* + * Generate icml file + */ + $this->form_fields[] = array( + 'title' => __( 'Generate ICML catalog', 'retailcrm' ), + 'type' => 'title', + 'description' => '', + 'id' => 'icml_options' + ); + + $this->form_fields[] = array( + 'label' => __('Generate', 'retailcrm'), + 'title' => __('Generate ICML', 'retailcrm'), + 'type' => 'button', + 'description' => __('This functionality allows you to generate a catalog of products for downloading to CRM.', 'retailcrm'), + 'desc_tip' => true, + 'id' => 'icml-retailcrm' + ); + } + } + } + + /** + * Generate html button + * + * @param string $key + * @param array $data + * + * @return string + */ + public function generate_button_html( $key, $data ) { + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( + 'class' => 'button-secondary', + 'css' => '', + 'custom_attributes' => array(), + 'desc_tip' => false, + 'description' => '', + 'title' => '', + ); + + $data = wp_parse_args( $data, $defaults ); + + ob_start(); + ?> + + + + + get_field_key( $key ); + $defaults = array( + 'title' => '', + 'class' => '', + ); + + $data = wp_parse_args( $data, $defaults ); + + ob_start(); + ?> + +

+ +

+ + + get_post_data(); + + $versionMap = array( + 'v4' => '4.0', + 'v5' => '5.0' + ); + + $api = new WC_Retailcrm_Proxy( + $post[$this->plugin_id . $this->id . '_api_url'], + $post[$this->plugin_id . $this->id . '_api_key'] + ); + + $response = $api->apiVersions(); + + if ($response && $response->isSuccessful()) { + if (!in_array($versionMap[$value], $response['versions'])) { + WC_Admin_Settings::add_error( esc_html__( 'The selected version of the API is unavailable', 'retailcrm' ) ); + $value = ''; + } + + return $value; + } + } + + /** + * Validate API url + * + * @param string $key + * @param string $value + * + * @return string + */ + public function validate_api_url_field($key, $value) { + $post = $this->get_post_data(); + $api = new WC_Retailcrm_Proxy( + $value, + $post[$this->plugin_id . $this->id . '_api_key'] + ); + + $response = $api->apiVersions(); + + if ($response == null) { + WC_Admin_Settings::add_error(esc_html__( 'Enter the correct CRM address', 'retailcrm')); + $value = ''; + } + + return $value; + } + + /** + * Validate API key + * + * @param string $key + * @param string $value + * + * @return string + */ + public function validate_api_key_field( $key, $value ) { + $post = $this->get_post_data(); + $api = new WC_Retailcrm_Proxy( + $post[$this->plugin_id . $this->id . '_api_url'], + $value + ); + + $response = $api->apiVersions(); + + if (!is_object($response)) { + $value = ''; + } + + if (!$response->isSuccessful()) { + WC_Admin_Settings::add_error( esc_html__( 'Enter the correct API key', 'retailcrm' ) ); + $value = ''; + } + + return $value; + } + + /** + * Scritp show|hide block settings + */ + function show_blocks() { + ?> + + get_option('api_url') && $this->get_option('api_key')) { + return new WC_Retailcrm_Proxy( + $this->get_option('api_url'), + $this->get_option('api_key'), + $this->get_option('api_version') + ); + } + + return false; + } + } +} diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php new file mode 100644 index 0000000..b2f1622 --- /dev/null +++ b/src/include/class-wc-retailcrm-customers.php @@ -0,0 +1,168 @@ +retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); + $this->retailcrm = $retailcrm; + } + + /** + * Upload customers to CRM + * + * @return array $data + */ + public function customersUpload() + { + if (!$this->retailcrm) { + return; + } + + $users = get_users(); + $data_customers = array(); + + foreach ($users as $user) { + if (!\in_array(self::CUSTOMER_ROLE, $user->roles)) { + continue; + } + + $customer = $this->wcCustomerGet($user->ID); + $this->processCustomer($customer); + $data_customers[] = $this->customer; + } + + $data = \array_chunk($data_customers, 50); + + foreach ($data as $array_customers) { + $this->retailcrm->customersUpload($array_customers); + time_nanosleep(0, 250000000); + } + + return $data; + } + + /** + * Create customer in CRM + * + * @param int $customer_id + * + * @return WC_Customer $customer + */ + public function createCustomer($customer_id) + { + if (!$this->retailcrm) { + return; + } + + $customer = $this->wcCustomerGet($customer_id); + + if ($customer->get_role() == self::CUSTOMER_ROLE) { + $this->processCustomer($customer); + $this->retailcrm->customersCreate($this->customer); + } + + return $customer; + } + + /** + * Edit customer in CRM + * + * @param int $customer_id + * + * @return WC_Customer $customer + */ + public function updateCustomer($customer_id) + { + if (!$this->retailcrm) { + return; + } + + $customer = $this->wcCustomerGet($customer_id); + + if ($customer->get_role() == self::CUSTOMER_ROLE){ + $this->processCustomer($customer); + $this->retailcrm->customersEdit($this->customer); + } + + return $customer; + } + + /** + * Process customer + * + * @param WC_Customer $customer + * + * @return void + */ + protected function processCustomer($customer) + { + $createdAt = $customer->get_date_created(); + $firstName = $customer->get_first_name(); + $data_customer = array( + 'createdAt' => $createdAt->date('Y-m-d H:i:s'), + 'externalId' => $customer->get_id(), + 'firstName' => $firstName ? $firstName : $customer->get_username(), + 'lastName' => $customer->get_last_name(), + 'email' => $customer->get_email(), + 'address' => array( + 'index' => $customer->get_billing_postcode(), + 'countryIso' => $customer->get_billing_country(), + 'region' => $customer->get_billing_state(), + 'city' => $customer->get_billing_city(), + 'text' => $customer->get_billing_address_1() . ',' . $customer->get_billing_address_2() + ) + ); + + if ($customer->get_billing_phone()) { + $data_customer['phones'][] = array( + 'number' => $customer->get_billing_phone() + ); + } + + $this->customer = apply_filters('retailcrm_process_customer', $data_customer); + } + + /** + * @param int $customer_id + * + * @return WC_Customer + */ + public function wcCustomerGet($customer_id) + { + return new WC_Customer($customer_id); + } + + /** + * @return array + */ + public function getCustomer() + { + return $this->customer; + } + } +endif; diff --git a/src/include/class-wc-retailcrm-ga.php b/src/include/class-wc-retailcrm-ga.php new file mode 100644 index 0000000..e791ae7 --- /dev/null +++ b/src/include/class-wc-retailcrm-ga.php @@ -0,0 +1,115 @@ +options = $options; + } + + /** + * @return string + */ + public function initialize_analytics() { + return apply_filters('retailcrm_initialize_analytics' ," + + "); + } + + /** + * @return string + */ + public function send_analytics() { + $js = ''; + $order_id = wc_get_order_id_by_order_key($_GET['key']); + $order = wc_get_order($order_id); + + foreach ($order->get_items() as $item) { + $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id']; + $_product = wc_get_product($uid); + + if ($_product) { + $order_item = array( + 'id' => $uid, + 'name' => $item['name'], + 'price' => (float)$_product->get_price(), + 'quantity' => $item['qty'], + ); + + $order_items[] = $order_item; + } + } + + $url = parse_url(get_site_url()); + $domain = $url['host']; + + $js .= " + + "; + } + + return apply_filters('retailcrm_send_analytics', $js); + } + } +} diff --git a/woo-retailcrm/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php similarity index 97% rename from woo-retailcrm/include/class-wc-retailcrm-history.php rename to src/include/class-wc-retailcrm-history.php index aea417a..c7f8397 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -18,29 +18,23 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : protected $startDateCustomers; protected $startDate; protected $retailcrm_settings; + protected $retailcrm; protected $order_methods = array(); /** - * Constructor WC_Retailcrm_History + * WC_Retailcrm_History constructor. + * @param bool $retailcrm */ - public function __construct() + public function __construct($retailcrm = false) { - $this->retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); + $this->retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); if (isset($this->retailcrm_settings['order_methods'])) { $this->order_methods = $this->retailcrm_settings['order_methods']; unset($this->retailcrm_settings['order_methods']); } - if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { - include_once( WP_PLUGIN_DIR . '/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php' ); - } - - $this->retailcrm = new WC_Retailcrm_Proxy( - $this->retailcrm_settings['api_url'], - $this->retailcrm_settings['api_key'], - $this->retailcrm_settings['api_version'] - ); + $this->retailcrm = $retailcrm; $this->startDate = new DateTime(date('Y-m-d H:i:s', strtotime('-1 days', strtotime(date('Y-m-d H:i:s'))))); $this->startDateOrders = $this->startDate; diff --git a/woo-retailcrm/include/class-wc-retailcrm-icml.php b/src/include/class-wc-retailcrm-icml.php similarity index 99% rename from woo-retailcrm/include/class-wc-retailcrm-icml.php rename to src/include/class-wc-retailcrm-icml.php index 10431cd..e361e71 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-icml.php +++ b/src/include/class-wc-retailcrm-icml.php @@ -544,7 +544,7 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : * @return array */ private function checkPostStatuses() { - $options = get_option( 'woocommerce_integration-retailcrm_settings' ); + $options = get_option(WC_Retailcrm_Base::$option_key); $status_args = array(); foreach (get_post_statuses() as $key => $value) { diff --git a/src/include/class-wc-retailcrm-inventories.php b/src/include/class-wc-retailcrm-inventories.php new file mode 100644 index 0000000..b69a3a3 --- /dev/null +++ b/src/include/class-wc-retailcrm-inventories.php @@ -0,0 +1,89 @@ +retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); + $this->retailcrm = $retailcrm; + } + + /** + * Load stock from retailCRM + * + * @return mixed + */ + public function load_stocks() + { + $success = array(); + + if (!$this->retailcrm) { + return null; + } + + $page = 1; + + do { + $result = $this->retailcrm->storeInventories(array(), $page, 250); + + if (!$result->isSuccessful()) { + return null; + } + + $totalPageCount = $result['pagination']['totalPageCount']; + $page++; + + foreach ($result['offers'] as $offer) { + if (isset($offer['externalId'])) { + $product = wc_get_product($offer['externalId']); + + if ($product instanceof WC_Product) { + if ($product->get_type() == 'variable') { + continue; + } + + $product->set_manage_stock(true); + $product->set_stock_quantity($offer['quantity']); + $success[] = $product->save(); + } + } + } + } while ($page <= $totalPageCount); + + return $success; + } + + /** + * Update stock quantity in WooCommerce + * + * @return mixed + */ + public function updateQuantity() + { + if ($this->retailcrm_settings['sync'] == 'yes') { + return $this->load_stocks(); + } + + return false; + } + } +endif; diff --git a/woo-retailcrm/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php similarity index 53% rename from woo-retailcrm/include/class-wc-retailcrm-orders.php rename to src/include/class-wc-retailcrm-orders.php index 9f66a60..3f0d5af 100644 --- a/woo-retailcrm/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -17,26 +17,26 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : protected $retailcrm_settings; protected $retailcrm; - public function __construct() + private $order = array(); + private $payment = array(); + + public function __construct($retailcrm = false) { - $this->retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); - - if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { - include_once( WP_PLUGIN_DIR . '/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php' ); - } - - $this->retailcrm = new WC_Retailcrm_Proxy( - $this->retailcrm_settings['api_url'], - $this->retailcrm_settings['api_key'], - $this->retailcrm_settings['api_version'] - ); + $this->retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); + $this->retailcrm = $retailcrm; } /** * Upload orders to CRM + * + * @return array $uploadOrders | null */ public function ordersUpload() { + if (!$this->retailcrm) { + return null; + } + $orders = get_posts(array( 'numberposts' => -1, 'post_type' => wc_get_order_types('view-orders'), @@ -46,35 +46,41 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $orders_data = array(); foreach ($orders as $data_order) { - $order_data = $this->processOrder($data_order->ID); - - $order = new WC_Order($data_order->ID); + $order = wc_get_order($data_order->ID); + $this->processOrder($order); $customer = $order->get_user(); if ($customer != false) { - $order_data['customer']['externalId'] = $customer->get('ID'); + $this->order['customer']['externalId'] = $customer->get('ID'); } - $orders_data[] = $order_data; + $orders_data[] = $this->order; } $uploadOrders = array_chunk($orders_data, 50); foreach ($uploadOrders as $uploadOrder) { - $this->retailcrm->ordersUpload($uploadOrder); + $this->retailcrm->ordersUpload($uploadOrder); } + + return $uploadOrders; } /** * Create order * * @param $order_id + * + * @return WC_Order $order | null */ public function orderCreate($order_id) { - $order_data = $this->processOrder($order_id); + if (!$this->retailcrm) { + return null; + } - $order = new WC_Order($order_id); + $order = wc_get_order($order_id); + $this->processOrder($order); $customer = $order->get_user(); if ($customer != false) { @@ -83,199 +89,106 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : if (!$search->isSuccessful()) { $customer_data = array( 'externalId' => $customer->get('ID'), - 'firstName' => $order_data['firstName'], - 'lastName' => $order_data['lastName'], - 'email' => $order_data['email'] + 'firstName' => $this->order['firstName'], + 'lastName' => $this->order['lastName'], + 'email' => $this->order['email'] ); $this->retailcrm->customersCreate($customer_data); } else { - $order_data['customer']['externalId'] = $search['customer']['externalId']; + $this->order['customer']['externalId'] = $search['customer']['externalId']; } } - $this->retailcrm->ordersCreate($order_data); + $this->retailcrm->ordersCreate($this->order); + + return $order; } /** - * Update shipping address + * Edit order in CRM * - * @param $order_id, $address - */ - public function orderUpdateShippingAddress($order_id, $address) { - $address['externalId'] = $order_id; - - $this->retailcrm->ordersEdit($address); - } - - /** - * Update order status + * @param int $order_id * - * @param $order_id + * @return WC_Order $order | null */ - public function orderUpdateStatus($order_id) { - $order = new WC_Order( $order_id ); + public function updateOrder($order_id) + { + if (!$this->retailcrm) { + return null; + } - $order_data = array( - 'externalId' => $order_id, - 'status' => $this->retailcrm_settings[$order->get_status()] - ); + $order = wc_get_order($order_id); + $this->processOrder($order, true); - $this->retailcrm->ordersEdit($order_data); + if ($this->retailcrm_settings['api_version'] == 'v4') { + $this->order['paymentType'] = $this->retailcrm_settings[$order->get_payment_method()]; + } + + $response = $this->retailcrm->ordersEdit($this->order); + + if ($response->isSuccessful() && $this->retailcrm_settings['api_version'] == 'v5') { + $this->payment = $this->orderUpdatePaymentType($order); + } + + return $order; } /** * Update order payment type * - * @param $order_id - * - * @return null + * @param WC_Order $order + * + * @return null | array $payment */ - public function orderUpdatePaymentType($order_id, $payment_method) { - - if (!isset($this->retailcrm_settings[$payment_method])) { - return; + protected function orderUpdatePaymentType($order) + { + if (!isset($this->retailcrm_settings[$order->get_payment_method()])) { + return null; } - if ($this->retailcrm_settings['api_version'] != 'v5') { - $order_data = array( - 'externalId' => $order_id, - 'paymentType' => $this->retailcrm_settings[$payment_method] - ); + $response = $this->retailcrm->ordersGet($order->get_id()); - $this->retailcrm->ordersEdit($order_data); - } else { - $response = $this->retailcrm->ordersGet($order_id); + if ($response->isSuccessful()) { + $retailcrmOrder = $response['order']; - if ($response->isSuccessful()) { - $order = $response['order']; - } - - foreach ($order['payments'] as $payment_data) { - if ($payment_data['externalId'] == $order_id) { + foreach ($retailcrmOrder['payments'] as $payment_data) { + if ($payment_data['externalId'] == $order->get_id()) { $payment = $payment_data; } } - - $order = new WC_Order($order_id); - - if (isset($payment) && $payment['type'] != $this->retailcrm_settings[$order->payment_method]) { - $response = $this->retailcrm->ordersPaymentDelete($payment['id']); - - if ($response->isSuccessful()) { - $this->createPayment($order, $order_id); - } - } - } - } - - /** - * Update order payment - * - * @param $order_id - */ - public function orderUpdatePayment($order_id) { - - if ($this->retailcrm_settings['api_version'] != 'v5') { - $order_data = array( - 'externalId' => $order_id, - 'paymentStatus' => 'paid' - ); - - $this->retailcrm->ordersEdit($order_data); - } else { - $payment = array( - 'externalId' => $order_id, - 'status' => 'paid' - ); - - $this->retailcrm->ordersPaymentsEdit($payment); } - } + if (isset($payment) && $payment['type'] != $this->retailcrm_settings[$order->get_payment_method()]) { + $response = $this->retailcrm->ordersPaymentDelete($payment['id']); - /** - * Update order items - * - * @param $order_id, $data - */ - public function orderUpdateItems($order_id, $data) { - $order = new WC_Order( $order_id ); + if ($response->isSuccessful()) { + $payment = $this->createPayment($order); - $order_data['externalId'] = $order_id; - $shipping_method = end($data['shipping_method']); - $shipping_cost = end($data['shipping_cost']); - $products = $order->get_items(); - $items = array(); - - foreach ($products as $order_item_id => $product) { - if ($product['variation_id'] > 0) { - $offer_id = $product['variation_id']; - } else { - $offer_id = $product['product_id']; - } - - $_product = wc_get_product($offer_id); - - if ($this->retailcrm_settings['api_version'] != 'v3') { - $items[] = array( - 'offer' => array('externalId' => $offer_id), - 'productName' => $product['name'], - 'initialPrice' => (float)$_product->get_price(), - 'quantity' => $product['qty'] - ); - } else { - $items[] = array( - 'productId' => $offer_id, - 'productName' => $product['name'], - 'initialPrice' => (float)$_product->get_price(), - 'quantity' => $product['qty'] - ); + return $payment; } } - $order_data['items'] = $items; - - if (!empty($shipping_method) && !empty($this->retailcrm_settings[$shipping_method])) { - $order_data['delivery']['code'] = $this->retailcrm_settings[$shipping_method]; - } - - if (!empty($shipping_cost)) { - $shipping_cost = str_replace(',', '.', $shipping_cost); - $order_data['delivery']['cost'] = $shipping_cost; - } - - $this->retailcrm->ordersEdit($order_data); + return null; } /** - * get order data depending on woocommerce version + * Get order data * - * @param int $order_id + * @param WC_Order $order * - * @return arr + * @return array $order_data_arr */ - public function getOrderData($order_id) { - $order = new WC_Order( $order_id ); + protected function getOrderData($order) { $order_data_arr = array(); + $order_info = $order->get_data(); - if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { - $order_data_arr['id'] = $order->id; - $order_data_arr['date'] = $order->order_date; - $order_data_arr['payment_method'] = $order->payment_method; - $order_data_arr['discount_total'] = $order->data['discount_total']; - $order_data_arr['discount_tax'] = $order->data['discount_tax']; - $order_data_arr['customer_comment'] = $order->data['customerComment']; - } else { - $order_info = $order->get_data(); - - $order_data_arr['id'] = $order_info['id']; - $order_data_arr['payment_method'] = $order->get_payment_method(); - $order_data_arr['date'] = $order_info['date_created']->date('Y-m-d H:i:s'); - $order_data_arr['discount_total'] = $order_info['discount_total']; - $order_data_arr['discount_tax'] = $order_info['discount_tax']; - $order_data_arr['customer_comment'] = $order->get_customer_note(); - } + $order_data_arr['id'] = $order_info['id']; + $order_data_arr['payment_method'] = $order->get_payment_method(); + $order_data_arr['date'] = $order_info['date_created']->date('Y-m-d H:i:s'); + $order_data_arr['discount_total'] = $order_info['discount_total']; + $order_data_arr['discount_tax'] = $order_info['discount_tax']; + $order_data_arr['customer_comment'] = $order->get_customer_note(); return $order_data_arr; } @@ -283,19 +196,18 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : /** * process to combine order data * - * @param int $order_id + * @param WC_Order $order * @param boolean $update - * - * @return array $order_data + * + * @return void */ - public function processOrder($order_id, $update = false) + protected function processOrder($order, $update = false) { - if ( !$order_id ){ + if (!$order instanceof WC_Order) { return; } - $order = new WC_Order( $order_id ); - $order_data_info = $this->getOrderData($order_id); + $order_data_info = $this->getOrderData($order); $order_data = array(); $order_data['externalId'] = $order_data_info['id']; @@ -303,13 +215,16 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $order_data['createdAt'] = trim($order_data_info['date']); $order_data['customerComment'] = $order_data_info['customer_comment']; - if ( !empty( $order_data_info['payment_method'] ) && !empty($this->retailcrm_settings[$order_data_info['payment_method']]) && $this->retailcrm_settings['api_version'] != 'v5') { + if (!empty($order_data_info['payment_method']) + && !empty($this->retailcrm_settings[$order_data_info['payment_method']]) + && $this->retailcrm_settings['api_version'] != 'v5' + ) { $order_data['paymentType'] = $this->retailcrm_settings[$order_data_info['payment_method']]; } - if ($order->get_items( 'shipping' )) { + if ($order->get_items('shipping')) { $shippings = $order->get_items( 'shipping' ); - $shipping = end($shippings); + $shipping = reset($shippings); $shipping_code = explode(':', $shipping['method_id']); if (isset($this->retailcrm_settings[$shipping['method_id']])) { @@ -405,11 +320,11 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : if ($this->retailcrm_settings['api_version'] == 'v5') { $payment = array( 'amount' => $order->get_total(), - 'externalId' => $order_id + 'externalId' => $order->get_id() ); $payment['order'] = array( - 'externalId' => $order_id + 'externalId' => $order->get_id() ); if (!empty($order_data_info['payment_method']) && !empty($this->retailcrm_settings[$order_data_info['payment_method']])) { @@ -427,12 +342,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : if (!$update) { $order_data['payments'][] = $payment; - } else { - $this->editPayment($payment); } } - return apply_filters('retailcrm_process_order', $order_data); + $this->order = apply_filters('retailcrm_process_order', $order_data); } /** @@ -441,21 +354,21 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : * @param WC_Order $order * @param int $order_id * - * @return void + * @return array $payment */ - protected function createPayment($order, $order_id) + protected function createPayment($order) { $payment = array( 'amount' => $order->get_total(), - 'externalId' => $order_id + 'externalId' => $order->get_id() ); $payment['order'] = array( - 'externalId' => $order_id + 'externalId' => $order->get_id() ); - if (!empty($order->payment_method) && !empty($this->retailcrm_settings[$order->payment_method])) { - $payment['type'] = $this->retailcrm_settings[$order->payment_method]; + if (isset($this->retailcrm_settings[$order->get_payment_method()])) { + $payment['type'] = $this->retailcrm_settings[$order->get_payment_method()]; } if ($order->is_paid()) { @@ -468,38 +381,24 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } $this->retailcrm->ordersPaymentCreate($payment); + + return $payment; } /** - * Edit payment in CRM - * - * @param array $payment - * - * @return void + * @return array */ - protected function editPayment($payment) + public function getOrder() { - $this->retailcrm->ordersPaymentEdit($payment); + return $this->order; } /** - * Edit order in CRM - * - * @param int $order_id - * - * @return void + * @return array */ - public function updateOrder($order_id) + public function getPayment() { - $order = $this->processOrder($order_id, true); - - $response = $this->retailcrm->ordersEdit($order); - - $orderWc = new WC_Order($order_id); - - if ($response->isSuccessful()) { - $this->orderUpdatePaymentType($order_id, $orderWc->get_payment_method()); - } + return $this->payment; } } endif; diff --git a/src/include/class-wc-retailcrm-plugin.php b/src/include/class-wc-retailcrm-plugin.php new file mode 100644 index 0000000..e0d9252 --- /dev/null +++ b/src/include/class-wc-retailcrm-plugin.php @@ -0,0 +1,55 @@ +file = $file; + } + + public function register_activation_hook() { + register_activation_hook($this->file, array($this, 'activate')); + } + + public function register_deactivation_hook() { + register_deactivation_hook($this->file, array($this, 'deactivate')); + } + + public function activate() { + if (!class_exists('WC_Retailcrm_Icml')) { + require_once (dirname(__FILE__) . '/class-wc-retailcrm-icml.php'); + } + + if (!class_exists('WC_Retailcrm_Base')) { + require_once (dirname(__FILE__) . '/class-wc-retailcrm-base.php'); + } + + $retailcrm_icml = new WC_Retailcrm_Icml(); + $retailcrm_icml->generate(); + } + + public function deactivate() { + if ( wp_next_scheduled ( 'retailcrm_icml' )) { + wp_clear_scheduled_hook('retailcrm_icml'); + } + + if ( wp_next_scheduled ( 'retailcrm_history' )) { + wp_clear_scheduled_hook('retailcrm_history'); + } + + if ( wp_next_scheduled ( 'retailcrm_inventories' )) { + wp_clear_scheduled_hook('retailcrm_inventories'); + } + } +} diff --git a/woo-retailcrm/include/functions.php b/src/include/functions.php similarity index 100% rename from woo-retailcrm/include/functions.php rename to src/include/functions.php diff --git a/woo-retailcrm/include/index.php b/src/include/index.php similarity index 100% rename from woo-retailcrm/include/index.php rename to src/include/index.php diff --git a/woo-retailcrm/index.php b/src/index.php similarity index 100% rename from woo-retailcrm/index.php rename to src/index.php diff --git a/woo-retailcrm/languages/index.php b/src/languages/index.php similarity index 100% rename from woo-retailcrm/languages/index.php rename to src/languages/index.php diff --git a/woo-retailcrm/languages/retailcrm-ru_RU.mo b/src/languages/retailcrm-ru_RU.mo similarity index 100% rename from woo-retailcrm/languages/retailcrm-ru_RU.mo rename to src/languages/retailcrm-ru_RU.mo diff --git a/src/readme.txt b/src/readme.txt new file mode 100644 index 0000000..587d23e --- /dev/null +++ b/src/readme.txt @@ -0,0 +1,174 @@ +=== Woocommerce RetailCRM === +Contributors: retailCRM +Donate link: http://retailcrm.ru/ +Tags: Интеграция, Retailcrm +Requires PHP: 5.3 +Requires at least: 4.7 +Tested up to: 4.9.5 +Stable tag: 4.9 +License: GPLv1 or later +License URI: http://www.gnu.org/licenses/gpl-1.0.html + +== Description == + += Возможности плагина = + +Плагин для интеграции Woocommerce и Retailcrm. Плагин позволяет сгенерировать каталог товаров для выгрузки в Retailcrm, настроить двусторонний обмен заказами Woocommerce и Retailcrm, отправлять и принимать изменения по заказам, выгружать остатки из Retailcrm в магазин. При включении функции выгрузки остатков каждые 15 минут остатки по товарам будут выгружаться в магазин (настройка имеет смысл при включении ручного редактирования остатков в Retailcrm, остатки из магазина выгружаются вместе с каталогом товаров каждые 4 часа). Внимание!!! При включении выгрузки остатков плагин включит управление остатками для товаров. Товары, отсутствующие на складе будут скрыты на сайте для посетителей. + += Выгрузка изменений из Retailcrm = + +Каждые 5 минут плагин подгружает изменения из Retailcrm в Woocommerce. + += Кастомизация = + +Вы можете вносить изменения в базовые классы плагина, разместив копию класса из дериктории include в директории wp-content/retailcrm-custom. + +== Installation == + += Активация и настройка = + +После активации плагина необходимо открыть настройки Woocommerce, выбрать вкладку "Интеграция" и в настройках RetailCRM указать адрес CRM (например https://example.retailcrm.ru) и API-ключ, сгенерированный в CRM (инструкция по добавлению ключа в CRM - http://www.retailcrm.ru/docs/Users/ApiKeys), выбрать желаемую версию API (API v5 доступна только c версии Retailcrm 6.0 и выше) + +== Frequently Asked Questions == + += Нет списка справочников для настройки соответствия = + +Проверьте, что для созданного API-ключа доступны все методы + += Заказы не попадают в Retailcrm = + +API-ключ должен быть для отдельного магазина + +== Screenshots == + +1. Введите адрес CRM, API-ключ и выберите версию API, нажмите на кнопку сохраниения настроек. Если после сохранения не появилось никаких других настроек, обновите страницу. +2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). + +== Changelog == + += 3.0.0 = +* Произведен рефакторинг кода + += 2.1.4 = +* Исправлена ошибка при активированном модуле без настроек +* Добавлен фильтр при формировании массива заказа +* Исправлена генерация icml с неполной картинкой товара + += 2.1.3 = +* Исправлена ошибка на php5.3 + += 2.1.2 = +* Добавлена локализация плагина +* Добавлена интеграция с UA + += 2.1.1 = +* Исправлена ошибка с редактированием клиента + += 2.1.0 = +* Переработана механика генерации icml каталога товаров +* В icml каталог добавлена выгрузка налоговой ставки +* Исправлен пересчет итогов после изменения количества товара в RetailCRM + += 2.0.6 = +* Исправлено возникновение Warning на PHP 7.2 при генерации каталога товаров +* Добавлена настройка выгрузки заказов из RetailCRM с определенными способами оформления +* Выгрузка изменений из RetailCRM осуществляется по sinceId + += 2.0.5 = +* Исправлен неверный подсчет скидки на товары + += 2.0.4 = +* Улучшена механика пакетной выгрузки клиентов и заказов +* Добавлена возможность выгрузки заказов с товарами, которые уже удалены с сайта + += 2.0.3 = +* Изменен механизм рассчета стоимости товара в заказе +* Улучшена передача информации об изменениях в заказе +* Устранены мелкие баги + += 2.0.2 = +* Изменен механизм передачи скидок в CRM + += 2.0.1 = +* Добавлена выгрузка размеров товаров +* Улучшена выгрузка веса товаров +* Улучшена механика выгрузки заказов из CRM + += 2.0.0 = +* Улучшен поиск типов доставок на сайте +* Добавлена кнопка генерации icml каталога в настройках плагина +* Переработан механизм выгрузки заказов из CRM +* Улучшена генерация каталога, добавлена выгрузка размеров + += 1.2.3 = +* Добален опциональный выбор статусов товаров, выгружаемых в каталоге +* Улучшен механизм формирования цены товара в заказе (с учетом скидок и налогов) + += 1.2.2 = +* Исправлены ошибки + += 1.2.1 = +* Доработана система кастомизации. + += 1.2.0 = +* Улучшена возможность кастомизации плагина. +* Добавлена возможность кастомизации обработки остатков, клиентов и истории. + += 1.1 = +* Добавлена возможность выбора версии API. +* Исправелены ошибки. + +== Upgrade Notice == + += 3.0.0 = +* Произведен рефакторинг кода + += 2.1.4 = +Исправлена ошибка при активированном модуле без настроек +Добавлен фильтр при формировании массива заказа +Исправлена генерация icml с неполной картинкой товара + += 2.1.3 = +Исправлена ошибка на php5.3 + += 2.1.2 = +Добавлена локализация плагина +Добавлена интеграция с UA + += 2.1.1 = +Исправлена ошибка с редактированием клиента + += 2.1.0 = +Переработана механика генерации icml каталога товаров +В icml каталог добавлена выгрузка налоговой ставки +Исправлен пересчет итогов после изменения количества товара в RetailCRM + += 2.0.6 = +Исправлено возникновение Warning на PHP 7.2 при генерации каталога товаров +Добавлена настройка выгрузки заказов из RetailCRM с определенными способами оформления + += 2.0.4 = +Улучшена механика пакетной выгрузки клиентов и заказов +Добавлена возможность выгрузки заказов с товарами, которые уже удалены с сайта + += 2.0.3 = +Изменен механизм рассчета стоимости товара в заказе +Улучшена передача информации об изменениях в заказе +Устранены мелкие баги + += 2.0.2 = +Изменен механизм передачи скидок в CRM + += 2.0.1 = +Добавлена выгрузка размеров товаров +Улучшена выгрузка веса товаров +Улучшена механика выгрузки заказов из CRM + += 2.0.0 = +Улучшен поиск типов доставок на сайте +Добавлена кнопка генерации icml каталога в настройках плагина +Переработан механизм выгрузки заказов из CRM +Улучшена генерация каталога, добавлена выгрузка размеров + += 1.2.3 = +Исправлены ошибки, доработан функционал diff --git a/src/retailcrm.php b/src/retailcrm.php new file mode 100644 index 0000000..d120de0 --- /dev/null +++ b/src/retailcrm.php @@ -0,0 +1,76 @@ +register_activation_hook(); + $plugin->register_deactivation_hook(); + + add_action( 'plugins_loaded', array( 'WC_Integration_Retailcrm', 'get_instance' ), 0 ); +endif; diff --git a/woo-retailcrm/uninstall.php b/src/uninstall.php similarity index 98% rename from woo-retailcrm/uninstall.php rename to src/uninstall.php index e675eda..ff8342b 100644 --- a/woo-retailcrm/uninstall.php +++ b/src/uninstall.php @@ -15,7 +15,7 @@ * * * @link https://wordpress.org/plugins/woo-retailcrm/ - * @since 2.1.4 + * @version 3.0.0 * * @package RetailCRM */ diff --git a/tests/bin/install.sh b/tests/bin/install.sh new file mode 100755 index 0000000..8e9f602 --- /dev/null +++ b/tests/bin/install.sh @@ -0,0 +1,137 @@ +#!/usr/bin/env bash +# See https://raw.githubusercontent.com/wp-cli/scaffold-command/master/templates/install-wp-tests.sh + +if [ $# -lt 3 ]; then + echo "usage: $0 [db-host] [wp-version] [skip-database-creation]" + exit 1 +fi + +DB_NAME=$1 +DB_USER=$2 +DB_PASS=$3 +DB_HOST=${4-localhost} +WP_VERSION=${5-latest} +SKIP_DB_CREATE=${6-false} + +WP_TESTS_DIR=${WP_TESTS_DIR-/tmp/wordpress-tests-lib} +WP_CORE_DIR=${WP_CORE_DIR-/tmp/wordpress/} + +download() { + if [ `which curl` ]; then + curl -s "$1" > "$2"; + elif [ `which wget` ]; then + wget -nv -O "$2" "$1" + fi +} + +if [[ $WP_VERSION =~ [0-9]+\.[0-9]+(\.[0-9]+)? ]]; then + WP_TESTS_TAG="tags/$WP_VERSION" +elif [[ $WP_VERSION == 'nightly' || $WP_VERSION == 'trunk' ]]; then + WP_TESTS_TAG="trunk" +else + # http serves a single offer, whereas https serves multiple. we only want one + download http://api.wordpress.org/core/version-check/1.7/ /tmp/wp-latest.json + grep '[0-9]+\.[0-9]+(\.[0-9]+)?' /tmp/wp-latest.json + LATEST_VERSION=$(grep -o '"version":"[^"]*' /tmp/wp-latest.json | sed 's/"version":"//') + if [[ -z "$LATEST_VERSION" ]]; then + echo "Latest WordPress version could not be found" + exit 1 + fi + WP_TESTS_TAG="tags/$LATEST_VERSION" +fi + +set -ex + +install_wp() { + + if [ -d $WP_CORE_DIR ]; then + return; + fi + + mkdir -p $WP_CORE_DIR + + if [[ $WP_VERSION == 'nightly' || $WP_VERSION == 'trunk' ]]; then + mkdir -p /tmp/wordpress-nightly + download https://wordpress.org/nightly-builds/wordpress-latest.zip /tmp/wordpress-nightly/wordpress-nightly.zip + unzip -q /tmp/wordpress-nightly/wordpress-nightly.zip -d /tmp/wordpress-nightly/ + mv /tmp/wordpress-nightly/wordpress/* $WP_CORE_DIR + else + if [ $WP_VERSION == 'latest' ]; then + local ARCHIVE_NAME='latest' + else + local ARCHIVE_NAME="wordpress-$WP_VERSION" + fi + download https://wordpress.org/${ARCHIVE_NAME}.tar.gz /tmp/wordpress.tar.gz + tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C $WP_CORE_DIR + fi + + download https://raw.github.com/markoheijnen/wp-mysqli/master/db.php $WP_CORE_DIR/wp-content/db.php +} + +install_woocommerce() { + cd /tmp + git clone https://github.com/woocommerce/woocommerce.git + cd woocommerce + git checkout master + cd - +} + +install_test_suite() { + # portable in-place argument for both GNU sed and Mac OSX sed + if [[ $(uname -s) == 'Darwin' ]]; then + local ioption='-i .bak' + else + local ioption='-i' + fi + + # set up testing suite if it doesn't yet exist + if [ ! -d $WP_TESTS_DIR ]; then + # set up testing suite + mkdir -p $WP_TESTS_DIR + svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/includes/ $WP_TESTS_DIR/includes + svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/data/ $WP_TESTS_DIR/data + fi + + if [ ! -f wp-tests-config.php ]; then + download https://develop.svn.wordpress.org/${WP_TESTS_TAG}/wp-tests-config-sample.php "$WP_TESTS_DIR"/wp-tests-config.php + # remove all forward slashes in the end + WP_CORE_DIR=$(echo $WP_CORE_DIR | sed "s:/\+$::") + sed $ioption "s:dirname( __FILE__ ) . '/src/':'$WP_CORE_DIR/':" "$WP_TESTS_DIR"/wp-tests-config.php + sed $ioption "s/youremptytestdbnamehere/$DB_NAME/" "$WP_TESTS_DIR"/wp-tests-config.php + sed $ioption "s/yourusernamehere/$DB_USER/" "$WP_TESTS_DIR"/wp-tests-config.php + sed $ioption "s/yourpasswordhere/$DB_PASS/" "$WP_TESTS_DIR"/wp-tests-config.php + sed $ioption "s|localhost|${DB_HOST}|" "$WP_TESTS_DIR"/wp-tests-config.php + fi + +} + +install_db() { + + if [ ${SKIP_DB_CREATE} = "true" ]; then + return 0 + fi + + # parse DB_HOST for port or socket references + local PARTS=(${DB_HOST//\:/ }) + local DB_HOSTNAME=${PARTS[0]}; + local DB_SOCK_OR_PORT=${PARTS[1]}; + local EXTRA="" + + if ! [ -z $DB_HOSTNAME ] ; then + if [ $(echo $DB_SOCK_OR_PORT | grep -e '^[0-9]\{1,\}$') ]; then + EXTRA=" --host=$DB_HOSTNAME --port=$DB_SOCK_OR_PORT --protocol=tcp" + elif ! [ -z $DB_SOCK_OR_PORT ] ; then + EXTRA=" --socket=$DB_SOCK_OR_PORT" + elif ! [ -z $DB_HOSTNAME ] ; then + EXTRA=" --host=$DB_HOSTNAME --protocol=tcp" + fi + fi + + # create database + mysqladmin create $DB_NAME --user="$DB_USER" --password="$DB_PASS"$EXTRA +} + +install_wp +install_test_suite +install_woocommerce +install_db diff --git a/tests/bin/script.sh b/tests/bin/script.sh new file mode 100644 index 0000000..f92901b --- /dev/null +++ b/tests/bin/script.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +if [[ ${RUN_PHPCS} == 1 ]]; then + composer install + vendor/phpunit/phpunit/phpunit -c phpunit.xml.dist +else + phpunit -c phpunit.xml.dist +fi diff --git a/tests/helpers/class-wc-retailcrm-response-helper.php b/tests/helpers/class-wc-retailcrm-response-helper.php new file mode 100644 index 0000000..32bbc7d --- /dev/null +++ b/tests/helpers/class-wc-retailcrm-response-helper.php @@ -0,0 +1,13 @@ +response = $response; + } +} diff --git a/tests/helpers/class-wc-retailcrm-test-case-helper.php b/tests/helpers/class-wc-retailcrm-test-case-helper.php new file mode 100644 index 0000000..1da0cfa --- /dev/null +++ b/tests/helpers/class-wc-retailcrm-test-case-helper.php @@ -0,0 +1,45 @@ + 'https://example.retailcrm.ru', + 'api_key' => 'dhsHJGYdjkHHJKJSGjhasjhgajsgJGHsg', + 'api_version' => $apiVesrion, + 'p_draft' => 'no', + 'p_pending' => 'no', + 'p_private' => 'no', + 'p_publish' => 'no', + 'order_methods' => '', + 'flat_rate' => 'delivery', + 'flat_rate:1' => 'delivery1', + 'free_shipping:7' => 'delivery2', + 'flat_rate:8' => 'delivery3', + 'local_pickup:9' => 'delivery4', + 'flat_rate_shipping' => 'delivery5', + 'bacs' => 'payment1', + 'cheque' => 'payment2', + 'cod' => 'payment3', + 'paypal' => 'payment4', + 'ppec_paypal' => 'payment5', + 'pending' => 'status1', + 'processing' => 'status2', + 'on-hold' => 'status3', + 'completed' => 'status4', + 'cancelled' => 'status5', + 'refunded' => 'status6', + 'failed' => 'status7', + 'sync' => 'no', + 'ua' => 'no', + 'ua_code' => '', + 'ua_custom' => '', + 'upload-button' => '' + ); + + update_option(WC_Retailcrm_Base::$option_key, $options); + + return $options; + } +} \ No newline at end of file diff --git a/tests/phpunit/bootstrap.php b/tests/phpunit/bootstrap.php new file mode 100644 index 0000000..eae2866 --- /dev/null +++ b/tests/phpunit/bootstrap.php @@ -0,0 +1,27 @@ +apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy') + ->disableOriginalConstructor() + ->setMethods(array( + 'orderMethodsList', + 'deliveryTypesList', + 'paymentTypesList', + 'statusesList' + )) + ->getMock(); + + $this->setMockOrderMethods(); + $this->setMockDeliveryTypes(); + $this->setMockPaymentTypes(); + $this->setMockStatuses(); + + $_GET['page'] = 'wc-settings'; + $_GET['tab'] = 'integration'; + + $this->setOptions('v5'); + $this->unit = new \WC_Retailcrm_Base($this->apiMock); + } + + public function test_retailcrm_check_custom_file() + { + $file = \WC_Retailcrm_Base::checkCustomFile('ga'); + $this->assertInternalType('string', $file); + } + + public function test_retailcrm_form_fields() + { + $this->assertInternalType('array', $this->unit->form_fields); + $this->assertArrayHasKey('api_url', $this->unit->form_fields); + $this->assertArrayHasKey('api_key', $this->unit->form_fields); + $this->assertArrayHasKey('api_version', $this->unit->form_fields); + + foreach (get_post_statuses() as $key => $status) { + $this->assertArrayHasKey('p_' . $key, $this->unit->form_fields); + } + + $this->assertArrayHasKey('order_methods', $this->unit->form_fields); + + foreach (get_wc_shipping_methods() as $code => $value) { + if (isset($value['enabled']) && $value['enabled'] == 'yes') { + $this->assertArrayHasKey($code, $this->unit->form_fields); + } + } + + $wc_payment = WC_Payment_Gateways::instance(); + + foreach ($wc_payment->get_available_payment_gateways() as $payment) { + if (isset($payment->enabled) && $payment->enabled == 'yes') { + $this->assertArrayHasKey($payment->id, $this->unit->form_fields); + } + } + + foreach (wc_get_order_statuses() as $idx => $name ) { + $uid = str_replace('wc-', '', $idx); + $this->assertArrayHasKey($uid, $this->unit->form_fields); + } + } + + private function getResponseOrderMethods() + { + return array( + 'success' => true, + 'orderMethods' => array( + array( + 'name' => 'orderMethod1', + 'code' => 'orderMethod1', + 'active' => true + ), + array( + 'name' => 'orderMethod2', + 'code' => 'orderMethod2', + 'active' => true + ) + ) + ); + } + + private function getResponseDeliveryTypes() + { + return array( + 'success' => true, + 'deliveryTypes' => array( + array( + 'name' => 'delivery1', + 'code' => 'delivery1' + ), + array( + 'name' => 'delivery2', + 'code' => 'delivery2' + ) + ) + ); + } + + private function getResponsePaymentTypes() + { + return array( + 'success' => true, + 'paymentTypes' => array( + array( + 'name' => 'payment1', + 'code' => 'payment1' + ), + array( + 'name' => 'payment2', + 'code' => 'payment2' + ) + ) + ); + } + + private function getResponseStatuses() + { + return array( + 'success' => true, + 'statuses' => array( + array( + 'name' => 'status1', + 'code' => 'status1' + ), + array( + 'name' => 'status2', + 'code' => 'status2' + ) + ) + ); + } + + private function setMockOrderMethods() + { + $this->responseMockOrderMethods = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $this->responseMockOrderMethods->expects($this->any()) + ->method('isSuccessful') + ->willReturn(true); + + $this->responseMockOrderMethods->setResponse($this->getResponseOrderMethods()); + $this->apiMock->expects($this->any()) + ->method('orderMethodsList') + ->willReturn($this->responseMockOrderMethods); + } + + private function setMockDeliveryTypes() + { + $this->responseMockDeliveryTypes = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $this->responseMockDeliveryTypes->expects($this->any()) + ->method('isSuccessful') + ->willReturn(true); + + $this->responseMockDeliveryTypes->setResponse($this->getResponseDeliveryTypes()); + $this->apiMock->expects($this->any()) + ->method('deliveryTypesList') + ->willReturn($this->responseMockDeliveryTypes); + } + + private function setMockPaymentTypes() + { + $this->responseMockPaymentTypes = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $this->responseMockPaymentTypes->expects($this->any()) + ->method('isSuccessful') + ->willReturn(true); + + $this->responseMockPaymentTypes->setResponse($this->getResponsePaymentTypes()); + $this->apiMock->expects($this->any()) + ->method('paymentTypesList') + ->willReturn($this->responseMockPaymentTypes); + } + + private function setMockStatuses() + { + $this->responseMockStatuses = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $this->responseMockStatuses->expects($this->any()) + ->method('isSuccessful') + ->willReturn(true); + + $this->responseMockStatuses->setResponse($this->getResponseStatuses()); + $this->apiMock->expects($this->any()) + ->method('statusesList') + ->willReturn($this->responseMockStatuses); + } +} diff --git a/tests/phpunit/test-wc-retailcrm-customers.php b/tests/phpunit/test-wc-retailcrm-customers.php new file mode 100644 index 0000000..395cd5c --- /dev/null +++ b/tests/phpunit/test-wc-retailcrm-customers.php @@ -0,0 +1,132 @@ +responseMock = $this->getMockBuilder('\WC_Retailcrm_Response') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $this->apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy') + ->disableOriginalConstructor() + ->setMethods(array( + 'ordersGet', + 'ordersUpload', + 'ordersCreate', + 'ordersEdit', + 'customersGet', + 'customersUpload', + 'customersCreate', + 'customersEdit' + )) + ->getMock(); + + $this->customer = new WC_Customer(); + $this->customer->set_email(uniqid(md5(date('Y-m-d H:i:s'))) . '@mail.com'); + $this->customer->set_password('password'); + $this->customer->set_role(WC_Retailcrm_Customers::CUSTOMER_ROLE); + $this->customer->set_billing_phone('89000000000'); + $this->customer->save(); + } + + /** + * @param retailcrm + * @dataProvider dataProviderApiClient + */ + public function test_wc_customer_get($retailcrm) + { + $wc_customer = new WC_Customer($this->customer->get_id()); + $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $this->assertEquals($wc_customer, $retailcrm_customer->wcCustomerGet($this->customer->get_id())); + } + + /** + * @param retailcrm + * @dataProvider dataProviderApiClient + */ + public function test_customers_upload($retailcrm) + { + $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $data = $retailcrm_customer->customersUpload(); + + if ($retailcrm) { + $this->assertInternalType('array', $data); + $this->assertInternalType('array', $data[0]); + $this->assertArrayHasKey('externalId', $data[0][0]); + } else { + $this->assertEquals(null, $data); + } + } + + /** + * @param $retailcrm + * @dataProvider dataProviderApiClient + */ + public function test_create_customer($retailcrm) + { + $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $customer = $retailcrm_customer->createCustomer($this->customer->get_id()); + $customer_send = $retailcrm_customer->getCustomer(); + + if ($retailcrm) { + $this->assertArrayHasKey('externalId', $customer_send); + $this->assertArrayHasKey('firstName', $customer_send); + $this->assertArrayHasKey('createdAt', $customer_send); + $this->assertArrayHasKey('email', $customer_send); + $this->assertNotEmpty($customer_send['externalId']); + $this->assertNotEmpty($customer_send['firstName']); + $this->assertNotEmpty($customer_send['email']); + $this->assertInstanceOf('WC_Customer', $customer); + } else { + $this->assertEquals(null, $customer); + $this->assertEquals(array(), $customer_send); + } + } + + /** + * @param $retailcrm + * @dataProvider dataProviderApiClient + */ + public function test_update_customer($retailcrm) + { + $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $customer = $retailcrm_customer->updateCustomer($this->customer->get_id()); + $customer_send = $retailcrm_customer->getCustomer(); + + if ($retailcrm) { + $this->assertArrayHasKey('externalId', $customer_send); + $this->assertArrayHasKey('firstName', $customer_send); + $this->assertArrayHasKey('createdAt', $customer_send); + $this->assertArrayHasKey('email', $customer_send); + $this->assertNotEmpty($customer_send['externalId']); + $this->assertNotEmpty($customer_send['firstName']); + $this->assertNotEmpty($customer_send['email']); + $this->assertInstanceOf('WC_Customer', $customer); + } else { + $this->assertEquals(null, $customer); + $this->assertEquals(array(), $customer_send); + } + } + + public function dataProviderApiClient() + { + $this->setUp(); + + return array( + array( + 'retailcrm' => $this->apiMock + ), + array( + 'retailcrm' => false + ) + ); + } +} \ No newline at end of file diff --git a/tests/phpunit/test-wc-retailcrm-inventories.php b/tests/phpunit/test-wc-retailcrm-inventories.php new file mode 100644 index 0000000..908d799 --- /dev/null +++ b/tests/phpunit/test-wc-retailcrm-inventories.php @@ -0,0 +1,123 @@ +responseMock = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $this->apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy') + ->disableOriginalConstructor() + ->setMethods(array( + 'storeInventories' + )) + ->getMock(); + + parent::setUp(); + } + + /** + * @param $retailcrm + * @param $response + * + * @dataProvider dataProviderLoadStocks + */ + public function test_load_stocks($retailcrm, $response) + { + $offer = WC_Helper_Product::create_simple_product(); + $offer->save(); + + if ($response['success'] == true) { + $response['offers'][0]['externalId'] = $offer->get_id(); + $this->responseMock->expects($this->any()) + ->method('isSuccessful') + ->willReturn(true); + } elseif ($response['success'] == false) { + $this->responseMock->expects($this->any()) + ->method('isSuccessful') + ->willReturn(false); + } + + $this->responseMock->setResponse($response); + + if ($retailcrm) { + $retailcrm->expects($this->any()) + ->method('storeInventories') + ->willReturn($this->responseMock); + } + + $retailcrm_inventories = new WC_Retailcrm_Inventories($retailcrm); + $result = $retailcrm_inventories->load_stocks(); + + if ($retailcrm && $response['success'] == true) { + $product = new WC_Product_Simple($result[0]); + $this->assertInstanceOf('WC_Product', $product); + $this->assertEquals(10, $product->get_stock_quantity()); + $this->assertContains($product->get_id(), $result); + $this->assertInternalType('array', $result); + } else { + $this->assertEquals(null, $result); + } + } + + private function getResponseData() + { + return array( + 'true' => array( + 'success' => true, + 'pagination' => array( + 'limit' => 250, + 'totalCount' => 1, + 'currentPage' => 1, + 'totalPageCount' => 1 + ), + 'offers' => array( + array( + 'id' => 1, + 'xmlId' => 'xmlId', + 'quantity' => 10 + ) + ) + ), + 'false' => array( + 'success' => false, + 'errorMsg' => 'Forbidden' + ) + ); + } + + public function dataProviderLoadStocks() + { + $this->setUp(); + + $response = $this->getResponseData(); + + return array( + array( + 'retailcrm' => $this->apiMock, + 'response' => $response['true'] + ), + array( + 'retailcrm' => false, + 'response' => $response['true'] + ), + array( + 'retailcrm' => $this->apiMock, + 'response' => $response['false'] + ), + array( + 'retailcrm' => false, + 'response' => $response['false'] + ) + ); + } +} diff --git a/tests/phpunit/test-wc-retailcrm-orders.php b/tests/phpunit/test-wc-retailcrm-orders.php new file mode 100644 index 0000000..dd6e3da --- /dev/null +++ b/tests/phpunit/test-wc-retailcrm-orders.php @@ -0,0 +1,285 @@ +apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy') + ->disableOriginalConstructor() + ->setMethods(array( + 'ordersGet', + 'ordersUpload', + 'ordersCreate', + 'ordersEdit', + 'customersGet', + 'customersCreate', + 'ordersPaymentCreate', + 'ordersPaymentDelete' + )) + ->getMock(); + + parent::setUp(); + } + + /** + * @param $retailcrm + * @param $apiVersion + * @dataProvider dataProviderRetailcrm + */ + public function test_order_upload($retailcrm, $apiVersion) + { + $this->options = $this->setOptions($apiVersion); + $retailcrm_orders = new WC_Retailcrm_Orders($retailcrm); + $upload_orders = $retailcrm_orders->ordersUpload(); + + if ($retailcrm) { + $this->assertInternalType('array', $upload_orders); + } else { + $this->assertEquals(null, $upload_orders); + } + } + + /** + * @param $retailcrm + * @param $apiVersion + * @dataProvider dataProviderRetailcrm + */ + public function test_order_create($retailcrm, $apiVersion) + { + $this->createTestOrder(); + $this->options = $this->setOptions($apiVersion); + $retailcrm_orders = new WC_Retailcrm_Orders($retailcrm); + $order = $retailcrm_orders->orderCreate($this->order->get_id()); + $order_send = $retailcrm_orders->getOrder(); + + if ($retailcrm) { + $this->assertInstanceOf('WC_Order', $order); + $this->assertInternalType('array', $order_send); + $this->assertArrayHasKey('status', $order_send); + $this->assertArrayHasKey('externalId', $order_send); + $this->assertArrayHasKey('firstName', $order_send); + $this->assertArrayHasKey('lastName', $order_send); + $this->assertArrayHasKey('email', $order_send); + $this->assertArrayHasKey('delivery', $order_send); + $this->assertArrayHasKey('code', $order_send['delivery']); + $this->assertArrayHasKey('address', $order_send['delivery']); + $this->assertArrayHasKey('index', $order_send['delivery']['address']); + $this->assertArrayHasKey('city', $order_send['delivery']['address']); + $this->assertEquals($this->order->get_id(), $order_send['externalId']); + $this->assertEquals('status1', $order_send['status']); + $this->assertEquals('Jeroen', $order_send['firstName']); + $this->assertEquals('Sormani', $order_send['lastName']); + $this->assertEquals('admin@example.org', $order_send['email']); + $this->assertEquals('US', $order_send['countryIso']); + $this->assertEquals('123456', $order_send['delivery']['address']['index']); + $this->assertEquals('WooCity', $order_send['delivery']['address']['city']); + $this->assertEquals('delivery5', $order_send['delivery']['code']); + + if ($apiVersion == 'v4') { + $this->assertArrayHasKey('paymentType', $order_send); + $this->assertEquals('payment1', $order_send['paymentType']); + } elseif ($apiVersion == 'v5') { + $this->assertArrayHasKey('payments', $order_send); + $this->assertInternalType('array', $order_send['payments']); + $this->assertArrayHasKey('type', $order_send['payments'][0]); + $this->assertEquals('payment1', $order_send['payments'][0]['type']); + } + } else { + $this->assertEquals(null, $order); + } + } + + /** + * @param $isSuccessful + * @param $retailcrm + * @param $apiVersion + * @dataProvider dataProviderUpdateOrder + */ + public function test_update_order($isSuccessful, $retailcrm, $apiVersion) + { + $this->createTestOrder(); + $this->options = $this->setOptions($apiVersion); + + if ($retailcrm && $apiVersion == 'v5') { + $responseMock = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $responseMock->expects($this->any()) + ->method('isSuccessful') + ->willReturn($isSuccessful); + + $retailcrm->expects($this->any()) + ->method('ordersEdit') + ->willReturn($responseMock); + + $retailcrm->expects($this->any()) + ->method('ordersPaymentDelete') + ->willReturn($responseMock); + + $response = $this->getResponseData($this->order->get_id()); + $responseMock->setResponse($response); + + $retailcrm->expects($this->any()) + ->method('ordersGet') + ->willReturn($responseMock); + } + + $retailcrm_orders = new WC_Retailcrm_Orders($retailcrm); + $order = $retailcrm_orders->updateOrder($this->order->get_id()); + $order_send = $retailcrm_orders->getOrder(); + + if ($retailcrm) { + $this->assertInstanceOf('WC_Order', $order); + $this->assertInternalType('array', $order_send); + $this->assertArrayHasKey('status', $order_send); + $this->assertArrayHasKey('externalId', $order_send); + $this->assertArrayHasKey('firstName', $order_send); + $this->assertArrayHasKey('lastName', $order_send); + $this->assertArrayHasKey('email', $order_send); + $this->assertArrayHasKey('delivery', $order_send); + $this->assertArrayHasKey('code', $order_send['delivery']); + $this->assertArrayHasKey('address', $order_send['delivery']); + $this->assertArrayHasKey('index', $order_send['delivery']['address']); + $this->assertArrayHasKey('city', $order_send['delivery']['address']); + $this->assertEquals($this->order->get_id(), $order_send['externalId']); + $this->assertEquals('status1', $order_send['status']); + $this->assertEquals('Jeroen', $order_send['firstName']); + $this->assertEquals('Sormani', $order_send['lastName']); + $this->assertEquals('admin@example.org', $order_send['email']); + $this->assertEquals('US', $order_send['countryIso']); + $this->assertEquals('123456', $order_send['delivery']['address']['index']); + $this->assertEquals('WooCity', $order_send['delivery']['address']['city']); + $this->assertEquals('delivery5', $order_send['delivery']['code']); + + if ($apiVersion == 'v4') { + $this->assertArrayHasKey('paymentType', $order_send); + $this->assertEquals('payment1', $order_send['paymentType']); + } elseif ($apiVersion == 'v5') { + $payment = $retailcrm_orders->getPayment(); + $this->assertInternalType('array', $payment); + + if (!empty($payment)) { + $this->assertArrayHasKey('type', $payment); + $this->assertArrayHasKey('amount', $payment); + $this->assertArrayHasKey('order', $payment); + $this->assertEquals('payment1', $payment['type']); + } + } + } else { + $this->assertEquals(null, $order); + } + } + + public function dataProviderUpdateOrder() + { + $this->setUp(); + + return array( + array( + 'is_successful' => true, + 'retailcrm' => $this->apiMock, + 'api_version' => 'v5' + ), + array( + 'is_successful' => true, + 'retailcrm' => false, + 'api_version' => 'v5' + ), + array( + 'is_successful' => false, + 'retailcrm' => false, + 'api_version' => 'v5' + ), + array( + 'is_successful' => false, + 'retailcrm' => $this->apiMock, + 'api_version' => 'v5' + ), + array( + 'is_successful' => false, + 'retailcrm' => $this->apiMock, + 'api_version' => 'v4' + ), + array( + 'is_successful' => true, + 'retailcrm' => $this->apiMock, + 'api_version' => 'v4' + ), + array( + 'is_successful' => false, + 'retailcrm' => false, + 'api_version' => 'v4' + ), + array( + 'is_successful' => true, + 'retailcrm' => false, + 'api_version' => 'v4' + ) + ); + } + + public function dataProviderRetailcrm() + { + $this->setUp(); + + return array( + array( + 'retailcrm' => $this->apiMock, + 'api_version' => 'v4' + ), + array( + 'retailcrm' => false, + 'api_version' => 'v4' + ), + array( + 'retailcrm' => $this->apiMock, + 'api_version' => 'v5' + ), + array( + 'retailcrm' => false, + 'api_version' => 'v5' + ) + ); + } + + private function createTestOrder() + { + $this->order = WC_Helper_Order::create_order(0); +// var_dump($this->order); +// $this->order = new WC_Order(); +// $this->order->set_payment_method('bacs'); +// $this->order->set_billing_first_name('testFirstName'); +// $this->order->set_billing_last_name('testLastName'); +// $this->order->set_billing_country('RU'); +// $this->order->set_billing_address_1('testAddress1'); +// $this->order->set_billing_city('testCity'); +// $this->order->set_billing_postcode('111111'); +// $this->order->set_billing_email('test@mail.com'); +// $this->order->save(); + } + + private function getResponseData($externalId) + { + return array( + 'success' => true, + 'order' => array( + 'payments' => array( + array( + 'id' => 1, + 'externalId' => $externalId, + 'type' => 'payment2' + ) + ) + ) + ); + } +} diff --git a/woo-retailcrm/include/class-wc-retailcrm-base.php b/woo-retailcrm/include/class-wc-retailcrm-base.php deleted file mode 100644 index 4b47186..0000000 --- a/woo-retailcrm/include/class-wc-retailcrm-base.php +++ /dev/null @@ -1,527 +0,0 @@ -id = 'integration-retailcrm'; - $this->method_title = __('RetailCRM', 'retailcrm'); - $this->method_description = __('Integration with eComlogic managament system.', 'retailcrm'); - - // Load the settings. - - $this->init_form_fields(); - $this->init_settings(); - - // Actions. - add_action( 'woocommerce_update_options_integration_' . $this->id, array( $this, 'process_admin_options' ) ); - } - - /** - * Initialize integration settings form fields. - */ - public function init_form_fields() { - - $this->form_fields = array( - array( 'title' => __( 'General Options', 'retailcrm' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), - - 'api_url' => array( - 'title' => __( 'API URL', 'retailcrm' ), - 'type' => 'text', - 'description' => __( 'Enter with your API URL (https://yourdomain.ecomlogic.com).', 'retailcrm' ), - 'desc_tip' => true, - 'default' => '' - ), - 'api_key' => array( - 'title' => __( 'API Key', 'retailcrm' ), - 'type' => 'text', - 'description' => __( 'Enter with your API Key. You can find this in eComlogic admin interface.', 'retailcrm' ), - 'desc_tip' => true, - 'default' => '' - ) - ); - - $api_version_list = array('v4' => 'v4','v5' => 'v5'); - - $this->form_fields[] = array( - 'title' => __( 'API settings', 'retailcrm' ), - 'type' => 'title', - 'description' => '', - 'id' => 'api_options' - ); - - $this->form_fields['api_version'] = array( - 'title' => __( 'API version', 'retailcrm' ), - 'description' => __( 'Select the API version you want to use', 'retailcrm' ), - 'css' => 'min-width:50px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $api_version_list, - 'desc_tip' => true, - ); - - $this->form_fields[] = array( - 'title' => __( 'Catalog settings', 'retailcrm' ), - 'type' => 'title', - 'description' => '', - 'id' => 'catalog_options' - ); - - foreach (get_post_statuses() as $status_key => $status_value) { - $this->form_fields['p_' . $status_key] = array( - 'title' => $status_value, - 'label' => ' ', - 'description' => '', - 'class' => 'checkbox', - 'type' => 'checkbox', - 'desc_tip' => true, - ); - } - - if ($this->get_option( 'api_url' ) != '' && $this->get_option( 'api_key' ) != '') { - if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' && isset($_GET['tab']) && $_GET['tab'] == 'integration') { - add_action('admin_print_footer_scripts', array($this, 'show_blocks'), 99); - - $retailcrm = new WC_Retailcrm_Proxy( - $this->get_option( 'api_url' ), - $this->get_option( 'api_key' ), - $this->get_option( 'api_version') - ); - - /** - * Order methods options - */ - $order_methods_option = array(); - $order_methods_list = $retailcrm->orderMethodsList(); - - if ($order_methods_list->isSuccessful()) { - foreach ($order_methods_list['orderMethods'] as $order_method) { - if ($order_method['active'] == false) { - continue; - } - - $order_methods_option[$order_method['code']] = $order_method['name']; - } - - $this->form_fields[] = array( - 'title' => __('Order methods', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'order_methods_options' - ); - - $this->form_fields['order_methods'] = array( - 'label' => ' ', - 'title' => __('Ordering methods available for downloading from eComlogic', 'retailcrm'), - 'class' => '', - 'type' => 'multiselect', - 'description' => __('Select the order methods that will be uploaded from eComlogic to site', 'retailcrm'), - 'options' => $order_methods_option, - 'select_buttons' => true - ); - } - - /** - * Shipping options - */ - $shipping_option_list = array(); - $retailcrm_shipping_list = $retailcrm->deliveryTypesList(); - - if ($retailcrm_shipping_list->isSuccessful()) { - foreach ($retailcrm_shipping_list['deliveryTypes'] as $retailcrm_shipping_type) { - $shipping_option_list[$retailcrm_shipping_type['code']] = $retailcrm_shipping_type['name']; - } - - $wc_shipping_list = get_wc_shipping_methods(); - - $this->form_fields[] = array( - 'title' => __('Shipping methods', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'shipping_options' - ); - - foreach ( $wc_shipping_list as $shipping_code => $shipping ) { - if ( isset( $shipping['enabled'] ) && $shipping['enabled'] == 'yes' ) { - $this->form_fields[$shipping_code] = array( - 'title' => __($shipping['title'], 'woocommerce'), - 'description' => __($shipping['description'], 'woocommerce'), - 'css' => 'min-width:350px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $shipping_option_list, - 'desc_tip' => true, - ); - } - } - } - - /** - * Payment options - */ - $payment_option_list = array(); - $retailcrm_payment_list = $retailcrm->paymentTypesList(); - - if ($retailcrm_payment_list->isSuccessful()) { - foreach ($retailcrm_payment_list['paymentTypes'] as $retailcrm_payment_type) { - $payment_option_list[$retailcrm_payment_type['code']] = $retailcrm_payment_type['name']; - } - - $wc_payment = new WC_Payment_Gateways(); - - $this->form_fields[] = array( - 'title' => __('Payment methods', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'payment_options' - ); - - foreach ( $wc_payment->payment_gateways as $payment ) { - if ( isset( $payment->enabled ) && $payment->enabled == 'yes' ) { - $key = $payment->id; - $name = $key; - $this->form_fields[$name] = array( - 'title' => __($payment->method_title, 'woocommerce'), - 'description' => __($payment->method_description, 'woocommerce'), - 'css' => 'min-width:350px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $payment_option_list, - 'desc_tip' => true, - ); - } - } - } - - /** - * Statuses options - */ - $statuses_option_list = array(); - $retailcrm_statuses_list = $retailcrm->statusesList(); - - if ($retailcrm_statuses_list->isSuccessful()) { - foreach ($retailcrm_statuses_list['statuses'] as $retailcrm_status) { - $statuses_option_list[$retailcrm_status['code']] = $retailcrm_status['name']; - } - - $wc_statuses = wc_get_order_statuses(); - - $this->form_fields[] = array( - 'title' => __('Statuses', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'statuses_options' - ); - - foreach ( $wc_statuses as $idx => $name ) { - $uid = str_replace('wc-', '', $idx); - $this->form_fields[$uid] = array( - 'title' => __($name, 'woocommerce'), - 'css' => 'min-width:350px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $statuses_option_list, - 'desc_tip' => true, - ); - } - } - - /** - * Inventories options - */ - $this->form_fields[] = array( - 'title' => __('Inventories settings', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'invent_options' - ); - - $this->form_fields['sync'] = array( - 'label' => __('Sync inventories', 'retailcrm'), - 'title' => __('Inventories', 'retailcrm'), - 'class' => 'checkbox', - 'type' => 'checkbox', - 'description' => __('Check this checkbox if you want to unload the rest of the products from CRM to site.', 'retailcrm') - ); - - /** - * UA options - */ - $this->form_fields[] = array( - 'title' => __('UA settings', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'invent_options' - ); - - $this->form_fields['ua'] = array( - 'label' => __('Activate UA', 'retailcrm'), - 'title' => __('UA', 'retailcrm'), - 'class' => 'checkbox', - 'type' => 'checkbox', - 'description' => __('Check this checkbox if you want to unload information to UA.', 'retailcrm') - ); - - $this->form_fields['ua_code'] = array( - 'title' => __('UA code', 'retailcrm'), - 'class' => 'input', - 'type' => 'input' - ); - - $this->form_fields['ua_custom'] = array( - 'title' => __('Custom parameter', 'retailcrm'), - 'class' => 'input', - 'type' => 'input' - ); - - /** - * Uploads options - */ - $options = array_filter(get_option( 'woocommerce_integration-retailcrm_settings' )); - - if (!isset($options['uploads'])) { - $this->form_fields[] = array( - 'title' => __('Uploads settings', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'upload_options' - ); - - $this->form_fields['upload-button'] = array( - 'label' => __('Upload', 'retailcrm'), - 'title' => __('Upload all customers and orders', 'retailcrm' ), - 'type' => 'button', - 'description' => __('Batch unloading of existing customers and orders.', 'retailcrm' ), - 'desc_tip' => true, - 'id' => 'uploads-retailcrm' - ); - } - - /* - * Generate icml file - */ - $this->form_fields[] = array( - 'title' => __( 'Generate ICML catalog', 'retailcrm' ), - 'type' => 'title', - 'description' => '', - 'id' => 'icml_options' - ); - - $this->form_fields[] = array( - 'label' => __('Generate', 'retailcrm'), - 'title' => __('Generate ICML', 'retailcrm'), - 'type' => 'button', - 'description' => __('This functionality allows you to generate a catalog of products for downloading to CRM.', 'retailcrm'), - 'desc_tip' => true, - 'id' => 'icml-retailcrm' - ); - } - } - } - - /** - * Generate html button - * - * @param string $key - * @param array $data - * - * @return string - */ - public function generate_button_html( $key, $data ) { - $field = $this->plugin_id . $this->id . '_' . $key; - $defaults = array( - 'class' => 'button-secondary', - 'css' => '', - 'custom_attributes' => array(), - 'desc_tip' => false, - 'description' => '', - 'title' => '', - ); - - $data = wp_parse_args( $data, $defaults ); - - ob_start(); - ?> - - - - - get_field_key( $key ); - $defaults = array( - 'title' => '', - 'class' => '', - ); - - $data = wp_parse_args( $data, $defaults ); - - ob_start(); - ?> - -

- -

- - - get_post_data(); - - $versionMap = array( - 'v4' => '4.0', - 'v5' => '5.0' - ); - - $api = new WC_Retailcrm_Proxy( - $post[$this->plugin_id . $this->id . '_api_url'], - $post[$this->plugin_id . $this->id . '_api_key'] - ); - - $response = $api->apiVersions(); - - if ($response && $response->isSuccessful()) { - if (!in_array($versionMap[$value], $response['versions'])) { - WC_Admin_Settings::add_error( esc_html__( 'The selected version of the API is unavailable', 'retailcrm' ) ); - $value = ''; - } - - return $value; - } - } - - /** - * Validate API url - * - * @param string $key - * @param string $value - * - * @return string - */ - public function validate_api_url_field( $key, $value ) { - $post = $this->get_post_data(); - $api = new WC_Retailcrm_Proxy( - $value, - $post[$this->plugin_id . $this->id . '_api_key'] - ); - - $response = $api->apiVersions(); - - if ($response == NULL) { - WC_Admin_Settings::add_error( esc_html__( 'Enter the correct CRM address', 'retailcrm' ) ); - $value = ''; - } - - return $value; - } - - /** - * Validate API key - * - * @param string $key - * @param string $value - * - * @return string - */ - public function validate_api_key_field( $key, $value ) { - $post = $this->get_post_data(); - $api = new WC_Retailcrm_Proxy( - $post[$this->plugin_id . $this->id . '_api_url'], - $value - ); - - $response = $api->apiVersions(); - - if (!is_object($response)) { - $value = ''; - } - - if (!$response->isSuccessful()) { - WC_Admin_Settings::add_error( esc_html__( 'Enter the correct API key', 'retailcrm' ) ); - $value = ''; - } - - return $value; - } - - /** - * Scritp show|hide block settings - */ - function show_blocks() { - ?> - - retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); - - if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { - include_once( WP_PLUGIN_DIR . '/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php' ); - } - - $this->retailcrm = new WC_Retailcrm_Proxy( - $this->retailcrm_settings['api_url'], - $this->retailcrm_settings['api_key'], - $this->retailcrm_settings['api_version'] - ); - } - - /** - * Upload customers to CRM - * - * @return void - */ - public function customersUpload() - { - $users = get_users(); - $data_customers = array(); - - foreach ($users as $user) { - if (!in_array('customer', $user->roles)) { - continue; - } - - $customer = new WC_Customer($user->ID); - $firstName = $customer->get_first_name(); - $data_customer = array( - 'createdAt' => $user->data->user_registered, - 'externalId' => $user->ID, - 'firstName' => $firstName ? $firstName : $customer->get_username(), - 'lastName' => $customer->get_last_name(), - 'email' => $user->data->user_email, - 'address' => array( - 'index' => $customer->get_billing_postcode(), - 'countryIso' => $customer->get_billing_country(), - 'region' => $customer->get_billing_state(), - 'city' => $customer->get_billing_city(), - 'text' => $customer->get_billing_address_1() . ',' . $customer->get_billing_address_2() - ) - ); - - if ($customer->get_billing_phone()) { - $data_customer['phones'][] = array( - 'number' => $customer->get_billing_phone() - ); - } - - $data_customers[] = $data_customer; - } - - $data = array_chunk($data_customers, 50); - - foreach ($data as $array_customers) { - $this->retailcrm->customersUpload($array_customers); - } - } - - /** - * Create customer in CRM - * - * @param int $customer_id - * - * @return void - */ - public function createCustomer($customer_id) - { - $customer = new WC_Customer($customer_id); - - if ($customer->get_role() == 'customer'){ - $data_customer = $this->processCustomer($customer); - - $this->retailcrm->customersCreate($data_customer); - } - } - - /** - * Edit customer in CRM - * - * @param int $customer_id - * - * @return void - */ - public function updateCustomer($customer_id) - { - $customer = new WC_Customer($customer_id); - - if ($customer->get_role() == 'customer'){ - $data_customer = $this->processCustomer($customer); - - $this->retailcrm->customersEdit($data_customer); - } - } - - /** - * Process customer - * - * @param object $customer - * - * @return array $data_customer - */ - protected function processCustomer($customer) - { - $createdAt = $customer->get_date_created(); - $firstName = $customer->get_first_name(); - $data_customer = array( - 'createdAt' => $createdAt->date('Y-m-d H:i:s'), - 'externalId' => $customer->get_id(), - 'firstName' => $firstName ? $firstName : $customer->get_username(), - 'lastName' => $customer->get_last_name(), - 'email' => $customer->get_email(), - 'address' => array( - 'index' => $customer->get_billing_postcode(), - 'countryIso' => $customer->get_billing_country(), - 'region' => $customer->get_billing_state(), - 'city' => $customer->get_billing_city(), - 'text' => $customer->get_billing_address_1() . ',' . $customer->get_billing_address_2() - ) - ); - - if ($customer->get_billing_phone()) { - $data_customer['phones'][] = array( - 'number' => $customer->get_billing_phone() - ); - } - - return $data_customer; - } - } -endif; diff --git a/woo-retailcrm/include/class-wc-retailcrm-inventories.php b/woo-retailcrm/include/class-wc-retailcrm-inventories.php deleted file mode 100644 index 6fe7cb2..0000000 --- a/woo-retailcrm/include/class-wc-retailcrm-inventories.php +++ /dev/null @@ -1,70 +0,0 @@ -retailcrm_settings = get_option( 'woocommerce_integration-retailcrm_settings' ); - - if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { - include_once( WP_PLUGIN_DIR . '/woo-retailcrm/include/api/class-wc-retailcrm-proxy.php' ); - } - - $this->retailcrm = new WC_Retailcrm_Proxy( - $this->retailcrm_settings['api_url'], - $this->retailcrm_settings['api_key'], - $this->retailcrm_settings['api_version'] - ); - } - - public function load_stocks() - { - $page = 1; - - do { - $result = $this->retailcrm->storeInventories(array(), $page, 250); - $totalPageCount = $result['pagination']['totalPageCount']; - $page++; - - foreach ($result['offers'] as $offer) { - if (isset($offer['externalId'])) { - $product = wc_get_product($offer['externalId']); - - if ($product != false) { - if ($product->get_type() == 'variable') { - continue; - } - update_post_meta($offer['externalId'], '_manage_stock', 'yes'); - $product->set_stock_quantity($offer['quantity']); - $product->save(); - } - } - } - - } while ($page <= $totalPageCount); - } - - public function updateQuantity() - { - $options = array_filter(get_option( 'woocommerce_integration-retailcrm_settings' )); - - if ($options['sync'] == 'yes') { - $this->load_stocks(); - } else { - return false; - } - } - } -endif; diff --git a/woo-retailcrm/retailcrm.php b/woo-retailcrm/retailcrm.php deleted file mode 100644 index 94615ce..0000000 --- a/woo-retailcrm/retailcrm.php +++ /dev/null @@ -1,475 +0,0 @@ -updateQuantity(); -} - -/** - * Generate ICML file - */ -function generate_icml() -{ - if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) { - include_once( check_custom_icml() ); - } - - $icml = new WC_Retailcrm_Icml(); - $icml->generate(); -} - -/** - * Create order - * - * @param $order_id - */ -function retailcrm_process_order($order_id) -{ - if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { - include_once( check_custom_orders() ); - } - - $order_class = new WC_Retailcrm_Orders(); - $order_class->orderCreate($order_id); -} - -/** - * Update order status - * - * @param $order_id - */ -function retailcrm_update_order_status($order_id) -{ - if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { - include_once( check_custom_orders() ); - } - - $order_class = new WC_Retailcrm_Orders(); - $order_class->orderUpdateStatus($order_id); -} - -/** - * Update order payment - * - * @param $order_id - */ -function retailcrm_update_order_payment($order_id) -{ - if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { - include_once( check_custom_orders() ); - } - - $order_class = new WC_Retailcrm_Orders(); - $order_class->orderUpdatePayment($order_id); -} - -/** - * Update order items - * - * @param $order_id, $data - */ -function retailcrm_update_order_items($order_id, $data) -{ - if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { - include_once( check_custom_orders() ); - } - - $order_class = new WC_Retailcrm_Orders(); - $order_class->orderUpdateItems($order_id, $data); -} - -function retailcrm_history_get() -{ - if ( ! class_exists( 'WC_Retailcrm_History' ) ) { - include_once( check_custom_history() ); - } - - $history_class = new WC_Retailcrm_History(); - $history_class->getHistory(); -} - -function create_customer($customer_id) { - if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) { - include_once( check_custom_customers() ); - } - - $customer_class = new WC_Retailcrm_Customers(); - $customer_class->createCustomer($customer_id); -} - -function update_customer($customer_id) { - if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) { - include_once( check_custom_customers() ); - } - - $customer_class = new WC_Retailcrm_Customers(); - $customer_class->updateCustomer($customer_id); -} - -function register_icml_generation() { - // Make sure this event hasn't been scheduled - if( !wp_next_scheduled( 'retailcrm_icml' ) ) { - // Schedule the event - wp_schedule_event( time(), 'three_hours', 'retailcrm_icml' ); - } -} - -function register_retailcrm_history() { - // Make sure this event hasn't been scheduled - if( !wp_next_scheduled( 'retailcrm_history' ) ) { - // Schedule the event - wp_schedule_event( time(), 'five_minutes', 'retailcrm_history' ); - } -} - -function check_inventories() { - if( !wp_next_scheduled( 'retailcrm_inventories' ) ) { - // Schedule the event - wp_schedule_event( time(), 'fiveteen_minutes', 'retailcrm_inventories' ); - } -} - -function filter_cron_schedules($param) { - return array( - 'five_minutes' => array( - 'interval' => 300, // seconds - 'display' => __('Every 5 minutes') - ), - 'three_hours' => array( - 'interval' => 10800, // seconds - 'display' => __('Every 3 hours') - ), - 'fiveteen_minutes' => array( - 'interval' => 900, // seconds - 'display' => __('Every 15 minutes') - ) - ); -} - -function upload_to_crm() { - if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) { - include_once( check_custom_orders() ); - } - - if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) { - include_once( check_custom_customers() ); - } - - $options = array_filter(get_option( 'woocommerce_integration-retailcrm_settings' )); - - $orders = new WC_Retailcrm_Orders(); - $customers = new WC_Retailcrm_Customers(); - $customers->customersUpload(); - $orders->ordersUpload(); - - $options['uploads'] = 'yes'; - update_option('woocommerce_integration-retailcrm_settings', $options); -} - -function ajax_upload() { - $ajax_url = admin_url('admin-ajax.php'); - ?> - - - - updateOrder($order_id); -} - -function initialize_analytics() { - $options = get_option('woocommerce_integration-retailcrm_settings'); - - if ($options && is_array($options)) { - $options = array_filter($options); - - if (isset($options['ua']) && $options['ua'] == 'yes') { - ?> - - get_items() as $item) { - $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; - $_product = wc_get_product($uid); - if ($_product) { - $order_item = array( - 'id' => $uid, - 'name' => $item['name'], - 'price' => (float)$_product->get_price(), - 'quantity' => $item['qty'], - ); - - $order_items[] = $order_item; - } - } - - $url = parse_url(get_site_url()); - $domain = $url['host']; - ?> - - Date: Fri, 27 Apr 2018 11:28:57 +0300 Subject: [PATCH 38/75] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bf9ea0..2f6148c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ -woocommerce-module +[![Build Status](https://img.shields.io/travis/retailcrm/woocommerce-module/master.svg?style=flat-square)](https://travis-ci.org/retailcrm/woocommerce-module) +![WordPress plugin](https://img.shields.io/wordpress/plugin/v/woo-retailcrm.svg?style=flat-square) +[![PHP version](https://img.shields.io/badge/PHP-5.3%2C%205.4%2C%205.5%2C%205.6%2C%207.0%2C%207.1%2C%207.2-blue.svg?style=flat-square)](https://php.net/) + +Woocommerce-module ================== Модуль интеграции с [retailCRM](http://retailcrm.ru) From e649a865d471341243a7715a22404c215f55951a Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Fri, 27 Apr 2018 12:06:09 +0300 Subject: [PATCH 39/75] Fix bootstrap for tests (#61) --- tests/phpunit/bootstrap.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/phpunit/bootstrap.php b/tests/phpunit/bootstrap.php index eae2866..8559e88 100644 --- a/tests/phpunit/bootstrap.php +++ b/tests/phpunit/bootstrap.php @@ -9,19 +9,19 @@ if (!$_tests_dir) { require_once $_tests_dir . '/includes/functions.php'; function _manually_load_plugin() { - $plugin_dir = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/'; + $plugin_dir = dirname( dirname( dirname( __FILE__ ) ) ) . '/'; - require $plugin_dir . 'woocommerce-retailcrm/src/include/class-wc-retailcrm-orders.php'; - require $plugin_dir . 'woocommerce-retailcrm/src/include/class-wc-retailcrm-customers.php'; - require $plugin_dir . 'woocommerce-retailcrm/src/include/class-wc-retailcrm-inventories.php'; - require $plugin_dir . 'woocommerce-retailcrm/src/retailcrm.php'; + require $plugin_dir . 'src/include/class-wc-retailcrm-orders.php'; + require $plugin_dir . 'src/include/class-wc-retailcrm-customers.php'; + require $plugin_dir . 'src/include/class-wc-retailcrm-inventories.php'; + require $plugin_dir . 'src/retailcrm.php'; } tests_add_filter('muplugins_loaded', '_manually_load_plugin'); require '/tmp/woocommerce/tests/bootstrap.php'; -$plugin_dir = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/'; +$plugin_dir = dirname( dirname( dirname( __FILE__ ) ) ) . '/'; // helpers -require $plugin_dir . 'woocommerce-retailcrm/tests/helpers/class-wc-retailcrm-response-helper.php'; -require $plugin_dir . 'woocommerce-retailcrm/tests/helpers/class-wc-retailcrm-test-case-helper.php'; \ No newline at end of file +require $plugin_dir . 'tests/helpers/class-wc-retailcrm-response-helper.php'; +require $plugin_dir . 'tests/helpers/class-wc-retailcrm-test-case-helper.php'; From 56bc008af4da27ef6aa7874e662a0757838fba76 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Fri, 27 Apr 2018 12:39:23 +0300 Subject: [PATCH 40/75] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f6148c..3d5507d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![Build Status](https://img.shields.io/travis/retailcrm/woocommerce-module/master.svg?style=flat-square)](https://travis-ci.org/retailcrm/woocommerce-module) -![WordPress plugin](https://img.shields.io/wordpress/plugin/v/woo-retailcrm.svg?style=flat-square) +[![WordPress plugin](https://img.shields.io/wordpress/plugin/v/woo-retailcrm.svg?style=flat-square)](https://wordpress.org/plugins/woo-retailcrm/) [![PHP version](https://img.shields.io/badge/PHP-5.3%2C%205.4%2C%205.5%2C%205.6%2C%207.0%2C%207.1%2C%207.2-blue.svg?style=flat-square)](https://php.net/) Woocommerce-module From 1b8328b941af5adc94b688d62da4ccac96b8eca2 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Fri, 27 Apr 2018 16:28:28 +0300 Subject: [PATCH 41/75] Deploy script fix (#62) * Deploy fix * Bootstrap update --- Makefile | 5 ++++- tests/phpunit/bootstrap.php | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 042da3c..60c1309 100644 --- a/Makefile +++ b/Makefile @@ -8,11 +8,14 @@ svn_clone: svn co $(SVNREPOURL) /tmp/svn_plugin_dir --username $(USERNAME) --password $(PASSWORD) --no-auth-cache prepare: /tmp/svn_plugin_dir - svn copy /tmp/svn_plugin_dir/trunk /tmp/svn_plugin_dir/tags/$(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache + svn delete /tmp/svn_plugin_dir/trunk/* rm -rf /tmp/svn_plugin_dir/trunk/* cp -R $(TRAVIS_BUILD_DIR)/src/* /tmp/svn_plugin_dir/trunk + svn copy /tmp/svn_plugin_dir/trunk /tmp/svn_plugin_dir/tags/$(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache svn_commit: /tmp/svn_plugin_dir/tags + svn add /tmp/svn_plugin_dir/trunk/* --force + svn add /tmp/svn_plugin_dir/tags/$(VERSION)/* --force svn ci /tmp/svn_plugin_dir -m $(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache remove_dir: diff --git a/tests/phpunit/bootstrap.php b/tests/phpunit/bootstrap.php index 8559e88..fa86a7d 100644 --- a/tests/phpunit/bootstrap.php +++ b/tests/phpunit/bootstrap.php @@ -9,7 +9,7 @@ if (!$_tests_dir) { require_once $_tests_dir . '/includes/functions.php'; function _manually_load_plugin() { - $plugin_dir = dirname( dirname( dirname( __FILE__ ) ) ) . '/'; + $plugin_dir = dirname(dirname(dirname(__FILE__))) . '/'; require $plugin_dir . 'src/include/class-wc-retailcrm-orders.php'; require $plugin_dir . 'src/include/class-wc-retailcrm-customers.php'; @@ -21,7 +21,7 @@ tests_add_filter('muplugins_loaded', '_manually_load_plugin'); require '/tmp/woocommerce/tests/bootstrap.php'; -$plugin_dir = dirname( dirname( dirname( __FILE__ ) ) ) . '/'; +$plugin_dir = dirname(dirname(dirname(__FILE__))) . '/'; // helpers require $plugin_dir . 'tests/helpers/class-wc-retailcrm-response-helper.php'; require $plugin_dir . 'tests/helpers/class-wc-retailcrm-test-case-helper.php'; From 01d970af8f619ee42fc5aad4e11a027d5a350a67 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Mon, 28 May 2018 12:56:19 +0300 Subject: [PATCH 42/75] v3.1.0 --- CHANGELOG.md | 4 + VERSION | 2 +- src/include/class-wc-retailcrm-base.php | 80 +++++++++++++- src/include/class-wc-retailcrm-customers.php | 9 +- src/include/class-wc-retailcrm-ga.php | 9 ++ src/include/class-wc-retailcrm-history.php | 99 +++++++----------- src/include/class-wc-retailcrm-orders.php | 24 ++++- src/languages/retailcrm-ru_RU.mo | Bin 5167 -> 5919 bytes src/readme.txt | 8 +- src/retailcrm.php | 6 +- .../class-wc-retailcrm-test-case-helper.php | 10 +- tests/phpunit/bootstrap.php | 1 + tests/phpunit/test-wc-retailcrm-ga.php | 61 +++++++++++ tests/phpunit/test-wc-retailcrm-orders.php | 11 -- 14 files changed, 231 insertions(+), 93 deletions(-) create mode 100644 tests/phpunit/test-wc-retailcrm-ga.php diff --git a/CHANGELOG.md b/CHANGELOG.md index 7000f85..2529772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2018-05-28 v3.1.0 +* В интерфейс настроек плагина добавлена возможность ручной выгрузки заказов +* Исправлена инициализация кода UA для отправки заказов на всех страницах + ## 2018-04-26 v3.0.0 * Добавлены тесты * Произведен рефакторинг кода diff --git a/VERSION b/VERSION index 56fea8a..a0cd9f0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 \ No newline at end of file +3.1.0 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index 95dae44..1c9365a 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -60,8 +60,10 @@ if (!class_exists('WC_Retailcrm_Base')) { add_action('init', array($this, 'register_retailcrm_history')); add_action('wp_ajax_do_upload', array($this, 'upload_to_crm')); add_action('wp_ajax_generate_icml', array($this, 'generate_icml')); + add_action('wp_ajax_order_upload', array($this, 'order_upload')); add_action('admin_print_footer_scripts', array($this, 'ajax_upload'), 99); add_action('admin_print_footer_scripts', array($this, 'ajax_generate_icml'), 99); + add_action('admin_print_footer_scripts', array($this, 'ajax_selected_order'), 99); add_action('woocommerce_created_customer', array($this, 'create_customer'), 10, 1); add_action('woocommerce_update_customer', array($this, 'update_customer'), 10, 1); add_action('woocommerce_update_order', array($this, 'update_order'), 11, 1); @@ -172,6 +174,27 @@ if (!class_exists('WC_Retailcrm_Base')) { } } + /** + * Upload selected orders + */ + public function order_upload() { + if (!class_exists('WC_Retailcrm_Orders')) { + include_once(self::checkCustomFile('orders')); + } + + $ids = false; + + if (isset($_GET['order_ids_retailcrm'])) { + $ids = explode(',', $_GET['order_ids_retailcrm']); + } + + $retailcm_order = new WC_Retailcrm_Orders($this->apiClient); + + if ($ids) { + $retailcm_order->ordersUpload($ids, true); + } + } + /** * Upload archive customers and order to retailCRM */ @@ -193,13 +216,13 @@ if (!class_exists('WC_Retailcrm_Base')) { $retailcrm_orders->ordersUpload(); $options['uploads'] = 'yes'; - update_option('woocommerce_integration-retailcrm_settings', $options); + update_option(self::$option_key, $options); } public function ajax_upload() { $ajax_url = admin_url('admin-ajax.php'); ?> - + get_option('ua') && $this->get_option('ua_code')) { + if ($this->get_option('ua') && $this->get_option('ua_code') && is_checkout()) { $retailcrm_analytics = WC_Retailcrm_Google_Analytics::getInstance($this->settings); echo $retailcrm_analytics->send_analytics(); } else { @@ -598,6 +643,33 @@ if (!class_exists('WC_Retailcrm_Base')) { 'desc_tip' => true, 'id' => 'icml-retailcrm' ); + + /* + * Upload single order + */ + $this->form_field[] = array( + 'title' => __( 'Upload single order by id', 'retailcrm' ), + 'type' => 'title', + 'description' => '', + 'id' => 'order_options' + ); + + $this->form_fields['single_order'] = array( + 'label' => __('Order ID', 'retailcrm'), + 'title' => __('Enter id order', 'retailcrm'), + 'type' => 'input', + 'description' => __('Enter comma-separated order numbers.', 'retailcrm'), + 'desc_tip' => true + ); + + $this->form_fields[] = array( + 'label' => __('Upload', 'retailcrm'), + 'title' => __('Upload single order by identificator', 'retailcrm'), + 'type' => 'button', + 'description' => __('This functionality allows you to upload single order to CRM.', 'retailcrm'), + 'desc_tip' => true, + 'id' => 'single_order_btn' + ); } } } diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php index b2f1622..9933174 100644 --- a/src/include/class-wc-retailcrm-customers.php +++ b/src/include/class-wc-retailcrm-customers.php @@ -35,15 +35,16 @@ if (!class_exists('WC_Retailcrm_Customers')) : /** * Upload customers to CRM * - * @return array $data + * @param array $ids + * @return array mixed */ - public function customersUpload() + public function customersUpload($ids = array()) { if (!$this->retailcrm) { - return; + return null; } - $users = get_users(); + $users = get_users(array('include' => $ids)); $data_customers = array(); foreach ($users as $user) { diff --git a/src/include/class-wc-retailcrm-ga.php b/src/include/class-wc-retailcrm-ga.php index e791ae7..727655e 100644 --- a/src/include/class-wc-retailcrm-ga.php +++ b/src/include/class-wc-retailcrm-ga.php @@ -59,9 +59,18 @@ if (!class_exists('WC_Retailcrm_Google_Analytics')) { */ public function send_analytics() { $js = ''; + + if (!isset($_GET['key'])) { + return $js; + } + $order_id = wc_get_order_id_by_order_key($_GET['key']); $order = wc_get_order($order_id); + if (!$order) { + return $js; + } + foreach ($order->get_items() as $item) { $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id']; $_product = wc_get_product($uid); diff --git a/src/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php index c7f8397..82bd751 100644 --- a/src/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -192,7 +192,10 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $this->orderEdit($record, $options); } catch (Exception $exception) { $logger = new WC_Logger(); - $logger->add('retailcrm', sprintf("[%s] - %s", $exception->getMessage(), 'Exception in file - ' . $exception->getFile() . ' on line ' . $exception->getLine())); + $logger->add('retailcrm', + sprintf("[%s] - %s", $exception->getMessage(), + 'Exception in file - ' . $exception->getFile() . ' on line ' . $exception->getLine()) + ); continue; } @@ -214,52 +217,26 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : * @return void */ protected function removeFuncsHook() - { - if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { - remove_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); - remove_action('woocommerce_saved_order_items', 'retailcrm_update_order_items', 10, 2); - remove_action('update_post_meta', 'retailcrm_update_order', 11, 4); - remove_action('woocommerce_payment_complete', 'retailcrm_update_order_payment', 11, 1); - remove_action('woocommerce_checkout_update_user_meta', 'update_customer', 10, 2); - } else { - remove_action('woocommerce_update_order', 'update_order', 11, 1); - remove_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); - } + { + remove_action('woocommerce_update_order', 'update_order', 11, 1); + remove_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); } /** * Add function hooks after downloading history changes - * + * * @return void */ protected function addFuncsHook() - { - if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { - if (!has_action('woocommerce_checkout_update_user_meta', 'update_customer')) { - add_action('woocommerce_checkout_update_user_meta', 'update_customer', 10, 2); - } - if (!has_action('woocommerce_order_status_changed', 'retailcrm_update_order_status')) { - add_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); - } - if (!has_action('woocommerce_saved_order_items', 'retailcrm_update_order_items')) { - add_action('woocommerce_saved_order_items', 'retailcrm_update_order_items', 10, 2); - } - if (!has_action('update_post_meta', 'retailcrm_update_order')) { - add_action('update_post_meta', 'retailcrm_update_order', 11, 4); - } - if (!has_action('woocommerce_payment_complete', 'retailcrm_update_order_payment')) { - add_action('woocommerce_payment_complete', 'retailcrm_update_order_payment', 11, 1); - } - } else { - if (!has_action('woocommerce_update_order', 'update_order')) { - add_action('woocommerce_update_order', 'update_order', 11, 1); - } - if (!has_action('woocommerce_checkout_update_user_meta', 'update_customer')) { - add_action('woocommerce_checkout_update_user_meta', 'update_customer', 10, 2); - } - if (!has_action('woocommerce_order_status_changed', 'retailcrm_update_order_status')) { - add_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); - } + { + if (!has_action('woocommerce_update_order', 'update_order')) { + add_action('woocommerce_update_order', 'update_order', 11, 1); + } + if (!has_action('woocommerce_checkout_update_user_meta', 'update_customer')) { + add_action('woocommerce_checkout_update_user_meta', 'update_customer', 10, 2); + } + if (!has_action('woocommerce_order_status_changed', 'retailcrm_update_order_status')) { + add_action('woocommerce_order_status_changed', 'retailcrm_update_order_status', 11, 1); } } @@ -268,7 +245,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : * * @param array $record * @param array $options - * @return void + * @return mixed */ protected function orderEdit($record, $options) { @@ -345,7 +322,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $shipping_method = $shipping_methods[$method_id]['shipping_methods'][$options[$newValue]]; } - if ( is_object($crmOrder)) { + if (is_object($crmOrder)) { if ($crmOrder->isSuccessful()) { $deliveryCost = isset($crmOrder['order']['delivery']['cost']) ? $crmOrder['order']['delivery']['cost'] : 0; } @@ -354,10 +331,15 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $args = array( 'method_id' => $options[$newValue], 'method_title' => isset($shipping_method) ? $shipping_method['title'] : $shipping_methods[$options[$newValue]]['name'], - 'total' => $deliveryCost + 'total' => isset($deliveryCost) ? $deliveryCost : 0 ); $item = $order->get_item((int)$item_id); + + if (!$item) { + return false; + } + $item->set_order_id((int)$order->get_id()); $item->set_props($args); $item->save(); @@ -442,7 +424,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : && isset($record['order']['orderMethod']) && !in_array($record['order']['orderMethod'], $this->order_methods) ) { - return; + return false; } $args = array( @@ -551,20 +533,15 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } - if (version_compare(get_option('woocommerce_db_version'), '3.0', '<' )) { - $shipping_rate = new WC_Shipping_Rate($shipping_method_id, isset($shipping_method_title) ? $shipping_method_title : '', isset($shipping_total) ? floatval($shipping_total) : 0, array(), $shipping_method_id); - $order->add_shipping($shipping_rate); - } else { - $shipping = new WC_Order_Item_Shipping(); - $shipping->set_props( array( - 'method_title' => $shipping_method_title, - 'method_id' => $shipping_method_id, - 'total' => wc_format_decimal($shipping_total), - 'order_id' => $order->get_id() - ) ); - $shipping->save(); - $order->add_item( $shipping ); - } + $shipping = new WC_Order_Item_Shipping(); + $shipping->set_props( array( + 'method_title' => $shipping_method_title, + 'method_id' => $shipping_method_id, + 'total' => wc_format_decimal($shipping_total), + 'order_id' => $order->get_id() + ) ); + $shipping->save(); + $order->add_item($shipping); } } @@ -599,9 +576,9 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : /** * Calculate totals in order - * - * @param type $order - * + * + * @param WC_Order $order + * * @return void */ protected function update_total($order) diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 3f0d5af..ecb29d0 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -29,9 +29,11 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : /** * Upload orders to CRM * + * @param bool $withCustomers + * @param array $include * @return array $uploadOrders | null */ - public function ordersUpload() + public function ordersUpload($include = array(), $withCustomers = false) { if (!$this->retailcrm) { return null; @@ -40,7 +42,8 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $orders = get_posts(array( 'numberposts' => -1, 'post_type' => wc_get_order_types('view-orders'), - 'post_status' => array_keys(wc_get_order_statuses()) + 'post_status' => array_keys(wc_get_order_statuses()), + 'include' => $include )); $orders_data = array(); @@ -49,18 +52,33 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $order = wc_get_order($data_order->ID); $this->processOrder($order); $customer = $order->get_user(); + $customers = array(); if ($customer != false) { $this->order['customer']['externalId'] = $customer->get('ID'); + + if ($withCustomers === true) { + $customers[] = $customer->get('ID'); + } } $orders_data[] = $this->order; } + if ($withCustomers === true && !empty($customers)) { + if (!class_exists('WC_Retailcrm_Customers')) { + include_once(WC_Retailcrm_Base::checkCustomFile('customers')); + } + + $retailcrmCustomer = new WC_Retailcrm_Customers($this->retailcrm); + $retailcrmCustomer->customersUpload($customers); + } + $uploadOrders = array_chunk($orders_data, 50); foreach ($uploadOrders as $uploadOrder) { $this->retailcrm->ordersUpload($uploadOrder); + time_nanosleep(0, 250000000); } return $uploadOrders; @@ -71,7 +89,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : * * @param $order_id * - * @return WC_Order $order | null + * @return mixed */ public function orderCreate($order_id) { diff --git a/src/languages/retailcrm-ru_RU.mo b/src/languages/retailcrm-ru_RU.mo index feebbe1e978ecf79102755891f3b1ff8421bba3b..f5be8b8e72ac7e8123909e1bbde5c64c258a80aa 100644 GIT binary patch delta 2450 zcma)+TWnNC7{|}j0=-arTNJ34Q$Z}yy|e{sD>eaIq`?XyAR;1J+LdfsPVa6O!cjqq1@yaFSd#`93@c0oD7A$SP?#(5ed(OtL*mgG2+mqIz%dPvYl z6ZMp^W#!es~Y=fNkVWa(@Fh!23{?SdUB_VKWTEQ?LqNgFWz0KKk#XaTM>X z;Z^uJoQ4wNZOC56j5}`>I`bv4obhVd1Yd)@;b&0n|Ad?2KTr-{UF00#2z;4-KNKZ@ zE<%5aIHTCf<)-?iBRO9EpmIMR64M~5>=Vo&x9rwwe2(lJO7;3enIklpQdi0 z%6*cu&OyS?BNx=Zk)nVUehjv}TVbsXP~_(%Qa?-O{@7252V=hs`B#bDykz^ul)_C^ zDM1JJ*C*fY`;nOw`j_k^O$+M%SqrE-ki-$Wyu~1jI)$EA1hGS;5yZv}L7WW&C z(Js0XciipTHt|`bk&BD3dloe{sLe~8ynAJN+3!B~1wvJG1xOL?1rF%T8Bde^q zyHiHYcqDqFE$p~bQ(4V53r5W2r*UW;eAL#N2}ipkZ$w%`T^%u%nO#vBuL}fX;jU1m zttHm(?~HW}c>^k%y>W51Kj;stkFvLIh{sxT_U%33+ZhXox*{D>Ujwn$nN`8c8eedW zud2oj*471U>MGT;oZr0qk{-2sbjs>Aoqc!iZ&scHukz*&z!f9kM`rgf=%Xck^FBn$Jgq4 z&K|N=oq5$NmgiOJywYWoa*j1_4Oo5Ze%_Hyb0PU3T4r+gg>kF4<;OB^>QVLma#MNo z1FtvjY<|(uiqlUzQCsJUV$hUv@scE>q#j3r5lsYF^rVESM?@eoWnz-C3;JtQPh*$F zZcI;_h%s&rs!RE=WX~N>&E&tZ>IySBW0x`O9Hx$oDXT}lT2QY}6cnn91?6R;JU*7^+Un#@-eFy$5VLg*J-1fx2s?i2+QkDO}QGkeHB- zs%Y3B5)Op;A{vP-K4@u~D_b_-rt!sdjEN5#)Cb@RW5R=pFZ%u6UKHa=Pe1pbbM866 z^E>xmN_@V0=tiXWf}*6U%cz%qN_AnphCj-NTBRPqjhWA$;BQO|0ksjMuNR zh5L^%fm7Ilw@?CZW;e~~V376IdM-B7(1kMbNnD6yC_A}`?Kpwm_^sF8!m6@xJAX1R ziL&5Ud=UrHk6$5=sBcgL_zsCh-M|&BuWoW76V$P)L>@zlFphD|;t7uBC`#&YHB>Wk z7bV3$W|ij`<5FCMuV6Pmj+gOK{1NwI4U>%G0UX-K#cy25*`>*E68o?dH4fuE?!p}p zDz!w~aS?uoa&+_fF#h88`$?npx1!9m9<$hwJMmLwsJa^>|LeH$6MhPxzya(>*~$0F zrq%DrPyNYX9s^BEy^sC40{xNdge!3^_i5aKc^tzFC`Yj>S{>hxlIiVH@=u@2(~!YI z&yT$UKcF1N9gL%&8&1MKcL`7ylfY#6#NzI%4LKS07&S$`zsOutc=Od7>LNLR`RrsD zQshM=J8t0vaD!Xz-OJZO9B$#n+?PnszoXjZ1}Mk4m@2!IlA!YCDer4`k5AgANM^Ul z`8`6F7evacD#}6L7q=w&mpAxc;dM~Uss8fK+Wo%r*n%rQy`_Fz`Fwq^PcLnFT7S^c zrhkn+rE3Cf>pBzZL|S(SHV01(4t5+nc>KVj!+pn&=r;mO8Z#Z8DJPxUv@WwLr7s3< z2XozfvOT-Ia?d!==XUF>EzSCq#&KUluEM5lCe5sww8N%oPn$})J2>I<9n_~onc%dU zv%_>unrU0m^P#pzGi_$;8ExM(QxcL) zG38WuM6$F$+S^-_%-B<=V#j6AaS3fsqLIgFGw1AxW8ZPxDzZG2F#JoxoUxUwz2Gq4zlT(j6zZRvlhOZ0 UUvl)BmYmkHj6N58R$i6A0XqhW!~g&Q diff --git a/src/readme.txt b/src/readme.txt index 587d23e..5010042 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,6 +45,9 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == += 3.1.0 = +* В интерфейс настроек плагина добавлена возможность ручной выгрузки заказов +* Исправлена инициализация кода UA для отправки заказов на всех страницах = 3.0.0 = * Произведен рефакторинг кода @@ -120,8 +123,11 @@ API-ключ должен быть для отдельного магазина == Upgrade Notice == += 3.1.0 = +В интерфейс настроек плагина добавлена возможность ручной выгрузки заказов + = 3.0.0 = -* Произведен рефакторинг кода +Произведен рефакторинг кода = 2.1.4 = Исправлена ошибка при активированном модуле без настроек diff --git a/src/retailcrm.php b/src/retailcrm.php index d120de0..2586e30 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -1,13 +1,13 @@ register_activation_hook(); $plugin->register_deactivation_hook(); - add_action( 'plugins_loaded', array( 'WC_Integration_Retailcrm', 'get_instance' ), 0 ); + add_action('plugins_loaded', array('WC_Integration_Retailcrm', 'get_instance'), 0); endif; diff --git a/tests/helpers/class-wc-retailcrm-test-case-helper.php b/tests/helpers/class-wc-retailcrm-test-case-helper.php index 1da0cfa..03c4a09 100644 --- a/tests/helpers/class-wc-retailcrm-test-case-helper.php +++ b/tests/helpers/class-wc-retailcrm-test-case-helper.php @@ -2,12 +2,12 @@ class WC_Retailcrm_Test_Case_Helper extends WC_Unit_Test_Case { - protected function setOptions($apiVesrion) + protected function setOptions($apiVersion = 'v5') { $options = array( 'api_url' => 'https://example.retailcrm.ru', 'api_key' => 'dhsHJGYdjkHHJKJSGjhasjhgajsgJGHsg', - 'api_version' => $apiVesrion, + 'api_version' => $apiVersion, 'p_draft' => 'no', 'p_pending' => 'no', 'p_private' => 'no', @@ -32,9 +32,9 @@ class WC_Retailcrm_Test_Case_Helper extends WC_Unit_Test_Case 'refunded' => 'status6', 'failed' => 'status7', 'sync' => 'no', - 'ua' => 'no', - 'ua_code' => '', - 'ua_custom' => '', + 'ua' => 'yes', + 'ua_code' => 'UA-XXXXXXX-XX', + 'ua_custom' => '1', 'upload-button' => '' ); diff --git a/tests/phpunit/bootstrap.php b/tests/phpunit/bootstrap.php index fa86a7d..0d2b44b 100644 --- a/tests/phpunit/bootstrap.php +++ b/tests/phpunit/bootstrap.php @@ -14,6 +14,7 @@ function _manually_load_plugin() { require $plugin_dir . 'src/include/class-wc-retailcrm-orders.php'; require $plugin_dir . 'src/include/class-wc-retailcrm-customers.php'; require $plugin_dir . 'src/include/class-wc-retailcrm-inventories.php'; + require $plugin_dir . 'src/include/class-wc-retailcrm-ga.php'; require $plugin_dir . 'src/retailcrm.php'; } diff --git a/tests/phpunit/test-wc-retailcrm-ga.php b/tests/phpunit/test-wc-retailcrm-ga.php new file mode 100644 index 0000000..af1c424 --- /dev/null +++ b/tests/phpunit/test-wc-retailcrm-ga.php @@ -0,0 +1,61 @@ +order = WC_Helper_Order::create_order(0); + $this->orderKey = $this->order->get_order_key(); + $this->setOptions(); + + $this->options = get_option(WC_Retailcrm_Base::$option_key); + $this->ga = WC_Retailcrm_Google_Analytics::getInstance($this->options); + } + + public function test_initialize_analytics() + { + $js = $this->ga->initialize_analytics(); + + $this->assertContains($this->options['ua_code'], $js); + $this->assertContains($this->options['ua_custom'], $js); + } + + /** + * @param $checkout + * @dataProvider dataProvider + */ + public function test_send_analytics($checkout) + { + if ($checkout) { + $_GET['key'] = $this->orderKey; + } + + $js = $this->ga->send_analytics(); + + if ($checkout) { + $this->assertContains((string)$this->order->get_id(), $js); + $this->assertContains((string)$this->order->get_total(), $js); + $this->assertContains((string)$this->order->get_total_tax(), $js); + $this->assertContains((string)$this->order->get_shipping_total(), $js); + } else { + $this->assertEmpty($js); + } + } + + public function dataProvider() + { + return array( + array( + 'checkout' => false + ), + array( + 'checkout' => true + ) + ); + } +} diff --git a/tests/phpunit/test-wc-retailcrm-orders.php b/tests/phpunit/test-wc-retailcrm-orders.php index dd6e3da..c0f5663 100644 --- a/tests/phpunit/test-wc-retailcrm-orders.php +++ b/tests/phpunit/test-wc-retailcrm-orders.php @@ -254,17 +254,6 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper private function createTestOrder() { $this->order = WC_Helper_Order::create_order(0); -// var_dump($this->order); -// $this->order = new WC_Order(); -// $this->order->set_payment_method('bacs'); -// $this->order->set_billing_first_name('testFirstName'); -// $this->order->set_billing_last_name('testLastName'); -// $this->order->set_billing_country('RU'); -// $this->order->set_billing_address_1('testAddress1'); -// $this->order->set_billing_city('testCity'); -// $this->order->set_billing_postcode('111111'); -// $this->order->set_billing_email('test@mail.com'); -// $this->order->save(); } private function getResponseData($externalId) From cbc6eaef93b98485619a92cd316ee632cb3ad984 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Mon, 18 Jun 2018 13:57:59 +0300 Subject: [PATCH 43/75] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d5507d..3c4b834 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Build Status](https://img.shields.io/travis/retailcrm/woocommerce-module/master.svg?style=flat-square)](https://travis-ci.org/retailcrm/woocommerce-module) [![WordPress plugin](https://img.shields.io/wordpress/plugin/v/woo-retailcrm.svg?style=flat-square)](https://wordpress.org/plugins/woo-retailcrm/) -[![PHP version](https://img.shields.io/badge/PHP-5.3%2C%205.4%2C%205.5%2C%205.6%2C%207.0%2C%207.1%2C%207.2-blue.svg?style=flat-square)](https://php.net/) +[![PHP version](https://img.shields.io/badge/PHP->=5.3-blue.svg?style=flat-square)](https://php.net/) Woocommerce-module ================== From 9c71bc36a0405c93a1909583364ffd97239cd867 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Tue, 19 Jun 2018 10:03:46 +0300 Subject: [PATCH 44/75] UA fix, add new filters --- CHANGELOG.md | 4 ++ VERSION | 2 +- src/include/class-wc-retailcrm-customers.php | 2 +- src/include/class-wc-retailcrm-ga.php | 9 ++-- src/include/class-wc-retailcrm-orders.php | 2 +- src/include/functions.php | 50 ++++++++++---------- src/readme.txt | 8 ++++ src/retailcrm.php | 2 +- 8 files changed, 46 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2529772..c38a0c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2018-06-19 v3.1.1 +* Исправлен код отправки данных в UA +* Добавлены новые фильтры, добавлена передача новых параметров в существущие + ## 2018-05-28 v3.1.0 * В интерфейс настроек плагина добавлена возможность ручной выгрузки заказов * Исправлена инициализация кода UA для отправки заказов на всех страницах diff --git a/VERSION b/VERSION index a0cd9f0..50e47c8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.0 \ No newline at end of file +3.1.1 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php index 9933174..5ad1ef4 100644 --- a/src/include/class-wc-retailcrm-customers.php +++ b/src/include/class-wc-retailcrm-customers.php @@ -145,7 +145,7 @@ if (!class_exists('WC_Retailcrm_Customers')) : ); } - $this->customer = apply_filters('retailcrm_process_customer', $data_customer); + $this->customer = apply_filters('retailcrm_process_customer', $data_customer, $customer); } /** diff --git a/src/include/class-wc-retailcrm-ga.php b/src/include/class-wc-retailcrm-ga.php index 727655e..aef2030 100644 --- a/src/include/class-wc-retailcrm-ga.php +++ b/src/include/class-wc-retailcrm-ga.php @@ -95,7 +95,7 @@ if (!class_exists('WC_Retailcrm_Google_Analytics')) { ga('require', 'ecommerce', 'ecommerce.js'); ga('ecommerce:addTransaction', { 'id':" . $order->get_id() . ", - 'affiliation':" . $domain . ", + 'affiliation':'" . $domain . "', 'revenue':" . $order->get_total() . ", 'shipping':" . $order->get_total_tax() . ", 'tax':" . $order->get_shipping_total() . " @@ -111,13 +111,12 @@ if (!class_exists('WC_Retailcrm_Google_Analytics')) { 'price': " . $item['price'] . ", 'quantity': " . $item['quantity'] . " }); - - } - ga('ecommerce:send'); - "; } + $js .= "ga('ecommerce:send'); + "; + return apply_filters('retailcrm_send_analytics', $js); } } diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index ecb29d0..7f12242 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -363,7 +363,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } } - $this->order = apply_filters('retailcrm_process_order', $order_data); + $this->order = apply_filters('retailcrm_process_order', $order_data, $order); } /** diff --git a/src/include/functions.php b/src/include/functions.php index a62e9c8..f09a57d 100644 --- a/src/include/functions.php +++ b/src/include/functions.php @@ -10,35 +10,37 @@ function get_wc_shipping_methods($enhanced = false) { $shippingZonesObj = new WC_Shipping_Zones(); $shippingZones = $shippingZonesObj->get_zones(); - foreach ($shippingZones as $code => $shippingZone) { - foreach ($shippingZone['shipping_methods'] as $key => $shipping_method) { - $shipping_methods = array( - 'id' => $shipping_method->id, - 'instance_id' => $shipping_method->instance_id, - 'title' => $shipping_method->title - ); - - if ($enhanced) { - $shipping_code = $shipping_method->id; - } else { - $shipping_code = $shipping_method->id . ':' . $shipping_method->instance_id; - } - - if (!isset($result[$shipping_code])) { - $result[$shipping_code] = array( - 'name' => $shipping_method->method_title, - 'enabled' => $shipping_method->enabled, - 'description' => $shipping_method->method_description, + if ($shippingZones) { + foreach ($shippingZones as $code => $shippingZone) { + foreach ($shippingZone['shipping_methods'] as $key => $shipping_method) { + $shipping_methods = array( + 'id' => $shipping_method->id, + 'instance_id' => $shipping_method->instance_id, 'title' => $shipping_method->title ); - } - if ($enhanced) { - $result[$shipping_method->id]['shipping_methods'][$shipping_method->id . ':' . $shipping_method->instance_id] = $shipping_methods; - unset($shipping_methods); + if ($enhanced) { + $shipping_code = $shipping_method->id; + } else { + $shipping_code = $shipping_method->id . ':' . $shipping_method->instance_id; + } + + if (!isset($result[$shipping_code])) { + $result[$shipping_code] = array( + 'name' => $shipping_method->method_title, + 'enabled' => $shipping_method->enabled, + 'description' => $shipping_method->method_description, + 'title' => $shipping_method->title + ); + } + + if ($enhanced) { + $result[$shipping_method->id]['shipping_methods'][$shipping_method->id . ':' . $shipping_method->instance_id] = $shipping_methods; + unset($shipping_methods); + } } } } - return $result; + return apply_filters('retailcrm_shipping_list', $result); } diff --git a/src/readme.txt b/src/readme.txt index 5010042..334683f 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,6 +45,10 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == += 3.1.1 = +* Исправлен код отправки данных в UA +* Добавлены новые фильтры, добавлена передача новых параметров в существущие + = 3.1.0 = * В интерфейс настроек плагина добавлена возможность ручной выгрузки заказов * Исправлена инициализация кода UA для отправки заказов на всех страницах @@ -123,6 +127,10 @@ API-ключ должен быть для отдельного магазина == Upgrade Notice == += 3.1.1 = +Исправлен код отправки данных в UA +Добавлены новые фильтры, добавлена передача новых параметров в существущие + = 3.1.0 = В интерфейс настроек плагина добавлена возможность ручной выгрузки заказов diff --git a/src/retailcrm.php b/src/retailcrm.php index 2586e30..3e8035e 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -1,6 +1,6 @@ Date: Thu, 19 Jul 2018 12:16:30 +0300 Subject: [PATCH 45/75] Fix delivery and payment methods, add history tests --- .travis.yml | 2 +- CHANGELOG.md | 5 + VERSION | 2 +- src/include/class-wc-retailcrm-base.php | 70 +++- src/include/class-wc-retailcrm-history.php | 275 ++++++------- src/include/class-wc-retailcrm-icml.php | 2 +- src/include/class-wc-retailcrm-orders.php | 19 +- src/include/class-wc-retailcrm-plugin.php | 13 +- src/include/functions.php | 44 +- src/readme.txt | 10 + src/retailcrm.php | 4 +- src/uninstall.php | 2 +- .../class-wc-retailcrm-test-case-helper.php | 9 +- tests/phpunit/bootstrap.php | 1 + tests/phpunit/test-wc-retailcrm-base.php | 2 +- tests/phpunit/test-wc-retailcrm-history.php | 384 ++++++++++++++++++ tests/phpunit/test-wc-retailcrm-orders.php | 5 +- 17 files changed, 638 insertions(+), 211 deletions(-) create mode 100644 tests/phpunit/test-wc-retailcrm-history.php diff --git a/.travis.yml b/.travis.yml index 0e710a8..5567970 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,6 +31,6 @@ deploy: provider: script script: make on: - php: 7.1 + php: 7.2 branch: master condition: "$DEPLOY = true" diff --git a/CHANGELOG.md b/CHANGELOG.md index c38a0c6..a87dc06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2018-07-19 v3.2.0 +* Улучшен метод выробки данных о доставках и оплатах в настройках плагина +* Исправлены ошибки при обработке истории изменений +* Добавлены тесты для обработки истории изменений + ## 2018-06-19 v3.1.1 * Исправлен код отправки данных в UA * Добавлены новые фильтры, добавлена передача новых параметров в существущие diff --git a/VERSION b/VERSION index 50e47c8..a4f52a5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.1 \ No newline at end of file +3.2.0 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index 1c9365a..826f258 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -198,7 +198,8 @@ if (!class_exists('WC_Retailcrm_Base')) { /** * Upload archive customers and order to retailCRM */ - public function upload_to_crm() { + public function upload_to_crm() + { if (!class_exists('WC_Retailcrm_Orders')) { include_once(self::checkCustomFile('orders')); } @@ -219,7 +220,8 @@ if (!class_exists('WC_Retailcrm_Base')) { update_option(self::$option_key, $options); } - public function ajax_upload() { + public function ajax_upload() + { $ajax_url = admin_url('admin-ajax.php'); ?> + +EOF; + + $this->code .= $footer; + + return $this; + } +} diff --git a/src/include/class-wc-retailcrm-ga.php b/src/include/class-wc-retailcrm-ga.php index aef2030..fe2be39 100644 --- a/src/include/class-wc-retailcrm-ga.php +++ b/src/include/class-wc-retailcrm-ga.php @@ -7,6 +7,8 @@ if (!class_exists('WC_Retailcrm_Google_Analytics')) { private $options; /** + * @param array $options + * * @return WC_Retailcrm_Google_Analytics */ public static function getInstance($options = array()) diff --git a/src/languages/retailcrm-es_ES.mo b/src/languages/retailcrm-es_ES.mo index 19b8e1137ebb4a07a0ed64d0061cc7c19f64ed89..fa24d2750a84ca647dbbc3b667350e8608538444 100644 GIT binary patch delta 1797 zcmZY9Piz!r7{~F4(&b;f{U@S;(iha)ViyDvTScL?q8K#-u|SL_)7@z^Wt~}fXGWX&SE=$h;8^8Zp8VteHpuG zH}GEk6}RDyv_HG5IerUvnAL2En_&jLfP?rxPUE+@12^(^z2HSufD`x(*6>yQ9`(X? zYs|8^89Q+R73gr8r8o6v%KGWxp^3Kn8Ty^D4xONcpgVk`DSCmEA!F+}_=6Z$d3}0Qcend>T)8lYd2gi4J)c2XO&U zU>jj>!2)i=50JU-tJLrCLE1l{j|<47Hg-?*)QqFrZ=pWE5|VxU81)T&UgJg|)jW>j zCES6xa2)&i@esa;+WRZ0mHmkN$bLgkmfb|H@HT4iJ6Vk~wi|W2-b8K5S>(^^Tr|FR zjT^1_I%@B;^s@EIYMCpET6;@8NzsR-qE)LXh-aw^;&H0Vb5u>flA8V-N#@qd7mKpu zbpEx!I^PQ7DXNP0au0PURq58As`OJi?zWZMN7YLAQ&p5T6{S^Mwpg@kWkO{aRo{<_ z_J5zwzmCpB>Y)rYNv=AAi$$q_g1VdfWZJnG+3w^EPrH(1{1^?AnQW8#m41DsD!C@f zsj-pQ4!gO(TX%JhdH&l`=tiSr(a*8hn-My9Kk z*sr+4@^{)RjSF#9h>{=uaHjE1WFrdDcYY=ITs{gXgQ;rS%Lk2m=t^GMbIk>mm&fmi zuIRb8Qse8XAoSd6f1>_w_FPNH%S;~>{4fqCiDB+k*I<3R>x~uL?+&a|od^n^jTSv# PO`uG4_dGv$f7b2{c(~RCD9~;pqqk` z)lD}MUZfz*NP;A&Zo=TTyP)zy!=ft*y66w|{cY~S^M2m5`JQv0=bU%CNUX5k8E<6m5hndu1&a2@?pEWlbU!^4=1=g@~EcoxU8 z+L(y(IE~rJ2Q8=tbm4xyf^9gB8aS0zP_(xiFOpxTrs$nd5xG7^WB1A4Fvm!Fn9SMtqN2SO#TMNsG~k0X&66 zSd4SH34b7e#_3L2h(+|h7{q{^`g3n4xX4*9RLR(=J^h3_6JPNV{>Ex-q6{Z-00a0I z9hjY$NW_IYBSpwTH;t%-no(QXiK@^@gd4qjPf(>^KxOy`^?;k%m7y24mnV>|G<#{x z89!j!GCiwMRkUzruje&+6-|rQg!QyNwB0mCWNX6sB6O>htI$3wv`@Ss@zCp~bD$C` zl%ay30<(dpty9#|N@?T}4`r;R6g9McG_N{(|CJp{#k1Rm6*PtRt(K kaX&jhYT3{2DRpJ+vwJip%jyeSL&LrOeLb;Td3PQE0dHK9XaE2J diff --git a/src/languages/retailcrm-ru_RU.mo b/src/languages/retailcrm-ru_RU.mo index e443e55bd4ad0172bf1f2e4cbaea9c1108e71531..f8443906728df05edd44345ed2858ca057462fc4 100644 GIT binary patch delta 1738 zcmZY9X>5&I9LMp$>aC^PQfgmrQR}t#s;NO$D+nQ$SOzbOi)v}6y%|e0?i3kogx&~| zh%I7C$fdScNRTj@%uJq}zQGH;K_y;DL~bNA;rn~~Oh|ju)6Y52a+d%9Ja=F2)4a%w z%;cj+nNICX4J4T@$H~e3qn!4cwZk*m5iemUyn(6s0DIxzUjHrjr2i2+W2Y3eEbNB^ zF&A}x3G!aV*3(GmLJj8QVGQ7(xDgW=#MP`~G#*1u_!za|S2z#Hm=IOWn)k|pMjcZ0|u}f3ovq##$*~zScEym zYdMzUIDCW}=#ytE+tL8ps53DSITG$}b-J0~J&bxs<;P~+bgJ2(I*rQDgN@hsuTn^5 zBi5Gc{qDFwHacYg7ez%oQ5ac^dw?dPioTjWsus*qaKC%75mX&eMOJCiS2dlgqV&1* zYZrdCz2g1~(jG$1rB3y(PeFxDpH_}{O)1Iu+B)&ymkD%&)QQw2s?x=AanBF9rJq)% zZ=AHd`BsjU4jmemG0j-7=mcMW=i-vkri#t}qKfkJ(3)^XWpu6Y=ix1`S<8p~RiSXW zbo2VEXrpgfcFCG>=`SVWkiXSq3|v(j4n;Fkvg#7Pqix&K@t1|R)$Q+4nB02mYiWsK z%Q4J3>BQnS@tyJCocm6_)8NEf%@e(l{?quF(-7b3+;Oh+`0se9)nk6=9xumhoS0M3 cqc`iGq@PO3JmK7pAByk!c0E?NHY+FjD@4EZTmS$7 delta 1392 zcmZwHOGs2v9LMof&ZD&S`WjO+Ep6_8Q~I2xemoF2LQGgI%sMT*UEdv~UoM@ft3}BW-4jPq6Y0eQyn{vf$o>B%Y673!|EIB)WAFUTMB9*4<^*cxarbx#HQ^Dg z!CR<_JjGg`Z+_9~#0v7;f^nn@<~}OL4^R(&f+WMd!7`l00M4LRYH@KDhA@mBsFV+* zCUhNj{Wz)wX|#E^`Aw&14juBSRK}Su*)n~o8wODm7{ziN$6fdWtFeryD8)^<8Bby* z-o}IY3~yo$^@`wQ?7+WyT-ln5kA7aaLjp;_!vKRG$E2vuC#b$hm zQ7q+M+lB|Q3$NmO{D~STNV;Scb^m@;sclrHLxdJ$Z{lYIq1HfXgXIvapFROw2sOQG z%FHTaEm1|NvG<&sY7w(7OsA2kAT+7}HD!y5+0KV&_5#&Nt5b76M!1~dTj4Z6zsk-M zLaU)#PE(0kxbyl2GpC%@s|4&(=e1Uu*d9*(NrG8P1e8TGtiC-F7+L*jX{mGE1wsR=9QOEr{Kd;S4V CaeCDN diff --git a/tests/phpunit/bootstrap.php b/tests/phpunit/bootstrap.php index 0cc1105..f531b62 100644 --- a/tests/phpunit/bootstrap.php +++ b/tests/phpunit/bootstrap.php @@ -15,6 +15,7 @@ function _manually_load_plugin() { require $plugin_dir . 'src/include/class-wc-retailcrm-customers.php'; require $plugin_dir . 'src/include/class-wc-retailcrm-inventories.php'; require $plugin_dir . 'src/include/class-wc-retailcrm-ga.php'; + require $plugin_dir . 'src/include/class-wc-retailcrm-daemon-collector.php'; require $plugin_dir . 'src/include/class-wc-retailcrm-history.php'; require $plugin_dir . 'src/retailcrm.php'; } diff --git a/tests/phpunit/test-wc-retailcrm-daemon-collector.php b/tests/phpunit/test-wc-retailcrm-daemon-collector.php new file mode 100644 index 0000000..ce33567 --- /dev/null +++ b/tests/phpunit/test-wc-retailcrm-daemon-collector.php @@ -0,0 +1,30 @@ +options = array( + 'daemon_collector_key' => 'RC-XXXXXXXXXX-X' + ); + + $this->daemonCollector = WC_Retailcrm_Daemon_Collector::getInstance($this->options); + } + + public function test_initialize_daemon_collector() + { + $customerObject = WC_Helper_Customer::create_customer(); + WC()->customer = $customerObject; + + $js = $this->daemonCollector->initialize_daemon_collector(); + + $this->assertContains('customerId', $js); + $this->assertContains($this->options['daemon_collector_key'], $js); + $this->assertContains('assertContains('', $js); + $this->assertContains('_rc(\'create\',', $js); + } +} From c110053075ccdccde9f35d5826029345733f6efa Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Thu, 17 Jan 2019 15:58:13 +0300 Subject: [PATCH 63/75] v3.4.0 --- CHANGELOG.md | 4 + VERSION | 2 +- src/include/class-wc-retailcrm-customers.php | 115 ++++++++++++++++-- src/include/class-wc-retailcrm-history.php | 10 +- src/include/class-wc-retailcrm-orders.php | 92 +++++++------- src/readme.txt | 7 ++ src/retailcrm.php | 2 +- src/uninstall.php | 2 +- tests/phpunit/test-wc-retailcrm-customers.php | 14 ++- tests/phpunit/test-wc-retailcrm-orders.php | 42 ++++++- 10 files changed, 229 insertions(+), 61 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c36965..44b0c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2019-01-17 v3.4.0 +* Добавлена настройка Daemon Collector +* Изменена логика передачи данных по заказам и клиентам. Данные доставки передаются в заказ, данные оплаты в карточку клиента. + ## 2018-12-14 v3.3.8 * Добавлена выгрузка картинок для категорий товаров в ICML diff --git a/VERSION b/VERSION index 7cb75ca..fbcbf73 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.8 \ No newline at end of file +3.4.0 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php index 5ad1ef4..90f6d12 100644 --- a/src/include/class-wc-retailcrm-customers.php +++ b/src/include/class-wc-retailcrm-customers.php @@ -68,26 +68,67 @@ if (!class_exists('WC_Retailcrm_Customers')) : } /** - * Create customer in CRM + * @param array $orders * - * @param int $customer_id - * - * @return WC_Customer $customer + * @throws Exception */ - public function createCustomer($customer_id) + public function customersFromOrdersUpload($orders) { - if (!$this->retailcrm) { - return; + $data_customers = array(); + + foreach ($orders as $order_data) { + $order = wc_get_order($order_data->ID); + + if ($order->get_user()) { + continue; + } + + $customer = $this->buildCustomerFromOrderData($order); + $this->processCustomer($customer); + $data_customers[] = $this->customer; } - $customer = $this->wcCustomerGet($customer_id); + if ($data_customers) { + $data = \array_chunk($data_customers, 50); + + foreach ($data as $array_customers) { + $this->retailcrm->customersUpload($array_customers); + time_nanosleep(0, 250000000); + } + } + } + + /** + * Create customer in CRM + * + * @param int | WC_Customer $customer + * + * @return mixed + */ + public function createCustomer($customer) + { + if (!$this->retailcrm) { + return null; + } + + if (is_int($customer)) { + $customer = $this->wcCustomerGet($customer); + } + + if (!$customer instanceof WC_Customer) { + return null; + } if ($customer->get_role() == self::CUSTOMER_ROLE) { $this->processCustomer($customer); - $this->retailcrm->customersCreate($this->customer); + $response = $this->retailcrm->customersCreate($this->customer); + + if ($response->isSuccessful() && isset($response['id'])) { + return $response['id']; + } } - return $customer; + return null; } /** @@ -126,7 +167,7 @@ if (!class_exists('WC_Retailcrm_Customers')) : $firstName = $customer->get_first_name(); $data_customer = array( 'createdAt' => $createdAt->date('Y-m-d H:i:s'), - 'externalId' => $customer->get_id(), + 'externalId' => $customer->get_id() > 0 ? $customer->get_id() : uniqid(), 'firstName' => $firstName ? $firstName : $customer->get_username(), 'lastName' => $customer->get_last_name(), 'email' => $customer->get_email(), @@ -148,6 +189,58 @@ if (!class_exists('WC_Retailcrm_Customers')) : $this->customer = apply_filters('retailcrm_process_customer', $data_customer, $customer); } + /** + * @param array $filter + * + * @return bool|array + */ + public function searchCustomer($filter) + { + if (isset($filter['id'])) { + $search = $this->retailcrm->customersGet($filter['id']); + } elseif (isset($filter['email'])) { + $search = $this->retailcrm->customersList(array('email' => $filter['email'])); + } + + if ($search->isSuccessful()) { + if (isset($search['customers'])) { + if (empty($search['customers'])) { + return false; + } + + $customer = reset($search['customers']); + } else { + $customer = $search['customer']; + } + + return $customer; + } + + return false; + } + + /** + * @param WC_Order $order + * + * @return WC_Customer + * @throws Exception + */ + public function buildCustomerFromOrderData($order) + { + $new_customer = new WC_Customer; + + foreach ($order->get_address('billing') as $prop => $value) { + $new_customer->{'set_billing_' . $prop}($value); + } + + $new_customer->set_first_name($order->get_billing_first_name()); + $new_customer->set_last_name($order->get_billing_last_name()); + $new_customer->set_email($order->get_billing_email()); + $new_customer->set_date_created($order->get_date_created()); + + return $new_customer; + } + /** * @param int $customer_id * diff --git a/src/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php index 164fe13..852704e 100644 --- a/src/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -93,6 +93,14 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : continue; } + if (isset($record['customer']['externalId'])) { + $customer = new WC_Customer($record['customer']['externalId']); + + if ($customer->get_id() == 0) { + continue; + } + } + WC_Retailcrm_Plugin::$history_run = true; if ($record['field'] == 'first_name' && isset($record['customer']['externalId'])) { @@ -102,7 +110,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } elseif ($record['field'] == 'last_name' && isset($record['customer']['externalId'])) { - if ($record['newValue']){ + if ($record['newValue']) { update_user_meta($record['customer']['externalId'], 'last_name', $record['newValue']); } } diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 5b65e0c..5a08a24 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -65,12 +65,17 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $orders_data[] = $this->order; } - if ($withCustomers === true && !empty($customers)) { - if (!class_exists('WC_Retailcrm_Customers')) { - include_once(WC_Retailcrm_Base::checkCustomFile('customers')); - } + if (!class_exists('WC_Retailcrm_Customers')) { + include_once(WC_Retailcrm_Base::checkCustomFile('customers')); + } - $retailcrmCustomer = new WC_Retailcrm_Customers($this->retailcrm); + $retailcrmCustomer = new WC_Retailcrm_Customers($this->retailcrm); + + if (!$include) { + $retailcrmCustomer->customersFromOrdersUpload($orders); + } + + if ($withCustomers === true && !empty($customers)) { $retailcrmCustomer->customersUpload($customers); } @@ -101,21 +106,35 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $this->processOrder($order); $customer = $order->get_user(); + if (!class_exists('WC_Retailcrm_Customers')) { + include_once(WC_Retailcrm_Base::checkCustomFile('customers')); + } + + $retailcrm_customers = new WC_Retailcrm_Customers($this->retailcrm); + if ($customer != false) { - $search = $this->retailcrm->customersGet($customer->get('ID')); + $search = $retailcrm_customers->searchCustomer(array('id' => $customer->get('ID'))); - if (!$search->isSuccessful()) { - $customer_data = array( - 'externalId' => $customer->get('ID'), - 'firstName' => $this->order['firstName'], - 'lastName' => $this->order['lastName'], - 'email' => $this->order['email'] - ); - - $this->retailcrm->customersCreate($customer_data); + if (!$search) { + $retailcrm_customers->createCustomer($customer); } else { - $this->order['customer']['externalId'] = $search['customer']['externalId']; + $this->order['customer']['externalId'] = $search['externalId']; } + } else { + $search = $retailcrm_customers->searchCustomer(array('email' => $order->get_billing_email())); + + if (!$search) { + $new_customer = $retailcrm_customers->buildCustomerFromOrderData($order); + $id = $retailcrm_customers->createCustomer($new_customer); + + if ($id !== null) { + $this->order['customer']['id'] = $id; + } + } else { + $this->order['customer']['externalId'] = $search['externalId']; + } + + unset($new_customer); } $this->retailcrm->ordersCreate($this->order); @@ -294,36 +313,28 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $user_data_billing = $order->get_address('billing'); if (!empty($user_data_billing)) { - if (!empty($user_data_billing['phone'])) $order_data['phone'] = $user_data_billing['phone']; - if (!empty($user_data_billing['email'])) $order_data['email'] = $user_data_billing['email']; - if (!empty($user_data_billing['first_name'])) $order_data['firstName'] = $user_data_billing['first_name']; - if (!empty($user_data_billing['last_name'])) $order_data['lastName'] = $user_data_billing['last_name']; - if (!empty($user_data_billing['postcode'])) $order_data['delivery']['address']['index'] = $user_data_billing['postcode']; - if (!empty($user_data_billing['city'])) $order_data['delivery']['address']['city'] = $user_data_billing['city']; - if (!empty($user_data_billing['state'])) $order_data['delivery']['address']['region'] = $user_data_billing['state']; - if (!empty($user_data_billing['country'])) $order_data['countryIso'] = $user_data_billing['country']; + $order_data['phone'] = $user_data_billing['phone']; + $order_data['email'] = $user_data_billing['email']; } - $user_data = $order->get_address('shipping'); + $user_data_shipping = $order->get_address('shipping'); - if (!empty($user_data)) { - if (!empty($user_data['phone'])) $order_data['phone'] = $user_data['phone']; - if (!empty($user_data['email'])) $order_data['email'] = $user_data['email']; - if (!empty($user_data['first_name'])) $order_data['firstName'] = $user_data['first_name']; - if (!empty($user_data['last_name'])) $order_data['lastName'] = $user_data['last_name']; - if (!empty($user_data['postcode'])) $order_data['delivery']['address']['index'] = $user_data['postcode']; - if (!empty($user_data['city'])) $order_data['delivery']['address']['city'] = $user_data['city']; - if (!empty($user_data['state'])) $order_data['delivery']['address']['region'] = $user_data['state']; - if (!empty($user_data['country'])) $order_data['delivery']['address']['countryIso'] = $user_data['country']; + if (!empty($user_data_shipping)) { + $order_data['firstName'] = $user_data_shipping['first_name']; + $order_data['lastName'] = $user_data_shipping['last_name']; + $order_data['delivery']['address']['index'] = $user_data_shipping['postcode']; + $order_data['delivery']['address']['city'] = $user_data_shipping['city']; + $order_data['delivery']['address']['region'] = $user_data_shipping['state']; + $order_data['countryIso'] = $user_data_shipping['country']; } $order_data['delivery']['address']['text'] = sprintf( "%s %s %s %s %s", - !empty($user_data_billing['postcode']) ? $user_data_billing['postcode'] : $user_data['postcode'], - !empty($user_data_billing['state']) ? $user_data_billing['state'] : $user_data['state'], - !empty($user_data_billing['city']) ? $user_data_billing['city'] : $user_data['city'], - !empty($user_data_billing['address_1']) ? $user_data_billing['address_1'] : $user_data['address_1'], - !empty($user_data_billing['address_2']) ? $user_data_billing['address_2'] : $user_data['address_2'] + $user_data_shipping['postcode'], + $user_data_shipping['state'], + $user_data_shipping['city'], + $user_data_shipping['address_1'], + $user_data_shipping['address_2'] ); $order_items = array(); @@ -414,8 +425,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $payment['paidAt'] = trim($pay_date->date('Y-m-d H:i:s')); } - if ($update === false){ - + if ($update === false) { if (isset($this->retailcrm_settings[$order->get_payment_method()])) { $payment['type'] = $this->retailcrm_settings[$order->get_payment_method()]; } diff --git a/src/readme.txt b/src/readme.txt index 98a2ed3..f09edc0 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,6 +45,10 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == += 3.4.0 = +* Добавлена настройка Daemon Collector +* Изменена логика передачи данных по заказам и клиентам. Данные доставки передаются в заказ, данные оплаты в карточку клиента. + = 3.3.8 = * Добавлена выгрузка картинок для категорий товаров в ICML @@ -159,6 +163,9 @@ API-ключ должен быть для отдельного магазина * Исправелены ошибки. == Upgrade Notice == += 3.4.0 = +Внедрен Daemon Collector + = 3.3.5 = После обновления плагина необходимо пересохранить настройки для того, чтобы активировать модуль в маркетплейсе retailCRM diff --git a/src/retailcrm.php b/src/retailcrm.php index 65437d8..644c91a 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -1,6 +1,6 @@ getMock(); + $this->responseMock->expects($this->any()) + ->method('isSuccessful') + ->willReturn(true); + + $this->apiMock->expects($this->any()) + ->method('customersCreate') + ->willReturn($this->responseMock); + $this->customer = new WC_Customer(); $this->customer->set_email(uniqid(md5(date('Y-m-d H:i:s'))) . '@mail.com'); $this->customer->set_password('password'); - $this->customer->set_role(WC_Retailcrm_Customers::CUSTOMER_ROLE); $this->customer->set_billing_phone('89000000000'); $this->customer->save(); } @@ -73,7 +80,7 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper public function test_create_customer($retailcrm) { $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); - $customer = $retailcrm_customer->createCustomer($this->customer->get_id()); + $id = $retailcrm_customer->createCustomer($this->customer->get_id()); $customer_send = $retailcrm_customer->getCustomer(); if ($retailcrm) { @@ -84,9 +91,8 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper $this->assertNotEmpty($customer_send['externalId']); $this->assertNotEmpty($customer_send['firstName']); $this->assertNotEmpty($customer_send['email']); - $this->assertInstanceOf('WC_Customer', $customer); } else { - $this->assertEquals(null, $customer); + $this->assertEquals(null, $id); $this->assertEquals(array(), $customer_send); } } diff --git a/tests/phpunit/test-wc-retailcrm-orders.php b/tests/phpunit/test-wc-retailcrm-orders.php index 5907045..0e8fe8a 100644 --- a/tests/phpunit/test-wc-retailcrm-orders.php +++ b/tests/phpunit/test-wc-retailcrm-orders.php @@ -18,7 +18,8 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper 'customersGet', 'customersCreate', 'ordersPaymentCreate', - 'ordersPaymentDelete' + 'ordersPaymentDelete', + 'customersList' )) ->getMock(); @@ -50,6 +51,36 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper */ public function test_order_create($retailcrm, $apiVersion) { + if ($retailcrm) { + $responseMock = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + + $responseMockCustomers = $this->getMockBuilder('\WC_Retailcrm_Response_Helper') + ->disableOriginalConstructor() + ->setMethods(array( + 'isSuccessful' + )) + ->getMock(); + $responseMockCustomers->setResponse( + array('success' => true, + 'customers' => array( + array('externalId' => 1) + ) + ) + ); + + $retailcrm->expects($this->any()) + ->method('customersCreate') + ->willReturn($responseMock); + $retailcrm->expects($this->any()) + ->method('customersList') + ->willReturn($responseMockCustomers); + } + $this->createTestOrder(); $this->options = $this->setOptions($apiVersion); $retailcrm_orders = new WC_Retailcrm_Orders($retailcrm); @@ -252,7 +283,16 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper private function createTestOrder() { + /** @var WC_Order order */ $this->order = WC_Helper_Order::create_order(0); + + foreach ($this->order->get_address('billing') as $prop => $value) { + if (method_exists($this->order, 'set_shipping_' . $prop)) { + $this->order->{'set_shipping_' . $prop}($value); + } + } + + $this->order->save(); } private function getResponseData($externalId) From c7f39563a7625585233083d2c772373618f7dca3 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Tue, 22 Jan 2019 12:03:42 +0300 Subject: [PATCH 64/75] v3.4.1 --- CHANGELOG.md | 3 ++ VERSION | 2 +- src/include/class-wc-retailcrm-customers.php | 31 -------------------- src/include/class-wc-retailcrm-orders.php | 15 ++++------ src/readme.txt | 3 ++ src/retailcrm.php | 2 +- src/uninstall.php | 2 +- 7 files changed, 14 insertions(+), 44 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44b0c89..0fd3855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2019-01-22 v3.4.1 +* Исправлена архивная выгрузка клиентов + ## 2019-01-17 v3.4.0 * Добавлена настройка Daemon Collector * Изменена логика передачи данных по заказам и клиентам. Данные доставки передаются в заказ, данные оплаты в карточку клиента. diff --git a/VERSION b/VERSION index fbcbf73..8cf6caf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4.0 \ No newline at end of file +3.4.1 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php index 90f6d12..310e622 100644 --- a/src/include/class-wc-retailcrm-customers.php +++ b/src/include/class-wc-retailcrm-customers.php @@ -67,37 +67,6 @@ if (!class_exists('WC_Retailcrm_Customers')) : return $data; } - /** - * @param array $orders - * - * @throws Exception - */ - public function customersFromOrdersUpload($orders) - { - $data_customers = array(); - - foreach ($orders as $order_data) { - $order = wc_get_order($order_data->ID); - - if ($order->get_user()) { - continue; - } - - $customer = $this->buildCustomerFromOrderData($order); - $this->processCustomer($customer); - $data_customers[] = $this->customer; - } - - if ($data_customers) { - $data = \array_chunk($data_customers, 50); - - foreach ($data as $array_customers) { - $this->retailcrm->customersUpload($array_customers); - time_nanosleep(0, 250000000); - } - } - } - /** * Create customer in CRM * diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 5a08a24..6bdd280 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -65,17 +65,12 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $orders_data[] = $this->order; } - if (!class_exists('WC_Retailcrm_Customers')) { - include_once(WC_Retailcrm_Base::checkCustomFile('customers')); - } - - $retailcrmCustomer = new WC_Retailcrm_Customers($this->retailcrm); - - if (!$include) { - $retailcrmCustomer->customersFromOrdersUpload($orders); - } - if ($withCustomers === true && !empty($customers)) { + if (!class_exists('WC_Retailcrm_Customers')) { + include_once(WC_Retailcrm_Base::checkCustomFile('customers')); + } + + $retailcrmCustomer = new WC_Retailcrm_Customers($this->retailcrm); $retailcrmCustomer->customersUpload($customers); } diff --git a/src/readme.txt b/src/readme.txt index f09edc0..a04516b 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,6 +45,9 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == += 3.4.1 = +* Исправлены некоторые ошибки + = 3.4.0 = * Добавлена настройка Daemon Collector * Изменена логика передачи данных по заказам и клиентам. Данные доставки передаются в заказ, данные оплаты в карточку клиента. diff --git a/src/retailcrm.php b/src/retailcrm.php index 644c91a..f1b8645 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -1,6 +1,6 @@ Date: Thu, 7 Feb 2019 10:58:50 +0300 Subject: [PATCH 65/75] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20=D0=B8=D0=B7?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D0=B5=D0=BC=20=D1=82=D0=B8?= =?UTF-8?q?=D0=BF=D0=B0=20=D0=BE=D0=BF=D0=BB=D0=B0=D1=82=D1=8B=20=D0=B2=20?= =?UTF-8?q?WC,=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=B2?= =?UTF-8?q?=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BD=D0=B5=D0=B0=D0=BA=D1=82=D0=B8?= =?UTF-8?q?=D0=B2=D0=BD=D1=8B=D1=85=20=D1=82=D0=B8=D0=BF=D0=BE=D0=B2=20?= =?UTF-8?q?=D0=BE=D0=BF=D0=BB=D0=B0=D1=82=D1=8B=20=D0=B2=20=D0=BD=D0=B0?= =?UTF-8?q?=D1=81=D1=82=D1=80=D0=BE=D0=B9=D0=BA=D0=B0=D1=85=20=D0=BF=D0=BB?= =?UTF-8?q?=D0=B0=D0=B3=D0=B8=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 ++++ VERSION | 2 +- src/include/class-wc-retailcrm-base.php | 20 +++++++------- src/include/class-wc-retailcrm-customers.php | 5 +++- src/include/class-wc-retailcrm-history.php | 26 ++++++++++++------- src/readme.txt | 8 ++++++ tests/phpunit/test-wc-retailcrm-customers.php | 1 - 7 files changed, 43 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fd3855..094a099 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2019-02-07 3.4.2 +* Исправлено изменение типа оплаты на стороне WC +* Добавлен вывод неактивных типов оплаты в настройках +* Удалена генерация внешнего кода клиента + ## 2019-01-22 v3.4.1 * Исправлена архивная выгрузка клиентов diff --git a/VERSION b/VERSION index 8cf6caf..a423d42 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4.1 \ No newline at end of file +3.4.2 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index b02c1ae..724cdea 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -537,17 +537,15 @@ if (!class_exists('WC_Retailcrm_Base')) { ); foreach ($wc_payment->payment_gateways() as $payment) { - if (isset($payment->enabled) && $payment->enabled == 'yes') { - $this->form_fields[$payment->id] = array( - 'title' => __($payment->method_title, 'woocommerce'), - 'description' => __($payment->method_description, 'woocommerce'), - 'css' => 'min-width:350px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $payment_option_list, - 'desc_tip' => true, - ); - } + $this->form_fields[$payment->id] = array( + 'title' => __($payment->method_title, 'woocommerce'), + 'description' => __($payment->method_description, 'woocommerce'), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $payment_option_list, + 'desc_tip' => true, + ); } } diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php index 310e622..0cbbc9b 100644 --- a/src/include/class-wc-retailcrm-customers.php +++ b/src/include/class-wc-retailcrm-customers.php @@ -136,7 +136,6 @@ if (!class_exists('WC_Retailcrm_Customers')) : $firstName = $customer->get_first_name(); $data_customer = array( 'createdAt' => $createdAt->date('Y-m-d H:i:s'), - 'externalId' => $customer->get_id() > 0 ? $customer->get_id() : uniqid(), 'firstName' => $firstName ? $firstName : $customer->get_username(), 'lastName' => $customer->get_last_name(), 'email' => $customer->get_email(), @@ -149,6 +148,10 @@ if (!class_exists('WC_Retailcrm_Customers')) : ) ); + if ($customer->get_id() > 0) { + $data_customer['externalId'] = $customer->get_id(); + } + if ($customer->get_billing_phone()) { $data_customer['phones'][] = array( 'number' => $customer->get_billing_phone() diff --git a/src/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php index 852704e..090ae8c 100644 --- a/src/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -411,6 +411,8 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } } + $wc_order->save(); + return $wc_order->get_id(); } @@ -643,28 +645,32 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : ) { $orders[$change['order']['id']]['items'][$change['item']['id']][$fields['item'][$change['field']]] = $change['newValue']; } - } else { - if(isset($fields['delivery'][$change['field']]) && $fields['delivery'][$change['field']] == 'service'){ + } elseif ($change['field'] == 'payments' && isset($change['payment'])) { + if ($change['newValue'] !== null) { + $orders[$change['order']['id']]['payments'][] = self::newValue($change['payment']); + } + } else { + if (isset($fields['delivery'][$change['field']]) && $fields['delivery'][$change['field']] == 'service') { $orders[$change['order']['id']]['delivery']['service']['code'] = self::newValue($change['newValue']); - } elseif(isset($fields['delivery'][$change['field']]) && $fields['delivery'][$change['field']]) { + } elseif (isset($fields['delivery'][$change['field']]) && $fields['delivery'][$change['field']]) { $orders[$change['order']['id']]['delivery'][$fields['delivery'][$change['field']]] = self::newValue($change['newValue']); - } elseif(isset($fields['orderAddress'][$change['field']]) && $fields['orderAddress'][$change['field']]){ + } elseif (isset($fields['orderAddress'][$change['field']]) && $fields['orderAddress'][$change['field']]) { $orders[$change['order']['id']]['delivery']['address'][$fields['orderAddress'][$change['field']]] = $change['newValue']; - } elseif(isset($fields['integrationDelivery'][$change['field']]) && $fields['integrationDelivery'][$change['field']]) { + } elseif (isset($fields['integrationDelivery'][$change['field']]) && $fields['integrationDelivery'][$change['field']]) { $orders[$change['order']['id']]['delivery']['service'][$fields['integrationDelivery'][$change['field']]] = self::newValue($change['newValue']); - } elseif(isset($fields['customerContragent'][$change['field']]) && $fields['customerContragent'][$change['field']]) { + } elseif (isset($fields['customerContragent'][$change['field']]) && $fields['customerContragent'][$change['field']]) { $orders[$change['order']['id']][$fields['customerContragent'][$change['field']]] = self::newValue($change['newValue']); - } elseif(strripos($change['field'], 'custom_') !== false) { + } elseif (strripos($change['field'], 'custom_') !== false) { $orders[$change['order']['id']]['customFields'][str_replace('custom_', '', $change['field'])] = self::newValue($change['newValue']); - } elseif(isset($fields['order'][$change['field']]) && $fields['order'][$change['field']]) { + } elseif (isset($fields['order'][$change['field']]) && $fields['order'][$change['field']]) { $orders[$change['order']['id']][$fields['order'][$change['field']]] = self::newValue($change['newValue']); } - if(isset($change['created'])) { + if (isset($change['created'])) { $orders[$change['order']['id']]['create'] = 1; } - if(isset($change['deleted'])) { + if (isset($change['deleted'])) { $orders[$change['order']['id']]['deleted'] = 1; } } diff --git a/src/readme.txt b/src/readme.txt index a04516b..dce9a9f 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,6 +45,10 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == += 3.4.2 = +* Исправлено изменение типа оплаты на стороне WC +* Добавлен вывод неактивных типов оплаты в настройках + = 3.4.1 = * Исправлены некоторые ошибки @@ -166,6 +170,10 @@ API-ключ должен быть для отдельного магазина * Исправелены ошибки. == Upgrade Notice == += 3.4.2 = +Исправлено изменение типа оплаты на стороне WC +Добавлен вывод неактивных типов оплаты в настройках + = 3.4.0 = Внедрен Daemon Collector diff --git a/tests/phpunit/test-wc-retailcrm-customers.php b/tests/phpunit/test-wc-retailcrm-customers.php index 1d0e32e..284260a 100644 --- a/tests/phpunit/test-wc-retailcrm-customers.php +++ b/tests/phpunit/test-wc-retailcrm-customers.php @@ -84,7 +84,6 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper $customer_send = $retailcrm_customer->getCustomer(); if ($retailcrm) { - $this->assertArrayHasKey('externalId', $customer_send); $this->assertArrayHasKey('firstName', $customer_send); $this->assertArrayHasKey('createdAt', $customer_send); $this->assertArrayHasKey('email', $customer_send); From 63f9a155644562384187b1754144d64582909f07 Mon Sep 17 00:00:00 2001 From: Sergey Date: Fri, 15 Feb 2019 15:23:06 +0300 Subject: [PATCH 66/75] v3.4.3 --- CHANGELOG.md | 5 ++ VERSION | 2 +- src/include/class-wc-retailcrm-base.php | 2 +- src/include/class-wc-retailcrm-history.php | 13 ++-- src/readme.txt | 4 ++ tests/phpunit/test-wc-retailcrm-history.php | 78 +++++++++++++++++++-- 6 files changed, 91 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 094a099..682534e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2019-02-15 3.4.3 +* Исправлено сохранение типа оплаты при создании заказа по истории на стороне WC +* Исправлено сохранение типа оплаты при ризменении заказа по истории на стороне WC +* Исправлено подключение файлов методом checkCustomFile + ## 2019-02-07 3.4.2 * Исправлено изменение типа оплаты на стороне WC * Добавлен вывод неактивных типов оплаты в настройках diff --git a/VERSION b/VERSION index a423d42..8a0feb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4.2 \ No newline at end of file +3.4.3 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index 724cdea..e45c5c3 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -117,7 +117,7 @@ if (!class_exists('WC_Retailcrm_Base')) { return WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-' . $file . '.php'; } - return 'class-wc-retailcrm-' . $file . '.php'; + return WP_PLUGIN_DIR . '/woo-retailcrm/include/class-wc-retailcrm-' . $file . '.php'; } public function generate_icml() { diff --git a/src/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php index 090ae8c..fcb0710 100644 --- a/src/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -375,7 +375,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $payment_types = $payment->payment_gateways(); if (isset($payment_types[$options[$order['paymentType']]])) { - $order->set_payment_method($payment_types[$options[$order['paymentType']]]); + $wc_order->set_payment_method($payment_types[$options[$order['paymentType']]]); } } } @@ -503,18 +503,17 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $payment_types = $payment->payment_gateways(); $payments = $order['payments']; $paymentType = end($payments); - if (isset($options[$paymentType['type']]) && isset($payment_types[$options[$paymentType['type']]])) { $wc_order->set_payment_method($payment_types[$options[$paymentType['type']]]); } } } } else { - if (isset($order_record['paymentType']) && $order['paymentType']) { + if (isset($order['paymentType']) && $order['paymentType']) { $payment = WC_Payment_Gateways::instance(); $payment_types = $payment->payment_gateways(); - if (isset($options[$order_record['paymentType']]) && isset($payment_types[$options[$order_record['paymentType']]])) { + if (isset($options[$order['paymentType']]) && isset($payment_types[$options[$order['paymentType']]])) { $wc_order->set_payment_method($payment_types[$options[$order['paymentType']]]); } } @@ -568,6 +567,8 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : 'externalId' => (int) $wc_order->get_id() ); + $wc_order->save(); + $this->retailcrm->ordersFixExternalIds($ids); return $wc_order->get_id(); @@ -580,8 +581,8 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : */ public static function assemblyOrder($orderHistory) { - if (file_exists(WP_CONTENT_DIR . '/plugins/woo-retailcrm/config/objects.xml')) { - $objects = simplexml_load_file(WP_CONTENT_DIR . '/plugins/woo-retailcrm/config/objects.xml'); + if (file_exists(__DIR__ . '/../config/objects.xml')) { + $objects = simplexml_load_file(__DIR__ . '/../config/objects.xml'); foreach($objects->fields->field as $object) { $fields[(string)$object["group"]][(string)$object["id"]] = (string)$object; } diff --git a/src/readme.txt b/src/readme.txt index dce9a9f..78622fa 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,6 +45,10 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == += 3.4.3 = +* Исправлено сохранение типа оплаты при создании заказа по истории на стороне WC +* Исправлено сохранение типа оплаты при ризменении заказа по истории на стороне WC + = 3.4.2 = * Исправлено изменение типа оплаты на стороне WC * Добавлен вывод неактивных типов оплаты в настройках diff --git a/tests/phpunit/test-wc-retailcrm-history.php b/tests/phpunit/test-wc-retailcrm-history.php index 0bc58e6..53c6fde 100644 --- a/tests/phpunit/test-wc-retailcrm-history.php +++ b/tests/phpunit/test-wc-retailcrm-history.php @@ -66,12 +66,13 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper $retailcrm_history = new \WC_Retailcrm_History($this->apiMock); $retailcrm_history->getHistory(); - $orders = wc_get_orders(array('numberposts' => 10)); + $orders = wc_get_orders(array('numberposts' => -1)); $order_added = end($orders); $order_added_items = $order_added->get_items(); $order_added_item = reset($order_added_items); $shipping_address = $order_added->get_address('shipping'); $billing_address = $order_added->get_address('billing'); + $options = get_option(\WC_Retailcrm_Base::$option_key); $this->assertEquals(self::STATUS_1, $options[$order_added->get_status()]); @@ -90,6 +91,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper $this->assertNotEmpty($billing_address['city']); $this->assertNotEmpty($billing_address['country']); $this->assertNotEmpty($billing_address['state']); + $this->assertEquals('payment4', $options[$order_added->get_payment_method()]); } /** @@ -136,7 +138,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper * @dataProvider dataProvider * @param $api_version */ - public function test_history_order_update_status($api_version) + public function test_history_order_update($api_version) { $this->setOptions($api_version); @@ -153,7 +155,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper $order = WC_Helper_Order::create_order(0); $this->ordersHistoryResponse->setResponse( - $this->get_history_data_status_update($order->get_id()) + $this->get_history_data_update($order->get_id(), $api_version) ); $this->apiMock->expects($this->any())->method('customersHistory')->willReturn($this->customersHistoryResponse); @@ -166,6 +168,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper $options = get_option(\WC_Retailcrm_Base::$option_key); $this->assertEquals(self::STATUS_2, $options[$order_updated->get_status()]); + $this->assertEquals('payment2', $options[$order_updated->get_payment_method()]); } public function dataProvider() @@ -289,6 +292,14 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper 'purchasePrice' => 50 ) ), + 'paymentType' => 'payment4', + 'payments' => array( + array( + 'id'=> 1, + 'type'=> 'payment4', + 'amount'=> 100, + ) + ), 'fromApi' => false, 'length' => 0, 'width' => 0, @@ -351,9 +362,9 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper ); } - private function get_history_data_status_update($order_id) + private function get_history_data_update($order_id, $api_version) { - return array( + $history = array( 'success' => true, 'history' => array( array( @@ -380,5 +391,62 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper ) ) ); + + $payment_v5 = array( + 'id' => 4, + 'createdAt' => '2018-01-01 00:03:00', + 'source' => 'user', + 'user' => array( + 'id' => 1 + ), + 'field' => 'payments', + 'oldValue' => null, + 'newValue' => array( + 'code' => 'payment2' + ), + 'order' => array( + 'id' => 2, + 'externalId' => $order_id, + 'managerId' => 6, + 'site' => 'test-com', + 'status' => self::STATUS_2 + ), + 'payment' => array( + 'id' => 1, + 'type' => 'payment2', + "amount" => 100 + ) + ); + + $payment_v4 = array( + 'id' => 4, + 'createdAt' => '2018-01-01 00:03:00', + 'source' => 'user', + 'user' => array( + 'id' => 1 + ), + 'field' => 'payment_type', + 'oldValue' => null, + 'newValue' => array( + 'code' => 'payment2' + ), + 'order' => array( + 'id' => 2, + 'externalId' => $order_id, + 'managerId' => 6, + 'site' => 'test-com', + 'status' => self::STATUS_2 + ), + ); + + if ($api_version == 'v4') { + array_push($history['history'], $payment_v4); + } + + if ($api_version == 'v5') { + array_push($history['history'], $payment_v5); + } + + return $history; } } From 15c62b2cf9cb2c468eafc8232650c1500c0ffc22 Mon Sep 17 00:00:00 2001 From: Sergey Date: Wed, 20 Feb 2019 15:05:58 +0300 Subject: [PATCH 67/75] =?UTF-8?q?=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B2=D0=B5=D1=80=D1=81=D0=B8=D0=B8=20?= =?UTF-8?q?=D0=B2=20=D0=B0=D0=BD=D0=BD=D0=BE=D1=82=D0=B0=D1=86=D0=B8=D1=8F?= =?UTF-8?q?=D1=85=20=D0=B8=20=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B0=20change?= =?UTF-8?q?log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++-- src/retailcrm.php | 2 +- src/uninstall.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 682534e..6eed2b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 2019-02-15 3.4.3 -* Исправлено сохранение типа оплаты при создании заказа по истории на стороне WC -* Исправлено сохранение типа оплаты при ризменении заказа по истории на стороне WC +* Исправлено сохранение типа оплаты при создании заказа при обработке истории изменений на стороне WC +* Исправлено сохранение типа оплаты при изменении заказа при обработке истории изменений на стороне WC * Исправлено подключение файлов методом checkCustomFile ## 2019-02-07 3.4.2 diff --git a/src/retailcrm.php b/src/retailcrm.php index f1b8645..8d75d3d 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -1,6 +1,6 @@ Date: Mon, 25 Feb 2019 17:08:04 +0300 Subject: [PATCH 68/75] =?UTF-8?q?fixes=20#64=20=D0=B4=D0=BE=D0=B1=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=B5=D1=84?= =?UTF-8?q?=D0=B8=D0=BA=D1=81=D0=B0=20=D0=BA=20=D0=B2=D0=BD=D0=B5=D1=88?= =?UTF-8?q?=D0=BD=D0=B5=D0=BC=D1=83=20id=20=D0=BE=D0=BF=D0=BB=D0=B0=D1=82?= =?UTF-8?q?=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ VERSION | 2 +- src/include/class-wc-retailcrm-orders.php | 12 +++++++----- src/readme.txt | 7 +++++-- src/retailcrm.php | 2 +- src/uninstall.php | 2 +- tests/phpunit/test-wc-retailcrm-orders.php | 2 ++ 7 files changed, 20 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eed2b6..aff065c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2019-02-25 3.4.4 +* Добавлена генерация уникального id к externalId отправляемой оплаты + ## 2019-02-15 3.4.3 * Исправлено сохранение типа оплаты при создании заказа при обработке истории изменений на стороне WC * Исправлено сохранение типа оплаты при изменении заказа при обработке истории изменений на стороне WC diff --git a/VERSION b/VERSION index 8a0feb9..5141b61 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4.3 \ No newline at end of file +3.4.4 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 6bdd280..216c9f2 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -185,7 +185,9 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $retailcrmOrder = $response['order']; foreach ($retailcrmOrder['payments'] as $payment_data) { - if ($payment_data['externalId'] == $order->get_id()) { + $payment_external_id = explode('-', $payment_data['externalId']); + + if ($payment_external_id[0] == $order->get_id()) { $payment = $payment_data; } } @@ -364,7 +366,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : if ($this->retailcrm_settings['api_version'] == 'v5') { $payment = array( 'amount' => $order->get_total(), - 'externalId' => $order->get_id() + 'externalId' => $order->get_id() . uniqid('-') ); $payment['order'] = array( @@ -394,17 +396,17 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : /** * Send payment in CRM - * + * * @param WC_Order $order * @param boolean $update - * + * * @return array $payment */ protected function sendPayment($order, $update = false) { $payment = array( 'amount' => $order->get_total(), - 'externalId' => $order->get_id() + 'externalId' => $order->get_id() . uniqid('-') ); $payment['order'] = array( diff --git a/src/readme.txt b/src/readme.txt index 78622fa..8ecbc00 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,9 +45,12 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == += 3.4.4 = +* Добавлена генерация уникального id к внешнему id отправляемой оплаты при использовании 5 версии api + = 3.4.3 = -* Исправлено сохранение типа оплаты при создании заказа по истории на стороне WC -* Исправлено сохранение типа оплаты при ризменении заказа по истории на стороне WC +* Исправлено сохранение типа оплаты при создании заказа при обработке истории изменений на стороне WC +* Исправлено сохранение типа оплаты при ризменении заказа при обработке истории изменений на стороне WC = 3.4.2 = * Исправлено изменение типа оплаты на стороне WC diff --git a/src/retailcrm.php b/src/retailcrm.php index 8d75d3d..a37603c 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -1,6 +1,6 @@ assertArrayHasKey('payments', $order_send); $this->assertInternalType('array', $order_send['payments']); $this->assertArrayHasKey('type', $order_send['payments'][0]); + $this->assertArrayHasKey('externalId', $order_send['payments'][0]); $this->assertEquals('payment1', $order_send['payments'][0]['type']); } } else { @@ -201,6 +202,7 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper $this->assertArrayHasKey('type', $payment); $this->assertArrayHasKey('amount', $payment); $this->assertArrayHasKey('order', $payment); + $this->assertArrayHasKey('externalId', $payment); $this->assertEquals('payment1', $payment['type']); } } From 86e87be8d91645f4265ff61bac3b522c7c6bf998 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Wed, 6 Mar 2019 10:09:12 +0300 Subject: [PATCH 69/75] Fixes: #87 --- CHANGELOG.md | 6 +++++- VERSION | 2 +- src/include/class-wc-retailcrm-base.php | 23 +++++++++++++++++++--- src/include/class-wc-retailcrm-history.php | 1 + src/readme.txt | 4 ++++ src/retailcrm.php | 4 ++-- src/uninstall.php | 2 +- 7 files changed, 34 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aff065c..1564cee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2019-03-06 3.4.5 +* Исправлен баг с добавлением скидки при уменьшении количества товара +* Перенесена инициализация формы настроек после инициализации всех плагинов + ## 2019-02-25 3.4.4 * Добавлена генерация уникального id к externalId отправляемой оплаты @@ -93,4 +97,4 @@ * Выгрузка изменений из RetailCRM осуществляется по sinceId ## 2018-02-02 v2.0.5 -* Исправлен неверный подсчет скидки на товары \ No newline at end of file +* Исправлен неверный подсчет скидки на товары diff --git a/VERSION b/VERSION index 5141b61..4f5e697 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4.4 \ No newline at end of file +3.4.5 diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index e45c5c3..42b1ff6 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -43,9 +43,6 @@ if (!class_exists('WC_Retailcrm_Base')) { } self::$option_key = $this->get_option_key(); - // Load the settings. - $this->init_form_fields(); - $this->init_settings(); // Actions. add_action('woocommerce_update_options_integration_' . $this->id, array($this, 'process_admin_options')); @@ -68,10 +65,30 @@ if (!class_exists('WC_Retailcrm_Base')) { add_action('wp_print_scripts', array($this, 'initialize_daemon_collector'), 99); add_action('wp_print_footer_scripts', array($this, 'send_analytics'), 99); + if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' + && isset($_GET['tab']) && $_GET['tab'] == 'integration' + ) { + add_action('init', array($this, 'init_settings_fields'), 99); + } + // Deactivate hook add_action('retailcrm_deactivate', array($this, 'deactivate')); } + /** + * Init settings fields + */ + public function init_settings_fields() + { + $this->init_form_fields(); + $this->init_settings(); + } + + /** + * @param $settings + * + * @return array + */ public function api_sanitized($settings) { if (isset($settings['sync']) && $settings['sync'] == 'yes') { diff --git a/src/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php index fcb0710..21649be 100644 --- a/src/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -430,6 +430,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $order_item->set_quantity($item['quantity']); $product = wc_get_product($item['offer']['externalId']); $order_item->set_total($product->get_price() * $item['quantity']); + $order_item->set_subtotal($product->get_price()); $data_store = $order_item->get_data_store(); $data_store->update($order_item); } diff --git a/src/readme.txt b/src/readme.txt index 8ecbc00..d0d88e2 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -45,6 +45,10 @@ API-ключ должен быть для отдельного магазина 2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании). == Changelog == + += 3.4.5 = +* Исправлен баг с добавлением скидки при уменьшении количества товара в retailCRM + = 3.4.4 = * Добавлена генерация уникального id к внешнему id отправляемой оплаты при использовании 5 версии api diff --git a/src/retailcrm.php b/src/retailcrm.php index a37603c..8d69c3e 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -1,8 +1,8 @@ Date: Wed, 6 Mar 2019 12:28:48 +0300 Subject: [PATCH 70/75] fix for tests --- src/include/class-wc-retailcrm-base.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index 42b1ff6..1c59f8a 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -40,6 +40,7 @@ if (!class_exists('WC_Retailcrm_Base')) { $this->apiClient = $this->getApiClient(); } else { $this->apiClient = $retailcrm; + $this->init_settings_fields(); } self::$option_key = $this->get_option_key(); From c82faf616adc43035ce5ff54348ccc042005bd6f Mon Sep 17 00:00:00 2001 From: Konstantin Date: Wed, 13 Mar 2019 11:46:58 +0300 Subject: [PATCH 71/75] Fixed bug of sending incorrect externalId when editing payment --- src/include/class-wc-retailcrm-orders.php | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 216c9f2..9de5935 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -194,7 +194,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } if (isset($payment) && $payment['type'] == $this->retailcrm_settings[$order->get_payment_method()] && $order->is_paid()) { - $payment = $this->sendPayment($order, true); + $payment = $this->sendPayment($order, true, $payment['externalId']); return $payment; } @@ -402,13 +402,21 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : * * @return array $payment */ - protected function sendPayment($order, $update = false) + protected function sendPayment($order, $update = false, $externalId = false) { $payment = array( - 'amount' => $order->get_total(), - 'externalId' => $order->get_id() . uniqid('-') + 'amount' => $order->get_total() ); + if ($update) + { + $payment['externalId'] = $externalId; + } + else + { + $payment['externalId'] = $order->get_id() . uniqid('-'); + } + $payment['order'] = array( 'externalId' => $order->get_id() ); From da3a8285609a815341914d8ca8fc9a0cb8dcfaf6 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Thu, 14 Mar 2019 15:54:25 +0300 Subject: [PATCH 72/75] Fixed bug of sending incorrect externalId when editing payment 2 --- src/include/class-wc-retailcrm-orders.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 9de5935..9ad84e6 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -408,12 +408,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : 'amount' => $order->get_total() ); - if ($update) - { + if ($update) { $payment['externalId'] = $externalId; } - else - { + else { $payment['externalId'] = $order->get_id() . uniqid('-'); } From 5055bb710cc929f509a9ac83f073ad16ef391152 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Thu, 14 Mar 2019 15:58:36 +0300 Subject: [PATCH 73/75] Fixed bug of sending incorrect externalId when editing payment 2 --- src/include/class-wc-retailcrm-orders.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 9ad84e6..3dbea98 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -410,8 +410,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : if ($update) { $payment['externalId'] = $externalId; - } - else { + } else { $payment['externalId'] = $order->get_id() . uniqid('-'); } From b546a9c96c7c919db18b8be232a7be1da1b1d897 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Wed, 20 Mar 2019 15:56:37 +0300 Subject: [PATCH 74/75] update Makefile --- Makefile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 60c1309..59a6dd0 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,22 @@ FILE = $(TRAVIS_BUILD_DIR)/VERSION VERSION = `cat $(FILE)` -all: svn_clone prepare svn_commit remove_dir +all: svn_clone svn_push remove_dir svn_clone: mkdir /tmp/svn_plugin_dir svn co $(SVNREPOURL) /tmp/svn_plugin_dir --username $(USERNAME) --password $(PASSWORD) --no-auth-cache -prepare: /tmp/svn_plugin_dir - svn delete /tmp/svn_plugin_dir/trunk/* - rm -rf /tmp/svn_plugin_dir/trunk/* - cp -R $(TRAVIS_BUILD_DIR)/src/* /tmp/svn_plugin_dir/trunk - svn copy /tmp/svn_plugin_dir/trunk /tmp/svn_plugin_dir/tags/$(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache - -svn_commit: /tmp/svn_plugin_dir/tags - svn add /tmp/svn_plugin_dir/trunk/* --force - svn add /tmp/svn_plugin_dir/tags/$(VERSION)/* --force - svn ci /tmp/svn_plugin_dir -m $(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache +svn_push: /tmp/svn_plugin_dir + if [ ! -d "/tmp/svn_plugin_dir/tags/$(VERSION)" ]; then \ + svn delete /tmp/svn_plugin_dir/trunk/*; \ + rm -rf /tmp/svn_plugin_dir/trunk/*; \ + cp -R $(TRAVIS_BUILD_DIR)/src/* /tmp/svn_plugin_dir/trunk; \ + svn copy /tmp/svn_plugin_dir/trunk /tmp/svn_plugin_dir/tags/$(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache; \ + svn add /tmp/svn_plugin_dir/trunk/* --force; \ + svn add /tmp/svn_plugin_dir/tags/$(VERSION)/* --force; \ + svn ci /tmp/svn_plugin_dir -m $(VERSION) --username $(USERNAME) --password $(PASSWORD) --no-auth-cache; \ + fi remove_dir: rm -rf /tmp/svn_plugin_dir From 9394cd35241cb4f1aeb6ebf0720928e11d535be9 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Wed, 20 Mar 2019 15:51:31 +0300 Subject: [PATCH 75/75] some improvements --- .../class-wc-retailcrm-abstracts-address.php | 30 + .../class-wc-retailcrm-abstracts-data.php | 63 ++ .../class-wc-retailcrm-abstracts-settings.php | 705 ++++++++++++++++ src/include/class-wc-retailcrm-base.php | 785 ++---------------- src/include/class-wc-retailcrm-customers.php | 26 +- src/include/class-wc-retailcrm-history.php | 24 +- src/include/class-wc-retailcrm-icml.php | 24 +- .../class-wc-retailcrm-inventories.php | 19 +- src/include/class-wc-retailcrm-orders.php | 221 ++--- .../class-wc-retailcrm-customer-address.php | 38 + src/include/functions.php | 16 + .../class-wc-retailcrm-order-address.php | 46 + .../order/class-wc-retailcrm-order-item.php | 127 +++ .../class-wc-retailcrm-order-payment.php | 98 +++ .../order/class-wc-retailcrm-order.php | 125 +++ src/retailcrm.php | 8 + .../class-wc-retailcrm-test-case-helper.php | 18 +- .../test-wc-retailcrm-customer-address.php | 39 + .../order/test-wc-retailcrm-order-address.php | 37 + .../order/test-wc-retailcrm-order-item.php | 38 + .../order/test-wc-retailcrm-order-payment.php | 55 ++ tests/phpunit/test-wc-retailcrm-customers.php | 24 +- tests/phpunit/test-wc-retailcrm-orders.php | 26 +- 23 files changed, 1666 insertions(+), 926 deletions(-) create mode 100644 src/include/abstracts/class-wc-retailcrm-abstracts-address.php create mode 100644 src/include/abstracts/class-wc-retailcrm-abstracts-data.php create mode 100644 src/include/abstracts/class-wc-retailcrm-abstracts-settings.php create mode 100644 src/include/customer/class-wc-retailcrm-customer-address.php create mode 100644 src/include/order/class-wc-retailcrm-order-address.php create mode 100644 src/include/order/class-wc-retailcrm-order-item.php create mode 100644 src/include/order/class-wc-retailcrm-order-payment.php create mode 100644 src/include/order/class-wc-retailcrm-order.php create mode 100644 tests/phpunit/customer/test-wc-retailcrm-customer-address.php create mode 100644 tests/phpunit/order/test-wc-retailcrm-order-address.php create mode 100644 tests/phpunit/order/test-wc-retailcrm-order-item.php create mode 100644 tests/phpunit/order/test-wc-retailcrm-order-payment.php diff --git a/src/include/abstracts/class-wc-retailcrm-abstracts-address.php b/src/include/abstracts/class-wc-retailcrm-abstracts-address.php new file mode 100644 index 0000000..b27cdc8 --- /dev/null +++ b/src/include/abstracts/class-wc-retailcrm-abstracts-address.php @@ -0,0 +1,30 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +abstract class WC_Retailcrm_Abstracts_Address extends WC_Retailcrm_Abstracts_Data +{ + protected $data = array( + 'index' => '', + 'city' => '', + 'region' => '', + 'text' => '', + ); + + public function reset_data() + { + $this->data = array( + 'index' => '', + 'city' => '', + 'region' => '', + 'text' => '', + ); + } +} diff --git a/src/include/abstracts/class-wc-retailcrm-abstracts-data.php b/src/include/abstracts/class-wc-retailcrm-abstracts-data.php new file mode 100644 index 0000000..20ad0b3 --- /dev/null +++ b/src/include/abstracts/class-wc-retailcrm-abstracts-data.php @@ -0,0 +1,63 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +/** + * Class WC_Retailcrm_Abstracts_Data + */ +abstract class WC_Retailcrm_Abstracts_Data +{ + /** @var string */ + protected $filter_name; + + /** @var array */ + protected $data = array(); + + /** + * @return void + */ + abstract public function reset_data(); + + /** + * @param $data + * + * @return self + */ + abstract public function build($data); + + protected function set_data_field($field, $value) + { + if (isset($this->data[$field]) && \gettype($value) !== \gettype($this->data[$field])) { + return false; + } + + $this->data[$field] = $value; + + return true; + } + + /** + * @param $fields + */ + protected function set_data_fields($fields) + { + foreach ($fields as $field => $value) { + $this->set_data_field($field, $value); + } + } + + /** + * @return array + */ + public function get_data() + { + return apply_filters('retailcrm_before_send_' . $this->filter_name, $this->data); + } +} diff --git a/src/include/abstracts/class-wc-retailcrm-abstracts-settings.php b/src/include/abstracts/class-wc-retailcrm-abstracts-settings.php new file mode 100644 index 0000000..3436f53 --- /dev/null +++ b/src/include/abstracts/class-wc-retailcrm-abstracts-settings.php @@ -0,0 +1,705 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration +{ + /** @var string */ + const YES = 'yes'; + + /** @var string */ + const NO = 'no'; + + /** @var string */ + public static $option_key; + + /** + * WC_Retailcrm_Abstracts_Settings constructor. + */ + public function __construct() { + $this->id = 'integration-retailcrm'; + $this->method_title = __('retailCRM', 'retailcrm'); + $this->method_description = __('Integration with retailCRM management system.', 'retailcrm'); + + static::$option_key = $this->get_option_key(); + + if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' + && isset($_GET['tab']) && $_GET['tab'] == 'integration' + ) { + add_action('init', array($this, 'init_settings_fields'), 99); + } + } + + public function ajax_upload() + { + $ajax_url = admin_url('admin-ajax.php'); + ?> + + + + plugin_id . $this->id . '_single_order'; + ?> + + form_fields = array( + array( 'title' => __( 'Main settings', 'retailcrm' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), + + 'api_url' => array( + 'title' => __( 'API of URL', 'retailcrm' ), + 'type' => 'text', + 'description' => __( 'Enter API of URL (https://yourdomain.retailcrm.pro).', 'retailcrm' ), + 'desc_tip' => true, + 'default' => '' + ), + 'api_key' => array( + 'title' => __( 'API key', 'retailcrm' ), + 'type' => 'text', + 'description' => __( 'Enter your API key. You can find it in the administration section of retailCRM', 'retailcrm' ), + 'desc_tip' => true, + 'default' => '' + ) + ); + + $api_version_list = array( + 'v4' => 'v4', + 'v5' => 'v5' + ); + + $this->form_fields[] = array( + 'title' => __( 'API settings', 'retailcrm' ), + 'type' => 'title', + 'description' => '', + 'id' => 'api_options' + ); + + $this->form_fields['api_version'] = array( + 'title' => __( 'API version', 'retailcrm' ), + 'description' => __( 'Select API version', 'retailcrm' ), + 'css' => 'min-width:50px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $api_version_list, + 'desc_tip' => true, + ); + + $this->form_fields[] = array( + 'title' => __( 'Catalog settings', 'retailcrm' ), + 'type' => 'title', + 'description' => '', + 'id' => 'catalog_options' + ); + + foreach (get_post_statuses() as $status_key => $status_value) { + $this->form_fields['p_' . $status_key] = array( + 'title' => $status_value, + 'label' => ' ', + 'description' => '', + 'class' => 'checkbox', + 'type' => 'checkbox', + 'desc_tip' => true, + ); + } + + if ($this->apiClient) { + if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' + && isset($_GET['tab']) && $_GET['tab'] == 'integration' + ) { + add_action('admin_print_footer_scripts', array($this, 'show_blocks'), 99); + + /** + * Order methods options + */ + $order_methods_option = array(); + $order_methods_list = $this->apiClient->orderMethodsList(); + + if ($order_methods_list->isSuccessful()) { + foreach ($order_methods_list['orderMethods'] as $order_method) { + if ($order_method['active'] == false) { + continue; + } + + $order_methods_option[$order_method['code']] = $order_method['name']; + } + + $this->form_fields[] = array( + 'title' => __('Order methods', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'order_methods_options' + ); + + $this->form_fields['order_methods'] = array( + 'label' => ' ', + 'title' => __('Order methods available for uploading from retailCRM', 'retailcrm'), + 'class' => '', + 'type' => 'multiselect', + 'description' => __('Select order methods which will be uploaded from retailCRM to the website', 'retailcrm'), + 'options' => $order_methods_option, + 'css' => 'min-height:100px;', + 'select_buttons' => true + ); + } + + /** + * Shipping options + */ + $shipping_option_list = array(); + $retailcrm_shipping_list = $this->apiClient->deliveryTypesList(); + + if ($retailcrm_shipping_list->isSuccessful()) { + foreach ($retailcrm_shipping_list['deliveryTypes'] as $retailcrm_shipping_type) { + $shipping_option_list[$retailcrm_shipping_type['code']] = $retailcrm_shipping_type['name']; + } + + $wc_shipping_list = get_wc_shipping_methods(); + + $this->form_fields[] = array( + 'title' => __('Delivery types', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'shipping_options' + ); + + foreach ($wc_shipping_list as $shipping_code => $shipping) { + if (isset($shipping['enabled']) && $shipping['enabled'] == static::YES) { + $this->form_fields[$shipping_code] = array( + 'title' => __($shipping['title'], 'woocommerce'), + 'description' => __($shipping['description'], 'woocommerce'), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $shipping_option_list, + 'desc_tip' => true, + ); + } + } + } + + /** + * Payment options + */ + $payment_option_list = array(); + $retailcrm_payment_list = $this->apiClient->paymentTypesList(); + + if ($retailcrm_payment_list->isSuccessful()) { + foreach ($retailcrm_payment_list['paymentTypes'] as $retailcrm_payment_type) { + $payment_option_list[$retailcrm_payment_type['code']] = $retailcrm_payment_type['name']; + } + + $wc_payment = WC_Payment_Gateways::instance(); + + $this->form_fields[] = array( + 'title' => __('Payment types', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'payment_options' + ); + + foreach ($wc_payment->payment_gateways() as $payment) { + $this->form_fields[$payment->id] = array( + 'title' => __($payment->method_title, 'woocommerce'), + 'description' => __($payment->method_description, 'woocommerce'), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $payment_option_list, + 'desc_tip' => true, + ); + } + } + + /** + * Statuses options + */ + $statuses_option_list = array(); + $retailcrm_statuses_list = $this->apiClient->statusesList(); + + if ($retailcrm_statuses_list->isSuccessful()) { + foreach ($retailcrm_statuses_list['statuses'] as $retailcrm_status) { + $statuses_option_list[$retailcrm_status['code']] = $retailcrm_status['name']; + } + + $wc_statuses = wc_get_order_statuses(); + + $this->form_fields[] = array( + 'title' => __('Statuses', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'statuses_options' + ); + + foreach ($wc_statuses as $idx => $name) { + $uid = str_replace('wc-', '', $idx); + $this->form_fields[$uid] = array( + 'title' => __($name, 'woocommerce'), + 'css' => 'min-width:350px;', + 'class' => 'select', + 'type' => 'select', + 'options' => $statuses_option_list, + 'desc_tip' => true, + ); + } + } + + /** + * Inventories options + */ + $this->form_fields[] = array( + 'title' => __('Setting of the stock balance', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'invent_options' + ); + + $this->form_fields['sync'] = array( + 'label' => __('Synchronization of the stock balance', 'retailcrm'), + 'title' => __('Stock balance', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => __('Enable this setting if you would like to get information on leftover stocks from retailCRM to the website.', 'retailcrm') + ); + + /** + * UA options + */ + $this->form_fields[] = array( + 'title' => __('UA settings', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'ua_options' + ); + + $this->form_fields['ua'] = array( + 'label' => __('Activate UA', 'retailcrm'), + 'title' => __('UA', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => __('Enable this setting for uploading data to UA', 'retailcrm') + ); + + $this->form_fields['ua_code'] = array( + 'title' => __('UA tracking code', 'retailcrm'), + 'class' => 'input', + 'type' => 'input' + ); + + $this->form_fields['ua_custom'] = array( + 'title' => __('User parameter', 'retailcrm'), + 'class' => 'input', + 'type' => 'input' + ); + + /** + * Daemon collector settings + */ + $this->form_fields[] = array( + 'title' => __('Daemon Collector settings', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'invent_options' + ); + + $this->form_fields['daemon_collector'] = array( + 'label' => __('Activate Daemon Collector', 'retailcrm'), + 'title' => __('Daemon Collector', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox', + 'description' => __('Enable this setting for activate Daemon Collector on site', 'retailcrm') + ); + + $this->form_fields['daemon_collector_key'] = array( + 'title' => __('Site key', 'retailcrm'), + 'class' => 'input', + 'type' => 'input' + ); + + /** + * Uploads options + */ + $options = array_filter(get_option(static::$option_key)); + + if (!isset($options['uploads'])) { + $this->form_fields[] = array( + 'title' => __('Settings of uploading', 'retailcrm'), + 'type' => 'heading', + 'description' => '', + 'id' => 'upload_options' + ); + + $this->form_fields['upload-button'] = array( + 'label' => __('Upload', 'retailcrm'), + 'title' => __('Uploading all customers and orders', 'retailcrm' ), + 'type' => 'button', + 'description' => __('Uploading the existing customers and orders to retailCRM', 'retailcrm' ), + 'desc_tip' => true, + 'id' => 'uploads-retailcrm' + ); + } + + /* + * Generate icml file + */ + $this->form_fields[] = array( + 'title' => __('Generating ICML catalog', 'retailcrm'), + 'type' => 'title', + 'description' => '', + 'id' => 'icml_options' + ); + + $this->form_fields[] = array( + 'label' => __('Generate now', 'retailcrm'), + 'title' => __('Generating ICML', 'retailcrm'), + 'type' => 'button', + 'description' => __('This functionality allows to generate ICML products catalog for uploading to retailCRM.', 'retailcrm'), + 'desc_tip' => true, + 'id' => 'icml-retailcrm' + ); + + $this->form_fields['icml'] = array( + 'label' => __('Generating ICML', 'retailcrm'), + 'title' => __('Generating ICML catalog by wp-cron', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox' + ); + + /* + * Upload single order + */ + $this->form_field[] = array( + 'title' => __('Upload the order by ID', 'retailcrm'), + 'type' => 'title', + 'description' => '', + 'id' => 'order_options' + ); + + $this->form_fields['single_order'] = array( + 'label' => __('Order identifier', 'retailcrm'), + 'title' => __('Orders identifiers', 'retailcrm'), + 'type' => 'input', + 'description' => __('Enter orders identifiers separated by a comma.', 'retailcrm'), + 'desc_tip' => true + ); + + $this->form_fields[] = array( + 'label' => __('Upload', 'retailcrm'), + 'title' => __('Uploading orders by identifiers.', 'retailcrm'), + 'type' => 'button', + 'description' => __('This functionality allows to upload orders to CRM differentially.', 'retailcrm'), + 'desc_tip' => true, + 'id' => 'single_order_btn' + ); + + $this->form_fields['history'] = array( + 'label' => __('Activate history uploads', 'retailcrm'), + 'title' => __('Upload data from retailCRM', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox' + ); + + $this->form_fields['deactivate_update_order'] = array( + 'label' => __('Активировать редактирование данных в retailCRM', 'retailcrm'), + 'title' => __('Обновление данных в retailCRM', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox' + ); + + $this->form_fields['bind_by_sku'] = array( + 'label' => __('Активировать связь по sku(xmlId)', 'retailcrm'), + 'title' => __('Синхронизация остатков и связь товаров', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox' + ); + + $this->form_fields['update_number'] = array( + 'label' => __('Активировать передачу номера в retailCRM', 'retailcrm'), + 'title' => __('Передача номера заказа', 'retailcrm'), + 'class' => 'checkbox', + 'type' => 'checkbox' + ); + } + } + } + + /** + * Generate html button + * + * @param string $key + * @param array $data + * + * @return string + */ + public function generate_button_html($key, $data) + { + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( + 'class' => 'button-secondary', + 'css' => '', + 'custom_attributes' => array(), + 'desc_tip' => false, + 'description' => '', + 'title' => '', + ); + + $data = wp_parse_args( $data, $defaults ); + + ob_start(); + ?> + + + + + get_field_key( $key ); + $defaults = array( + 'title' => '', + 'class' => '', + ); + + $data = wp_parse_args( $data, $defaults ); + + ob_start(); + ?> + +

+ +

+ + + get_post_data(); + + $versionMap = array( + 'v4' => '4.0', + 'v5' => '5.0' + ); + + $api = new WC_Retailcrm_Proxy( + $post[$this->plugin_id . $this->id . '_api_url'], + $post[$this->plugin_id . $this->id . '_api_key'] + ); + + $response = $api->apiVersions(); + + if ($response && $response->isSuccessful()) { + if (!in_array($versionMap[$value], $response['versions'])) { + WC_Admin_Settings::add_error( esc_html__( 'The selected API version is unavailable', 'retailcrm' ) ); + $value = ''; + } + } + + return $value; + } + + /** + * Validate API url + * + * @param string $key + * @param string $value + * + * @return string + */ + public function validate_api_url_field($key, $value) + { + $post = $this->get_post_data(); + $api = new WC_Retailcrm_Proxy( + $value, + $post[$this->plugin_id . $this->id . '_api_key'] + ); + + $response = $api->apiVersions(); + + if ($response == null) { + WC_Admin_Settings::add_error(esc_html__( 'Enter the correct URL of CRM', 'retailcrm')); + $value = ''; + } + + return $value; + } + + /** + * Validate API key + * + * @param string $key + * @param string $value + * + * @return string + */ + public function validate_api_key_field($key, $value) + { + $post = $this->get_post_data(); + $api = new WC_Retailcrm_Proxy( + $post[$this->plugin_id . $this->id . '_api_url'], + $value + ); + + $response = $api->apiVersions(); + + if (!is_object($response)) { + $value = ''; + } + + if (!$response->isSuccessful()) { + WC_Admin_Settings::add_error( esc_html__( 'Enter the correct API key', 'retailcrm' ) ); + $value = ''; + } + + return $value; + } + + /** + * Scritp show|hide block settings + */ + function show_blocks() + { + ?> + + add_menu( + array( + 'id' => 'retailcrm_top_menu', + 'title' => __('retailCRM', 'retailcrm') + ) + ); + $wp_admin_bar->add_menu( + array( + 'id' => 'retailcrm_ajax_generate_icml', + 'title' => __('Generating ICML catalog', 'retailcrm'), + 'href' => '#', + 'parent' => 'retailcrm_top_menu', + 'class' => 'retailcrm_ajax_generate_icml' + ) + ); + $wp_admin_bar->add_menu( + array( + 'id' => 'retailcrm_ajax_generate_setings', + 'title' => __('Settings', 'retailcrm'), + 'href'=> get_site_url().'/wp-admin/admin.php?page=wc-settings&tab=integration§ion=integration-retailcrm', + 'parent' => 'retailcrm_top_menu', + 'class' => 'retailcrm_ajax_settings' + ) + ); + } +} diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index 1c59f8a..b9b2197 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -12,30 +12,27 @@ if (!class_exists('WC_Retailcrm_Base')) { /** * Class WC_Retailcrm_Base */ - class WC_Retailcrm_Base extends WC_Integration { - - public static $option_key; - + class WC_Retailcrm_Base extends WC_Retailcrm_Abstracts_Settings + { protected $api_url; protected $api_key; - - private $apiClient; + protected $apiClient; + protected $order_item; + protected $order_address; + protected $customers; + protected $orders; /** * Init and hook in the integration. * @param $retailcrm (default = false) */ public function __construct($retailcrm = false) { - //global $woocommerce; + parent::__construct(); - if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) { - include_once( __DIR__ . '/api/class-wc-retailcrm-proxy.php' ); + if (!class_exists( 'WC_Retailcrm_Proxy')) { + include_once(__DIR__ . '/api/class-wc-retailcrm-proxy.php'); } - $this->id = 'integration-retailcrm'; - $this->method_title = __('retailCRM', 'retailcrm'); - $this->method_description = __('Integration with retailCRM management system.', 'retailcrm'); - if ($retailcrm === false) { $this->apiClient = $this->getApiClient(); } else { @@ -43,7 +40,29 @@ if (!class_exists('WC_Retailcrm_Base')) { $this->init_settings_fields(); } - self::$option_key = $this->get_option_key(); + if (!class_exists('WC_Retailcrm_Orders')) { + include_once(static::checkCustomFile('orders')); + } + + if (!class_exists('WC_Retailcrm_Customers')) { + include_once(static::checkCustomFile('customers')); + } + + $this->customers = new WC_Retailcrm_Customers( + $this->apiClient, + $this->settings, + new WC_Retailcrm_Customer_Address + ); + + $this->orders = new WC_Retailcrm_Orders( + $this->apiClient, + $this->settings, + new WC_Retailcrm_Order_Item($this->settings), + new WC_Retailcrm_Order_Address, + $this->customers, + new WC_Retailcrm_Order($this->settings), + new WC_Retailcrm_Order_Payment($this->settings) + ); // Actions. add_action('woocommerce_update_options_integration_' . $this->id, array($this, 'process_admin_options')); @@ -61,15 +80,14 @@ if (!class_exists('WC_Retailcrm_Base')) { add_action('admin_print_footer_scripts', array($this, 'ajax_selected_order'), 99); add_action('woocommerce_created_customer', array($this, 'create_customer'), 10, 1); add_action('woocommerce_update_customer', array($this, 'update_customer'), 10, 1); - add_action('woocommerce_update_order', array($this, 'update_order'), 11, 1); add_action('wp_print_scripts', array($this, 'initialize_analytics'), 98); add_action('wp_print_scripts', array($this, 'initialize_daemon_collector'), 99); add_action('wp_print_footer_scripts', array($this, 'send_analytics'), 99); - if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' - && isset($_GET['tab']) && $_GET['tab'] == 'integration' + if (!$this->get_option('deactivate_update_order') + || $this->get_option('deactivate_update_order') == static::NO ) { - add_action('init', array($this, 'init_settings_fields'), 99); + add_action('woocommerce_update_order', array($this, 'update_order'), 11, 1); } // Deactivate hook @@ -92,27 +110,27 @@ if (!class_exists('WC_Retailcrm_Base')) { */ public function api_sanitized($settings) { - if (isset($settings['sync']) && $settings['sync'] == 'yes') { + if (isset($settings['sync']) && $settings['sync'] == static::YES) { if (!wp_next_scheduled('retailcrm_inventories')) { wp_schedule_event(time(), 'fiveteen_minutes', 'retailcrm_inventories'); } - } elseif (isset($settings['sync']) && $settings['sync'] == 'no') { + } elseif (isset($settings['sync']) && $settings['sync'] == static::NO) { wp_clear_scheduled_hook('retailcrm_inventories'); } - if (isset($settings['history']) && $settings['history'] == 'yes') { + if (isset($settings['history']) && $settings['history'] == static::YES) { if (!wp_next_scheduled('retailcrm_history')) { wp_schedule_event(time(), 'five_minutes', 'retailcrm_history'); } - } elseif (isset($settings['history']) && $settings['history'] == 'no') { + } elseif (isset($settings['history']) && $settings['history'] == static::NO) { wp_clear_scheduled_hook('retailcrm_history'); } - if (isset($settings['icml']) && $settings['icml'] == 'yes') { + if (isset($settings['icml']) && $settings['icml'] == static::YES) { if (!wp_next_scheduled('retailcrm_icml')) { wp_schedule_event(time(), 'three_hours', 'retailcrm_icml'); } - } elseif (isset($settings['icml']) && $settings['icml'] == 'no') { + } elseif (isset($settings['icml']) && $settings['icml'] == static::NO) { wp_clear_scheduled_hook('retailcrm_icml'); } @@ -140,7 +158,7 @@ if (!class_exists('WC_Retailcrm_Base')) { public function generate_icml() { if (!class_exists('WC_Retailcrm_Icml')) { - require_once (self::checkCustomFile('icml')); + require_once (static::checkCustomFile('icml')); } $retailcrm_icml = new WC_Retailcrm_Icml(); @@ -152,7 +170,7 @@ if (!class_exists('WC_Retailcrm_Base')) { */ public function retailcrm_history_get() { if (!class_exists('WC_Retailcrm_History')) { - include_once(self::checkCustomFile('history')); + include_once(static::checkCustomFile('history')); } $retailcrm_history = new WC_Retailcrm_History($this->apiClient); @@ -163,12 +181,7 @@ if (!class_exists('WC_Retailcrm_Base')) { * @param int $order_id */ public function retailcrm_process_order($order_id) { - if (!class_exists('WC_Retailcrm_Orders')) { - include_once(self::checkCustomFile('orders')); - } - - $retailcm_order = new WC_Retailcrm_Orders($this->apiClient); - $retailcm_order->orderCreate($order_id); + $this->orders->orderCreate($order_id); } /** @@ -176,7 +189,7 @@ if (!class_exists('WC_Retailcrm_Base')) { */ public function load_stocks() { if (!class_exists('WC_Retailcrm_Inventories')) { - include_once(self::checkCustomFile('inventories')); + include_once(static::checkCustomFile('inventories')); } $inventories = new WC_Retailcrm_Inventories($this->apiClient); @@ -187,20 +200,14 @@ if (!class_exists('WC_Retailcrm_Base')) { * Upload selected orders */ public function order_upload() { - if (!class_exists('WC_Retailcrm_Orders')) { - include_once(self::checkCustomFile('orders')); - } - $ids = false; if (isset($_GET['order_ids_retailcrm'])) { $ids = explode(',', $_GET['order_ids_retailcrm']); } - $retailcm_order = new WC_Retailcrm_Orders($this->apiClient); - if ($ids) { - $retailcm_order->ordersUpload($ids, true); + $this->orders->ordersUpload($ids, true); } } @@ -209,85 +216,13 @@ if (!class_exists('WC_Retailcrm_Base')) { */ public function upload_to_crm() { - if (!class_exists('WC_Retailcrm_Orders')) { - include_once(self::checkCustomFile('orders')); - } + $options = array_filter(get_option(static::$option_key)); - if (!class_exists('WC_Retailcrm_Customers')) { - include_once(self::checkCustomFile('customers')); - } + $this->customers->customersUpload(); + $this->orders->ordersUpload(); - $options = array_filter(get_option(self::$option_key)); - - $retailcrm_customers = new WC_Retailcrm_Customers($this->apiClient); - $retailcrm_orders = new WC_Retailcrm_Orders($this->apiClient); - - $retailcrm_customers->customersUpload(); - $retailcrm_orders->ordersUpload(); - - $options['uploads'] = 'yes'; - update_option(self::$option_key, $options); - } - - public function ajax_upload() - { - $ajax_url = admin_url('admin-ajax.php'); - ?> - - - - plugin_id . $this->id . '_single_order'; - ?> - - apiClient); - $retailcrm_customer->createCustomer($customer_id); + $this->customers->createCustomer($customer_id); } /** @@ -318,12 +248,7 @@ if (!class_exists('WC_Retailcrm_Base')) { return; } - if (!class_exists('WC_Retailcrm_Customers')) { - include_once(self::checkCustomFile('customers')); - } - - $retailcrm_customer = new WC_Retailcrm_Customers($this->apiClient); - $retailcrm_customer->updateCustomer($customer_id); + $this->customers->updateCustomer($customer_id); } /** @@ -336,12 +261,7 @@ if (!class_exists('WC_Retailcrm_Base')) { return; } - if (!class_exists('WC_Retailcrm_Orders')) { - include_once(self::checkCustomFile('orders')); - } - - $retailcrm_order = new WC_Retailcrm_Orders($this->apiClient); - $retailcrm_order->updateOrder($order_id); + $this->orders->updateOrder($order_id); } /** @@ -350,7 +270,7 @@ if (!class_exists('WC_Retailcrm_Base')) { public function initialize_analytics() { if (!class_exists('WC_Retailcrm_Google_Analytics')) { - include_once(self::checkCustomFile('ga')); + include_once(static::checkCustomFile('ga')); } if ($this->get_option('ua') && $this->get_option('ua_code')) { @@ -367,10 +287,10 @@ if (!class_exists('WC_Retailcrm_Base')) { public function send_analytics() { if (!class_exists('WC_Retailcrm_Google_Analytics')) { - include_once(self::checkCustomFile('ga')); + include_once(static::checkCustomFile('ga')); } - if ($this->get_option('ua') == 'yes' && $this->get_option('ua_code') && is_checkout()) { + if ($this->get_option('ua') == static::YES && $this->get_option('ua_code') && is_checkout()) { $retailcrm_analytics = WC_Retailcrm_Google_Analytics::getInstance($this->settings); echo $retailcrm_analytics->send_analytics(); } else { @@ -384,10 +304,10 @@ if (!class_exists('WC_Retailcrm_Base')) { public function initialize_daemon_collector() { if (!class_exists('WC_Retailcrm_Daemon_Collector')) { - include_once(self::checkCustomFile('daemon-collector')); + include_once(static::checkCustomFile('daemon-collector')); } - if ($this->get_option('daemon_collector') == 'yes' && $this->get_option('daemon_collector_key')) { + if ($this->get_option('daemon_collector') == static::YES && $this->get_option('daemon_collector_key')) { $retailcrm_daemon_collector = WC_Retailcrm_Daemon_Collector::getInstance($this->settings); echo $retailcrm_daemon_collector->initialize_daemon_collector(); } else { @@ -395,556 +315,6 @@ if (!class_exists('WC_Retailcrm_Base')) { } } - /** - * Initialize integration settings form fields. - */ - public function init_form_fields() - { - $this->form_fields = array( - array( 'title' => __( 'Main settings', 'retailcrm' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), - - 'api_url' => array( - 'title' => __( 'API of URL', 'retailcrm' ), - 'type' => 'text', - 'description' => __( 'Enter API of URL (https://yourdomain.retailcrm.pro).', 'retailcrm' ), - 'desc_tip' => true, - 'default' => '' - ), - 'api_key' => array( - 'title' => __( 'API key', 'retailcrm' ), - 'type' => 'text', - 'description' => __( 'Enter your API key. You can find it in the administration section of retailCRM', 'retailcrm' ), - 'desc_tip' => true, - 'default' => '' - ) - ); - - $api_version_list = array( - 'v4' => 'v4', - 'v5' => 'v5' - ); - - $this->form_fields[] = array( - 'title' => __( 'API settings', 'retailcrm' ), - 'type' => 'title', - 'description' => '', - 'id' => 'api_options' - ); - - $this->form_fields['api_version'] = array( - 'title' => __( 'API version', 'retailcrm' ), - 'description' => __( 'Select API version', 'retailcrm' ), - 'css' => 'min-width:50px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $api_version_list, - 'desc_tip' => true, - ); - - $this->form_fields[] = array( - 'title' => __( 'Catalog settings', 'retailcrm' ), - 'type' => 'title', - 'description' => '', - 'id' => 'catalog_options' - ); - - foreach (get_post_statuses() as $status_key => $status_value) { - $this->form_fields['p_' . $status_key] = array( - 'title' => $status_value, - 'label' => ' ', - 'description' => '', - 'class' => 'checkbox', - 'type' => 'checkbox', - 'desc_tip' => true, - ); - } - - if ($this->apiClient) { - if (isset($_GET['page']) && $_GET['page'] == 'wc-settings' - && isset($_GET['tab']) && $_GET['tab'] == 'integration' - ) { - add_action('admin_print_footer_scripts', array($this, 'show_blocks'), 99); - - /** - * Order methods options - */ - $order_methods_option = array(); - $order_methods_list = $this->apiClient->orderMethodsList(); - - if ($order_methods_list->isSuccessful()) { - foreach ($order_methods_list['orderMethods'] as $order_method) { - if ($order_method['active'] == false) { - continue; - } - - $order_methods_option[$order_method['code']] = $order_method['name']; - } - - $this->form_fields[] = array( - 'title' => __('Order methods', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'order_methods_options' - ); - - $this->form_fields['order_methods'] = array( - 'label' => ' ', - 'title' => __('Order methods available for uploading from retailCRM', 'retailcrm'), - 'class' => '', - 'type' => 'multiselect', - 'description' => __('Select order methods which will be uploaded from retailCRM to the website', 'retailcrm'), - 'options' => $order_methods_option, - 'css' => 'min-height:100px;', - 'select_buttons' => true - ); - } - - /** - * Shipping options - */ - $shipping_option_list = array(); - $retailcrm_shipping_list = $this->apiClient->deliveryTypesList(); - - if ($retailcrm_shipping_list->isSuccessful()) { - foreach ($retailcrm_shipping_list['deliveryTypes'] as $retailcrm_shipping_type) { - $shipping_option_list[$retailcrm_shipping_type['code']] = $retailcrm_shipping_type['name']; - } - - $wc_shipping_list = get_wc_shipping_methods(); - - $this->form_fields[] = array( - 'title' => __('Delivery types', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'shipping_options' - ); - - foreach ($wc_shipping_list as $shipping_code => $shipping) { - if (isset($shipping['enabled']) && $shipping['enabled'] == 'yes') { - $this->form_fields[$shipping_code] = array( - 'title' => __($shipping['title'], 'woocommerce'), - 'description' => __($shipping['description'], 'woocommerce'), - 'css' => 'min-width:350px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $shipping_option_list, - 'desc_tip' => true, - ); - } - } - } - - /** - * Payment options - */ - $payment_option_list = array(); - $retailcrm_payment_list = $this->apiClient->paymentTypesList(); - - if ($retailcrm_payment_list->isSuccessful()) { - foreach ($retailcrm_payment_list['paymentTypes'] as $retailcrm_payment_type) { - $payment_option_list[$retailcrm_payment_type['code']] = $retailcrm_payment_type['name']; - } - - $wc_payment = WC_Payment_Gateways::instance(); - - $this->form_fields[] = array( - 'title' => __('Payment types', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'payment_options' - ); - - foreach ($wc_payment->payment_gateways() as $payment) { - $this->form_fields[$payment->id] = array( - 'title' => __($payment->method_title, 'woocommerce'), - 'description' => __($payment->method_description, 'woocommerce'), - 'css' => 'min-width:350px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $payment_option_list, - 'desc_tip' => true, - ); - } - } - - /** - * Statuses options - */ - $statuses_option_list = array(); - $retailcrm_statuses_list = $this->apiClient->statusesList(); - - if ($retailcrm_statuses_list->isSuccessful()) { - foreach ($retailcrm_statuses_list['statuses'] as $retailcrm_status) { - $statuses_option_list[$retailcrm_status['code']] = $retailcrm_status['name']; - } - - $wc_statuses = wc_get_order_statuses(); - - $this->form_fields[] = array( - 'title' => __('Statuses', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'statuses_options' - ); - - foreach ($wc_statuses as $idx => $name) { - $uid = str_replace('wc-', '', $idx); - $this->form_fields[$uid] = array( - 'title' => __($name, 'woocommerce'), - 'css' => 'min-width:350px;', - 'class' => 'select', - 'type' => 'select', - 'options' => $statuses_option_list, - 'desc_tip' => true, - ); - } - } - - /** - * Inventories options - */ - $this->form_fields[] = array( - 'title' => __('Setting of the stock balance', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'invent_options' - ); - - $this->form_fields['sync'] = array( - 'label' => __('Synchronization of the stock balance', 'retailcrm'), - 'title' => __('Stock balance', 'retailcrm'), - 'class' => 'checkbox', - 'type' => 'checkbox', - 'description' => __('Enable this setting if you would like to get information on leftover stocks from retailCRM to the website.', 'retailcrm') - ); - - /** - * UA options - */ - $this->form_fields[] = array( - 'title' => __('UA settings', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'ua_options' - ); - - $this->form_fields['ua'] = array( - 'label' => __('Activate UA', 'retailcrm'), - 'title' => __('UA', 'retailcrm'), - 'class' => 'checkbox', - 'type' => 'checkbox', - 'description' => __('Enable this setting for uploading data to UA', 'retailcrm') - ); - - $this->form_fields['ua_code'] = array( - 'title' => __('UA tracking code', 'retailcrm'), - 'class' => 'input', - 'type' => 'input' - ); - - $this->form_fields['ua_custom'] = array( - 'title' => __('User parameter', 'retailcrm'), - 'class' => 'input', - 'type' => 'input' - ); - - /** - * Daemon collector settings - */ - $this->form_fields[] = array( - 'title' => __('Daemon Collector settings', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'invent_options' - ); - - $this->form_fields['daemon_collector'] = array( - 'label' => __('Activate Daemon Collector', 'retailcrm'), - 'title' => __('Daemon Collector', 'retailcrm'), - 'class' => 'checkbox', - 'type' => 'checkbox', - 'description' => __('Enable this setting for activate Daemon Collector on site', 'retailcrm') - ); - - $this->form_fields['daemon_collector_key'] = array( - 'title' => __('Site key', 'retailcrm'), - 'class' => 'input', - 'type' => 'input' - ); - - /** - * Uploads options - */ - $options = array_filter(get_option(self::$option_key)); - - if (!isset($options['uploads'])) { - $this->form_fields[] = array( - 'title' => __('Settings of uploading', 'retailcrm'), - 'type' => 'heading', - 'description' => '', - 'id' => 'upload_options' - ); - - $this->form_fields['upload-button'] = array( - 'label' => __('Upload', 'retailcrm'), - 'title' => __('Uploading all customers and orders', 'retailcrm' ), - 'type' => 'button', - 'description' => __('Uploading the existing customers and orders to retailCRM', 'retailcrm' ), - 'desc_tip' => true, - 'id' => 'uploads-retailcrm' - ); - } - - /* - * Generate icml file - */ - $this->form_fields[] = array( - 'title' => __('Generating ICML catalog', 'retailcrm'), - 'type' => 'title', - 'description' => '', - 'id' => 'icml_options' - ); - - $this->form_fields[] = array( - 'label' => __('Generate now', 'retailcrm'), - 'title' => __('Generating ICML', 'retailcrm'), - 'type' => 'button', - 'description' => __('This functionality allows to generate ICML products catalog for uploading to retailCRM.', 'retailcrm'), - 'desc_tip' => true, - 'id' => 'icml-retailcrm' - ); - - $this->form_fields['icml'] = array( - 'label' => __('Generating ICML', 'retailcrm'), - 'title' => __('Generating ICML catalog by wp-cron', 'retailcrm'), - 'class' => 'checkbox', - 'type' => 'checkbox' - ); - - /* - * Upload single order - */ - $this->form_field[] = array( - 'title' => __('Upload the order by ID', 'retailcrm'), - 'type' => 'title', - 'description' => '', - 'id' => 'order_options' - ); - - $this->form_fields['single_order'] = array( - 'label' => __('Order identifier', 'retailcrm'), - 'title' => __('Orders identifiers', 'retailcrm'), - 'type' => 'input', - 'description' => __('Enter orders identifiers separated by a comma.', 'retailcrm'), - 'desc_tip' => true - ); - - $this->form_fields[] = array( - 'label' => __('Upload', 'retailcrm'), - 'title' => __('Uploading orders by identifiers.', 'retailcrm'), - 'type' => 'button', - 'description' => __('This functionality allows to upload orders to CRM differentially.', 'retailcrm'), - 'desc_tip' => true, - 'id' => 'single_order_btn' - ); - - $this->form_fields['history'] = array( - 'label' => __('Activate history uploads', 'retailcrm'), - 'title' => __('Upload data from retailCRM', 'retailcrm'), - 'class' => 'checkbox', - 'type' => 'checkbox' - ); - } - } - } - - /** - * Generate html button - * - * @param string $key - * @param array $data - * - * @return string - */ - public function generate_button_html($key, $data) - { - $field = $this->plugin_id . $this->id . '_' . $key; - $defaults = array( - 'class' => 'button-secondary', - 'css' => '', - 'custom_attributes' => array(), - 'desc_tip' => false, - 'description' => '', - 'title' => '', - ); - - $data = wp_parse_args( $data, $defaults ); - - ob_start(); - ?> - - - - - get_field_key( $key ); - $defaults = array( - 'title' => '', - 'class' => '', - ); - - $data = wp_parse_args( $data, $defaults ); - - ob_start(); - ?> - -

- -

- - - get_post_data(); - - $versionMap = array( - 'v4' => '4.0', - 'v5' => '5.0' - ); - - $api = new WC_Retailcrm_Proxy( - $post[$this->plugin_id . $this->id . '_api_url'], - $post[$this->plugin_id . $this->id . '_api_key'] - ); - - $response = $api->apiVersions(); - - if ($response && $response->isSuccessful()) { - if (!in_array($versionMap[$value], $response['versions'])) { - WC_Admin_Settings::add_error( esc_html__( 'The selected API version is unavailable', 'retailcrm' ) ); - $value = ''; - } - } - - return $value; - } - - /** - * Validate API url - * - * @param string $key - * @param string $value - * - * @return string - */ - public function validate_api_url_field($key, $value) - { - $post = $this->get_post_data(); - $api = new WC_Retailcrm_Proxy( - $value, - $post[$this->plugin_id . $this->id . '_api_key'] - ); - - $response = $api->apiVersions(); - - if ($response == null) { - WC_Admin_Settings::add_error(esc_html__( 'Enter the correct URL of CRM', 'retailcrm')); - $value = ''; - } - - return $value; - } - - /** - * Validate API key - * - * @param string $key - * @param string $value - * - * @return string - */ - public function validate_api_key_field($key, $value) - { - $post = $this->get_post_data(); - $api = new WC_Retailcrm_Proxy( - $post[$this->plugin_id . $this->id . '_api_url'], - $value - ); - - $response = $api->apiVersions(); - - if (!is_object($response)) { - $value = ''; - } - - if (!$response->isSuccessful()) { - WC_Admin_Settings::add_error( esc_html__( 'Enter the correct API key', 'retailcrm' ) ); - $value = ''; - } - - return $value; - } - - /** - * Scritp show|hide block settings - */ - function show_blocks() - { - ?> - - add_menu( - array( - 'id' => 'retailcrm_top_menu', - 'title' => __('retailCRM', 'retailcrm') - ) - ); - $wp_admin_bar->add_menu( - array( - 'id' => 'retailcrm_ajax_generate_icml', - 'title' => __('Generating ICML catalog', 'retailcrm'), - 'href' => '#', - 'parent' => 'retailcrm_top_menu', - 'class' => 'retailcrm_ajax_generate_icml' - ) - ); - - $wp_admin_bar->add_menu( - array( - 'id' => 'retailcrm_ajax_generate_setings', - 'title' => __('Settings', 'retailcrm'), - 'href'=> get_site_url().'/wp-admin/admin.php?page=wc-settings&tab=integration§ion=integration-retailcrm', - 'parent' => 'retailcrm_top_menu', - 'class' => 'retailcrm_ajax_settings' - ) - ); - } - /** * Deactivate module in marketplace retailCRM * diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php index 0cbbc9b..f1adb1c 100644 --- a/src/include/class-wc-retailcrm-customers.php +++ b/src/include/class-wc-retailcrm-customers.php @@ -16,20 +16,30 @@ if (!class_exists('WC_Retailcrm_Customers')) : const CUSTOMER_ROLE = 'customer'; + /** @var bool | WC_Retailcrm_Proxy */ protected $retailcrm; - protected $retailcrm_settings; + /** @var array */ + protected $retailcrm_settings = array(); + + /** @var WC_Retailcrm_Customer_Address */ + protected $customer_address; + + /** @var array */ private $customer = array(); /** * WC_Retailcrm_Customers constructor. * - * @param $retailcrm + * @param bool | WC_Retailcrm_Proxy $retailcrm + * @param array $retailcrm_settings + * @param WC_Retailcrm_Customer_Address $customer_address */ - public function __construct($retailcrm = false) + public function __construct($retailcrm = false, $retailcrm_settings, $customer_address) { - $this->retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); $this->retailcrm = $retailcrm; + $this->retailcrm_settings = $retailcrm_settings; + $this->customer_address = $customer_address; } /** @@ -139,13 +149,7 @@ if (!class_exists('WC_Retailcrm_Customers')) : 'firstName' => $firstName ? $firstName : $customer->get_username(), 'lastName' => $customer->get_last_name(), 'email' => $customer->get_email(), - 'address' => array( - 'index' => $customer->get_billing_postcode(), - 'countryIso' => $customer->get_billing_country(), - 'region' => $customer->get_billing_state(), - 'city' => $customer->get_billing_city(), - 'text' => $customer->get_billing_address_1() . ',' . $customer->get_billing_address_2() - ) + 'address' => $this->customer_address->build($customer)->get_data() ); if ($customer->get_id() > 0) { diff --git a/src/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php index 21649be..6699d82 100644 --- a/src/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -20,6 +20,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : protected $retailcrm_settings; protected $retailcrm; protected $order_methods = array(); + protected $bind_field = 'externalId'; /** * WC_Retailcrm_History constructor. @@ -29,6 +30,12 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : { $this->retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); + if (isset($this->retailcrm_settings['bind_by_sku']) + && $this->retailcrm_settings['bind_by_sku'] == WC_Retailcrm_Base::YES + ) { + $this->bind_field = 'xmlId'; + } + if (isset($this->retailcrm_settings['order_methods'])) { $this->order_methods = $this->retailcrm_settings['order_methods']; unset($this->retailcrm_settings['order_methods']); @@ -322,12 +329,16 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : if (array_key_exists('items', $order)) { foreach ($order['items'] as $item) { - if (!isset($item['offer']['externalId'])) { + if (!isset($item['offer'][$this->bind_field])) { continue; } if (isset($item['create']) && $item['create'] == true) { - $product = wc_get_product($item['offer']['externalId']); + $product = retailcrm_get_wc_product( + $item['offer'][$this->bind_field], + $this->retailcrm_settings + ); + $wc_order->add_product($product, $item['quantity']); } else { foreach ($wc_order->get_items() as $order_item_id => $order_item) { @@ -337,7 +348,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : $offer_id = $order_item['product_id']; } - if ($offer_id == $item['offer']['externalId']) { + if ($offer_id == $item['offer'][$this->bind_field]) { $this->deleteOrUpdateOrderItem($item, $order_item, $order_item_id); } } @@ -428,7 +439,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : } else { if (isset($item['quantity']) && $item['quantity']) { $order_item->set_quantity($item['quantity']); - $product = wc_get_product($item['offer']['externalId']); + $product = retailcrm_get_wc_product($item['offer'][$this->bind_field], $this->retailcrm_settings); $order_item->set_total($product->get_price() * $item['quantity']); $order_item->set_subtotal($product->get_price()); $data_store = $order_item->get_data_store(); @@ -526,7 +537,10 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : if ($product_data) { foreach ($product_data as $product) { - $wc_order->add_product(wc_get_product($product['offer']['externalId']), $product['quantity']); + $wc_order->add_product( + retailcrm_get_wc_product($product['offer'][$this->bind_field], $this->retailcrm_settings), + $product['quantity'] + ); } } diff --git a/src/include/class-wc-retailcrm-icml.php b/src/include/class-wc-retailcrm-icml.php index e30fa9f..f06e6b0 100644 --- a/src/include/class-wc-retailcrm-icml.php +++ b/src/include/class-wc-retailcrm-icml.php @@ -41,12 +41,16 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : protected $chunk = 500; protected $fileLifeTime = 3600; + /** @var array */ + protected $settings; + /** * WC_Retailcrm_Icml constructor. * */ public function __construct() { + $this->settings = get_option(WC_Retailcrm_Base::$option_key); $this->shop = get_bloginfo( 'name' ); $this->file = ABSPATH . 'retailcrm.xml'; $this->tmpFile = sprintf('%s.tmp', $this->file); @@ -355,7 +359,6 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : ); foreach ($products as $offer) { - if ($offer->get_type() == 'simple') { $this->setOffer($full_product_list, $product_attributes, $offer); } elseif ($offer->get_type() == 'variable') { @@ -424,8 +427,8 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : * * @param array $full_product_list * @param array $product_attributes - * @param object WC_Product_Simple | WC_Product_Variation $product - * @param mixed WC_Product_Variable | bool $parent default false + * @param WC_Product $product + * @param bool | WC_Product_Variable $parent * * @return void */ @@ -462,10 +465,6 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : } } - if ($product->get_sku() != '') { - $params[] = array('code' => 'article', 'name' => 'Артикул', 'value' => $product->get_sku()); - } - $dimension = ''; if ($product->get_length() != '') { @@ -506,6 +505,14 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : 'tax' => isset($tax) ? $tax['rate'] : 'none' ); + if ($product->get_sku() != '') { + $params[] = array('code' => 'article', 'name' => 'Артикул', 'value' => $product->get_sku()); + + if (isset($this->settings['bind_by_sku']) && $this->settings['bind_by_sku'] == WC_Retailcrm_Base::YES) { + $product_data['xmlId'] = $product->get_sku(); + } + } + if (!empty($params)) { $product_data['params'] = $params; } @@ -523,11 +530,10 @@ if ( ! class_exists( 'WC_Retailcrm_Icml' ) ) : * @return array */ private function checkPostStatuses() { - $options = get_option(WC_Retailcrm_Base::$option_key); $status_args = array(); foreach (get_post_statuses() as $key => $value) { - if (isset($options['p_' . $key]) && $options['p_' . $key] == 'yes') { + if (isset($this->settings['p_' . $key]) && $this->settings['p_' . $key] == WC_Retailcrm_Base::YES) { $status_args[] = $key; } } diff --git a/src/include/class-wc-retailcrm-inventories.php b/src/include/class-wc-retailcrm-inventories.php index b69a3a3..a2e5406 100644 --- a/src/include/class-wc-retailcrm-inventories.php +++ b/src/include/class-wc-retailcrm-inventories.php @@ -14,9 +14,15 @@ if (!class_exists('WC_Retailcrm_Inventories')) : */ class WC_Retailcrm_Inventories { + /** @var WC_Retailcrm_Client_V5 */ protected $retailcrm; + + /** @var array */ protected $retailcrm_settings; + /** @var string */ + protected $bind_field = 'externalId'; + /** * WC_Retailcrm_Inventories constructor. * @param bool $retailcrm @@ -25,6 +31,12 @@ if (!class_exists('WC_Retailcrm_Inventories')) : { $this->retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); $this->retailcrm = $retailcrm; + + if (isset($this->retailcrm_settings['bind_by_sky']) + && $this->retailcrm_settings['bind_by_sky'] == WC_Retailcrm_Base::YES + ) { + $this->bind_field = 'xmlId'; + } } /** @@ -43,6 +55,7 @@ if (!class_exists('WC_Retailcrm_Inventories')) : $page = 1; do { + /** @var WC_Retailcrm_Response $result */ $result = $this->retailcrm->storeInventories(array(), $page, 250); if (!$result->isSuccessful()) { @@ -53,8 +66,8 @@ if (!class_exists('WC_Retailcrm_Inventories')) : $page++; foreach ($result['offers'] as $offer) { - if (isset($offer['externalId'])) { - $product = wc_get_product($offer['externalId']); + if (isset($offer[$this->bind_field])) { + $product = retailcrm_get_wc_product($offer[$this->bind_field], $this->retailcrm_settings); if ($product instanceof WC_Product) { if ($product->get_type() == 'variable') { @@ -79,7 +92,7 @@ if (!class_exists('WC_Retailcrm_Inventories')) : */ public function updateQuantity() { - if ($this->retailcrm_settings['sync'] == 'yes') { + if ($this->retailcrm_settings['sync'] == WC_Retailcrm_Base::YES) { return $this->load_stocks(); } diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 3dbea98..44f5daf 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -14,16 +14,49 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : */ class WC_Retailcrm_Orders { - protected $retailcrm_settings; + /** @var bool|WC_Retailcrm_Proxy */ protected $retailcrm; + /** @var array */ + protected $retailcrm_settings; + + /** @var WC_Retailcrm_Order_Item */ + protected $order_item; + + /** @var WC_Retailcrm_Order_Address */ + protected $order_address; + + /** @var WC_Retailcrm_Order_Payment */ + protected $order_payment; + + /** @var WC_Retailcrm_Customers */ + protected $customers; + + /** @var WC_Retailcrm_Order */ + protected $orders; + + /** @var array */ private $order = array(); + + /** @var array */ private $payment = array(); - public function __construct($retailcrm = false) - { - $this->retailcrm_settings = get_option(WC_Retailcrm_Base::$option_key); + public function __construct( + $retailcrm = false, + $retailcrm_settings, + $order_item, + $order_address, + $customers, + $orders, + $order_payment + ) { $this->retailcrm = $retailcrm; + $this->retailcrm_settings = $retailcrm_settings; + $this->order_item = $order_item; + $this->order_address = $order_address; + $this->customers = $customers; + $this->orders = $orders; + $this->order_payment = $order_payment; } /** @@ -66,12 +99,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } if ($withCustomers === true && !empty($customers)) { - if (!class_exists('WC_Retailcrm_Customers')) { - include_once(WC_Retailcrm_Base::checkCustomFile('customers')); - } - - $retailcrmCustomer = new WC_Retailcrm_Customers($this->retailcrm); - $retailcrmCustomer->customersUpload($customers); + $this->customers->customersUpload($customers); } $uploadOrders = array_chunk($orders_data, 50); @@ -101,26 +129,20 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : $this->processOrder($order); $customer = $order->get_user(); - if (!class_exists('WC_Retailcrm_Customers')) { - include_once(WC_Retailcrm_Base::checkCustomFile('customers')); - } - - $retailcrm_customers = new WC_Retailcrm_Customers($this->retailcrm); - if ($customer != false) { - $search = $retailcrm_customers->searchCustomer(array('id' => $customer->get('ID'))); + $search = $this->customers->searchCustomer(array('id' => $customer->get('ID'))); if (!$search) { - $retailcrm_customers->createCustomer($customer); + $this->customers->createCustomer($customer); } else { $this->order['customer']['externalId'] = $search['externalId']; } } else { - $search = $retailcrm_customers->searchCustomer(array('email' => $order->get_billing_email())); + $search = $this->customers->searchCustomer(array('email' => $order->get_billing_email())); if (!$search) { - $new_customer = $retailcrm_customers->buildCustomerFromOrderData($order); - $id = $retailcrm_customers->createCustomer($new_customer); + $new_customer = $this->customers->buildCustomerFromOrderData($order); + $id = $this->customers->createCustomer($new_customer); if ($id !== null) { $this->order['customer']['id'] = $id; @@ -212,28 +234,6 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : return null; } - /** - * Get order data - * - * @param WC_Order $order - * - * @return array $order_data_arr - */ - protected function getOrderData($order) - { - $order_data_arr = array(); - $order_info = $order->get_data(); - - $order_data_arr['id'] = $order_info['id']; - $order_data_arr['payment_method'] = $order->get_payment_method(); - $order_data_arr['date'] = $order_info['date_created']->date('Y-m-d H:i:s'); - $order_data_arr['discount_total'] = $order_info['discount_total']; - $order_data_arr['discount_tax'] = $order_info['discount_tax']; - $order_data_arr['customer_comment'] = $order->get_customer_note(); - - return $order_data_arr; - } - /** * process to combine order data * @@ -248,21 +248,12 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : return; } - $order_data_info = $this->getOrderData($order); - $order_data = array(); - - $order_data['externalId'] = $order_data_info['id']; - $order_data['number'] = $order->get_order_number(); - $order_data['createdAt'] = trim($order_data_info['date']); - $order_data['customerComment'] = $order_data_info['customer_comment']; - - if (!empty($order_data_info['payment_method']) - && !empty($this->retailcrm_settings[$order_data_info['payment_method']]) - && $this->retailcrm_settings['api_version'] != 'v5' - ) { - $order_data['paymentType'] = $this->retailcrm_settings[$order_data_info['payment_method']]; + if ($update === true) { + $this->orders->is_new = false; } + $order_data = $this->orders->build($order)->get_data(); + if ($order->get_items('shipping')) { $shippings = $order->get_items( 'shipping' ); $shipping = reset($shippings); @@ -300,95 +291,20 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : } } - if ($this->retailcrm_settings['api_version'] != 'v5' && $order->is_paid()) { - $order_data['paymentStatus'] = 'paid'; - } - - $status = $order->get_status(); - $order_data['status'] = $this->retailcrm_settings[$status]; - - $user_data_billing = $order->get_address('billing'); - - if (!empty($user_data_billing)) { - $order_data['phone'] = $user_data_billing['phone']; - $order_data['email'] = $user_data_billing['email']; - } - - $user_data_shipping = $order->get_address('shipping'); - - if (!empty($user_data_shipping)) { - $order_data['firstName'] = $user_data_shipping['first_name']; - $order_data['lastName'] = $user_data_shipping['last_name']; - $order_data['delivery']['address']['index'] = $user_data_shipping['postcode']; - $order_data['delivery']['address']['city'] = $user_data_shipping['city']; - $order_data['delivery']['address']['region'] = $user_data_shipping['state']; - $order_data['countryIso'] = $user_data_shipping['country']; - } - - $order_data['delivery']['address']['text'] = sprintf( - "%s %s %s %s %s", - $user_data_shipping['postcode'], - $user_data_shipping['state'], - $user_data_shipping['city'], - $user_data_shipping['address_1'], - $user_data_shipping['address_2'] - ); - + $order_data['delivery']['address'] = $this->order_address->build($order)->get_data(); $order_items = array(); + /** @var WC_Order_Item_Product $item */ foreach ($order->get_items() as $item) { - $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; - $price = round(($item['line_subtotal'] / $item->get_quantity()) + ($item['line_subtotal_tax'] / $item->get_quantity()), 2); - - $product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0; - $product_tax = $item->get_total_tax() ? $item->get_total_tax() / $item->get_quantity() : 0; - $price_item = $product_price + $product_tax; - $discount_price = $price - $price_item; - - $order_item = array( - 'offer' => array('externalId' => $uid), - 'productName' => $item['name'], - 'initialPrice' => (float)$price, - 'quantity' => $item['qty'], - ); - - if ($this->retailcrm_settings['api_version'] == 'v5' && round($discount_price, 2)) { - $order_item['discountManualAmount'] = round($discount_price, 2); - } elseif ($this->retailcrm_settings['api_version'] == 'v4' && round($discount_price, 2)) { - $order_item['discount'] = round($discount_price, 2); - } - - $order_items[] = $order_item; + $order_items[] = $this->order_item->build($item)->get_data(); + $this->order_item->reset_data(); } $order_data['items'] = $order_items; - if ($this->retailcrm_settings['api_version'] == 'v5') { - $payment = array( - 'amount' => $order->get_total(), - 'externalId' => $order->get_id() . uniqid('-') - ); - - $payment['order'] = array( - 'externalId' => $order->get_id() - ); - - if (!empty($order_data_info['payment_method']) && !empty($this->retailcrm_settings[$order_data_info['payment_method']])) { - $payment['type'] = $this->retailcrm_settings[$order_data_info['payment_method']]; - } - - if ($order->is_paid()) { - $payment['status'] = 'paid'; - } - - if ($order->get_date_paid()) { - $pay_date = $order->get_date_paid(); - $payment['paidAt'] = trim($pay_date->date('Y-m-d H:i:s')); - } - - if (!$update) { - $order_data['payments'][] = $payment; - } + if ($this->retailcrm_settings['api_version'] == 'v5' && !$update) { + $this->order_payment->is_new = true; + $order_data['payments'][] = $this->order_payment->build($order)->get_data(); } $this->order = apply_filters('retailcrm_process_order', $order_data, $order); @@ -399,39 +315,16 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : * * @param WC_Order $order * @param boolean $update + * @param mixed $externalId * * @return array $payment */ protected function sendPayment($order, $update = false, $externalId = false) { - $payment = array( - 'amount' => $order->get_total() - ); - - if ($update) { - $payment['externalId'] = $externalId; - } else { - $payment['externalId'] = $order->get_id() . uniqid('-'); - } - - $payment['order'] = array( - 'externalId' => $order->get_id() - ); - - if ($order->is_paid()) { - $payment['status'] = 'paid'; - } - - if ($order->get_date_paid()) { - $pay_date = $order->get_date_paid(); - $payment['paidAt'] = trim($pay_date->date('Y-m-d H:i:s')); - } + $this->order_payment->is_new = !$update; + $payment = $this->order_payment->build($order, $externalId)->get_data(); if ($update === false) { - if (isset($this->retailcrm_settings[$order->get_payment_method()])) { - $payment['type'] = $this->retailcrm_settings[$order->get_payment_method()]; - } - $this->retailcrm->ordersPaymentCreate($payment); } else { $this->retailcrm->ordersPaymentEdit($payment); diff --git a/src/include/customer/class-wc-retailcrm-customer-address.php b/src/include/customer/class-wc-retailcrm-customer-address.php new file mode 100644 index 0000000..621fc72 --- /dev/null +++ b/src/include/customer/class-wc-retailcrm-customer-address.php @@ -0,0 +1,38 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +/** + * Class WC_Retailcrm_Customer_Address + */ +class WC_Retailcrm_Customer_Address extends WC_Retailcrm_Abstracts_Address +{ + protected $filter_name = 'customer_address'; + + /** + * @param WC_Customer $customer + * + * @return self + */ + public function build($customer) + { + $data = array( + 'index' => $customer->get_billing_postcode(), + 'countryIso' => $customer->get_billing_country(), + 'region' => $customer->get_billing_state(), + 'city' => $customer->get_billing_city(), + 'text' => $customer->get_billing_address_1() . ', ' . $customer->get_billing_address_2() + ); + + $this->set_data_fields($data); + + return $this; + } +} diff --git a/src/include/functions.php b/src/include/functions.php index 310bcf9..570b093 100644 --- a/src/include/functions.php +++ b/src/include/functions.php @@ -82,3 +82,19 @@ function retailcrm_get_delivery_service($method_id, $instance_id) { return false; } + +/** + * @param $id + * @param $settings + * + * @return false|WC_Product|null + */ +function retailcrm_get_wc_product($id, $settings) { + if (isset($settings['bind_by_sky']) + && $settings['bind_by_sky'] == WC_Retailcrm_Base::YES + ) { + $id = wc_get_product_id_by_sku($id); + } + + return wc_get_product($id); +} diff --git a/src/include/order/class-wc-retailcrm-order-address.php b/src/include/order/class-wc-retailcrm-order-address.php new file mode 100644 index 0000000..308d70f --- /dev/null +++ b/src/include/order/class-wc-retailcrm-order-address.php @@ -0,0 +1,46 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +class WC_Retailcrm_Order_Address extends WC_Retailcrm_Abstracts_Address +{ + protected $filter_name = 'order_address'; + + /** + * @param WC_Order $order + * + * @return self + */ + public function build($order) + { + $address = $order->get_address('shipping'); + + if (!empty($address)) { + $data = array( + 'index' => $address['postcode'], + 'city' => $address['city'], + 'region' => $address['state'] + ); + + $this->set_data_fields($data); + } + + $this->set_data_field('text', sprintf( + "%s %s %s %s %s", + $address['postcode'], + $address['state'], + $address['city'], + $address['address_1'], + $address['address_2'] + )); + + return $this; + } +} diff --git a/src/include/order/class-wc-retailcrm-order-item.php b/src/include/order/class-wc-retailcrm-order-item.php new file mode 100644 index 0000000..42e71aa --- /dev/null +++ b/src/include/order/class-wc-retailcrm-order-item.php @@ -0,0 +1,127 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +/** + * Class WC_Retailcrm_Order_Item + */ +class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data +{ + protected $filter_name = 'order_item'; + + /** + * @var array order item + */ + protected $data = array( + 'offer' => array(), + 'productName' => '', + 'initialPrice' => 0.00, + 'quantity' => 0 + ); + + /** + * @var array + */ + protected $settings = array(); + + /** + * WC_Retailcrm_Order_Item constructor. + * + * @param array $settings + */ + public function __construct($settings) + { + $this->settings = $settings; + } + + /** + * @param WC_Order_Item_Product $item + * + * @return self + */ + public function build($item) + { + $price = $this->calculate_price($item); + $discount_price = $this->calculate_discount($item, $price); + + $data['productName'] = $item['name']; + $data['initialPrice'] = (float)$price; + $data['quantity'] = $item['qty']; + + $this->set_data_fields($data); + $this->set_offer($item); + + if ($this->settings['api_version'] == 'v5' && round($discount_price, 2)) { + $this->set_data_field('discountManualAmount',round($discount_price, 2)); + } elseif ($this->settings['api_version'] == 'v4' && round($discount_price, 2)) { + $this->set_data_field('discount', round($discount_price, 2)); + } + + return $this; + } + + /** + * @param WC_Order_Item_Product $item + * + * @return void + */ + private function set_offer(WC_Order_Item_Product $item) + { + $uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ; + $offer = array('externalId' => $uid); + + if (isset($this->settings['bind_by_sku']) && $this->settings['bind_by_sku'] == WC_Retailcrm_Base::YES) { + $offer['xmlId'] = $item->get_product()->get_sku(); + } + + $this->set_data_field('offer', $offer); + } + + /** + * @param WC_Order_Item_Product $item + * + * @return float + */ + private function calculate_price(WC_Order_Item_Product $item) + { + $price = ($item['line_subtotal'] / $item->get_quantity()) + ($item['line_subtotal_tax'] / $item->get_quantity()); + + return round($price, 2); + } + + /** + * @param WC_Order_Item_Product $item + * @param $price + * + * @return float|int + */ + private function calculate_discount(WC_Order_Item_Product $item, $price) + { + $product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0; + $product_tax = $item->get_total_tax() ? $item->get_total_tax() / $item->get_quantity() : 0; + $price_item = $product_price + $product_tax; + $discount_price = $price - $price_item; + + return $discount_price; + } + + /** + * Reset data for object + */ + public function reset_data() + { + $this->data = array( + 'offer' => array(), + 'productName' => '', + 'initialPrice' => 0.00, + 'quantity' => 0 + ); + } +} diff --git a/src/include/order/class-wc-retailcrm-order-payment.php b/src/include/order/class-wc-retailcrm-order-payment.php new file mode 100644 index 0000000..da836ee --- /dev/null +++ b/src/include/order/class-wc-retailcrm-order-payment.php @@ -0,0 +1,98 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +/** + * Class WC_Retailcrm_Order_Payment + */ +class WC_Retailcrm_Order_Payment extends WC_Retailcrm_Abstracts_Data +{ + /** @var string */ + protected $filter_name = 'order_payment'; + + /** @var array */ + protected $data = array( + 'externalId' => '', + 'amount' => 0.00, + 'type' => '', + 'order' => array() + ); + + /** @var bool */ + public $is_new = true; + + /** + * @var array + */ + protected $settings = array(); + + /** + * WC_Retailcrm_Order_Item constructor. + * + * @param array $settings + */ + public function __construct($settings) + { + $this->settings = $settings; + } + + /** + * @param WC_Order $order + * @param mixed $externalId + * + * @return self + */ + public function build($order, $externalId = false) + { + $data = array( + 'amount' => $order->get_total() + ); + + if (!$this->is_new) { + $data['externalId'] = $externalId; + } else { + $data['externalId'] = uniqid($order->get_id()); + } + + $data['order'] = array( + 'externalId' => $order->get_id() + ); + + if ($order->is_paid()) { + $data['status'] = 'paid'; + } + + if ($order->get_date_paid()) { + $data['paidAt'] = $order->get_date_paid()->date('Y-m-d H:i:s'); + } + + if ($this->is_new) { + if (isset($this->settings[$order->get_payment_method()])) { + $data['type'] = $this->settings[$order->get_payment_method()]; + } + } + + $this->set_data_fields($data); + + return $this; + } + + public function reset_data() + { + $this->data = array( + 'externalId' => '', + 'amount' => 0.00, + 'type' => '', + 'status' => '', + 'paidAt' => '', + 'order' => array() + ); + } +} diff --git a/src/include/order/class-wc-retailcrm-order.php b/src/include/order/class-wc-retailcrm-order.php new file mode 100644 index 0000000..69d529c --- /dev/null +++ b/src/include/order/class-wc-retailcrm-order.php @@ -0,0 +1,125 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +class WC_Retailcrm_Order extends WC_Retailcrm_Abstracts_Data +{ + /** @var bool */ + public $is_new = true; + + protected $filter_name = 'order'; + + protected $data = array( + 'externalId' => 0, + 'status' => '', + 'number' => '', + 'createdAt' => '', + 'firstName' => '', + 'lastName' => '', + 'email' => '', + 'paymentType' => '', + 'customerComment' => '', + 'paymentStatus' => '', + 'phone' => '', + 'countryIso' => '' + ); + + /** + * @var array + */ + protected $settings = array(); + + /** + * WC_Retailcrm_Order constructor. + * + * @param array $settings + */ + public function __construct($settings) + { + $this->settings = $settings; + } + + /** + * @param WC_Order $order + * + * @return self + */ + public function build($order) + { + $data = array( + 'externalId' => $order->get_id(), + 'createdAt' => $order->get_date_created()->date('Y-m-d H:i:s'), + 'firstName' => $order->get_shipping_first_name(), + 'lastName' => $order->get_shipping_last_name(), + 'email' => $order->get_billing_email(), + 'customerComment' => $order->get_customer_note(), + 'phone' => $order->get_billing_phone(), + 'countryIso' => $order->get_shipping_country() + ); + + $this->set_data_fields($data); + $this->set_number($order); + + if ($this->settings['api_version'] != 'v5') { + $this->set_payment_data($order); + } + + if (isset($this->settings[$order->get_status()])) { + $this->set_data_field('status', $this->settings[$order->get_status()]); + } + + return $this; + } + + /** + * @param WC_Order $order + */ + protected function set_payment_data($order) + { + if ($order->get_payment_method() && isset($this->settings[$order->get_payment_method()])) { + $this->set_data_field('paymentType', $this->settings[$order->get_payment_method()]); + } + + if ($order->is_paid()) { + $this->set_data_field('paymentStatus', 'paid'); + } + } + + /** + * @param WC_Order $order + */ + protected function set_number($order) + { + if (isset($this->settings['update_number']) + && $this->settings['update_number'] == WC_Retailcrm_Base::YES + && !$this->is_new + ) { + $this->set_data_field('number', $order->get_order_number()); + } + } + + public function reset_data() + { + $this->data = array( + 'externalId' => '', + 'status' => '', + 'number' => '', + 'createdAt' => '', + 'firstName' => '', + 'lastName' => '', + 'email' => '', + 'paymentType' => '', + 'customerComment' => '', + 'paymentStatus' => '', + 'phone' => '', + 'countryIso' => '' + ); + } +} diff --git a/src/retailcrm.php b/src/retailcrm.php index 8d69c3e..a898f90 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -39,6 +39,14 @@ if (!class_exists( 'WC_Integration_Retailcrm')) : $this->load_plugin_textdomain(); if (class_exists( 'WC_Integration' ) ) { + require_once(dirname(__FILE__ ) . '/include/abstracts/class-wc-retailcrm-abstracts-settings.php'); + require_once(dirname(__FILE__ ) . '/include/abstracts/class-wc-retailcrm-abstracts-data.php'); + require_once(dirname(__FILE__ ) . '/include/abstracts/class-wc-retailcrm-abstracts-address.php'); + require_once(dirname(__FILE__ ) . '/include/order/class-wc-retailcrm-order.php'); + require_once(dirname(__FILE__ ) . '/include/order/class-wc-retailcrm-order-payment.php'); + require_once(dirname(__FILE__ ) . '/include/order/class-wc-retailcrm-order-item.php'); + require_once(dirname(__FILE__ ) . '/include/order/class-wc-retailcrm-order-address.php'); + require_once(dirname(__FILE__ ) . '/include/customer/class-wc-retailcrm-customer-address.php'); require_once(dirname(__FILE__ ) . '/include/class-wc-retailcrm-base.php'); require_once(dirname(__FILE__ ) . '/include/functions.php'); add_filter('woocommerce_integrations', array( $this, 'add_integration')); diff --git a/tests/helpers/class-wc-retailcrm-test-case-helper.php b/tests/helpers/class-wc-retailcrm-test-case-helper.php index 26d1f7e..a7865a3 100644 --- a/tests/helpers/class-wc-retailcrm-test-case-helper.php +++ b/tests/helpers/class-wc-retailcrm-test-case-helper.php @@ -1,7 +1,15 @@ + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +class WC_Retailcrm_Customer_Address_Test extends WC_Retailcrm_Test_Case_Helper +{ + protected $customer; + + public function setUp() + { + parent::setUp(); + + $this->customer = WC_Helper_Customer::create_customer(); + } + + public function test_build() + { + $customer_address = new WC_Retailcrm_Customer_Address; + $data = $customer_address->build($this->customer)->get_data(); + + $this->assertArrayHasKey('index', $data); + $this->assertArrayHasKey('city', $data); + $this->assertArrayHasKey('region', $data); + $this->assertArrayHasKey('text', $data); + $this->assertArrayHasKey('countryIso', $data); + $this->assertNotEmpty($data['index']); + $this->assertNotEmpty($data['city']); + $this->assertNotEmpty($data['region']); + $this->assertNotEmpty($data['text']); + $this->assertNotEmpty($data['countryIso']); + } +} diff --git a/tests/phpunit/order/test-wc-retailcrm-order-address.php b/tests/phpunit/order/test-wc-retailcrm-order-address.php new file mode 100644 index 0000000..b7c0a52 --- /dev/null +++ b/tests/phpunit/order/test-wc-retailcrm-order-address.php @@ -0,0 +1,37 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +/** + * Class WC_Retailcrm_Order_Address_Test + */ +class WC_Retailcrm_Order_Address_Test extends WC_Retailcrm_Test_Case_Helper +{ + /** @var WC_Order */ + protected $order; + + public function setUp() + { + parent::setUp(); + + $this->order = WC_Helper_Order::create_order(); + } + + public function test_build() + { + $order_address = new WC_Retailcrm_Order_Address; + $data = $order_address->build($this->order)->get_data(); + + $this->assertArrayHasKey('index', $data); + $this->assertArrayHasKey('city', $data); + $this->assertArrayHasKey('region', $data); + $this->assertArrayHasKey('text', $data); + } +} diff --git a/tests/phpunit/order/test-wc-retailcrm-order-item.php b/tests/phpunit/order/test-wc-retailcrm-order-item.php new file mode 100644 index 0000000..5c6a523 --- /dev/null +++ b/tests/phpunit/order/test-wc-retailcrm-order-item.php @@ -0,0 +1,38 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +class WC_Retailcrm_Order_Item_Test extends WC_Retailcrm_Test_Case_Helper +{ + /** @var WC_Order */ + protected $order; + + public function setUp() + { + parent::setUp(); + + $this->order = WC_Helper_Order::create_order(); + } + + public function test_build() + { + $order_item = new WC_Retailcrm_Order_Item($this->getOptions()); + + /** @var WC_Order_Item_Product $item */ + foreach ($this->order->get_items() as $item) { + $data = $order_item->build($item)->get_data(); + + $this->assertArrayHasKey('productName', $data); + $this->assertArrayHasKey('initialPrice', $data); + $this->assertArrayHasKey('quantity', $data); + $this->assertArrayHasKey('offer', $data); + } + } +} diff --git a/tests/phpunit/order/test-wc-retailcrm-order-payment.php b/tests/phpunit/order/test-wc-retailcrm-order-payment.php new file mode 100644 index 0000000..31bffde --- /dev/null +++ b/tests/phpunit/order/test-wc-retailcrm-order-payment.php @@ -0,0 +1,55 @@ + + * @license http://retailcrm.ru Proprietary + * @link http://retailcrm.ru + * @see http://help.retailcrm.ru + */ + +class WC_Retailcrm_Order_Payment_Test extends WC_Retailcrm_Test_Case_Helper +{ + /** @var WC_Order */ + protected $order; + + public function setUp() + { + parent::setUp(); + + $this->order = WC_Helper_Order::create_order(); + } + + /** + * @param mixed $externalId + * + * @dataProvider dataProvider + */ + public function test_build($externalId) + { + $order_payment = new WC_Retailcrm_Order_Payment($this->getOptions()); + + $data = $order_payment->build($this->order, $externalId)->get_data(); + + $this->assertArrayHasKey('externalId', $data); + $this->assertArrayHasKey('type', $data); + $this->assertArrayHasKey('amount', $data); + $this->assertArrayHasKey('order', $data); + } + + /** + * @return array + */ + public function dataProvider() + { + return array( + array( + 'externalId' => false + ), + array( + 'externalId' => uniqid() + ) + ); + } +} diff --git a/tests/phpunit/test-wc-retailcrm-customers.php b/tests/phpunit/test-wc-retailcrm-customers.php index 284260a..35c82c3 100644 --- a/tests/phpunit/test-wc-retailcrm-customers.php +++ b/tests/phpunit/test-wc-retailcrm-customers.php @@ -51,7 +51,7 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper public function test_wc_customer_get($retailcrm) { $wc_customer = new WC_Customer($this->customer->get_id()); - $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $retailcrm_customer = $this->getRetailcrmCustomer($retailcrm); $this->assertEquals($wc_customer, $retailcrm_customer->wcCustomerGet($this->customer->get_id())); } @@ -61,7 +61,7 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper */ public function test_customers_upload($retailcrm) { - $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $retailcrm_customer = $this->getRetailcrmCustomer($retailcrm); $data = $retailcrm_customer->customersUpload(); if ($retailcrm) { @@ -79,7 +79,7 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper */ public function test_create_customer($retailcrm) { - $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $retailcrm_customer = $this->getRetailcrmCustomer($retailcrm); $id = $retailcrm_customer->createCustomer($this->customer->get_id()); $customer_send = $retailcrm_customer->getCustomer(); @@ -102,7 +102,7 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper */ public function test_update_customer($retailcrm) { - $retailcrm_customer = new WC_Retailcrm_Customers($retailcrm); + $retailcrm_customer = $this->getRetailcrmCustomer($retailcrm); $customer = $retailcrm_customer->updateCustomer($this->customer->get_id()); $customer_send = $retailcrm_customer->getCustomer(); @@ -134,4 +134,18 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper ) ); } -} \ No newline at end of file + + /** + * @param $retailcrm + * + * @return WC_Retailcrm_Customers + */ + private function getRetailcrmCustomer($retailcrm) + { + return new WC_Retailcrm_Customers( + $retailcrm, + $this->getOptions(), + new WC_Retailcrm_Customer_Address() + ); + } +} diff --git a/tests/phpunit/test-wc-retailcrm-orders.php b/tests/phpunit/test-wc-retailcrm-orders.php index 7f5d3cc..b7df534 100644 --- a/tests/phpunit/test-wc-retailcrm-orders.php +++ b/tests/phpunit/test-wc-retailcrm-orders.php @@ -34,7 +34,7 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper public function test_order_upload($retailcrm, $apiVersion) { $this->options = $this->setOptions($apiVersion); - $retailcrm_orders = new WC_Retailcrm_Orders($retailcrm); + $retailcrm_orders = $this->getRetailcrmOrders($retailcrm); $upload_orders = $retailcrm_orders->ordersUpload(); if ($retailcrm) { @@ -83,7 +83,7 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper $this->createTestOrder(); $this->options = $this->setOptions($apiVersion); - $retailcrm_orders = new WC_Retailcrm_Orders($retailcrm); + $retailcrm_orders = $this->getRetailcrmOrders($retailcrm); $order = $retailcrm_orders->orderCreate($this->order->get_id()); $order_send = $retailcrm_orders->getOrder(); @@ -164,7 +164,7 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper ->willReturn($responseMock); } - $retailcrm_orders = new WC_Retailcrm_Orders($retailcrm); + $retailcrm_orders = $this->getRetailcrmOrders($retailcrm); $order = $retailcrm_orders->updateOrder($this->order->get_id()); $order_send = $retailcrm_orders->getOrder(); @@ -312,4 +312,24 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper ) ); } + + /** + * @param $retailcrm + * + * @return WC_Retailcrm_Orders + */ + private function getRetailcrmOrders($retailcrm) + { + return new WC_Retailcrm_Orders( + $retailcrm, + $this->getOptions(), + new WC_Retailcrm_Order_Item($this->getOptions()), + new WC_Retailcrm_Order_Address, + new WC_Retailcrm_Customers( + $retailcrm, $this->getOptions(), new WC_Retailcrm_Customer_Address + ), + new WC_Retailcrm_Order($this->getOptions()), + new WC_Retailcrm_Order_Payment($this->getOptions()) + ); + } }