2019-02-01 01:26:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Nosara Tracks for WooCommerce
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Tracks
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class adds actions to track usage of WooCommerce.
|
|
|
|
*/
|
|
|
|
class WC_Site_Tracking {
|
|
|
|
/**
|
|
|
|
* Check if tracking is enabled.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function is_tracking_enabled() {
|
|
|
|
/**
|
2019-05-21 21:18:34 +00:00
|
|
|
* Don't track users if a filter has been applied to turn it off.
|
|
|
|
* `woocommerce_apply_tracking` will be deprecated. Please use
|
|
|
|
* `woocommerce_apply_user_tracking` instead.
|
2019-02-01 01:26:38 +00:00
|
|
|
*/
|
2019-05-22 23:16:10 +00:00
|
|
|
if ( ! apply_filters( 'woocommerce_apply_user_tracking', true ) || ! apply_filters( 'woocommerce_apply_tracking', true ) ) {
|
2019-03-01 03:12:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if tracking is actively being opted into.
|
2019-12-13 19:58:14 +00:00
|
|
|
$is_obw_opting_in = isset( $_POST['wc_tracker_checkbox'] ) && 'yes' === sanitize_text_field( $_POST['wc_tracker_checkbox'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing, WordPress.Security.ValidatedSanitizedInput
|
2019-03-01 03:12:30 +00:00
|
|
|
|
2019-05-21 21:18:34 +00:00
|
|
|
/**
|
|
|
|
* Don't track users who haven't opted-in to tracking or aren't in
|
|
|
|
* the process of opting-in.
|
|
|
|
*/
|
2019-03-01 03:12:30 +00:00
|
|
|
if ( 'yes' !== get_option( 'woocommerce_allow_tracking' ) && ! $is_obw_opting_in ) {
|
2019-02-01 01:26:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! class_exists( 'WC_Tracks' ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-05-13 14:44:26 +00:00
|
|
|
/**
|
|
|
|
* Register scripts required to record events from javascript.
|
|
|
|
*/
|
|
|
|
public static function register_scripts() {
|
|
|
|
wp_register_script( 'woo-tracks', 'https://stats.wp.com/w.js', array( 'wp-hooks' ), gmdate( 'YW' ), false );
|
|
|
|
}
|
|
|
|
|
2019-02-01 01:26:38 +00:00
|
|
|
/**
|
|
|
|
* Add scripts required to record events from javascript.
|
|
|
|
*/
|
|
|
|
public static function enqueue_scripts() {
|
2020-05-13 14:44:26 +00:00
|
|
|
wp_enqueue_script( 'woo-tracks' );
|
2019-03-04 04:20:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the tracking function to the admin footer.
|
|
|
|
*/
|
|
|
|
public static function add_tracking_function() {
|
|
|
|
?>
|
|
|
|
<!-- WooCommerce Tracks -->
|
|
|
|
<script type="text/javascript">
|
2019-02-01 01:26:38 +00:00
|
|
|
window.wcTracks = window.wcTracks || {};
|
2020-05-13 13:53:57 +00:00
|
|
|
window.wcTracks.isEnabled = <?php echo self::is_tracking_enabled() ? 'true' : 'false'; ?>;
|
2019-02-01 01:26:38 +00:00
|
|
|
window.wcTracks.recordEvent = function( name, properties ) {
|
2020-05-13 13:53:57 +00:00
|
|
|
if ( ! window.wcTracks.isEnabled ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-04 04:20:53 +00:00
|
|
|
var eventName = '<?php echo esc_attr( WC_Tracks::PREFIX ); ?>' + name;
|
2019-02-01 01:26:38 +00:00
|
|
|
var eventProperties = properties || {};
|
2020-03-17 00:00:25 +00:00
|
|
|
eventProperties.url = '<?php echo esc_html( home_url() ); ?>'
|
|
|
|
eventProperties.products_count = '<?php echo intval( WC_Tracks::get_products_count() ); ?>';
|
2020-03-13 23:31:06 +00:00
|
|
|
if ( window.wp && window.wp.hooks && window.wp.hooks.applyFilters ) {
|
2020-03-17 23:09:37 +00:00
|
|
|
eventProperties = window.wp.hooks.applyFilters( 'woocommerce_tracks_client_event_properties', eventProperties, eventName );
|
2020-03-17 00:00:25 +00:00
|
|
|
delete( eventProperties._ui );
|
|
|
|
delete( eventProperties._ut );
|
2020-03-13 23:31:06 +00:00
|
|
|
}
|
2019-02-01 01:26:38 +00:00
|
|
|
window._tkq = window._tkq || [];
|
|
|
|
window._tkq.push( [ 'recordEvent', eventName, eventProperties ] );
|
|
|
|
}
|
2019-03-04 04:20:53 +00:00
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2020-05-13 14:44:26 +00:00
|
|
|
/**
|
|
|
|
* Adds a function to load tracking scripts and enable them client-side on the fly.
|
|
|
|
* Note that this function does not update `woocommerce_allow_tracking` in the database
|
|
|
|
* and will not persist enabled tracking across page loads.
|
|
|
|
*/
|
|
|
|
public static function add_enable_tracking_function() {
|
|
|
|
global $wp_scripts;
|
2020-09-18 18:26:18 +00:00
|
|
|
|
2020-06-02 03:01:26 +00:00
|
|
|
if ( ! isset( $wp_scripts->registered['woo-tracks'] ) ) {
|
2020-06-01 20:32:19 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-09-18 18:26:18 +00:00
|
|
|
|
2020-05-13 14:44:26 +00:00
|
|
|
$woo_tracks_script = $wp_scripts->registered['woo-tracks']->src;
|
|
|
|
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
2021-03-10 11:52:01 +00:00
|
|
|
window.wcTracks.enable = function( callback ) {
|
2020-05-13 14:44:26 +00:00
|
|
|
window.wcTracks.isEnabled = true;
|
|
|
|
|
2020-05-18 16:11:29 +00:00
|
|
|
var scriptUrl = '<?php echo esc_url( $woo_tracks_script ); ?>';
|
|
|
|
var existingScript = document.querySelector( `script[src="${ scriptUrl }"]` );
|
2020-05-13 14:44:26 +00:00
|
|
|
if ( existingScript ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-18 16:11:29 +00:00
|
|
|
var script = document.createElement('script');
|
2020-05-13 14:44:26 +00:00
|
|
|
script.src = scriptUrl;
|
|
|
|
document.body.append(script);
|
|
|
|
|
|
|
|
// Callback after scripts have loaded.
|
|
|
|
script.onload = function() {
|
|
|
|
if ( 'function' === typeof callback ) {
|
2020-05-19 15:19:19 +00:00
|
|
|
callback( true );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Callback triggered if the script fails to load.
|
|
|
|
script.onerror = function() {
|
|
|
|
if ( 'function' === typeof callback ) {
|
|
|
|
callback( false );
|
2020-05-13 14:44:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2019-02-01 01:26:38 +00:00
|
|
|
/**
|
|
|
|
* Init tracking.
|
|
|
|
*/
|
|
|
|
public static function init() {
|
2019-02-01 01:26:38 +00:00
|
|
|
|
2020-05-13 13:49:54 +00:00
|
|
|
// Define window.wcTracks.recordEvent in case it is enabled client-side.
|
2020-05-13 14:44:26 +00:00
|
|
|
self::register_scripts();
|
2020-05-13 13:49:54 +00:00
|
|
|
add_filter( 'admin_footer', array( __CLASS__, 'add_tracking_function' ), 24 );
|
2019-02-01 01:26:38 +00:00
|
|
|
|
2020-05-13 13:49:54 +00:00
|
|
|
if ( ! self::is_tracking_enabled() ) {
|
2020-05-13 14:44:26 +00:00
|
|
|
add_filter( 'admin_footer', array( __CLASS__, 'add_enable_tracking_function' ), 24 );
|
2019-02-01 01:26:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-01 01:26:38 +00:00
|
|
|
self::enqueue_scripts();
|
|
|
|
|
2019-02-28 03:28:07 +00:00
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-admin-setup-wizard-tracking.php';
|
2019-02-21 22:45:43 +00:00
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-extensions-tracking.php';
|
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-importer-tracking.php';
|
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-products-tracking.php';
|
2019-02-20 19:41:06 +00:00
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-orders-tracking.php';
|
2019-03-04 22:37:59 +00:00
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-settings-tracking.php';
|
2019-04-02 03:51:48 +00:00
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-status-tracking.php';
|
2019-03-29 03:45:18 +00:00
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-coupons-tracking.php';
|
2020-04-06 00:27:45 +00:00
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-order-tracking.php';
|
|
|
|
include_once WC_ABSPATH . 'includes/tracks/events/class-wc-coupon-tracking.php';
|
2019-02-21 22:45:43 +00:00
|
|
|
|
|
|
|
$tracking_classes = array(
|
|
|
|
'WC_Extensions_Tracking',
|
|
|
|
'WC_Importer_Tracking',
|
|
|
|
'WC_Products_Tracking',
|
2019-02-20 19:41:06 +00:00
|
|
|
'WC_Orders_Tracking',
|
2019-03-04 22:37:59 +00:00
|
|
|
'WC_Settings_Tracking',
|
2019-04-02 03:51:48 +00:00
|
|
|
'WC_Status_Tracking',
|
2019-03-29 03:45:18 +00:00
|
|
|
'WC_Coupons_Tracking',
|
2020-04-06 00:27:45 +00:00
|
|
|
'WC_Order_Tracking',
|
|
|
|
'WC_Coupon_Tracking',
|
2019-02-21 22:45:43 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach ( $tracking_classes as $tracking_class ) {
|
2019-03-05 00:30:01 +00:00
|
|
|
$tracker_instance = new $tracking_class();
|
|
|
|
$tracker_init_method = array( $tracker_instance, 'init' );
|
2019-02-21 22:45:43 +00:00
|
|
|
|
2019-03-05 00:30:01 +00:00
|
|
|
if ( is_callable( $tracker_init_method ) ) {
|
|
|
|
call_user_func( $tracker_init_method );
|
2019-02-21 22:45:43 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-01 01:26:38 +00:00
|
|
|
}
|
|
|
|
}
|