-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathfacebook-commerce-events-tracker.php
1186 lines (927 loc) · 33.4 KB
/
facebook-commerce-events-tracker.php
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// phpcs:ignoreFile
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
*
* This source code is licensed under the license found in the
* LICENSE file in the root directory of this source tree.
*
* @package FacebookCommerce
*/
use WooCommerce\Facebook\Events\Event;
use WooCommerce\Facebook\Framework\Api\Exception as ApiException;
use WooCommerce\Facebook\Framework\Helper;
if ( ! class_exists( 'WC_Facebookcommerce_EventsTracker' ) ) :
if ( ! class_exists( 'WC_Facebookcommerce_Utils' ) ) {
include_once 'includes/fbutils.php';
}
if ( ! class_exists( 'WC_Facebookcommerce_Pixel' ) ) {
include_once 'facebook-commerce-pixel-event.php';
}
class WC_Facebookcommerce_EventsTracker {
/** @var \WC_Facebookcommerce_Pixel instance */
private $pixel;
/** @var string name of the session variable used to store search event data */
private $search_event_data_session_variable = 'wc_facebook_search_event_data';
/** @var Event search event instance */
private $search_event;
/** @var array with events tracked */
private $tracked_events;
/** @var array array with epnding events */
private $pending_events = [];
/** @var AAMSettings aam settings instance, used to filter advanced matching fields*/
private $aam_settings;
/** @var bool whether the pixel should be enabled */
private $is_pixel_enabled;
/**
* Events tracker constructor.
*
* @param $user_info
* @param $aam_settings
*/
public function __construct( $user_info, $aam_settings ) {
if ( ! $this->is_pixel_enabled() ) {
return;
}
$this->pixel = new \WC_Facebookcommerce_Pixel( $user_info );
$this->aam_settings = $aam_settings;
$this->tracked_events = array();
$this->add_hooks();
}
/**
* Determines whether the Pixel should be enabled.
*
* @since 2.2.0
*
* @return bool
*/
private function is_pixel_enabled() {
if ( null === $this->is_pixel_enabled ) {
/**
* Filters whether the Pixel should be enabled.
*
* @param bool $enabled default true
*/
$this->is_pixel_enabled = (bool) apply_filters( 'facebook_for_woocommerce_integration_pixel_enabled', true );
}
return $this->is_pixel_enabled;
}
/**
* Add events tracker hooks.
*
* @since 2.2.0
*/
private function add_hooks() {
// inject Pixel
add_action( 'wp_head', array( $this, 'inject_base_pixel' ) );
add_action( 'wp_footer', array( $this, 'inject_base_pixel_noscript' ) );
// ViewContent for individual products
add_action( 'woocommerce_after_single_product', array( $this, 'inject_view_content_event' ) );
add_action( 'woocommerce_after_single_product', array( $this, 'maybe_inject_search_event' ) );
add_action( 'woocommerce_after_shop_loop', array( $this, 'inject_view_category_event' ) );
add_action( 'pre_get_posts', array( $this, 'inject_search_event' ) );
add_filter( 'woocommerce_redirect_single_search_result', array( $this, 'maybe_add_product_search_event_to_session' ) );
// AddToCart events
add_action( 'woocommerce_add_to_cart', array( $this, 'inject_add_to_cart_event' ), 40, 4 );
// AddToCart while AJAX is enabled
add_action( 'woocommerce_ajax_added_to_cart', array( $this, 'add_filter_for_add_to_cart_fragments' ) );
// AddToCart while using redirect to cart page
if ( 'yes' === get_option( 'woocommerce_cart_redirect_after_add', 'no' ) ) {
add_action( 'wp_head', array( WC_Facebookcommerce_Utils::class, 'print_deferred_events' ) );
add_action( 'shutdown', array( WC_Facebookcommerce_Utils::class, 'save_deferred_events' ) );
}
// InitiateCheckout events
add_action( 'woocommerce_after_checkout_form', array( $this, 'inject_initiate_checkout_event' ) );
// InitiateCheckout events for checkout block.
add_action( 'woocommerce_blocks_checkout_enqueue_data', array( $this, 'inject_initiate_checkout_event' ) );
// Purchase and Subscribe events
add_action( 'woocommerce_checkout_update_order_meta', array( $this, 'inject_purchase_event' ) );
add_action( 'woocommerce_thankyou', array( $this, 'inject_purchase_event' ), 40 );
// Checkout update order meta from the Checkout Block.
if ( version_compare( \Automattic\WooCommerce\Blocks\Package::get_version(), '7.2.0', '>=' ) ) {
add_action( 'woocommerce_store_api_checkout_update_order_meta', array( $this, 'inject_order_meta_event_for_checkout_block_flow' ), 10, 1 );
} elseif ( version_compare( \Automattic\WooCommerce\Blocks\Package::get_version(), '6.3.0', '>=' ) ) {
add_action( 'woocommerce_blocks_checkout_update_order_meta', array( $this, 'inject_order_meta_event_for_checkout_block_flow' ), 10, 1 );
} else {
add_action( '__experimental_woocommerce_blocks_checkout_update_order_meta', array( $this, 'inject_order_meta_event_for_checkout_block_flow' ), 10, 1 );
}
// TODO move this in some 3rd party plugin integrations handler at some point {FN 2020-03-20}
add_action( 'wpcf7_contact_form', array( $this, 'inject_lead_event_hook' ), 11 );
add_action( 'shutdown', array( $this, 'send_pending_events' ) );
}
/**
* Prints the base JavaScript pixel code.
*/
public function inject_base_pixel() {
if ( $this->is_pixel_enabled() ) {
// phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
echo $this->pixel->pixel_base_code();
}
}
/**
* Prints the base <noscript> pixel code.
*
* This is necessary to avoid W3 validation errors.
*/
public function inject_base_pixel_noscript() {
if ( $this->is_pixel_enabled() ) {
// phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
echo $this->pixel->pixel_base_code_noscript();
}
}
/**
* Triggers ViewCategory for product category listings
*/
public function inject_view_category_event() {
global $wp_query;
if ( ! $this->is_pixel_enabled() || ! is_product_category() ) {
return;
}
$products = array_values(
array_map(
function( $post ) {
return wc_get_product( $post );
},
$wp_query->posts
)
);
// if any product is a variant, fire the pixel with
// content_type: product_group
$content_type = 'product';
$product_ids = array();
$contents = array();
foreach ( $products as $product ) {
if ( ! $product ) {
continue;
}
$contents[] = array(
'id' => \WC_Facebookcommerce_Utils::get_fb_retailer_id( $product ),
'quantity' => 1, // consider category results a quantity of 1
);
$product_ids = array_merge(
$product_ids,
WC_Facebookcommerce_Utils::get_fb_content_ids( $product )
);
if ( WC_Facebookcommerce_Utils::is_variable_type( $product->get_type() ) ) {
$content_type = 'product_group';
}
}
$category = get_queried_object();
$event_name = 'ViewCategory';
$event_data = array(
'event_name' => $event_name,
'custom_data' => array(
'content_name' => $category->name,
'content_category' => $category->name,
'content_ids' => json_encode( array_slice( $product_ids, 0, 10 ) ),
'content_type' => $content_type,
'contents' => $contents,
),
'user_data' => $this->pixel->get_user_info(),
);
$event = new Event( $event_data );
$this->send_api_event( $event, false );
$event_data['event_id'] = $event->get_id();
$this->pixel->inject_event( $event_name, $event_data, 'trackCustom' );
}
/**
* Attempts to add a session variable to indicate that a product search event occurred.
*
* The session variable is used to catch search events that have a single result.
* In those cases WooCommerce redirects customers to the product page instead of showing the search results.
*
* The plugin can't inject a Pixel event code on redirect responses, but it can check for the presence of the variable on the product page.
*
* This method is hooked to woocommerce_redirect_single_search_result which is triggered right before redirecting.
*
* @internal
*
* @since 2.1.2
*
* @param bool $redirect whether to redirect to the product page
* @return bool
*/
public function maybe_add_product_search_event_to_session( $redirect ) {
if ( $redirect && $this->search_event && $this->is_single_search_result() ) {
$this->add_product_search_event_to_session( $this->search_event );
}
return $redirect;
}
/**
* Determines whether the current request is a product search with a single result.
*
* @since 2.1.2
*
* @return bool
*/
private function is_single_search_result() {
global $wp_query;
return is_search() && 1 === absint( $wp_query->found_posts ) && is_post_type_archive( 'product' );
}
/**
* Adds search event data to the session.
*
* This does nothing if there is no session set.
*
* @since 2.1.2
*
* @return void
*/
private function add_product_search_event_to_session( Event $event ) {
if ( isset( WC()->session ) && is_callable( array( WC()->session, 'has_session' ) ) && WC()->session->has_session() ) {
WC()->session->set( $this->search_event_data_session_variable, $event->get_data() );
}
}
/**
* Injects a frontend search event if the session has stored event data.
*
* @internal
*
* @since 2.1.2
*/
public function maybe_inject_search_event() {
if ( ! $this->is_pixel_enabled() ) {
return;
}
$this->search_event = $this->get_product_search_event_from_session();
if ( ! $this->search_event ) {
return;
}
$this->delete_session_data( $this->search_event_data_session_variable );
$this->actually_inject_search_event();
}
/**
* Attempts to create an Event instance for a product search event using session data.
*
* @since 2.1.2
*
* @return Event|null
*/
private function get_product_search_event_from_session() {
if ( ! isset( WC()->session ) || ! is_callable( array( WC()->session, 'get' ) ) ) {
return null;
}
$data = WC()->session->get( $this->search_event_data_session_variable );
if ( ! is_array( $data ) || empty( $data ) ) {
return null;
}
return new Event( $data );
}
/**
* Deletes a session variable.
*
* @since 2.1.2
*
* @param string $key name of the variable to delete
*/
private function delete_session_data( $key ) {
if ( isset( WC()->session->$key ) ) {
unset( WC()->session->$key );
}
}
/**
* Triggers Search for result pages (deduped)
*
* @internal
*
* @param WP_Query $query the query object
*/
public function inject_search_event( $query ) {
if ( ! $this->is_pixel_enabled() || ! $query->is_main_query() ) {
return;
}
if ( ! is_admin() && is_search() && '' !== get_search_query() && 'product' === get_query_var( 'post_type' ) ) {
if ( $this->pixel->is_last_event( 'Search' ) ) {
return;
}
// needs to run before wc_template_redirect, normally hooked with priority 10
add_action( 'template_redirect', array( $this, 'send_search_event' ), 5 );
add_action( 'woocommerce_before_shop_loop', array( $this, 'actually_inject_search_event' ) );
}
}
/**
* Sends a server-side Search event.
*
* @internal
*
* @since 2.0.0
*/
public function send_search_event() {
$this->send_api_event( $this->get_search_event() );
}
/**
* Creates an Event instance to track a search request.
*
* The event instance is stored in memory to return a single instance per request.
*
* @since 2.0.0
*
* @return Event
*/
private function get_search_event() {
global $wp_query;
if ( null === $this->search_event ) {
// if any product is a variant, fire the pixel with content_type: product_group
$content_type = 'product';
$product_ids = array();
$contents = array();
$total_value = 0.00;
foreach ( $wp_query->posts as $post ) {
$product = wc_get_product( $post );
if ( ! $product instanceof \WC_Product ) {
continue;
}
$product_ids = array_merge( $product_ids, WC_Facebookcommerce_Utils::get_fb_content_ids( $product ) );
$contents[] = array(
'id' => \WC_Facebookcommerce_Utils::get_fb_retailer_id( $product ),
'quantity' => 1, // consider the search results a quantity of 1
);
$total_value += (float) $product->get_price();
if ( WC_Facebookcommerce_Utils::is_variable_type( $product->get_type() ) ) {
$content_type = 'product_group';
}
}
$event_data = array(
'event_name' => 'Search',
'custom_data' => array(
'content_type' => $content_type,
'content_ids' => json_encode( array_slice( $product_ids, 0, 10 ) ),
'contents' => $contents,
'search_string' => get_search_query(),
'value' => Helper::number_format( $total_value ),
'currency' => get_woocommerce_currency(),
),
'user_data' => $this->pixel->get_user_info(),
);
$this->search_event = new Event( $event_data );
}
return $this->search_event;
}
/**
* Injects a Search event on result pages.
*
* @internal
*/
public function actually_inject_search_event() {
$event = $this->get_search_event();
$this->pixel->inject_event(
$event->get_name(),
array(
'event_id' => $event->get_id(),
'event_name' => $event->get_name(),
'custom_data' => $event->get_custom_data(),
)
);
}
/**
* Triggers ViewContent event on product pages
*
* @internal
*/
public function inject_view_content_event() {
global $post;
if ( ! $this->is_pixel_enabled() || ! isset( $post->ID ) ) {
return;
}
$product = wc_get_product( $post->ID );
if ( ! $product instanceof \WC_Product ) {
return;
}
// if product is variable or grouped, fire the pixel with content_type: product_group
if ( $product->is_type( array( 'variable', 'grouped' ) ) ) {
$content_type = 'product_group';
} else {
$content_type = 'product';
}
if ( WC_Facebookcommerce_Utils::is_variable_type( $product->get_type() ) ) {
$product_price = $product->get_variation_price( 'min' );
} else {
$product_price = $product->get_price();
}
$categories = \WC_Facebookcommerce_Utils::get_product_categories( $product->get_id() );
$event_data = array(
'event_name' => 'ViewContent',
'custom_data' => array(
'content_name' => \WC_Facebookcommerce_Utils::clean_string( $product->get_title() ),
'content_ids' => wp_json_encode( \WC_Facebookcommerce_Utils::get_fb_content_ids( $product ) ),
'content_type' => $content_type,
'contents' => wp_json_encode(
array(
array(
'id' => \WC_Facebookcommerce_Utils::get_fb_retailer_id( $product ),
'quantity' => 1,
),
)
),
'content_category' => $categories['name'],
'value' => $product_price,
'currency' => get_woocommerce_currency(),
),
'user_data' => $this->pixel->get_user_info(),
);
$event = new Event( $event_data );
$this->send_api_event( $event, false );
$event_data['event_id'] = $event->get_id();
$this->pixel->inject_event( 'ViewContent', $event_data );
}
/**
* Triggers an AddToCart event when a product is added to cart.
*
* @internal
*
* @param string $cart_item_key the cart item key
* @param int $product_id the product identifier
* @param int $quantity the added product quantity
* @param int $variation_id the product variation identifier
*/
public function inject_add_to_cart_event( $cart_item_key, $product_id, $quantity, $variation_id ) {
// bail if pixel tracking disabled or invalid variables
if ( ! $this->is_pixel_enabled() || ! $product_id || ! $quantity ) {
return;
}
/**
* Make sure to proceed only if the cart item exists.
* Some other plugins may clone the WC_Cart object. Calling clone APIs may trigger the 'woocommerce_add_to_cart' action.
* We want to make sure to proceed only if the cart item exists inside the original WC_Cart object.
*/
$cart = WC()->cart;
if ( ! isset( $cart->cart_contents[ $cart_item_key ] ) ) {
return;
}
$product = wc_get_product( $variation_id ?: $product_id );
// bail if invalid product or error
if ( ! $product instanceof \WC_Product ) {
return;
}
$event_data = array(
'event_name' => 'AddToCart',
'custom_data' => array(
'content_ids' => wp_json_encode( \WC_Facebookcommerce_Utils::get_fb_content_ids( $product ) ),
'content_name' => \WC_Facebookcommerce_Utils::clean_string( $product->get_title() ),
'content_type' => 'product',
'contents' => wp_json_encode(
array(
array(
"id" => \WC_Facebookcommerce_Utils::get_fb_retailer_id( $product ),
"quantity" => $quantity,
),
)
),
'value' => (float) $product->get_price() * $quantity,
'currency' => get_woocommerce_currency(),
),
'user_data' => $this->pixel->get_user_info(),
);
$event = new WooCommerce\Facebook\Events\Event( $event_data );
$this->send_api_event( $event, false );
// send the event ID to prevent duplication
$event_data['event_id'] = $event->get_id();
// store the ID in the session to be sent in AJAX JS event tracking as well
WC()->session->set( 'facebook_for_woocommerce_add_to_cart_event_id', $event->get_id() );
$this->pixel->inject_event( 'AddToCart', $event_data );
}
/**
* Setups a filter to add an add to cart fragment whenever a product is added to the cart through Ajax.
*
* @see \WC_Facebookcommerce_EventsTracker::add_add_to_cart_event_fragment
*
* @internal
*
* @since 1.10.2
*/
public function add_filter_for_add_to_cart_fragments() {
if ( 'no' === get_option( 'woocommerce_cart_redirect_after_add', 'no' ) ) {
add_filter( 'woocommerce_add_to_cart_fragments', array( $this, 'add_add_to_cart_event_fragment' ) );
}
}
/**
* Adds an add to cart fragment to trigger an AddToCart event.
*
* @internal
*
* @since 1.10.2
*
* @param array $fragments add to cart fragments
* @return array
*/
public function add_add_to_cart_event_fragment( $fragments ) {
$product_id = isset( $_POST['product_id'] ) ? (int) $_POST['product_id'] : '';
$quantity = isset( $_POST['quantity']) ? (int) $_POST['quantity'] : '';
$product = wc_get_product($product_id);
if ( ! $product instanceof \WC_Product || empty( $quantity ) ) {
return $fragments;
}
if ( $this->is_pixel_enabled() ) {
$params = array(
'content_ids' => wp_json_encode( \WC_Facebookcommerce_Utils::get_fb_content_ids( $product ) ),
'content_name' => \WC_Facebookcommerce_Utils::clean_string( $product->get_title() ),
'content_type' => 'product',
'contents' => wp_json_encode(
array(
array(
'id' => \WC_Facebookcommerce_Utils::get_fb_retailer_id( $product ),
'quantity' => $quantity,
),
)
),
'value' => (float) $product->get_price() * $quantity,
'currency' => get_woocommerce_currency(),
);
// send the event ID to prevent duplication
if ( ! empty( $event_id = WC()->session->get( 'facebook_for_woocommerce_add_to_cart_event_id' ) ) ) {
$params['event_id'] = $event_id;
}
$script = $this->pixel->get_event_script( 'AddToCart', $params );
$fragments['div.wc-facebook-pixel-event-placeholder'] = '<div class="wc-facebook-pixel-event-placeholder">' . $script . '</div>';
}
return $fragments;
}
/**
* Setups a filter to add an add to cart fragment to trigger an AddToCart event on added_to_cart JS event.
*
* This method is used by code snippets and should not be removed.
*
* @see \WC_Facebookcommerce_EventsTracker::add_conditional_add_to_cart_event_fragment
*
* @internal
*
* @since 1.10.2
*/
public function add_filter_for_conditional_add_to_cart_fragment() {
if ( 'no' === get_option( 'woocommerce_cart_redirect_after_add', 'no' ) ) {
add_filter( 'woocommerce_add_to_cart_fragments', array( $this, 'add_conditional_add_to_cart_event_fragment' ) );
}
}
/**
* Adds an add to cart fragment to trigger an AddToCart event on added_to_cart JS event.
*
* @internal
*
* @since 1.10.2
*
* @param array $fragments add to cart fragments
* @return array
*/
public function add_conditional_add_to_cart_event_fragment( $fragments ) {
if ( $this->is_pixel_enabled() ) {
$params = array(
'content_ids' => $this->get_cart_content_ids(),
'content_name' => $this->get_cart_content_names(),
'content_type' => 'product',
'contents' => $this->get_cart_contents(),
'value' => $this->get_cart_total(),
'currency' => get_woocommerce_currency(),
);
// send the event ID to prevent duplication
if ( ! empty( $event_id = WC()->session->get( 'facebook_for_woocommerce_add_to_cart_event_id' ) ) ) {
$params['event_id'] = $event_id;
}
$script = $this->pixel->get_conditional_one_time_event_script( 'AddToCart', $params, 'added_to_cart' );
$fragments['div.wc-facebook-pixel-event-placeholder'] = '<div class="wc-facebook-pixel-event-placeholder">' . $script . '</div>';
}
return $fragments;
}
/**
* Triggers an InitiateCheckout event when customer reaches checkout page.
*
* @internal
*/
public function inject_initiate_checkout_event() {
if ( ! $this->is_pixel_enabled() || null === WC()->cart || WC()->cart->get_cart_contents_count() === 0 || $this->pixel->is_last_event( 'InitiateCheckout' ) ) {
return;
}
$event_name = 'InitiateCheckout';
$event_data = array(
'event_name' => $event_name,
'custom_data' => array(
'num_items' => $this->get_cart_num_items(),
'content_ids' => $this->get_cart_content_ids(),
'content_name' => $this->get_cart_content_names(),
'content_type' => 'product',
'contents' => $this->get_cart_contents(),
'value' => $this->get_cart_total(),
'currency' => get_woocommerce_currency(),
),
'user_data' => $this->pixel->get_user_info(),
);
// if there is only one item in the cart, send its first category
if ( ( $cart = WC()->cart ) && count( $cart->get_cart() ) === 1 ) {
$item = current( $cart->get_cart() );
if ( isset( $item['data'] ) && $item['data'] instanceof \WC_Product ) {
$categories = \WC_Facebookcommerce_Utils::get_product_categories( $item['data']->get_id() );
if ( ! empty( $categories['name'] ) ) {
$event_data['custom_data']['content_category'] = $categories['name'];
}
}
}
$event = new Event( $event_data );
$this->send_api_event( $event, false );
$event_data['event_id'] = $event->get_id();
$this->pixel->inject_event( $event_name, $event_data );
}
/**
* Triggers a Purchase event when checkout is completed.
*
* This may happen either when:
* - WooCommerce signals a payment transaction complete (most gateways)
* - Customer reaches Thank You page skipping payment (for gateways that do not require payment, e.g. Cheque, BACS, Cash on delivery...)
*
* The method checks if the event was not triggered already avoiding a duplicate.
* Finally, if the order contains subscriptions, it will also track an associated Subscription event.
*
* @internal
*
* @param int $order_id order identifier
*/
public function inject_purchase_event( $order_id ) {
$event_name = 'Purchase';
if ( ! $this->is_pixel_enabled() || $this->pixel->is_last_event( $event_name ) ) {
return;
}
$order = wc_get_order( $order_id );
if ( ! $order ) {
return;
}
// use a session flag to ensure an order is tracked with any payment method, also when the order is placed through AJAX
$order_placed_flag = '_wc_' . facebook_for_woocommerce()->get_id() . '_order_placed_' . $order_id;
// use a session flag to ensure a Purchase event is not tracked multiple times
$purchase_tracked_flag = '_wc_' . facebook_for_woocommerce()->get_id() . '_purchase_tracked_' . $order_id;
// when saving the order meta data: add a flag to mark the order tracked
if ( 'woocommerce_checkout_update_order_meta' === current_action() ) {
set_transient( $order_placed_flag, 'yes', 15 * MINUTE_IN_SECONDS );
return;
}
// bail if by the time we are on the thank you page the meta has not been set or we already tracked a Purchase event
if ( 'yes' !== get_transient( $order_placed_flag ) || 'yes' === get_transient( $purchase_tracked_flag ) ) {
return;
}
$content_type = 'product';
$contents = array();
$product_ids = array( array() );
$product_names = array();
foreach ( $order->get_items() as $item ) {
$product = $item->get_product();
if ( $product ) {
$product_ids[] = \WC_Facebookcommerce_Utils::get_fb_content_ids( $product );
$product_names[] = \WC_Facebookcommerce_Utils::clean_string( $product->get_title() );
if ( 'product_group' !== $content_type && $product->is_type( 'variable' ) ) {
$content_type = 'product_group';
}
$quantity = $item->get_quantity();
$content = new \stdClass();
$content->id = \WC_Facebookcommerce_Utils::get_fb_retailer_id( $product );
$content->quantity = $quantity;
$contents[] = $content;
}
}
// Advanced matching information is extracted from the order
$event_data = array(
'event_name' => $event_name,
'custom_data' => array(
'content_ids' => wp_json_encode( array_merge( ... $product_ids ) ),
'content_name' => wp_json_encode( $product_names ),
'contents' => wp_json_encode( $contents ),
'content_type' => $content_type,
'value' => $order->get_total(),
'currency' => get_woocommerce_currency(),
),
'user_data' => $this->get_user_data_from_billing_address( $order ),
);
$event = new Event( $event_data );
$this->send_api_event( $event );
$event_data['event_id'] = $event->get_id();
$this->pixel->inject_event( $event_name, $event_data );
$this->inject_subscribe_event( $order_id );
// mark the order as tracked
set_transient( $purchase_tracked_flag, 'yes', 15 * MINUTE_IN_SECONDS );
}
/**
* Inject order meta gor WooCommerce Checkout Blocks flow.
* The blocks flow does not trigger the woocommerce_checkout_update_order_meta so we can't rely on it.
* The Checkout Block has its own hook that allows us to inject the meta at
* the appropriate moment: woocommerce_store_api_checkout_update_order_meta.
*
* Note: __experimental_woocommerce_blocks_checkout_update_order_meta has been deprecated
* as of WooCommerce Blocks 6.3.0
*
* @since 2.6.6
*
* @param WC_Order|int $the_order Order object or id.
*/
public function inject_order_meta_event_for_checkout_block_flow( $the_order ) {
$event_name = 'Purchase';
if ( ! $this->is_pixel_enabled() || $this->pixel->is_last_event( $event_name ) ) {
return;
}
$order = wc_get_order($the_order);
if ( ! $order ) {
return;
}
$order_placed_flag = '_wc_' . facebook_for_woocommerce()->get_id() . '_order_placed_' . $order->get_id();
set_transient( $order_placed_flag, 'yes', 15 * MINUTE_IN_SECONDS );
}
/**
* Triggers a Subscribe event when a given order contains subscription products.
*
* @see \WC_Facebookcommerce_EventsTracker::inject_purchase_event()
*
* @internal
*
* @param int $order_id order identifier
*/
public function inject_subscribe_event( $order_id ) {
if ( ! function_exists( 'wcs_get_subscriptions_for_order' ) || ! $this->is_pixel_enabled() || $this->pixel->is_last_event( 'Subscribe' ) ) {
return;
}
foreach ( wcs_get_subscriptions_for_order( $order_id ) as $subscription ) {
// TODO consider 'StartTrial' event for free trial Subscriptions, which is the same as here (minus sign_up_fee) and tracks "when a person starts a free trial of a product or service" {FN 2020-03-20}
$event_name = 'Subscribe';
// TODO consider including (int|float) 'predicted_ltv': "Predicted lifetime value of a subscriber as defined by the advertiser and expressed as an exact value." {FN 2020-03-20}
$event_data = array(
'event_name' => $event_name,
'custom_data' => array(
'sign_up_fee' => $subscription->get_sign_up_fee(),
'value' => $subscription->get_total(),
'currency' => get_woocommerce_currency(),
),
'user_data' => $this->pixel->get_user_info(),
);
$event = new Event( $event_data );
$this->send_api_event( $event );
$event_data['event_id'] = $event->get_id();
$this->pixel->inject_event( $event_name, $event_data );
}
}
/** Contact Form 7 Support **/
public function inject_lead_event_hook() {
add_action( 'wp_footer', array( $this, 'inject_lead_event' ), 11 );
}
public function inject_lead_event() {
if ( ! is_admin() ) {
$this->pixel->inject_conditional_event(
'Lead',
array(),
'wpcf7submit',
'{ em: event.detail.inputs.filter(ele => ele.name.includes("email"))[0].value }'
);
}
}
/**
* Sends an API event.
*
* @since 2.0.0
*
* @param Event $event event object
* @param bool $send_now optional, defaults to true
*/
protected function send_api_event( Event $event, bool $send_now = true ) {
$this->tracked_events[] = $event;
if ( $send_now ) {
try {
facebook_for_woocommerce()->get_api()->send_pixel_events( facebook_for_woocommerce()->get_integration()->get_facebook_pixel_id(), array( $event ) );
} catch ( ApiException $exception ) {
facebook_for_woocommerce()->log( 'Could not send Pixel event: ' . $exception->getMessage() );