class-wc-admin-setup-wizard-tracking.php
5 years ago
class-wc-coupon-tracking.php
6 years ago
class-wc-coupons-tracking.php
6 years ago
class-wc-extensions-tracking.php
6 years ago
class-wc-importer-tracking.php
6 years ago
class-wc-order-tracking.php
6 years ago
class-wc-orders-tracking.php
5 years ago
class-wc-products-tracking.php
5 years ago
class-wc-settings-tracking.php
5 years ago
class-wc-status-tracking.php
5 years ago
class-wc-orders-tracking.php
179 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WooCommerce Orders Tracking |
| 4 | * |
| 5 | * @package WooCommerce\Tracks |
| 6 | */ |
| 7 | |
| 8 | defined( 'ABSPATH' ) || exit; |
| 9 | |
| 10 | /** |
| 11 | * This class adds actions to track usage of WooCommerce Orders. |
| 12 | */ |
| 13 | class WC_Orders_Tracking { |
| 14 | /** |
| 15 | * Init tracking. |
| 16 | */ |
| 17 | public function init() { |
| 18 | add_action( 'woocommerce_order_status_changed', array( $this, 'track_order_status_change' ), 10, 3 ); |
| 19 | add_action( 'load-edit.php', array( $this, 'track_orders_view' ), 10 ); |
| 20 | add_action( 'pre_post_update', array( $this, 'track_created_date_change' ), 10 ); |
| 21 | // WC_Meta_Box_Order_Actions::save() hooks in at priority 50. |
| 22 | add_action( 'woocommerce_process_shop_order_meta', array( $this, 'track_order_action' ), 51 ); |
| 23 | add_action( 'load-post-new.php', array( $this, 'track_add_order_from_edit' ), 10 ); |
| 24 | add_filter( 'woocommerce_shop_order_search_results', array( $this, 'track_order_search' ), 10, 3 ); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Send a track event when on the Order Listing page, and search results are being displayed. |
| 29 | * |
| 30 | * @param array $order_ids Array of order_ids that are matches for the search. |
| 31 | * @param string $term The string that was used in the search. |
| 32 | * @param array $search_fields Fields that were used in the original search. |
| 33 | */ |
| 34 | public function track_order_search( $order_ids, $term, $search_fields ) { |
| 35 | // Since `woocommerce_shop_order_search_results` can run in the front-end context, exit if get_current_screen isn't defined. |
| 36 | if ( ! function_exists( 'get_current_screen' ) ) { |
| 37 | return $order_ids; |
| 38 | } |
| 39 | |
| 40 | $screen = get_current_screen(); |
| 41 | |
| 42 | // We only want to record this track when the filter is executed on the order listing page. |
| 43 | if ( 'edit-shop_order' === $screen->id ) { |
| 44 | // we are on the order listing page, and query results are being shown. |
| 45 | WC_Tracks::record_event( 'orders_view_search' ); |
| 46 | } |
| 47 | |
| 48 | return $order_ids; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Send a Tracks event when the Orders page is viewed. |
| 53 | */ |
| 54 | public function track_orders_view() { |
| 55 | if ( isset( $_GET['post_type'] ) && 'shop_order' === wp_unslash( $_GET['post_type'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
| 56 | |
| 57 | // phpcs:disable WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput |
| 58 | $properties = array( |
| 59 | 'status' => isset( $_GET['post_status'] ) ? sanitize_text_field( $_GET['post_status'] ) : 'all', |
| 60 | ); |
| 61 | // phpcs:enable |
| 62 | |
| 63 | WC_Tracks::record_event( 'orders_view', $properties ); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Send a Tracks event when an order status is changed. |
| 69 | * |
| 70 | * @param int $id Order id. |
| 71 | * @param string $previous_status the old WooCommerce order status. |
| 72 | * @param string $next_status the new WooCommerce order status. |
| 73 | */ |
| 74 | public function track_order_status_change( $id, $previous_status, $next_status ) { |
| 75 | $order = wc_get_order( $id ); |
| 76 | |
| 77 | $properties = array( |
| 78 | 'order_id' => $id, |
| 79 | 'next_status' => $next_status, |
| 80 | 'previous_status' => $previous_status, |
| 81 | 'date_created' => $order->get_date_created() ? $order->get_date_created()->date( 'Y-m-d' ) : '', |
| 82 | 'payment_method' => $order->get_payment_method(), |
| 83 | 'order_total' => $order->get_total(), |
| 84 | ); |
| 85 | |
| 86 | WC_Tracks::record_event( 'orders_edit_status_change', $properties ); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Send a Tracks event when an order date is changed. |
| 91 | * |
| 92 | * @param int $id Order id. |
| 93 | */ |
| 94 | public function track_created_date_change( $id ) { |
| 95 | $post_type = get_post_type( $id ); |
| 96 | |
| 97 | if ( 'shop_order' !== $post_type ) { |
| 98 | return; |
| 99 | } |
| 100 | |
| 101 | if ( 'auto-draft' === get_post_status( $id ) ) { |
| 102 | return; |
| 103 | } |
| 104 | |
| 105 | $order = wc_get_order( $id ); |
| 106 | $date_created = $order->get_date_created() ? $order->get_date_created()->date( 'Y-m-d H:i:s' ) : ''; |
| 107 | // phpcs:disable WordPress.Security.NonceVerification |
| 108 | $new_date = sprintf( |
| 109 | '%s %2d:%2d:%2d', |
| 110 | isset( $_POST['order_date'] ) ? wc_clean( wp_unslash( $_POST['order_date'] ) ) : '', |
| 111 | isset( $_POST['order_date_hour'] ) ? wc_clean( wp_unslash( $_POST['order_date_hour'] ) ) : '', |
| 112 | isset( $_POST['order_date_minute'] ) ? wc_clean( wp_unslash( $_POST['order_date_minute'] ) ) : '', |
| 113 | isset( $_POST['order_date_second'] ) ? wc_clean( wp_unslash( $_POST['order_date_second'] ) ) : '' |
| 114 | ); |
| 115 | // phpcs:enable |
| 116 | |
| 117 | if ( $new_date !== $date_created ) { |
| 118 | $properties = array( |
| 119 | 'order_id' => $id, |
| 120 | 'status' => $order->get_status(), |
| 121 | ); |
| 122 | |
| 123 | WC_Tracks::record_event( 'order_edit_date_created', $properties ); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Track order actions taken. |
| 129 | * |
| 130 | * @param int $order_id Order ID. |
| 131 | */ |
| 132 | public function track_order_action( $order_id ) { |
| 133 | // phpcs:disable WordPress.Security.NonceVerification |
| 134 | if ( ! empty( $_POST['wc_order_action'] ) ) { |
| 135 | $order = wc_get_order( $order_id ); |
| 136 | $action = wc_clean( wp_unslash( $_POST['wc_order_action'] ) ); |
| 137 | $properties = array( |
| 138 | 'order_id' => $order_id, |
| 139 | 'status' => $order->get_status(), |
| 140 | 'action' => $action, |
| 141 | ); |
| 142 | |
| 143 | WC_Tracks::record_event( 'order_edit_order_action', $properties ); |
| 144 | } |
| 145 | // phpcs:enable |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Track "add order" button on the Edit Order screen. |
| 150 | */ |
| 151 | public function track_add_order_from_edit() { |
| 152 | // phpcs:ignore WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
| 153 | if ( isset( $_GET['post_type'] ) && 'shop_order' === wp_unslash( $_GET['post_type'] ) ) { |
| 154 | $referer = wp_get_referer(); |
| 155 | |
| 156 | if ( $referer ) { |
| 157 | $referring_page = wp_parse_url( $referer ); |
| 158 | $referring_args = array(); |
| 159 | $post_edit_page = wp_parse_url( admin_url( 'post.php' ) ); |
| 160 | |
| 161 | if ( ! empty( $referring_page['query'] ) ) { |
| 162 | parse_str( $referring_page['query'], $referring_args ); |
| 163 | } |
| 164 | |
| 165 | // Determine if we arrived from an Order Edit screen. |
| 166 | if ( |
| 167 | $post_edit_page['path'] === $referring_page['path'] && |
| 168 | isset( $referring_args['action'] ) && |
| 169 | 'edit' === $referring_args['action'] && |
| 170 | isset( $referring_args['post'] ) && |
| 171 | 'shop_order' === get_post_type( $referring_args['post'] ) |
| 172 | ) { |
| 173 | WC_Tracks::record_event( 'order_edit_add_order' ); |
| 174 | } |
| 175 | } |
| 176 | } |
| 177 | } |
| 178 | } |
| 179 |