-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathclass-integration-facebook.php
More file actions
330 lines (284 loc) · 12 KB
/
class-integration-facebook.php
File metadata and controls
330 lines (284 loc) · 12 KB
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
<?php
/**
* WCCT gate way facebook
*/
class WCCT_Integration_Facebook extends WCCT_Integration {
/**
* Constructor for WC_Conversion_Tracking_Gateway_Facebook
*/
function __construct() {
$this->id = 'facebook';
$this->name = 'Facebook';
$this->enabled = true;
$this->supports = array(
'add_to_cart',
'checkout',
'initiate_checkout',
'registration',
);
}
/**
* Get Settings
*
* @return array
*/
public function get_settings() {
$settings = array(
'id' => array(
'type' => 'text',
'name' => 'pixel_id',
'label' => __( 'Pixel ID', 'woocommerce-conversion-tracking' ),
'required' => true,
'value' => '',
'help' => sprintf( __( 'Find the Pixel ID from <a href="%s" target="_blank">here</a>.', 'woocommerce-conversion-tracking' ), 'https://www.facebook.com/ads/manager/pixel/facebook_pixel' )
),
'events' => array(
'type' => 'multicheck',
'name' => 'events',
'label' => __( 'Events', 'woocommerce-conversion-tracking' ),
'value' => '',
'options' => array(
'AddToCart' => __( 'Add to Cart', 'woocommerce-conversion-tracking' ),
'InitiateCheckout' => __( 'Initiate Checkout', 'woocommerce-conversion-tracking' ),
'Purchase' => __( 'Purchase', 'woocommerce-conversion-tracking' ),
'Registration' => __( 'Complete Registration', 'woocommerce-conversion-tracking' )
)
),
);
return apply_filters( 'wcct_settings_fb', $settings );
}
/**
* Build the event object
*
* @param string $event_name
* @param array $params
* @param string $method
*
* @return string
*/
public function build_event( $event_name, $params = array(), $method = 'track' ) {
return sprintf( "fbq('%s', '%s', %s);", $method, $event_name, json_encode( $params, JSON_PRETTY_PRINT | JSON_FORCE_OBJECT ) );
}
/**
* Enqueue script
*
* @return void
*/
public function enqueue_script() {
if ( ! $this->is_enabled() ) {
return;
}
$integration_settins = $this->get_integration_settings();
$facebook_pixel_id = ! empty( $integration_settins[0]['pixel_id'] ) ? $integration_settins[0]['pixel_id'] : '';
?>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
<?php
if ( is_user_logged_in() ) {
$user_email = wp_get_current_user()->user_email;
echo $this->build_event( $facebook_pixel_id, array( 'em' => $user_email ), 'init' );
} else {
echo $this->build_event( $facebook_pixel_id, array(), 'init' );
}
echo $this->build_event( 'PageView', array() );
?>
</script>
<?php
$this->print_event_script();
if ( ! class_exists( 'WeDevs_WC_Conversion_Tracking_Pro' ) ) {
$this->add_to_cart_ajax();
}
}
/**
* Enqueue add to cart event
*
* @return void
*/
public function add_to_cart() {
if ( ! $this->event_enabled( 'AddToCart' ) ) {
return;
}
$product_ids = $this->get_content_ids_from_cart( WC()->cart->get_cart() );
$code = $this->build_event( 'AddToCart', array(
'content_ids' => json_encode( $product_ids ),
'content_type' => 'product',
'value' => WC()->cart->total ? WC()->cart->total : 0,
'currency' => get_woocommerce_currency()
) );
wc_enqueue_js( $code );
}
/**
* Added to cart
*
* @return void
*/
public function add_to_cart_ajax() {
if ( ! $this->event_enabled( 'AddToCart' ) ) {
return;
}
$integration_settins = $this->get_integration_settings();
$facebook_pixel_id = ! empty( $integration_settins[0]['pixel_id'] ) ? $integration_settins[0]['pixel_id'] : '';
?>
<script type="text/javascript">
jQuery(function($) {
$(document).on('added_to_cart', function (event, fragments, dhash, button) {
var currencySymbol = $($(button.get()[0]).closest('.product')
.find('.woocommerce-Price-currencySymbol').get()[0]).text();
var price = $(button.get()[0]).closest('.product').find('.amount').text();
var originalPrice = price.split(currencySymbol).slice(-1).pop();
wcfbq('<?php echo esc_attr( $facebook_pixel_id ) ?>', 'AddToCart', {
content_ids: [ $(button).data('product_id') ],
content_type: 'product',
value: originalPrice,
currency: '<?php echo esc_attr( get_woocommerce_currency() ) ?>'
});
});
});
</script>
<?php
}
/**
* Fire initiate checkout events
*
* @return void
*/
public function initiate_checkout() {
if ( ! $this->event_enabled( 'InitiateCheckout' ) ) {
return;
}
$product_ids = $this->get_content_ids_from_cart( WC()->cart->get_cart() );
$code = $this->build_event( 'InitiateCheckout', array(
'num_items' => WC()->cart->get_cart_contents_count(),
'content_ids' => json_encode( $product_ids ),
'content_type' => 'product',
'value' => WC()->cart->total ? WC()->cart->total : 0,
'currency' => get_woocommerce_currency()
) );
wc_enqueue_js( $code );
}
/**
* Check Out
*
* @param integer $order_id
*
* @return void
*/
public function checkout( $order_id ) {
if ( ! $this->event_enabled( 'Purchase' ) ) {
return;
}
$order = wc_get_order( $order_id );
$content_type = 'product';
$product_ids = array();
foreach ( $order->get_items() as $item ) {
$product = wc_get_product( $item['product_id'] );
$product_ids[] = $product->get_id();
if ( $product->get_type() === 'variable' ) {
$content_type = 'product_group';
}
}
$code = $this->build_event( 'Purchase', array(
'content_ids' => json_encode($product_ids),
'content_type' => $content_type,
'value' => $order->get_total() ? $order->get_total() : 0,
'currency' => get_woocommerce_currency()
) );
wc_enqueue_js( $code );
}
/**
* Registration script
*
* @return void
*/
public function registration() {
if ( ! $this->event_enabled( 'Registration' ) ) {
return;
}
$code = $this->build_event( 'CompleteRegistration' );
wc_enqueue_js( $code );
}
/**
* Return categories for products/pixel
*
* @param string $id
*
* @return array
*/
public function get_product_categories( $product_id ) {
$category_path = wp_get_post_terms( $product_id, 'product_cat', array( 'fields' => 'all' ) );
$content_category = array_values( array_map( function($item) {
return $item->name;
}, $category_path ) );
$content_category_slice = array_slice( $content_category, -1 );
$categories = empty( $content_category ) ? '""' : implode(', ', $content_category);
return array(
'name' => array_pop( $content_category_slice ),
'categories' => $categories
);
}
public function print_event_script() {
?>
<script>
(function (window, document) {
if (window.wcfbq) return;
window.wcfbq = (function () {
if (arguments.length > 0) {
var pixelId, trackType, contentObj;
if (typeof arguments[0] == 'string') pixelId = arguments[0];
if (typeof arguments[1] == 'string') trackType = arguments[1];
if (typeof arguments[2] == 'object') contentObj = arguments[2];
var params = [];
if (typeof pixelId === 'string' && pixelId.replace(/\s+/gi, '') != '' &&
typeof trackType === 'string' && trackType.replace(/\s+/gi, '')) {
params.push('id=' + encodeURIComponent(pixelId));
switch (trackType) {
case 'PageView':
case 'ViewContent':
case 'Search':
case 'AddToCart':
case 'InitiateCheckout':
case 'AddPaymentInfo':
case 'Lead':
case 'CompleteRegistration':
case 'Purchase':
case 'AddToWishlist':
params.push('ev=' + encodeURIComponent(trackType));
break;
default:
return;
}
params.push('dl=' + encodeURIComponent(document.location.href));
if (document.referrer) params.push('rl=' + encodeURIComponent(document.referrer));
params.push('if=false');
params.push('ts=' + new Date().getTime());
if (typeof contentObj == 'object') {
for (var u in contentObj) {
if (typeof contentObj[u] == 'object' && contentObj[u] instanceof Array) {
if (contentObj[u].length > 0) {
for (var y = 0; y < contentObj[u].length; y++) { contentObj[u][y] = (contentObj[u][y] + '').replace(/^\s+|\s+$/gi, '').replace(/\s+/gi, ' ').replace(/,/gi, '§'); }
params.push('cd[' + u + ']=' + encodeURIComponent(contentObj[u].join(',').replace(/^/gi, '[\'').replace(/$/gi, '\']').replace(/,/gi, '\',\'').replace(/§/gi, '\,')));
}
}
else if (typeof contentObj[u] == 'string')
params.push('cd[' + u + ']=' + encodeURIComponent(contentObj[u]));
}
}
params.push('v=' + encodeURIComponent('2.7.19'));
var imgId = new Date().getTime();
var img = document.createElement('img');
img.id = 'fb_' + imgId, img.src = 'https://www.facebook.com/tr/?' + params.join('&'), img.width = 1, img.height = 1, img.style = 'display:none;';
document.body.appendChild(img);
window.setTimeout(function () { var t = document.getElementById('fb_' + imgId); t.parentElement.removeChild(t); }, 1000);
}
}
});
})(window, document);
</script>
<?php
}
}
return new WCCT_Integration_Facebook();