woocommerce/includes/class-wc-tracker.php

500 lines
15 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-03 13:53:50 +00:00
* WooCommerce Tracker
*
* The WooCommerce tracker class adds functionality to track WooCommerce usage based on if the customer opted in.
* No personal information is tracked, only general WooCommerce settings, general product, order and user counts and admin email for discount code.
*
2018-04-11 06:26:22 +00:00
* @class WC_Tracker
* @version 2.3.0
* @package WooCommerce/Classes
*/
2014-11-26 19:36:14 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
2014-11-26 19:36:14 +00:00
}
2018-04-11 06:26:22 +00:00
/**
* WooCommerce Tracker Class
*
* @version 2.3.0
*/
class WC_Tracker {
/**
2015-11-03 13:31:20 +00:00
* URL to the WooThemes Tracker API endpoint.
2018-04-11 06:26:22 +00:00
*
* @var string
*/
private static $api_url = 'https://tracking.woocommerce.com/v1/';
/**
2015-11-03 13:31:20 +00:00
* Hook into cron event.
*/
public static function init() {
add_action( 'woocommerce_tracker_send_event', array( __CLASS__, 'send_tracking_data' ) );
}
/**
2015-11-03 13:31:20 +00:00
* Decide whether to send tracking data or not.
2015-07-16 19:55:48 +00:00
*
2018-04-11 06:26:22 +00:00
* @param boolean $override Should override?.
*/
public static function send_tracking_data( $override = false ) {
2018-04-11 06:26:22 +00:00
// Don't trigger this on AJAX Requests.
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
return;
}
if ( ! apply_filters( 'woocommerce_tracker_send_override', $override ) ) {
// Send a maximum of once per week by default.
$last_send = self::get_last_send_time();
if ( $last_send && $last_send > apply_filters( 'woocommerce_tracker_last_send_interval', strtotime( '-1 week' ) ) ) {
return;
}
} else {
// Make sure there is at least a 1 hour delay between override sends, we don't want duplicate calls due to double clicking links.
$last_send = self::get_last_send_time();
if ( $last_send && $last_send > strtotime( '-1 hours' ) ) {
return;
}
}
2014-11-26 19:46:16 +00:00
2018-04-11 06:26:22 +00:00
// Update time first before sending to ensure it is set.
update_option( 'woocommerce_tracker_last_send', time() );
2018-04-11 06:26:22 +00:00
$params = self::get_tracking_data();
2016-06-06 17:57:24 +00:00
wp_safe_remote_post( self::$api_url, array(
2018-04-11 06:26:22 +00:00
'method' => 'POST',
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => false,
'headers' => array( 'user-agent' => 'WooCommerceTracker/' . md5( esc_url( home_url( '/' ) ) ) . ';' ),
'body' => json_encode( $params ),
'cookies' => array(),
) );
}
/**
2015-11-03 13:31:20 +00:00
* Get the last time tracking data was sent.
2018-04-11 06:26:22 +00:00
*
* @return int|bool
*/
private static function get_last_send_time() {
return apply_filters( 'woocommerce_tracker_last_send_time', get_option( 'woocommerce_tracker_last_send', false ) );
}
/**
2015-11-03 13:31:20 +00:00
* Get all the tracking data.
2018-04-11 06:26:22 +00:00
*
* @return array
*/
private static function get_tracking_data() {
$data = array();
2018-04-11 06:26:22 +00:00
// General site info.
$data['url'] = home_url();
$data['email'] = apply_filters( 'woocommerce_tracker_admin_email', get_option( 'admin_email' ) );
$data['theme'] = self::get_theme_info();
2018-04-11 06:26:22 +00:00
// WordPress Info.
$data['wp'] = self::get_wordpress_info();
2014-11-27 08:13:16 +00:00
2018-04-11 06:26:22 +00:00
// Server Info.
$data['server'] = self::get_server_info();
2014-11-27 08:00:20 +00:00
2018-04-11 06:26:22 +00:00
// Plugin info.
$all_plugins = self::get_all_plugins();
$data['active_plugins'] = $all_plugins['active_plugins'];
$data['inactive_plugins'] = $all_plugins['inactive_plugins'];
2018-04-11 06:26:22 +00:00
// Jetpack & WooCommerce Connect.
$data['jetpack_version'] = defined( 'JETPACK__VERSION' ) ? JETPACK__VERSION : 'none';
$data['jetpack_connected'] = ( class_exists( 'Jetpack' ) && is_callable( 'Jetpack::is_active' ) && Jetpack::is_active() ) ? 'yes' : 'no';
$data['jetpack_is_staging'] = ( class_exists( 'Jetpack' ) && is_callable( 'Jetpack::is_staging_site' ) && Jetpack::is_staging_site() ) ? 'yes' : 'no';
$data['connect_installed'] = class_exists( 'WC_Connect_Loader' ) ? 'yes' : 'no';
$data['connect_active'] = ( class_exists( 'WC_Connect_Loader' ) && wp_next_scheduled( 'wc_connect_fetch_service_schemas' ) ) ? 'yes' : 'no';
2018-04-11 06:26:22 +00:00
// Store count info.
$data['users'] = self::get_user_counts();
$data['products'] = self::get_product_counts();
2018-04-09 12:54:50 +00:00
$data['orders'] = self::get_orders();
2018-04-11 06:26:22 +00:00
// Payment gateway info.
$data['gateways'] = self::get_active_payment_gateways();
2018-04-11 06:26:22 +00:00
// Shipping method info.
$data['shipping_methods'] = self::get_active_shipping_methods();
2018-04-11 06:26:22 +00:00
// Get all WooCommerce options info.
$data['settings'] = self::get_all_woocommerce_options_values();
2018-04-11 06:26:22 +00:00
// Template overrides.
$data['template_overrides'] = self::get_all_template_overrides();
2014-11-26 19:46:16 +00:00
2018-04-11 06:26:22 +00:00
// Template overrides.
2016-09-12 21:11:05 +00:00
$data['admin_user_agents'] = self::get_admin_user_agents();
return apply_filters( 'woocommerce_tracker_data', $data );
}
/**
2015-11-03 13:31:20 +00:00
* Get the current theme info, theme name and version.
2018-04-11 06:26:22 +00:00
*
* @return array
*/
public static function get_theme_info() {
2016-11-17 21:06:46 +00:00
$theme_data = wp_get_theme();
$theme_child_theme = is_child_theme() ? 'Yes' : 'No';
$theme_wc_support = ! current_theme_supports( 'woocommerce' ) ? 'No' : 'Yes';
2018-04-11 06:26:22 +00:00
return array(
'name' => $theme_data->Name, // @phpcs:ignore
'version' => $theme_data->Version, // @phpcs:ignore
'child_theme' => $theme_child_theme,
'wc_support' => $theme_wc_support,
);
}
2014-11-27 08:00:20 +00:00
/**
* Get WordPress related data.
2018-04-11 06:26:22 +00:00
*
2014-11-27 08:00:20 +00:00
* @return array
*/
private static function get_wordpress_info() {
2014-11-27 08:00:20 +00:00
$wp_data = array();
$memory = wc_let_to_num( WP_MEMORY_LIMIT );
if ( function_exists( 'memory_get_usage' ) ) {
$system_memory = wc_let_to_num( @ini_get( 'memory_limit' ) );
$memory = max( $memory, $system_memory );
}
2014-11-27 08:00:20 +00:00
$wp_data['memory_limit'] = size_format( $memory );
$wp_data['debug_mode'] = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? 'Yes' : 'No';
$wp_data['locale'] = get_locale();
$wp_data['version'] = get_bloginfo( 'version' );
$wp_data['multisite'] = is_multisite() ? 'Yes' : 'No';
2014-11-27 08:00:20 +00:00
return $wp_data;
}
2014-11-27 08:13:16 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get server related info.
2018-04-11 06:26:22 +00:00
*
2014-11-27 08:13:16 +00:00
* @return array
*/
private static function get_server_info() {
2014-11-27 08:13:16 +00:00
$server_data = array();
if ( isset( $_SERVER['SERVER_SOFTWARE'] ) && ! empty( $_SERVER['SERVER_SOFTWARE'] ) ) {
2018-04-11 06:26:22 +00:00
$server_data['software'] = $_SERVER['SERVER_SOFTWARE']; // @phpcs:ignore
2014-11-27 08:13:16 +00:00
}
if ( function_exists( 'phpversion' ) ) {
$server_data['php_version'] = phpversion();
}
if ( function_exists( 'ini_get' ) ) {
$server_data['php_post_max_size'] = size_format( wc_let_to_num( ini_get( 'post_max_size' ) ) );
$server_data['php_time_limt'] = ini_get( 'max_execution_time' );
$server_data['php_max_input_vars'] = ini_get( 'max_input_vars' );
$server_data['php_suhosin'] = extension_loaded( 'suhosin' ) ? 'Yes' : 'No';
}
global $wpdb;
$server_data['mysql_version'] = $wpdb->db_version();
$server_data['php_max_upload_size'] = size_format( wp_max_upload_size() );
$server_data['php_default_timezone'] = date_default_timezone_get();
$server_data['php_soap'] = class_exists( 'SoapClient' ) ? 'Yes' : 'No';
$server_data['php_fsockopen'] = function_exists( 'fsockopen' ) ? 'Yes' : 'No';
$server_data['php_curl'] = function_exists( 'curl_init' ) ? 'Yes' : 'No';
return $server_data;
}
/**
2015-11-03 13:31:20 +00:00
* Get all plugins grouped into activated or not.
2018-04-11 06:26:22 +00:00
*
* @return array
*/
private static function get_all_plugins() {
2018-04-11 06:26:22 +00:00
// Ensure get_plugins function is loaded.
if ( ! function_exists( 'get_plugins' ) ) {
include ABSPATH . '/wp-admin/includes/plugin.php';
}
2018-04-11 06:26:22 +00:00
$plugins = get_plugins();
$active_plugins_keys = get_option( 'active_plugins', array() );
2018-04-11 06:26:22 +00:00
$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 ) ) {
2018-04-11 06:26:22 +00:00
// Remove active plugins from list so we can show active and inactive separately.
unset( $plugins[ $k ] );
$active_plugins[ $k ] = $formatted;
} else {
$plugins[ $k ] = $formatted;
}
}
2018-04-11 06:26:22 +00:00
return array(
'active_plugins' => $active_plugins,
'inactive_plugins' => $plugins,
);
}
/**
2015-11-03 13:31:20 +00:00
* Get user totals based on user role.
2018-04-11 06:26:22 +00:00
*
* @return array
*/
private static function get_user_counts() {
2015-03-27 15:15:40 +00:00
$user_count = array();
$user_count_data = count_users();
$user_count['total'] = $user_count_data['total_users'];
2018-04-11 06:26:22 +00:00
// Get user count based on user role.
foreach ( $user_count_data['avail_roles'] as $role => $count ) {
$user_count[ $role ] = $count;
}
return $user_count;
}
/**
2015-11-03 13:31:20 +00:00
* Get product totals based on product type.
2018-04-11 06:26:22 +00:00
*
* @return array
*/
private static function get_product_counts() {
2015-03-27 15:15:40 +00:00
$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;
}
2015-03-27 15:15:40 +00:00
return $product_count;
}
2018-04-09 12:54:50 +00:00
/**
* Combine all order data.
*
* @return array
*/
2018-04-13 12:18:39 +00:00
private static function get_orders() {
2018-04-09 12:54:50 +00:00
$orders = array();
2018-04-10 12:17:17 +00:00
$orders['first'] = self::get_first_order_date();
2018-04-10 12:01:22 +00:00
$orders['last'] = self::get_last_order_date();
2018-04-11 06:14:20 +00:00
$order_totals = self::get_order_totals();
2018-04-09 12:54:50 +00:00
return array_merge( $orders, $order_totals );
2018-04-09 12:54:50 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get a list of all active payment gateways.
2018-04-11 06:26:22 +00:00
*
2014-12-09 13:02:02 +00:00
* @return array
*/
private static function get_active_payment_gateways() {
$active_gateways = array();
2015-03-27 15:15:40 +00:00
$gateways = WC()->payment_gateways->payment_gateways();
foreach ( $gateways as $id => $gateway ) {
2016-09-07 22:32:24 +00:00
if ( isset( $gateway->enabled ) && 'yes' === $gateway->enabled ) {
2018-04-11 06:26:22 +00:00
$active_gateways[ $id ] = array(
'title' => $gateway->title,
'supports' => $gateway->supports,
);
}
}
2015-03-27 15:15:40 +00:00
return $active_gateways;
}
/**
2015-11-03 13:31:20 +00:00
* Get a list of all active shipping methods.
2018-04-11 06:26:22 +00:00
*
2014-12-09 13:02:02 +00:00
* @return array
*/
private static function get_active_shipping_methods() {
2015-03-27 15:15:40 +00:00
$active_methods = array();
$shipping_methods = WC()->shipping->get_shipping_methods();
foreach ( $shipping_methods as $id => $shipping_method ) {
2016-09-07 22:32:24 +00:00
if ( isset( $shipping_method->enabled ) && 'yes' === $shipping_method->enabled ) {
2018-04-11 06:26:22 +00:00
$active_methods[ $id ] = array(
'title' => $shipping_method->title,
'tax_status' => $shipping_method->tax_status,
);
}
}
2015-03-27 15:15:40 +00:00
return $active_methods;
}
/**
2015-11-03 13:31:20 +00:00
* Get all options starting with woocommerce_ prefix.
2018-04-11 06:26:22 +00:00
*
* @return array
*/
private static function get_all_woocommerce_options_values() {
return array(
2015-03-27 15:15:40 +00:00
'version' => WC()->version,
'currency' => get_woocommerce_currency(),
'base_location' => WC()->countries->get_base_country(),
'selling_locations' => WC()->countries->get_allowed_countries(),
'api_enabled' => get_option( 'woocommerce_api_enabled' ),
'weight_unit' => get_option( 'woocommerce_weight_unit' ),
'dimension_unit' => get_option( 'woocommerce_dimension_unit' ),
'download_method' => get_option( 'woocommerce_file_download_method' ),
'download_require_login' => get_option( 'woocommerce_downloads_require_login' ),
'calc_taxes' => get_option( 'woocommerce_calc_taxes' ),
'coupons_enabled' => get_option( 'woocommerce_enable_coupons' ),
'guest_checkout' => get_option( 'woocommerce_enable_guest_checkout' ),
2015-03-27 15:15:40 +00:00
'secure_checkout' => get_option( 'woocommerce_force_ssl_checkout' ),
'enable_signup_and_login_from_checkout' => get_option( 'woocommerce_enable_signup_and_login_from_checkout' ),
'enable_myaccount_registration' => get_option( 'woocommerce_enable_myaccount_registration' ),
'registration_generate_username' => get_option( 'woocommerce_registration_generate_username' ),
'registration_generate_password' => get_option( 'woocommerce_registration_generate_password' ),
);
}
/**
2015-11-03 13:31:20 +00:00
* Look for any template override and return filenames.
2018-04-11 06:26:22 +00:00
*
* @return array
*/
private static function get_all_template_overrides() {
2014-12-09 13:09:39 +00:00
$override_data = array();
$template_paths = apply_filters( 'woocommerce_template_overrides_scan_paths', array( 'WooCommerce' => WC()->plugin_path() . '/templates/' ) );
$scanned_files = array();
2015-02-03 16:24:01 +00:00
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;
2017-10-16 11:03:12 +00:00
} elseif ( file_exists( get_stylesheet_directory() . '/' . WC()->template_path() . $file ) ) {
$theme_file = get_stylesheet_directory() . '/' . WC()->template_path() . $file;
} elseif ( file_exists( get_template_directory() . '/' . $file ) ) {
$theme_file = get_template_directory() . '/' . $file;
2017-10-16 11:03:12 +00:00
} elseif ( file_exists( get_template_directory() . '/' . WC()->template_path() . $file ) ) {
$theme_file = get_template_directory() . '/' . WC()->template_path() . $file;
} else {
$theme_file = false;
}
2015-03-27 15:15:40 +00:00
2016-09-07 22:32:24 +00:00
if ( false !== $theme_file ) {
$override_data[] = basename( $theme_file );
}
}
}
return $override_data;
}
2016-09-12 21:11:05 +00:00
/**
* When an admin user logs in, there user agent is tracked in user meta and collected here.
2018-04-11 06:26:22 +00:00
*
2016-09-12 21:11:05 +00:00
* @return array
*/
private static function get_admin_user_agents() {
return array_filter( (array) get_option( 'woocommerce_tracker_ua', array() ) );
}
2018-04-09 12:54:50 +00:00
/**
2018-04-11 06:12:55 +00:00
* Get order totals
2018-04-09 12:54:50 +00:00
*
2018-04-11 06:12:55 +00:00
* @return array
2018-04-09 12:54:50 +00:00
*/
2018-04-11 06:12:55 +00:00
private static function get_order_totals() {
global $wpdb;
2018-04-10 12:01:22 +00:00
$gross_total = $wpdb->get_var( "
SELECT
SUM( order_meta.meta_value ) AS 'gross_total'
FROM {$wpdb->prefix}posts AS orders
LEFT JOIN {$wpdb->prefix}postmeta AS order_meta ON order_meta.post_id = orders.ID
WHERE order_meta.meta_key = '_order_total'
AND orders.post_status = 'wc-completed'
GROUP BY order_meta.meta_key
" );
if ( is_null( $gross_total ) ) {
$gross_total = 0;
2018-04-10 12:10:21 +00:00
}
return array(
'gross' => $gross_total,
);
2018-04-10 12:27:42 +00:00
}
2018-04-09 12:54:50 +00:00
/**
* Get last order date
*
* @return string
*/
private static function get_last_order_date() {
$orders = wc_get_orders(
array(
'limit' => 1,
'status' => array_map( 'wc_get_order_status_name', wc_get_is_paid_statuses() ),
)
);
if ( ! empty( $orders ) ) {
$order = $orders[0];
2018-04-11 06:41:57 +00:00
return $order->get_date_created()->format( 'Y-m-d' );
2018-04-09 12:54:50 +00:00
} else {
return '-';
}
}
2018-04-10 12:17:17 +00:00
/**
* Get first order date.
*
* @return string
*/
private static function get_first_order_date() {
$orders = wc_get_orders(
array(
'limit' => 1,
'order' => 'ASC',
'status' => array_map( 'wc_get_order_status_name', wc_get_is_paid_statuses() ),
)
);
if ( ! empty( $orders ) ) {
$order = $orders[0];
2018-04-11 06:41:57 +00:00
return $order->get_date_created()->format( 'Y-m-d' );
2018-04-10 12:17:17 +00:00
} else {
return '-';
}
}
2014-11-26 19:36:14 +00:00
}
WC_Tracker::init();