File size: 7,154 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import isAkismetCheckout from 'calypso/lib/akismet/is-akismet-checkout';
import isJetpackCheckout from 'calypso/lib/jetpack/is-jetpack-checkout';
import isJetpackCloud from 'calypso/lib/jetpack/is-jetpack-cloud';
import { mayWeInitTracker, mayWeTrackByTracker } from '../tracker-buckets';
import {
	ADROLL_PAGEVIEW_PIXEL_URL_1,
	ADROLL_PAGEVIEW_PIXEL_URL_2,
	ADROLL_PURCHASE_PIXEL_URL_1,
	ADROLL_PURCHASE_PIXEL_URL_2,
	TRACKING_IDS,
} from './constants';

/**
 * Checks if the current page is a signup or checkout page
 * @returns {boolean} True if the current page is a signup or checkout page
 */
const isSignupOrCheckoutPage = () => {
	if ( typeof window === 'undefined' ) {
		return false;
	}
	const path = window.location.pathname;
	return (
		path.startsWith( '/checkout' ) || path.startsWith( '/start' ) || path.startsWith( '/setup' )
	);
};

export function setup() {
	if ( typeof window !== 'undefined' ) {
		if ( mayWeInitTracker( 'ga' ) ) {
			setupGtag();
		}

		// Facebook
		if ( mayWeInitTracker( 'facebook' ) ) {
			setupFacebookGlobal();
		}

		// Bing
		if ( mayWeInitTracker( 'bing' ) && ! window.uetq ) {
			window.uetq = [];
		}

		// Criteo
		if ( mayWeInitTracker( 'criteo' ) && ! window.criteo_q ) {
			window.criteo_q = [];
		}

		// Quantcast
		if ( mayWeInitTracker( 'quantcast' ) && ! window._qevents ) {
			window._qevents = [];
		}

		// Google Ads Gtag for wordpress.com
		if ( mayWeInitTracker( 'googleAds' ) ) {
			setupWpcomGoogleAdsGtag();
		}

		if ( mayWeInitTracker( 'floodlight' ) ) {
			setupWpcomFloodlightGtag();
		}

		// Twitter
		if ( mayWeInitTracker( 'twitter' ) ) {
			setupTwitterGlobal();
		}

		// Linkedin
		if ( mayWeInitTracker( 'linkedin' ) && isSignupOrCheckoutPage() ) {
			setupLinkedinInsight(
				isJetpackCloud() || isJetpackCheckout()
					? TRACKING_IDS.jetpackLinkedinId
					: TRACKING_IDS.wpcomLinkedinId
			);
		}

		// Quora
		if ( mayWeInitTracker( 'quora' ) ) {
			setupQuoraGlobal();
		}

		// Outbrain
		if ( mayWeInitTracker( 'outbrain' ) ) {
			setupOutbrainGlobal();
		}

		// Pinterest
		if ( mayWeInitTracker( 'pinterest' ) ) {
			setupPinterestGlobal();
		}

		// AdRoll
		if ( mayWeInitTracker( 'adroll' ) ) {
			setupAdRollGlobal();
		}

		// GTM
		if ( mayWeInitTracker( 'googleTagManager' ) ) {
			setupGtmGtag();
		}

		if ( mayWeInitTracker( 'clarity' ) ) {
			setupClarityGlobal();
		}

		// Reddit
		if ( mayWeInitTracker( 'reddit' ) ) {
			setupRedditGlobal();
		}
	}
}

setup();

/**
 * Initializes Linkedin tracking.
 */
function setupLinkedinInsight( partnerId ) {
	window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
	window._linkedin_data_partner_ids.push( partnerId );

	if ( ! window.lintrk ) {
		window.lintrk = function ( a, b ) {
			window.lintrk.q.push( [ a, b ] );
		};
		window.lintrk.q = [];
	}
}

/**
 * Initializes Quora tracking.
 * This is a rework of the obfuscated tracking code provided by Quora.
 */
function setupQuoraGlobal() {
	if ( window.qp ) {
		return;
	}

	const quoraPixel = ( window.qp = function () {
		quoraPixel.qp
			? quoraPixel.qp.apply( quoraPixel, arguments )
			: quoraPixel.queue.push( arguments );
	} );
	quoraPixel.queue = [];
}

/**
 * This sets up the globals that the Facebook event library expects.
 * More info here: https://www.facebook.com/business/help/952192354843755
 */
function setupFacebookGlobal() {
	if ( window.fbq ) {
		return;
	}

	const facebookEvents = ( window.fbq = function () {
		if ( facebookEvents.callMethod ) {
			facebookEvents.callMethod.apply( facebookEvents, arguments );
		} else {
			facebookEvents.queue.push( arguments );
		}
	} );

	if ( ! window._fbq ) {
		window._fbq = facebookEvents;
	}

	/*
	 * Disable automatic PageView pushState tracking. It causes problems when we're using multiple FB pixel IDs.
	 * The objective here is to avoid firing a PageView against multiple FB pixel IDs. By disabling pushState tracking,
	 * we can do PageView tracking for FB on our own. See: `retarget()` in this file.
	 *
	 * There's more about the `disablePushState` flag here:
	 * <https://developers.facebook.com/ads/blog/post/2017/05/29/tagging-a-single-page-application-facebook-pixel/>
	 */
	window._fbq.disablePushState = true;

	facebookEvents.push = facebookEvents;
	facebookEvents.loaded = true;
	facebookEvents.version = '2.0';
	facebookEvents.queue = [];
}

/**
 * This sets up the global `twq` function that Twitter expects.
 * More info here: https://github.com/Automattic/wp-calypso/pull/10235
 */
function setupTwitterGlobal() {
	if ( window.twq ) {
		return;
	}

	const twq = ( window.twq = function () {
		twq.exe ? twq.exe.apply( twq, arguments ) : twq.queue.push( arguments );
	} );
	twq.version = '1.1';
	twq.queue = [];
}

function setupOutbrainGlobal() {
	const api = ( window.obApi = function () {
		api.dispatch ? api.dispatch.apply( api, arguments ) : api.queue.push( arguments );
	} );
	api.version = '1.0';
	api.loaded = true;
	api.marketerId = TRACKING_IDS.outbrainAdvId;
	api.queue = [];
}

function setupPinterestGlobal() {
	if ( ! window.pintrk ) {
		window.pintrk = function () {
			window.pintrk.queue.push( Array.prototype.slice.call( arguments ) );
		};
		const n = window.pintrk;
		n.queue = [];
		n.version = '3.0';
	}
}

function setupAdRollGlobal() {
	if ( ! window.adRoll ) {
		window.adRoll = {
			trackPageview: function () {
				new window.Image().src = ADROLL_PAGEVIEW_PIXEL_URL_1;
				new window.Image().src = ADROLL_PAGEVIEW_PIXEL_URL_2;
			},
			trackPurchase: function () {
				new window.Image().src = ADROLL_PURCHASE_PIXEL_URL_1;
				new window.Image().src = ADROLL_PURCHASE_PIXEL_URL_2;
			},
		};
	}
}

/**
 * Sets up the base Reddit advertising pixel.
 */
function setupRedditGlobal() {
	window.rdt =
		window.rdt ||
		function ( ...args ) {
			window.rdt.sendEvent ? window.rdt.sendEvent( ...args ) : window.rdt.callQueue.push( args );
		};

	window.rdt.callQueue = [];
}

function setupGtag() {
	if ( window.dataLayer && window.gtag ) {
		return;
	}
	window.dataLayer = window.dataLayer || [];
	window.gtag = function () {
		window.dataLayer.push( arguments );
	};
	window.gtag( 'js', new Date() );
	window.gtag( 'consent', 'default', {
		ad_storage: 'granted',
		analytics_storage: 'granted',
		ad_user_data: 'granted',
		ad_personalization: 'granted',
	} );
}

function setupWpcomGoogleAdsGtag() {
	setupGtag();

	if ( mayWeTrackByTracker( 'googleAds' ) ) {
		window.gtag( 'config', TRACKING_IDS.wpcomGoogleAdsGtag );
	}
}

function setupWpcomFloodlightGtag() {
	setupGtag();

	if ( mayWeTrackByTracker( 'floodlight' ) ) {
		window.gtag( 'config', TRACKING_IDS.wpcomFloodlightGtag );
	}
}

function setupGtmGtag() {
	if ( isAkismetCheckout() ) {
		window.dataLayer = window.dataLayer || [];
		window.dataLayer.push( { 'gtm.start': new Date().getTime(), event: 'gtm.js' } );
	}
}

/**
 * This sets up the global window.clarity method that Clarity expects to be set before the script is loaded.
 * @returns {void}
 */
function setupClarityGlobal() {
	if ( window.clarity ) {
		return;
	}
	window.clarity =
		window.clarity ||
		function () {
			( window.clarity.q = window.clarity.q || [] ).push( arguments );
		};
}