Add WC_Tracker class with tracking data functionality.
This commit is contained in:
parent
3904035003
commit
9d667ba81b
|
@ -0,0 +1,295 @@
|
|||
<?php
|
||||
/**
|
||||
* WooCommerce Tracker
|
||||
*
|
||||
* The WooCommerce tracker class adds functionality to track WooCommerce usage based on if the customer opted in.
|
||||
* No personal infomation is tracked, only setting, general product and order counts and admin email for discount code.
|
||||
*
|
||||
* @class WC_Tracker
|
||||
* @version 2.3.0
|
||||
* @package WooCommerce/Classes
|
||||
* @category Class
|
||||
* @author WooThemes
|
||||
*/
|
||||
class WC_Tracker {
|
||||
|
||||
/**
|
||||
* URL to the WooThemes Tracker API endpoint
|
||||
* @var string
|
||||
*/
|
||||
public $api_url = 'http://woothemes.com/wc-api/tracker/';
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @return void
|
||||
*/
|
||||
public function __construct() {
|
||||
add_action( 'wp', array( $this, 'add_tracking_event_to_cron_schedule' ) );
|
||||
add_action( 'wc_tracker_send_event', array( $this, 'send_tracking_data' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Schedule daily cron to check if tracking data must be sent
|
||||
* @return void
|
||||
*/
|
||||
public function add_tracking_event_to_cron_schedule () {
|
||||
if ( ! wp_next_scheduled( 'wc_tracker_send_event' ) ) {
|
||||
wp_schedule_event( time(), apply_filters( 'woocommerce_tracker_event_recurrence', 'daily' ), 'wc_tracker_send_event' );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Decide whether to send tracking data or not
|
||||
* @param boolean $check_last_send
|
||||
* @return void
|
||||
*/
|
||||
public function send_tracking_data( $check_last_send = true ) {
|
||||
// Send a maximum of once per week by default.
|
||||
if ( apply_filters( 'woocommerce_tracker_check_last_send', $check_last_send ) ) {
|
||||
$last_send = $this->get_last_send_time();
|
||||
if ( $last_send && $last_send > apply_filters( 'woocommerce_tracker_last_send_interval', strtotime( '-1 week' ) ) ) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the last time tracking data was sent
|
||||
* @return int|bool
|
||||
*/
|
||||
public function get_last_send_time() {
|
||||
return apply_filters( 'woocommerce_tracker_last_send_time', get_option( 'woocommerce_tracker_last_send', false ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all the tracking data
|
||||
* @return array
|
||||
*/
|
||||
public function get_tracking_data() {
|
||||
$data = array();
|
||||
|
||||
// General site info
|
||||
$data['url'] = home_url();
|
||||
$data['email'] = apply_filters( 'woocommerce_tracker_admin_email', get_bloginfo( 'admin_email' ) );
|
||||
$data['theme'] = $this->get_theme_info();
|
||||
|
||||
// Plugin info
|
||||
$all_plugins = $this->get_all_plugins();
|
||||
$data['active_plugins'] = $all_plugins['active_plugins'];
|
||||
$data['inactive_plugins'] = $all_plugins['inactive_plugins'];
|
||||
|
||||
// Store count info
|
||||
$data['users'] = $this->get_user_counts();
|
||||
$data['products'] = $this->get_product_counts();
|
||||
$data['orders'] = $this->get_order_counts();
|
||||
|
||||
// Payment gateway info
|
||||
$data['gateways'] = $this->get_active_payment_gateways();
|
||||
|
||||
// Shipping method info
|
||||
$data['shipping_methods'] = $this->get_active_shipping_methods();
|
||||
|
||||
// Get all WooCommerce options info
|
||||
$data['general'] = $this->get_all_woocommerce_options_values();
|
||||
|
||||
// Template overrides
|
||||
$data['template_overrides'] = $this->get_all_template_overrides();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the current theme info, theme name and version
|
||||
* @return array
|
||||
*/
|
||||
public function get_theme_info() {
|
||||
if ( get_bloginfo( 'version' ) < '3.4' ) {
|
||||
$theme_data = get_theme_data( get_stylesheet_directory() . '/style.css' );
|
||||
$theme_name = $theme_data['Name'];
|
||||
$theme_version = $theme_data['Version'];
|
||||
} else {
|
||||
$theme_data = wp_get_theme();
|
||||
$theme_name = $theme_data->Name;
|
||||
$theme_version = $theme_data->Version;
|
||||
}
|
||||
return array( array( 'name' => $theme_name, 'version' => $theme_version ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all plugins grouped into activated or not
|
||||
* @return array
|
||||
*/
|
||||
public function get_all_plugins() {
|
||||
// Ensure get_plugins function is loaded
|
||||
if( ! function_exists( 'get_plugins' ) ) {
|
||||
include ABSPATH . '/wp-admin/includes/plugin.php';
|
||||
}
|
||||
|
||||
$plugins = get_plugins();
|
||||
$active_plugins_keys = get_option( 'active_plugins', array() );
|
||||
$active_plugins = array();
|
||||
|
||||
foreach ( $plugins as $k => $v ) {
|
||||
// Take care of formatting the data how we want it.
|
||||
$formatted = array();
|
||||
$formatted['name'] = strip_tags( $v['Name'] );
|
||||
if ( isset( $v['Version'] ) ) {
|
||||
$formatted['version'] = strip_tags( $v['Version'] );
|
||||
}
|
||||
if ( isset( $v['Author'] ) ) {
|
||||
$formatted['author'] = strip_tags( $v['Author'] );
|
||||
}
|
||||
if ( isset( $v['Network'] ) ) {
|
||||
$formatted['network'] = strip_tags( $v['Network'] );
|
||||
}
|
||||
if ( isset( $v['PluginURI'] ) ) {
|
||||
$formatted['plugin_uri'] = strip_tags( $v['PluginURI'] );
|
||||
}
|
||||
if ( in_array( $k, $active_plugins_keys ) ) {
|
||||
// Remove active plugins from list so we can show active and inactive separately
|
||||
unset( $plugins[$k] );
|
||||
$active_plugins[$k] = $formatted;
|
||||
} else {
|
||||
$plugins[$k] = $formatted;
|
||||
}
|
||||
}
|
||||
|
||||
return array( 'active_plugins' => $active_plugins, 'inactive_plugins' => $plugins );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get user totals based on user role
|
||||
* @return array
|
||||
*/
|
||||
public function get_user_counts() {
|
||||
$user_count = array();
|
||||
$user_count_data = count_users();
|
||||
$user_count['total'] = $user_count_data['total_users'];
|
||||
|
||||
// Get user count based on user role
|
||||
foreach ( $user_count_data['avail_roles'] as $role => $count ) {
|
||||
$user_count[ $role ] = $count;
|
||||
}
|
||||
|
||||
return $user_count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get product totals based on product type
|
||||
* @return array
|
||||
*/
|
||||
public function get_product_counts() {
|
||||
$product_count = array();
|
||||
$product_count_data = wp_count_posts( 'product' );
|
||||
$product_count['total'] = $product_count_data->publish;
|
||||
|
||||
$product_statuses = get_terms( 'product_type', array( 'hide_empty' => 0 ) );
|
||||
foreach ( $product_statuses as $product_status ) {
|
||||
$product_count[ $product_status->name ] = $product_status->count;
|
||||
}
|
||||
return $product_count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get order counts based on order status
|
||||
* @return array
|
||||
*/
|
||||
public function get_order_counts() {
|
||||
$order_count = array();
|
||||
$order_count_data = wp_count_posts( 'shop_order' );
|
||||
|
||||
foreach ( wc_get_order_statuses() as $status_slug => $status_name ) {
|
||||
$order_count[ $status_slug ] = $order_count_data->{ $status_slug };
|
||||
}
|
||||
return $order_count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of all active payment gateways
|
||||
* @return void
|
||||
*/
|
||||
public function get_active_payment_gateways() {
|
||||
$active_gateways = array();
|
||||
$gateways = WC()->payment_gateways->payment_gateways();
|
||||
foreach ( $gateways as $id => $gateway ) {
|
||||
if ( isset( $gateway->enabled ) && $gateway->enabled == 'yes' ) {
|
||||
$active_gateways[ $id ] = array( 'title' => $gateway->title, 'supports' => $gateway->supports );
|
||||
}
|
||||
}
|
||||
return $active_gateways;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of all active shipping methods
|
||||
* @return void
|
||||
*/
|
||||
public function get_active_shipping_methods() {
|
||||
$active_methods = array();
|
||||
$shipping_methods = WC()->shipping->get_shipping_methods();
|
||||
foreach ( $shipping_methods as $id => $shipping_method ) {
|
||||
if ( isset( $shipping_method->enabled ) && $shipping_method->enabled == 'yes' ) {
|
||||
$active_methods[ $id ] = array( 'title' => $shipping_method->title, 'tax_status' => $shipping_method->tax_status );
|
||||
}
|
||||
}
|
||||
return $active_methods;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all options starting with woocommerce_ prefix
|
||||
* @return array
|
||||
*/
|
||||
public function get_all_woocommerce_options_values() {
|
||||
global $wpdb;
|
||||
|
||||
$alloptions_db = $wpdb->get_results(
|
||||
$wpdb->prepare(
|
||||
"SELECT option_name, option_value FROM $wpdb->options WHERE option_name LIKE %s",
|
||||
'woocommerce_%'
|
||||
)
|
||||
);
|
||||
|
||||
$alloptions = array();
|
||||
foreach ( (array) $alloptions_db as $o ) {
|
||||
// We dont want to keep track of serialized data
|
||||
if ( ! is_serialized( $o->option_value ) ) {
|
||||
$alloptions[ $o->option_name ] = $o->option_value;
|
||||
}
|
||||
}
|
||||
|
||||
return $alloptions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Look for any template override and return filenames
|
||||
* @return array
|
||||
*/
|
||||
public function get_all_template_overrides() {
|
||||
$override_data = array();
|
||||
$template_paths = apply_filters( 'woocommerce_template_overrides_scan_paths', array( 'WooCommerce' => WC()->plugin_path() . '/templates/' ) );
|
||||
$scanned_files = array();
|
||||
$found_files = array();
|
||||
$status = require_once( WC()->plugin_path() . '/includes/admin/class-wc-admin-status.php' );
|
||||
|
||||
foreach ( $template_paths as $plugin_name => $template_path ) {
|
||||
$scanned_files[ $plugin_name ] = WC_Admin_Status::scan_template_files( $template_path );
|
||||
}
|
||||
|
||||
foreach ( $scanned_files as $plugin_name => $files ) {
|
||||
foreach ( $files as $file ) {
|
||||
if ( file_exists( get_stylesheet_directory() . '/' . $file ) ) {
|
||||
$theme_file = get_stylesheet_directory() . '/' . $file;
|
||||
} elseif ( file_exists( get_stylesheet_directory() . '/woocommerce/' . $file ) ) {
|
||||
$theme_file = get_stylesheet_directory() . '/woocommerce/' . $file;
|
||||
} elseif ( file_exists( get_template_directory() . '/' . $file ) ) {
|
||||
$theme_file = get_template_directory() . '/' . $file;
|
||||
} elseif( file_exists( get_template_directory() . '/woocommerce/' . $file ) ) {
|
||||
$theme_file = get_template_directory() . '/woocommerce/' . $file;
|
||||
} else {
|
||||
$theme_file = false;
|
||||
}
|
||||
if ( $theme_file ) {
|
||||
$override_data[] = basename( $theme_file );
|
||||
}
|
||||
}
|
||||
}
|
||||
return $override_data;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue