|
|
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'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'facebook' ) ) { |
|
|
setupFacebookGlobal(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'bing' ) && ! window.uetq ) { |
|
|
window.uetq = []; |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'criteo' ) && ! window.criteo_q ) { |
|
|
window.criteo_q = []; |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'quantcast' ) && ! window._qevents ) { |
|
|
window._qevents = []; |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'googleAds' ) ) { |
|
|
setupWpcomGoogleAdsGtag(); |
|
|
} |
|
|
|
|
|
if ( mayWeInitTracker( 'floodlight' ) ) { |
|
|
setupWpcomFloodlightGtag(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'twitter' ) ) { |
|
|
setupTwitterGlobal(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'linkedin' ) && isSignupOrCheckoutPage() ) { |
|
|
setupLinkedinInsight( |
|
|
isJetpackCloud() || isJetpackCheckout() |
|
|
? TRACKING_IDS.jetpackLinkedinId |
|
|
: TRACKING_IDS.wpcomLinkedinId |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'quora' ) ) { |
|
|
setupQuoraGlobal(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'outbrain' ) ) { |
|
|
setupOutbrainGlobal(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'pinterest' ) ) { |
|
|
setupPinterestGlobal(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'adroll' ) ) { |
|
|
setupAdRollGlobal(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'googleTagManager' ) ) { |
|
|
setupGtmGtag(); |
|
|
} |
|
|
|
|
|
if ( mayWeInitTracker( 'clarity' ) ) { |
|
|
setupClarityGlobal(); |
|
|
} |
|
|
|
|
|
|
|
|
if ( mayWeInitTracker( 'reddit' ) ) { |
|
|
setupRedditGlobal(); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
setup(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 = []; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setupQuoraGlobal() { |
|
|
if ( window.qp ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
const quoraPixel = ( window.qp = function () { |
|
|
quoraPixel.qp |
|
|
? quoraPixel.qp.apply( quoraPixel, arguments ) |
|
|
: quoraPixel.queue.push( arguments ); |
|
|
} ); |
|
|
quoraPixel.queue = []; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window._fbq.disablePushState = true; |
|
|
|
|
|
facebookEvents.push = facebookEvents; |
|
|
facebookEvents.loaded = true; |
|
|
facebookEvents.version = '2.0'; |
|
|
facebookEvents.queue = []; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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; |
|
|
}, |
|
|
}; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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' } ); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setupClarityGlobal() { |
|
|
if ( window.clarity ) { |
|
|
return; |
|
|
} |
|
|
window.clarity = |
|
|
window.clarity || |
|
|
function () { |
|
|
( window.clarity.q = window.clarity.q || [] ).push( arguments ); |
|
|
}; |
|
|
} |
|
|
|