Overview
  • Package
  • Class
  • Tree
  • Deprecated
  • Todo
  • Hook Reference
  • Docs Home

Packages

  • None
  • Order-Delivery-Date-Pro-for-WooCommerce
    • Admin
      • Edit-Order
      • Non-Sensitive-Data-Capture
      • Settings
        • Custom-Delivery
        • General
        • Google-Calendar-Sync
    • Class-ORDDD-Email-Manager
    • Common-Functions
    • Delivery-Calendar
    • Emails
      • Class-ORDDD-Email-Update-Date
    • Filter
    • Frontend
      • Checkout-Page-Processes
      • ICS-Files-Data
    • Google-Calendar
    • Integration
    • Lang
    • License
    • Plugin-Updates
      • EDD-SL-Plugin-Updater

Classes

  • EDD_SL_Plugin_Updater
  • orddd_additional_settings
  • orddd_admin_delivery_class
  • orddd_appearance_settings
  • orddd_calendar_sync
  • orddd_calendar_sync_settings
  • orddd_class_view_deliveries
  • orddd_common
  • orddd_date_settings
  • orddd_delivery_days_settings
  • ORDDD_Email_Manager
  • ORDDD_Email_Update_Date
  • orddd_filter
  • orddd_holidays_settings
  • orddd_integration
  • orddd_license
  • orddd_process
  • orddd_settings
  • orddd_shipping_based_settings
  • orddd_shipping_days_settings
  • orddd_shipping_multiple_address
  • orddd_time_settings
  • orddd_time_slot_settings
  • ORDDD_View_Delivery_Dates_Table
  • ORDDD_View_Disable_Time_Slots_Table
  • ORDDD_View_Holidays_Table
  • ORDDD_View_Shipping_Settings_Table
  • ORDDD_View_Time_Slots_Table
  • OrdddGcal
  • order_delivery_date
  • TS_Tracker
  • TS_tracking

Functions

  • orddd_get_dateToCal
  • orddd_get_escapeString
  • orddd_t
  1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  59  60  61  62  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 
<?php
/**
 * Order Delivery Date Pro for WooCommerce
 *
 * The Order Delivery Date tracker class adds functionality to track Order Delivery Date usage based on if the customer opted in.
 * No personal information is tracked, only general Order Deliver Date settings, order and user counts and admin email for discount code.
 *
 * @author      Tyche Softwares
 * @package     Order-Delivery-Date-Pro-for-WooCommerce/Admin/Non-Sensitive-Data-Capture
 * @since       6.8
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

/**
 * Sends tracking data to the server
 *
 * @class TS_Tracker
 */
class TS_Tracker {

    /**
     * URL to the  Tracker API endpoint.
     * @var string
     */
    private static $api_url = 'http://tracking.tychesoftwares.com/v1/';

    /**
     * Hook into cron event.
     * 
     * @since 6.8
     */
    public static function init() {
        add_action( 'ts_tracker_send_event', array( __CLASS__, 'ts_send_tracking_data' ) );
        add_filter( 'ts_tracker_data',            array( __CLASS__, 'orddd_ts_add_plugin_tracking_data' ), 10, 1);
        add_filter( 'ts_tracker_opt_out_data',    array( __CLASS__, 'orddd_get_data_for_opt_out' ), 10, 1);
    }

    /**
     * Decide whether to send tracking data or not.
     *
     * @hook ts_tracker_send_event
     *
     * @param boolean $override
     * @since 6.8
     */
    public static function ts_send_tracking_data( $override = false ) {
        if ( ! apply_filters( 'ts_tracker_send_override', $override ) ) {
            // Send a maximum of once per week by default.
            $last_send = self::ts_get_last_send_time();
            if ( $last_send && $last_send > apply_filters( 'ts_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::ts_get_last_send_time();
            if ( $last_send && $last_send > strtotime( '-1 hours' ) ) {
                return;
            }
        }
        
        $allow_tracking =  get_option( 'orddd_allow_tracking' );
        if ( 'yes' == $allow_tracking ) {
            $override = true;
        }
        
        // Update time first before sending to ensure it is set
        update_option( 'ts_tracker_last_send', time() );

        if( $override == false ) {
            $params   = array();
            $params[ 'tracking_usage' ] = 'no';
            $params[ 'url' ]            = home_url();
            $params[ 'email' ]          = apply_filters( 'ts_tracker_admin_email', get_option( 'admin_email' ) );
            
            $params                     = apply_filters( 'ts_tracker_opt_out_data', $params );
        } else {
            $params   = self::ts_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' => 'TSTracker/' . md5( esc_url( home_url( '/' ) ) ) . ';' ),
                'body'        => json_encode( $params ),
                'cookies'     => array(),
            )
        );  
    }

    /**
     * Get the last time tracking data was sent.
     *
     * @return int|bool Timestamp
     * @since 6.8
     */
    private static function ts_get_last_send_time() {
        return apply_filters( 'ts_tracker_last_send_time', get_option( 'ts_tracker_last_send', false ) );
    }

    /**
     * Get all the tracking data.
     *
     * @return array Data to track.
     * @since 6.8
     */
    private static function ts_get_tracking_data() {
        $data                        = array();

        // General site info
        $data[ 'url' ]               = home_url();
        $data[ 'email' ]             = apply_filters( 'ts_tracker_admin_email', get_option( 'admin_email' ) );

        // WordPress Info
        $data[ 'wp' ]                = self::ts_get_wordpress_info();

        $data[ 'theme_info' ]        = self::ts_get_theme_info();

        // Server Info
        $data[ 'server' ]            = self::ts_get_server_info();

        // Plugin info
        $all_plugins                 = self::ts_get_all_plugins();
        $data[ 'active_plugins' ]    = $all_plugins[ 'active_plugins' ];
        $data[ 'inactive_plugins' ]  = $all_plugins[ 'inactive_plugins' ];

        //WooCommerce version 
        $data[ 'wc_plugin_version' ] = self::ts_get_wc_plugin_version();
                
        return apply_filters( 'ts_tracker_data', $data );
    }
    
    /**
    * Tracking data to send when No, thanks. button is clicked.
    *
    * @hook ts_tracker_opt_out_data
    *
    * @param array $params Parameters to pass for tracking data.
    *
    * @return array Data to track when opted out.
    * @since 6.8
    */
    public static function orddd_get_data_for_opt_out( $params ) {
        $plugin_data[ 'ts_meta_data_table_name']   = 'ts_tracking_meta_data';
        $plugin_data[ 'ts_plugin_name' ]           = 'Order Delivery Date Pro for WooCommerce';
        
        // Store count info
        $plugin_data[ 'deliveries_count' ]         = self::ts_get_order_counts();
        $params[ 'plugin_data' ]                   = $plugin_data;
        
        return $params;
    }
    
    /**
    * Plugin's data to be tracked when Allow option is choosed.
    *
    * @hook ts_tracker_data
    *
    * @param array $data Contains the data to be tracked.
    *
    * @return array Plugin's data to track.
    * @since 6.8
    */

    public static function orddd_ts_add_plugin_tracking_data( $data ) {
        if ( isset( $_GET[ 'orddd_tracker_optin' ] ) && isset( $_GET[ 'orddd_tracker_nonce' ] ) && wp_verify_nonce( $_GET[ 'orddd_tracker_nonce' ], 'orddd_tracker_optin' ) ) {

            $plugin_data  = array();
            $plugin_data[ 'ts_meta_data_table_name' ] = 'ts_tracking_meta_data';
            $plugin_data[ 'ts_plugin_name' ]          = 'Order Delivery Date Pro for WooCommerce';
            
            // Store count info
            $plugin_data[ 'deliveries_count' ]        = self::ts_get_order_counts();
            
            // Get all plugin options info
            $plugin_data[ 'deliveries_settings' ]     = self::ts_get_all_plugin_options_values();
            $plugin_data[ 'orddd_plugin_version' ]    = self::ts_get_plugin_version();
            $plugin_data[ 'license_key_info' ]        = self::ts_get_plugin_license_key();
            $plugin_data[ 'orddd_allow_tracking' ]    = get_option ( 'orddd_allow_tracking' );
            $data[ 'plugin_data' ]                    = $plugin_data;
        }
        return $data;
    }

    /**
     * Get WordPress related data.
     * 
     * @return array WordPress data to track.
     * @since 6.8
     */
    private static function ts_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 );
        }

        $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[ 'wp_version' ]      = get_bloginfo( 'version' );
        $wp_data[ 'multisite' ]    = is_multisite() ? 'Yes' : 'No';

        return $wp_data;
    }

    /**
     * Get the current theme info, theme name and version.
     *
     * @return array Theme's data to track.
     * @since 6.8
     */
    public static function ts_get_theme_info() {
        $theme_data        = wp_get_theme();
        $theme_child_theme = is_child_theme() ? 'Yes' : 'No';

        return array( 'theme_name' => $theme_data->Name, 
                    'theme_version' => $theme_data->Version, 
                    'child_theme' => $theme_child_theme );
    }

    /**
     * Get server related info.
     * 
     * @globals resource WordPress object
     *
     * @return array Server data to track
     * @since 6.8
     */
    private static function ts_get_server_info() {
        global $wpdb;

        $server_data = array();
        if ( isset( $_SERVER[ 'SERVER_SOFTWARE' ] ) && ! 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';
        }

        $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;
    }

    /**
     * Get all plugins grouped into activated or not
     * 
     * @return array Activated or Deactivated plugins to track.
     * @since 6.8
     */
    private static function ts_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 order counts based on order status.
     * 
     * @globals resource WordPress object
     *
     * @return int Number of Deliveries
     * @since 6.8
     */
    private static function ts_get_order_counts() {
        global $wpdb;
        $order_count = 0;
        $orddd_query = "SELECT count(ID) AS delivery_orders_count FROM `" . $wpdb->prefix . "posts` WHERE post_type = 'shop_order' AND post_status NOT IN ('wc-cancelled', 'wc-refunded', 'trash', 'wc-failed' ) AND ID IN ( SELECT post_id FROM `" . $wpdb->prefix . "postmeta` WHERE meta_key IN ( %s, %s ) )";

        $results = $wpdb->get_results( $wpdb->prepare( $orddd_query, '_orddd_timestamp', get_option( 'orddd_delivery_date_field_label' ) ) );
        if( isset( $results[0] ) ) {
            $order_count = $results[0]->delivery_orders_count;  
        }
        
        return $order_count;
    }

    /**
     * Get all plugin options starting with orddd_ prefix.
     *
     * @globals resource WordPress object
     *
     * @return array Plugin Settings
     * @since 6.8
     */
    private static function ts_get_all_plugin_options_values() {
        global $wpdb;
        $orddd_custom_count = 0;
        $shipping_based_settings_query = "SELECT COUNT(option_id) AS custom_settings_count FROM `" . $wpdb->prefix . "options` WHERE option_name LIKE 'orddd_shipping_based_settings_%' AND option_name != 'orddd_shipping_based_settings_option_key'";
        $results = $wpdb->get_results( $shipping_based_settings_query );
        
        if( isset( $results[0] ) ) {
            $orddd_custom_count = $results[0]->custom_settings_count;
        }

        return array(
            'enable_delivery'                       => get_option( 'orddd_enable_delivery_date' ),
            'delivery_options'                      => get_option( 'orddd_delivery_checkout_options' ),
            'weekday_wise_settings'                 => get_option( 'orddd_enable_day_wise_settings' ),
            'date_mandatory'                        => get_option( 'orddd_date_field_mandatory' ),
            'shipping_days'                         => get_option( 'orddd_enable_shipping_days' ),
            'specific_delivery_dates'               => get_option( 'orddd_enable_specific_delivery_dates' ),
            'delivery_time'                         => get_option( 'orddd_enable_delivery_time' ),
            'same_day_delivery'                     => get_option( 'orddd_enable_same_day_delivery' ),
            'next_day_delivery'                     => get_option( 'orddd_enable_next_day_delivery' ),
            'time_slot'                             => get_option( 'orddd_enable_time_slot' ),
            'time_slot_mandatory'                   => get_option( 'orddd_time_slot_mandatory' ),
            'populate_first_time_slot'              => get_option( 'orddd_auto_populate_first_available_time_slot' ),
            'populate_first_delivery_date'          => get_option( 'orddd_enable_autofill_of_delivery_date' ),
            'no_fields_for'                         => array( 'virtual_product'  => get_option( 'orddd_no_fields_for_virtual_product' ),         'featured_product' => get_option( 'orddd_no_fields_for_featured_product' ) ),
            'edit_date_for_customers'               => get_option( 'orddd_allow_customers_to_edit_date' ),
            'shipping_multiple_address'             => get_option( 'orddd_shipping_multiple_address_compatibility' ),
            'amazon_payments_advanced_gateway'      => get_option( 'orddd_amazon_payments_advanced_gateway_compatibility' ),
            'woocommerce_subscriptions'             => get_option( 'orddd_woocommerce_subscriptions_compatibility' ),
            'woocommerce_subscriptions_auto_update' => get_option( 'orddd_woocommerce_subscriptions_auto_update' ),
            'custom_delivery'                       => get_option( 'orddd_enable_shipping_based_delivery' ),
            'custom_delivery_count'                 => $orddd_custom_count,
            'calendar_sync'                         => get_option( 'orddd_calendar_sync_integration_mode' ) 
         ); 
    }

    /**
     * Get WooCommerce plugin version.
     *
     * @return int WooCommerce version
     * @since 6.8
     */
    private static function ts_get_wc_plugin_version() {
        return WC()->version;
    }

    /**
     * Get Order Delivery Date license key
     *
     * @return array License data
     * @since 6.8
     */
    private static function ts_get_plugin_license_key() {
        return array( 'license_key' => get_option( 'edd_sample_license_key_odd_woo' ), 'active_status' => get_option( 'edd_sample_license_status_odd_woo' ) );
    }

    /**
     * Get Order Delivery Date plugin version
     *
     * @return array Order Delivery Date plugin version
     * @since 6.8
     */
    private static function ts_get_plugin_version() {
        global $orddd_version;
        return $orddd_version;
    }
}

TS_Tracker::init();
API documentation generated by ApiGen