Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
woocommerce
/
includes
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use Automattic\Jetpack\Constants; defined('ABSPATH') || exit; class WC_Tracker { private static $api_url = 'https://tracking.woocommerce.com/v1/'; public static function init() { add_action('woocommerce_tracker_send_event', array(__CLASS__, 'send_tracking_data')); } public static function send_tracking_data($override = false) { if (Constants::is_true('DOING_AJAX')) { return; } if (!apply_filters('woocommerce_tracker_send_override', $override)) { $last_send = self::get_last_send_time(); if ($last_send && $last_send > apply_filters('woocommerce_tracker_last_send_interval', strtotime('-1 week'))) { return; } } else { $last_send = self::get_last_send_time(); if ($last_send && $last_send > strtotime('-1 hours')) { return; } } update_option('woocommerce_tracker_last_send', time()); $params = self::get_tracking_data(); wp_safe_remote_post(self::$api_url, array('method' => 'POST', 'timeout' => 45, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => false, 'headers' => array('user-agent' => 'WooCommerceTracker/' . md5(esc_url_raw(home_url('/'))) . ';'), 'body' => wp_json_encode($params), 'cookies' => array())); } private static function get_last_send_time() { return apply_filters('woocommerce_tracker_last_send_time', get_option('woocommerce_tracker_last_send', false)); } private static function is_jetpack_staging_site() { if (class_exists('\\Automattic\\Jetpack\\Status')) { $jp_status = new \Automattic\Jetpack\Status(); if (is_callable(array($jp_status, 'is_staging_site'))) { return $jp_status->is_staging_site(); } } return class_exists('Jetpack') && is_callable('Jetpack::is_staging_site') && Jetpack::is_staging_site(); } public static function get_tracking_data() { $data = array(); $data['url'] = home_url(); $data['email'] = apply_filters('woocommerce_tracker_admin_email', get_option('admin_email')); $data['theme'] = self::get_theme_info(); $data['wp'] = self::get_wordpress_info(); $data['server'] = self::get_server_info(); $all_plugins = self::get_all_plugins(); $data['active_plugins'] = $all_plugins['active_plugins']; $data['inactive_plugins'] = $all_plugins['inactive_plugins']; $data['jetpack_version'] = Constants::is_defined('JETPACK__VERSION') ? Constants::get_constant('JETPACK__VERSION') : 'none'; $data['jetpack_connected'] = class_exists('Jetpack') && is_callable('Jetpack::is_active') && Jetpack::is_active() ? 'yes' : 'no'; $data['jetpack_is_staging'] = self::is_jetpack_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'; $data['helper_connected'] = self::get_helper_connected(); $data['users'] = self::get_user_counts(); $data['products'] = self::get_product_counts(); $data['orders'] = self::get_orders(); $data['reviews'] = self::get_review_counts(); $data['categories'] = self::get_category_counts(); $data['gateways'] = self::get_active_payment_gateways(); $data['shipping_methods'] = self::get_active_shipping_methods(); $data['settings'] = self::get_all_woocommerce_options_values(); $data['template_overrides'] = self::get_all_template_overrides(); $data['cart_checkout'] = self::get_cart_checkout_info(); $data['wc_admin_disabled'] = apply_filters('woocommerce_admin_disabled', false) ? 'yes' : 'no'; return apply_filters('woocommerce_tracker_data', $data); } public static function get_theme_info() { $theme_data = wp_get_theme(); $theme_child_theme = wc_bool_to_string(is_child_theme()); $theme_wc_support = wc_bool_to_string(current_theme_supports('woocommerce')); return array('name' => $theme_data->Name, 'version' => $theme_data->Version, 'child_theme' => $theme_child_theme, 'wc_support' => $theme_wc_support); } private static function get_wordpress_info() { $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); } $environment_type = 'production'; if (function_exists('wp_get_environment_type')) { $environment_type = wp_get_environment_type(); } $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'; $wp_data['env_type'] = $environment_type; return $wp_data; } private static function get_server_info() { $server_data = array(); if (!empty($_SERVER['SERVER_SOFTWARE'])) { $server_data['software'] = $_SERVER['SERVER_SOFTWARE']; } 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'; } $database_version = wc_get_server_database_version(); $server_data['mysql_version'] = $database_version['number']; $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; } private static function get_all_plugins() { 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) { $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)) { unset($plugins[$k]); $active_plugins[$k] = $formatted; } else { $plugins[$k] = $formatted; } } return array('active_plugins' => $active_plugins, 'inactive_plugins' => $plugins); } private static function get_helper_connected() { if (class_exists('WC_Helper_Options') && is_callable('WC_Helper_Options::get')) { $authenticated = WC_Helper_Options::get('auth'); } else { $authenticated = ''; } return !empty($authenticated) ? 'yes' : 'no'; } private static function get_user_counts() { $user_count = array(); $user_count_data = count_users(); $user_count['total'] = $user_count_data['total_users']; foreach ($user_count_data['avail_roles'] as $role => $count) { $user_count[$role] = $count; } return $user_count; } public static 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; } private static 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; } private static function get_orders() { $order_dates = self::get_order_dates(); $order_counts = self::get_order_counts(); $order_totals = self::get_order_totals(); $order_gateways = self::get_orders_by_gateway(); return array_merge($order_dates, $order_counts, $order_totals, $order_gateways); } private static function get_order_totals() { global $wpdb; $gross_total = $wpdb->get_var("\n\t\t\tSELECT\n\t\t\t\tSUM( order_meta.meta_value ) AS 'gross_total'\n\t\t\tFROM {$wpdb->prefix}posts AS orders\n\t\t\tLEFT JOIN {$wpdb->prefix}postmeta AS order_meta ON order_meta.post_id = orders.ID\n\t\t\tWHERE order_meta.meta_key = '_order_total'\n\t\t\t\tAND orders.post_status in ( 'wc-completed', 'wc-refunded' )\n\t\t\tGROUP BY order_meta.meta_key\n\t\t"); if (is_null($gross_total)) { $gross_total = 0; } $processing_gross_total = $wpdb->get_var("\n\t\t\tSELECT\n\t\t\t\tSUM( order_meta.meta_value ) AS 'gross_total'\n\t\t\tFROM {$wpdb->prefix}posts AS orders\n\t\t\tLEFT JOIN {$wpdb->prefix}postmeta AS order_meta ON order_meta.post_id = orders.ID\n\t\t\tWHERE order_meta.meta_key = '_order_total'\n\t\t\t\tAND orders.post_status = 'wc-processing'\n\t\t\tGROUP BY order_meta.meta_key\n\t\t"); if (is_null($processing_gross_total)) { $processing_gross_total = 0; } return array('gross' => $gross_total, 'processing_gross' => $processing_gross_total); } private static function get_order_dates() { global $wpdb; $min_max = $wpdb->get_row("\n\t\t\tSELECT\n\t\t\t\tMIN( post_date_gmt ) as 'first', MAX( post_date_gmt ) as 'last'\n\t\t\tFROM {$wpdb->prefix}posts\n\t\t\tWHERE post_type = 'shop_order'\n\t\t\tAND post_status = 'wc-completed'\n\t\t", ARRAY_A); if (is_null($min_max)) { $min_max = array('first' => '-', 'last' => '-'); } $processing_min_max = $wpdb->get_row("\n\t\t\tSELECT\n\t\t\t\tMIN( post_date_gmt ) as 'processing_first', MAX( post_date_gmt ) as 'processing_last'\n\t\t\tFROM {$wpdb->prefix}posts\n\t\t\tWHERE post_type = 'shop_order'\n\t\t\tAND post_status = 'wc-processing'\n\t\t", ARRAY_A); if (is_null($processing_min_max)) { $processing_min_max = array('processing_first' => '-', 'processing_last' => '-'); } return array_merge($min_max, $processing_min_max); } private static function get_orders_by_gateway() { global $wpdb; $orders_by_gateway = $wpdb->get_results("\n\t\t\tSELECT\n\t\t\t\tgateway, currency, SUM(total) AS totals, COUNT(order_id) AS counts\n\t\t\tFROM (\n\t\t\t\tSELECT\n\t\t\t\t\torders.id AS order_id,\n\t\t\t\t\tMAX(CASE WHEN meta_key = '_payment_method' THEN meta_value END) gateway,\n\t\t\t\t\tMAX(CASE WHEN meta_key = '_order_total' THEN meta_value END) total,\n\t\t\t\t\tMAX(CASE WHEN meta_key = '_order_currency' THEN meta_value END) currency\n\t\t\t\tFROM\n\t\t\t\t\t{$wpdb->prefix}posts orders\n\t\t\t\tLEFT JOIN\n\t\t\t\t\t{$wpdb->prefix}postmeta order_meta ON order_meta.post_id = orders.id\n\t\t\t\tWHERE orders.post_type = 'shop_order'\n\t\t\t\t\tAND orders.post_status in ( 'wc-completed', 'wc-processing', 'wc-refunded' )\n\t\t\t\t\tAND meta_key in( '_payment_method','_order_total','_order_currency')\n\t\t\t\tGROUP BY orders.id\n\t\t\t) order_gateways\n\t\t\tGROUP BY gateway, currency\n\t\t\t"); $orders_by_gateway_currency = array(); foreach ($orders_by_gateway as $orders_details) { $gateway = 'gateway_' . $orders_details->gateway; $currency = $orders_details->currency; $count = $gateway . '_' . $currency . '_count'; $total = $gateway . '_' . $currency . '_total'; $orders_by_gateway_currency[$count] = $orders_details->counts; $orders_by_gateway_currency[$total] = $orders_details->totals; } return $orders_by_gateway_currency; } private static function get_review_counts() { global $wpdb; $review_count = array('total' => 0); $status_map = array('0' => 'pending', '1' => 'approved', 'trash' => 'trash', 'spam' => 'spam'); $counts = $wpdb->get_results("\n\t\t\tSELECT comment_approved, COUNT(*) AS num_reviews\n\t\t\tFROM {$wpdb->comments}\n\t\t\tWHERE comment_type = 'review'\n\t\t\tGROUP BY comment_approved\n\t\t\t", ARRAY_A); if (!$counts) { return $review_count; } foreach ($counts as $count) { $status = $count['comment_approved']; if (array_key_exists($status, $status_map)) { $review_count[$status_map[$status]] = $count['num_reviews']; } $review_count['total'] += $count['num_reviews']; } return $review_count; } private static function get_category_counts() { return wp_count_terms('product_cat'); } private static function get_active_payment_gateways() { $active_gateways = array(); $gateways = WC()->payment_gateways->payment_gateways(); foreach ($gateways as $id => $gateway) { if (isset($gateway->enabled) && 'yes' === $gateway->enabled) { $active_gateways[$id] = array('title' => $gateway->title, 'supports' => $gateway->supports); } } return $active_gateways; } private static 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) && 'yes' === $shipping_method->enabled) { $active_methods[$id] = array('title' => $shipping_method->title, 'tax_status' => $shipping_method->tax_status); } } return $active_methods; } private static function get_all_woocommerce_options_values() { return array('version' => WC()->version, 'currency' => get_woocommerce_currency(), 'base_location' => WC()->countries->get_base_country(), 'base_state' => WC()->countries->get_base_state(), 'base_postcode' => WC()->countries->get_base_postcode(), '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'), 'checkout_login_reminder' => get_option('woocommerce_enable_checkout_login_reminder'), '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')); } private static 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(); 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() . '/' . 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; } elseif (file_exists(get_template_directory() . '/' . WC()->template_path() . $file)) { $theme_file = get_template_directory() . '/' . WC()->template_path() . $file; } else { $theme_file = false; } if (false !== $theme_file) { $override_data[] = basename($theme_file); } } } return $override_data; } public static function post_contains_text($post_id, $text) { global $wpdb; $wildcarded = "%{$text}%"; $result = $wpdb->get_var($wpdb->prepare("\n\t\t\t\tSELECT COUNT( * ) FROM {$wpdb->prefix}posts\n\t\t\t\tWHERE ID=%d\n\t\t\t\tAND {$wpdb->prefix}posts.post_content LIKE %s\n\t\t\t\t", array($post_id, $wildcarded))); return '0' !== $result ? 'Yes' : 'No'; } public static function get_block_tracker_data($block_name, $woo_page_name) { $blocks = WC_Blocks_Utils::get_blocks_from_page($block_name, $woo_page_name); $block_present = false; $attributes = array(); if ($blocks && count($blocks)) { $block_present = true; $attributes = $blocks[0]['attrs']; } return array('page_contains_block' => $block_present ? 'Yes' : 'No', 'block_attributes' => $attributes); } public static function get_cart_checkout_info() { $cart_page_id = wc_get_page_id('cart'); $checkout_page_id = wc_get_page_id('checkout'); $cart_block_data = self::get_block_tracker_data('woocommerce/cart', 'cart'); $checkout_block_data = self::get_block_tracker_data('woocommerce/checkout', 'checkout'); return array('cart_page_contains_cart_shortcode' => self::post_contains_text($cart_page_id, '[woocommerce_cart]'), 'checkout_page_contains_checkout_shortcode' => self::post_contains_text($checkout_page_id, '[woocommerce_checkout]'), 'cart_page_contains_cart_block' => $cart_block_data['page_contains_block'], 'cart_block_attributes' => $cart_block_data['block_attributes'], 'checkout_page_contains_checkout_block' => $checkout_block_data['page_contains_block'], 'checkout_block_attributes' => $checkout_block_data['block_attributes']); } } WC_Tracker::init();