tests
This commit is contained in:
parent
b04a9ce701
commit
bdd0ee73e1
18 changed files with 1567 additions and 1053 deletions
28
phpunit.xml
Normal file
28
phpunit.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit
|
||||
bootstrap="tests/phpunit/bootstrap.php"
|
||||
backupGlobals="false"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
verbose="true"
|
||||
syntaxCheck="true"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="Retailcrm WooCommerce Test Suite">
|
||||
<directory suffix=".php">tests/phpunit</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist addUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">./include</directory>
|
||||
<file>retailcrm.php</file>
|
||||
<file>uninstall.php</file>
|
||||
<exclude>
|
||||
<directory suffix=".php">./include/api</directory>
|
||||
<file>./include/class-wc-retailcrm-base.php</file>
|
||||
</exclude>
|
||||
</whitelist>
|
||||
</filter>
|
||||
</phpunit>
|
1
tests/bin/deploy.sh
Normal file
1
tests/bin/deploy.sh
Normal file
|
@ -0,0 +1 @@
|
|||
#!/usr/bin/env bash
|
146
tests/bin/install.sh
Executable file
146
tests/bin/install.sh
Executable file
|
@ -0,0 +1,146 @@
|
|||
#!/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-name> <db-user> <db-pass> [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 $TRAVIS_BUILD_DIR
|
||||
cd ..
|
||||
git clone https://github.com/woocommerce/woocommerce.git
|
||||
cd woocommerce
|
||||
git checkout $WC_VERSION
|
||||
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_wc() {
|
||||
#
|
||||
# mkdir -p /tmp/wordpress/wp-content/plugins/woocommerce
|
||||
# svn co --quiet https://plugins.svn.wordpress.org/woocommerce/trunk/ /tmp/wordpress/wp-content/plugins/woocommerce
|
||||
#
|
||||
#}
|
||||
|
||||
install_wp
|
||||
install_test_suite
|
||||
install_woocommerce
|
||||
install_db
|
||||
#install_wc
|
34
tests/phpunit/bootstrap.php
Normal file
34
tests/phpunit/bootstrap.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
$_tests_dir = getenv( 'WP_TESTS_DIR' );
|
||||
|
||||
if ( ! $_tests_dir ) {
|
||||
$_tests_dir = '/tmp/wordpress-tests-lib';
|
||||
}
|
||||
|
||||
require_once $_tests_dir . '/includes/functions.php';
|
||||
|
||||
function _manually_load_plugin() {
|
||||
$plugin_dir = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/';
|
||||
require $plugin_dir . 'woocommerce-retailcrm/woo-retailcrm/include/class-wc-retailcrm-orders.php';
|
||||
require $plugin_dir . 'woocommerce-retailcrm/woo-retailcrm/include/class-wc-retailcrm-customers.php';
|
||||
require $plugin_dir . 'woocommerce-retailcrm/woo-retailcrm/include/class-wc-retailcrm-inventories.php';
|
||||
require $plugin_dir . 'woocommerce-retailcrm/woo-retailcrm/retailcrm.php';
|
||||
require '/woocommerce/woocommerce.php';
|
||||
}
|
||||
|
||||
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
|
||||
|
||||
require $_tests_dir . '/includes/bootstrap.php';
|
||||
require '/woocommerce/tests/bootstrap.php';
|
||||
|
||||
$wc_tests_framework_base_dir = '/woocommerce/tests/framework/';
|
||||
|
||||
require_once( $wc_tests_framework_base_dir . 'class-wc-mock-session-handler.php' );
|
||||
require_once( $wc_tests_framework_base_dir . 'class-wc-unit-test-case.php' );
|
||||
require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-product.php' );
|
||||
require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-coupon.php' );
|
||||
require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-fee.php' );
|
||||
require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-shipping.php' );
|
||||
require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-customer.php' );
|
||||
require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-order.php' );
|
31
tests/phpunit/test-wc-retailcrm-base.php
Normal file
31
tests/phpunit/test-wc-retailcrm-base.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
class WC_Retailcrm_Base_Test extends WC_Unit_Test_Case
|
||||
{
|
||||
protected $apiMock;
|
||||
private $unit;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$this->unit = new \WC_Retailcrm_Base();
|
||||
$this->unit->apiClient = $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);
|
||||
}
|
||||
}
|
82
tests/phpunit/test-wc-retailcrm-customers.php
Normal file
82
tests/phpunit/test-wc-retailcrm-customers.php
Normal file
|
@ -0,0 +1,82 @@
|
|||
<?php
|
||||
|
||||
class WC_Retailcrm_Customers_Test extends WC_Unit_Test_Case
|
||||
{
|
||||
protected $apiMock;
|
||||
protected $responseMock;
|
||||
protected $customer;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->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('customer');
|
||||
$this->customer->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param retailcrm
|
||||
* @dataProvider dataProviderApiClient
|
||||
*/
|
||||
public function test_customers_upload($retailcrm)
|
||||
{
|
||||
$retailcrm_customer = new WC_Retailcrm_Customers($retailcrm);
|
||||
$retailcrm_customer->customersUpload();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderApiClient
|
||||
*/
|
||||
public function test_create_customer($retailcrm)
|
||||
{
|
||||
$retailcrm_customer = new WC_Retailcrm_Customers($retailcrm);
|
||||
$retailcrm_customer->createCustomer($this->customer->get_id());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderApiClient
|
||||
*/
|
||||
public function test_update_customer($retailcrm)
|
||||
{
|
||||
$retailcrm_customer = new WC_Retailcrm_Customers($retailcrm);
|
||||
$retailcrm_customer->updateCustomer($this->customer->get_id());
|
||||
}
|
||||
|
||||
public function dataProviderApiClient()
|
||||
{
|
||||
$this->setUp();
|
||||
|
||||
return array(
|
||||
array(
|
||||
'retailcrm' => $this->apiMock
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
79
tests/phpunit/test-wc-retailcrm-inventories.php
Normal file
79
tests/phpunit/test-wc-retailcrm-inventories.php
Normal file
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
|
||||
class WC_Retailcrm_Inventories_Test extends WC_Unit_Test_Case
|
||||
{
|
||||
protected $apiMock;
|
||||
protected $responseMock;
|
||||
protected $offer;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->offer = new WC_Product_Simple();
|
||||
$this->offer->save();
|
||||
|
||||
$this->responseMock = $this->getMockBuilder('\WC_Retailcrm_Response')
|
||||
->disableOriginalConstructor()
|
||||
->setMethods(array(
|
||||
'isSuccessful'
|
||||
))
|
||||
->getMock();
|
||||
|
||||
$this->apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy')
|
||||
->disableOriginalConstructor()
|
||||
->setMethods(array(
|
||||
'storeInventories'
|
||||
))
|
||||
->getMock();
|
||||
|
||||
$this->apiMock->expects($this->any())
|
||||
->method('storeInventories')
|
||||
->willReturn($this->getTestData());
|
||||
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderLoadStocks
|
||||
*/
|
||||
public function test_load_stocks($retailcrm)
|
||||
{
|
||||
$retailcrm_inventories = new WC_Retailcrm_Inventories($retailcrm);
|
||||
$retailcrm_inventories->load_stocks();
|
||||
}
|
||||
|
||||
private function getTestData()
|
||||
{
|
||||
return array(
|
||||
'success' => true,
|
||||
'pagination' => array(
|
||||
'limit' => 250,
|
||||
'totalCount' => 1,
|
||||
'currentPage' => 1,
|
||||
'totalPageCount' => 1
|
||||
),
|
||||
'offers' => array(
|
||||
array(
|
||||
'id' => 1,
|
||||
'externalId' => $this->offer->get_id(),
|
||||
'xmlId' => 'xmlId',
|
||||
'quantity' => 1
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
public function dataProviderLoadStocks()
|
||||
{
|
||||
$this->setUp();
|
||||
|
||||
return array(
|
||||
array(
|
||||
'retailcrm' => $this->apiMock
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
131
tests/phpunit/test-wc-retailcrm-orders.php
Normal file
131
tests/phpunit/test-wc-retailcrm-orders.php
Normal file
|
@ -0,0 +1,131 @@
|
|||
<?php
|
||||
|
||||
class WC_Retailcrm_Orders_Test extends WC_Unit_Test_Case
|
||||
{
|
||||
protected $apiMock;
|
||||
protected $responseMock;
|
||||
protected $order;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->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',
|
||||
'customersCreate'
|
||||
))
|
||||
->getMock();
|
||||
|
||||
$this->apiMock->expects($this->any())
|
||||
->method('ordersEdit')
|
||||
->willReturn($this->responseMock);
|
||||
|
||||
$this->order = new WC_Order();
|
||||
$this->order->save();
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderRetailcrm
|
||||
*/
|
||||
public function test_order_upload($retailcrm)
|
||||
{
|
||||
$retailcrm_orders = new WC_Retailcrm_Orders($retailcrm);
|
||||
$retailcrm_orders->ordersUpload();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderRetailcrm
|
||||
*/
|
||||
public function test_order_create($retailcrm)
|
||||
{
|
||||
$retailcrm_orders = new WC_Retailcrm_Orders($retailcrm);
|
||||
$retailcrm_orders->orderCreate($this->order->get_id());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderRetailcrm
|
||||
*/
|
||||
public function test_order_update_status($retailcrm)
|
||||
{
|
||||
$retailcrm_orders = new WC_Retailcrm_Orders($retailcrm);
|
||||
$retailcrm_orders->orderUpdateStatus($this->order->get_id());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderRetailcrm
|
||||
*/
|
||||
public function test_order_update_payment($retailcrm)
|
||||
{
|
||||
$retailcrm_orders = new WC_Retailcrm_Orders($retailcrm);
|
||||
$retailcrm_orders->orderUpdatePayment($this->order->get_id());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $isSuccessful
|
||||
* @param $retailcrm
|
||||
* @dataProvider dataProviderUpdateOrder
|
||||
*/
|
||||
public function test_update_order($isSuccessful, $retailcrm)
|
||||
{
|
||||
$this->responseMock->expects($this->any())
|
||||
->method('isSuccessful')
|
||||
->willReturn($isSuccessful);
|
||||
|
||||
$retailcrm_orders = new WC_Retailcrm_Orders($retailcrm);
|
||||
$retailcrm_orders->updateOrder($this->order->get_id());
|
||||
}
|
||||
|
||||
public function dataProviderUpdateOrder()
|
||||
{
|
||||
$this->setUp();
|
||||
|
||||
return array(
|
||||
array(
|
||||
'is_successful' => true,
|
||||
'retailcrm' => $this->apiMock
|
||||
),
|
||||
array(
|
||||
'is_successful' => false,
|
||||
'retailcrm' => $this->apiMock
|
||||
),
|
||||
array(
|
||||
'is_successful' => true,
|
||||
'retailcrm' => false
|
||||
),
|
||||
array(
|
||||
'is_successful' => false,
|
||||
'retailcrm' => false
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
public function dataProviderRetailcrm()
|
||||
{
|
||||
$this->setUp();
|
||||
|
||||
return array(
|
||||
array(
|
||||
'retailcrm' => $this->apiMock
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -14,33 +14,37 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) :
|
|||
*/
|
||||
class WC_Retailcrm_Customers
|
||||
{
|
||||
public function __construct()
|
||||
const CUSTOMER_ROLE = 'customer';
|
||||
|
||||
protected $retailcrm;
|
||||
protected $retailcrm_settings;
|
||||
|
||||
/**
|
||||
* WC_Retailcrm_Customers constructor.
|
||||
* @param $retailcrm
|
||||
*/
|
||||
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 customers to CRM
|
||||
*
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function customersUpload()
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$users = get_users();
|
||||
$data_customers = array();
|
||||
|
||||
foreach ($users as $user) {
|
||||
if (!in_array('customer', $user->roles)) {
|
||||
if (!in_array(self::CUSTOMER_ROLE, $user->roles)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -86,9 +90,13 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) :
|
|||
*/
|
||||
public function createCustomer($customer_id)
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$customer = new WC_Customer($customer_id);
|
||||
|
||||
if ($customer->get_role() == 'customer'){
|
||||
if ($customer->get_role() == self::CUSTOMER_ROLE) {
|
||||
$data_customer = $this->processCustomer($customer);
|
||||
|
||||
$this->retailcrm->customersCreate($data_customer);
|
||||
|
@ -104,9 +112,13 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) :
|
|||
*/
|
||||
public function updateCustomer($customer_id)
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$customer = new WC_Customer($customer_id);
|
||||
|
||||
if ($customer->get_role() == 'customer'){
|
||||
if ($customer->get_role() == self::CUSTOMER_ROLE){
|
||||
$data_customer = $this->processCustomer($customer);
|
||||
|
||||
$this->retailcrm->customersEdit($data_customer);
|
||||
|
@ -116,7 +128,7 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) :
|
|||
/**
|
||||
* Process customer
|
||||
*
|
||||
* @param object $customer
|
||||
* @param WC_Customer $customer
|
||||
*
|
||||
* @return array $data_customer
|
||||
*/
|
||||
|
@ -145,7 +157,7 @@ if ( ! class_exists( 'WC_Retailcrm_Customers' ) ) :
|
|||
);
|
||||
}
|
||||
|
||||
return $data_customer;
|
||||
return apply_filters('retailcrm_process_customer', $data_customer);
|
||||
}
|
||||
}
|
||||
endif;
|
||||
|
|
115
woo-retailcrm/include/class-wc-retailcrm-ga.php
Normal file
115
woo-retailcrm/include/class-wc-retailcrm-ga.php
Normal file
|
@ -0,0 +1,115 @@
|
|||
<?php
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Google_Analytics')) {
|
||||
|
||||
class WC_Retailcrm_Google_Analytics {
|
||||
private static $instance;
|
||||
private $options;
|
||||
|
||||
/**
|
||||
* @return WC_Retailcrm_Google_Analytics
|
||||
*/
|
||||
public static function getInstance($options = array())
|
||||
{
|
||||
if (self::$instance === null) {
|
||||
self::$instance = new self($options);
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* WC_Retailcrm_Google_Analytics constructor.
|
||||
*
|
||||
* @param array $options
|
||||
*/
|
||||
private function __construct($options = array())
|
||||
{
|
||||
$this->options = $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function initialize_analytics() {
|
||||
return "
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', '" . $this->options['ua_code'] . "', 'auto');
|
||||
|
||||
function getRetailCrmCookie(name) {
|
||||
var matches = document.cookie.match(new RegExp(
|
||||
'(?:^|; )' + name + '=([^;]*)'
|
||||
));
|
||||
return matches ? decodeURIComponent(matches[1]) : '';
|
||||
}
|
||||
|
||||
ga('set', 'dimension" . $this->options['ua_custom'] ."', getRetailCrmCookie('_ga'));
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
";
|
||||
}
|
||||
|
||||
/**
|
||||
* @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 .= "
|
||||
<script type=\"text/javascript\">
|
||||
ga('require', 'ecommerce', 'ecommerce.js');
|
||||
ga('ecommerce:addTransaction', {
|
||||
'id':" . $order->get_id() . ",
|
||||
'affiliation':" . $domain . ",
|
||||
'revenue':" . $order->get_total() . ",
|
||||
'shipping':" . $order->get_total_tax() . ",
|
||||
'tax':" . $order->get_shipping_total() . "
|
||||
});
|
||||
";
|
||||
|
||||
foreach ($order_items as $item) {
|
||||
$js .= "
|
||||
ga('ecommerce:addItem', {
|
||||
'id':" . $order->get_id() . ",
|
||||
'sku':" . $item['id'] . ",
|
||||
'name': '" . $item['name'] . "',
|
||||
'price': " . $item['price'] . ",
|
||||
'quantity': " . $item['quantity'] . "
|
||||
});
|
||||
|
||||
}
|
||||
ga('ecommerce:send');
|
||||
</script>
|
||||
";
|
||||
}
|
||||
|
||||
return $js;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -14,23 +14,25 @@ if ( ! class_exists( 'WC_Retailcrm_Inventories' ) ) :
|
|||
*/
|
||||
class WC_Retailcrm_Inventories
|
||||
{
|
||||
public function __construct()
|
||||
protected $retailcrm;
|
||||
protected $retailcrm_settings;
|
||||
|
||||
/**
|
||||
* WC_Retailcrm_Inventories constructor.
|
||||
* @param bool $retailcrm
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
public function load_stocks()
|
||||
{
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$page = 1;
|
||||
|
||||
do {
|
||||
|
@ -52,14 +54,13 @@ if ( ! class_exists( 'WC_Retailcrm_Inventories' ) ) :
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
} while ($page <= $totalPageCount);
|
||||
}
|
||||
|
||||
public function updateQuantity()
|
||||
{
|
||||
$options = array_filter(get_option( 'woocommerce_integration-retailcrm_settings' ));
|
||||
|
||||
{
|
||||
$options = array_filter(get_option(WC_Retailcrm_Base::$option_key));
|
||||
|
||||
if ($options['sync'] == 'yes') {
|
||||
$this->load_stocks();
|
||||
} else {
|
||||
|
|
|
@ -17,19 +17,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
protected $retailcrm_settings;
|
||||
protected $retailcrm;
|
||||
|
||||
public function __construct()
|
||||
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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -37,6 +28,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
*/
|
||||
public function ordersUpload()
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$orders = get_posts(array(
|
||||
'numberposts' => -1,
|
||||
'post_type' => wc_get_order_types('view-orders'),
|
||||
|
@ -61,7 +56,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
$uploadOrders = array_chunk($orders_data, 50);
|
||||
|
||||
foreach ($uploadOrders as $uploadOrder) {
|
||||
$this->retailcrm->ordersUpload($uploadOrder);
|
||||
$this->retailcrm->ordersUpload($uploadOrder);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -72,6 +67,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
*/
|
||||
public function orderCreate($order_id)
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$order_data = $this->processOrder($order_id);
|
||||
|
||||
$order = new WC_Order($order_id);
|
||||
|
@ -97,23 +96,17 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
$this->retailcrm->ordersCreate($order_data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Update shipping address
|
||||
*
|
||||
* @param $order_id, $address
|
||||
*/
|
||||
public function orderUpdateShippingAddress($order_id, $address) {
|
||||
$address['externalId'] = $order_id;
|
||||
|
||||
$this->retailcrm->ordersEdit($address);
|
||||
}
|
||||
|
||||
/**
|
||||
* Update order status
|
||||
*
|
||||
* @param $order_id
|
||||
*/
|
||||
public function orderUpdateStatus($order_id) {
|
||||
public function orderUpdateStatus($order_id)
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$order = new WC_Order( $order_id );
|
||||
|
||||
$order_data = array(
|
||||
|
@ -128,10 +121,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
* Update order payment type
|
||||
*
|
||||
* @param $order_id
|
||||
*
|
||||
*
|
||||
* @return null
|
||||
*/
|
||||
public function orderUpdatePaymentType($order_id, $payment_method) {
|
||||
protected function orderUpdatePaymentType($order_id, $payment_method) {
|
||||
|
||||
if (!isset($this->retailcrm_settings[$payment_method])) {
|
||||
return;
|
||||
|
@ -174,7 +167,11 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
*
|
||||
* @param $order_id
|
||||
*/
|
||||
public function orderUpdatePayment($order_id) {
|
||||
public function orderUpdatePayment($order_id)
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($this->retailcrm_settings['api_version'] != 'v5') {
|
||||
$order_data = array(
|
||||
|
@ -191,91 +188,26 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
|
||||
$this->retailcrm->ordersPaymentsEdit($payment);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 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);
|
||||
|
||||
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']
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$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);
|
||||
}
|
||||
|
||||
/**
|
||||
* get order data depending on woocommerce version
|
||||
* Get order data
|
||||
*
|
||||
* @param int $order_id
|
||||
*
|
||||
* @return arr
|
||||
* @return array $order_data_arr
|
||||
*/
|
||||
public function getOrderData($order_id) {
|
||||
protected function getOrderData($order_id) {
|
||||
$order = new WC_Order( $order_id );
|
||||
$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;
|
||||
}
|
||||
|
@ -288,7 +220,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
*
|
||||
* @return array $order_data
|
||||
*/
|
||||
public function processOrder($order_id, $update = false)
|
||||
protected function processOrder($order_id, $update = false)
|
||||
{
|
||||
if ( !$order_id ){
|
||||
return;
|
||||
|
@ -491,6 +423,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
*/
|
||||
public function updateOrder($order_id)
|
||||
{
|
||||
if (!$this->retailcrm) {
|
||||
return;
|
||||
}
|
||||
|
||||
$order = $this->processOrder($order_id, true);
|
||||
|
||||
$response = $this->retailcrm->ordersEdit($order);
|
||||
|
|
55
woo-retailcrm/include/class-wc-retailcrm-plugin.php
Normal file
55
woo-retailcrm/include/class-wc-retailcrm-plugin.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
|
||||
class WC_Retailcrm_Plugin {
|
||||
|
||||
public $file;
|
||||
|
||||
private static $instance = null;
|
||||
|
||||
public static function getInstance($file) {
|
||||
if (self::$instance === null) {
|
||||
self::$instance = new self($file);
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
private function __construct($file) {
|
||||
$this->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');
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
|
@ -1,6 +1,8 @@
|
|||
<?php
|
||||
/**
|
||||
* Version: 2.1.4
|
||||
* WC requires at least: 3.0
|
||||
* WC tested up to: 3.3
|
||||
* Plugin Name: WooCommerce RetailCRM
|
||||
* Plugin URI: https://wordpress.org/plugins/woo-retailcrm/
|
||||
* Description: Integration plugin for WooCommerce & RetailCRM
|
||||
|
@ -20,26 +22,35 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
|
|||
*/
|
||||
class WC_Integration_Retailcrm {
|
||||
|
||||
private static $instance;
|
||||
|
||||
public static function get_instance() {
|
||||
if (null === self::$instance) {
|
||||
self::$instance = new self();
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct the plugin.
|
||||
*/
|
||||
public function __construct() {
|
||||
add_action( 'plugins_loaded', array( $this, 'init' ) );
|
||||
}
|
||||
add_action('plugins_loaded', array($this, 'load_plugin_textdomain'));
|
||||
|
||||
/**
|
||||
* Initialize the plugin.
|
||||
*/
|
||||
public function init() {
|
||||
if ( class_exists( 'WC_Integration' ) ) {
|
||||
include_once 'include/class-wc-retailcrm-base.php';
|
||||
include_once 'include/functions.php';
|
||||
add_filter( 'woocommerce_integrations', array( $this, 'add_integration' ) );
|
||||
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'));
|
||||
} else {
|
||||
// throw an admin error if you like
|
||||
}
|
||||
}
|
||||
|
||||
public function load_plugin_textdomain() {
|
||||
load_plugin_textdomain('retailcrm', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a new integration to WooCommerce.
|
||||
*
|
||||
|
@ -51,425 +62,15 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
|
|||
$integrations[] = 'WC_Retailcrm_Base';
|
||||
return $integrations;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$WC_Integration_Retailcrm = new WC_Integration_Retailcrm( __FILE__ );
|
||||
if (!class_exists('WC_Retailcrm_Plugin')) {
|
||||
require_once (dirname(__FILE__) . '/include/class-wc-retailcrm-plugin.php');
|
||||
}
|
||||
|
||||
$plugin = WC_Retailcrm_Plugin::getInstance(__FILE__);
|
||||
$plugin->register_activation_hook();
|
||||
$plugin->register_deactivation_hook();
|
||||
|
||||
add_action( 'plugins_loaded', array( 'WC_Integration_Retailcrm', 'get_instance' ), 0 );
|
||||
endif;
|
||||
|
||||
/*
|
||||
* Check icml custom class
|
||||
*/
|
||||
function check_custom_icml()
|
||||
{
|
||||
if (file_exists( WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-icml.php' )) {
|
||||
$file = WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-icml.php';
|
||||
} else {
|
||||
$file = __DIR__ . '/include/class-wc-retailcrm-icml.php';
|
||||
}
|
||||
return $file;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check orders custom class
|
||||
*/
|
||||
function check_custom_orders()
|
||||
{
|
||||
if (file_exists( WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-orders.php' )) {
|
||||
$file = WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-orders.php';
|
||||
} else {
|
||||
$file = __DIR__ . '/include/class-wc-retailcrm-orders.php';
|
||||
}
|
||||
return $file;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check customers custom class
|
||||
*/
|
||||
function check_custom_customers()
|
||||
{
|
||||
if (file_exists( WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-customers.php' )) {
|
||||
$file = WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-customers.php';
|
||||
} else {
|
||||
$file = __DIR__ . '/include/class-wc-retailcrm-customers.php';
|
||||
}
|
||||
return $file;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check inventories custom class
|
||||
*/
|
||||
function check_custom_inventories()
|
||||
{
|
||||
if (file_exists( WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-inventories.php' )) {
|
||||
$file = WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-inventories.php';
|
||||
} else {
|
||||
$file = __DIR__ . '/include/class-wc-retailcrm-inventories.php';
|
||||
}
|
||||
return $file;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check history custom class
|
||||
*/
|
||||
function check_custom_history()
|
||||
{
|
||||
if (file_exists( WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-history.php' )) {
|
||||
$file = WP_CONTENT_DIR . '/retailcrm-custom/class-wc-retailcrm-history.php';
|
||||
} else {
|
||||
$file = __DIR__ . '/include/class-wc-retailcrm-history.php';
|
||||
}
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Activation action
|
||||
*/
|
||||
function retailcrm_install()
|
||||
{
|
||||
if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option( 'active_plugins')))) {
|
||||
generate_icml();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Deactivation action
|
||||
*/
|
||||
function retailcrm_deactivation()
|
||||
{
|
||||
if ( wp_next_scheduled ( 'retailcrm_icml' )) {
|
||||
wp_clear_scheduled_hook('retailcrm_icml');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Load stocks from CRM
|
||||
*/
|
||||
function load_stocks()
|
||||
{
|
||||
if ( ! class_exists( 'WC_Retailcrm_Inventories' ) ) {
|
||||
include_once( check_custom_inventories() );
|
||||
}
|
||||
|
||||
$inventories = new WC_Retailcrm_Inventories();
|
||||
$inventories->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');
|
||||
?>
|
||||
<script type="text/javascript" >
|
||||
jQuery('#uploads-retailcrm').bind('click', function() {
|
||||
jQuery.ajax({
|
||||
type: "POST",
|
||||
url: '<?php echo $ajax_url; ?>?action=do_upload',
|
||||
success: function (response) {
|
||||
alert('<?php echo __('Customers and orders were unloaded', 'retailcrm'); ?>');
|
||||
console.log('AJAX response : ',response);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
|
||||
function ajax_generate_icml() {
|
||||
$ajax_url = admin_url('admin-ajax.php');
|
||||
?>
|
||||
<script type="text/javascript" >
|
||||
jQuery('#icml-retailcrm').bind('click', function() {
|
||||
jQuery.ajax({
|
||||
type: "POST",
|
||||
url: '<?php echo $ajax_url; ?>?action=generate_icml',
|
||||
success: function (response) {
|
||||
alert('<?php echo __('Catalog were generated', 'retailcrm'); ?>');
|
||||
console.log('AJAX response : ',response);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
|
||||
function update_order($order_id) {
|
||||
if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) {
|
||||
include_once( check_custom_orders() );
|
||||
}
|
||||
|
||||
$order_class = new WC_Retailcrm_Orders();
|
||||
$order_class->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') {
|
||||
?>
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', '<?php echo $options['ua_code']; ?>', 'auto');
|
||||
|
||||
function getRetailCrmCookie(name) {
|
||||
var matches = document.cookie.match(new RegExp(
|
||||
'(?:^|; )' + name + '=([^;]*)'
|
||||
));
|
||||
return matches ? decodeURIComponent(matches[1]) : '';
|
||||
}
|
||||
|
||||
ga('set', 'dimension<?php echo $options['ua_custom']; ?>', getRetailCrmCookie('_ga'));
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function send_analytics() {
|
||||
$options = get_option('woocommerce_integration-retailcrm_settings');
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
$url = parse_url(get_site_url());
|
||||
$domain = $url['host'];
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
ga('require', 'ecommerce', 'ecommerce.js');
|
||||
ga('ecommerce:addTransaction', {
|
||||
'id': <?php echo $order->get_id(); ?>,
|
||||
'affiliation': '<?php echo $domain; ?>',
|
||||
'revenue': <?php echo $order->get_total(); ?>,
|
||||
'shipping': <?php echo $order->get_total_tax(); ?>,
|
||||
'tax': <?php echo $order->get_shipping_total(); ?>
|
||||
});
|
||||
<?php
|
||||
foreach ($order_items as $item) {?>
|
||||
ga('ecommerce:addItem', {
|
||||
'id': <?php echo $order->get_id(); ?>,
|
||||
'sku': <?php echo $item['id']; ?>,
|
||||
'name': '<?php echo $item['name']; ?>',
|
||||
'price': <?php echo $item['price']; ?>,
|
||||
'quantity': <?php echo $item['quantity']; ?>
|
||||
});
|
||||
<?php
|
||||
}?>
|
||||
ga('ecommerce:send');
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function retailcrm_load_plugin_textdomain() {
|
||||
load_plugin_textdomain('retailcrm', FALSE, basename( dirname( __FILE__ ) ) . '/languages/');
|
||||
}
|
||||
|
||||
register_activation_hook( __FILE__, 'retailcrm_install' );
|
||||
register_deactivation_hook( __FILE__, 'retailcrm_deactivation' );
|
||||
|
||||
if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option( 'active_plugins')))) {
|
||||
add_action('plugins_loaded', 'retailcrm_load_plugin_textdomain');
|
||||
add_filter('cron_schedules', 'filter_cron_schedules', 10, 1);
|
||||
add_action('woocommerce_checkout_order_processed', 'retailcrm_process_order', 10, 1);
|
||||
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('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_update_customer', 'update_customer', 10, 1);
|
||||
add_action('woocommerce_update_order', 'update_order', 11, 1);
|
||||
add_action('wp_print_scripts', 'initialize_analytics', 98);
|
||||
add_action('wp_print_footer_scripts', 'send_analytics', 99);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue