File size: 3,756 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 |
import { refreshCountryCodeCookieGdpr } from 'calypso/lib/analytics/utils';
import { mayWeTrackByTracker } from '../tracker-buckets';
import {
debug,
TRACKING_IDS,
ICON_MEDIA_RETARGETING_PIXEL_URL,
YAHOO_GEMINI_AUDIENCE_BUILDING_PIXEL_URL,
} from './constants';
import { circularReferenceSafeJSONStringify } from './debug';
import { recordPageViewInFloodlight } from './floodlight';
import { loadTrackingScripts } from './load-tracking-scripts';
// Ensure setup has run.
import './setup';
// Retargeting events are fired once every `retargetingPeriod` seconds.
const retargetingPeriod = 60 * 60 * 24;
// Last time the retarget() function effectively fired (Unix time in seconds).
let lastRetargetTime = 0;
/**
* Fire tracking events for the purposes of retargeting on all Calypso pages
* @param {string} urlPath The URL path we should report to the ad-trackers which may be different from the actual one
* for privacy reasons.
* @returns {void}
*/
export async function retarget( urlPath ) {
await refreshCountryCodeCookieGdpr();
await loadTrackingScripts();
debug( 'retarget:', urlPath );
// Non rate limited retargeting (main trackers)
// Quantcast
if ( mayWeTrackByTracker( 'quantcast' ) ) {
const params = {
qacct: TRACKING_IDS.quantcast,
event: 'refresh',
};
debug( 'retarget: [Quantcast]', params );
window._qevents.push( params );
}
// Facebook
if ( mayWeTrackByTracker( 'facebook' ) ) {
const params = [ 'trackSingle', TRACKING_IDS.facebookInit, 'PageView' ];
debug( 'retarget: [Facebook]', params );
window.fbq( ...params );
}
// Bing
if ( mayWeTrackByTracker( 'bing' ) ) {
debug( 'retarget: [Bing]' );
window.uetq.push( 'pageLoad' );
}
// Wordpress.com Google Ads Gtag
if ( mayWeTrackByTracker( 'googleAds' ) ) {
const params = [ 'config', TRACKING_IDS.wpcomGoogleAdsGtag, { page_path: urlPath } ];
debug( 'retarget: [Google Ads] WPCom', params );
window.gtag( ...params );
}
// Floodlight
recordPageViewInFloodlight( urlPath );
// Pinterest
if ( mayWeTrackByTracker( 'pinterest' ) ) {
debug( 'retarget: [Pinterest]' );
window.pintrk( 'page' );
}
// AdRoll
if ( mayWeTrackByTracker( 'adroll' ) ) {
debug( 'retarget: [AdRoll]' );
window.adRoll.trackPageview();
}
// Reddit
if ( mayWeTrackByTracker( 'reddit' ) ) {
debug( 'retarget: [Reddit]' );
window.rdt( 'track', 'PageVisit' );
}
// Rate limited retargeting (secondary trackers)
const nowTimestamp = Date.now() / 1000;
if ( nowTimestamp >= lastRetargetTime + retargetingPeriod ) {
lastRetargetTime = nowTimestamp;
// Outbrain
if ( mayWeTrackByTracker( 'outbrain' ) ) {
const params = [ 'track', 'PAGE_VIEW' ];
debug( 'retarget: [Outbrain] [rate limited]', params );
window.obApi( ...params );
}
// Icon Media
if ( mayWeTrackByTracker( 'iconMedia' ) ) {
const params = ICON_MEDIA_RETARGETING_PIXEL_URL;
debug( 'retarget: [Icon Media] [rate limited]', params );
new window.Image().src = params;
}
// Twitter
if ( mayWeTrackByTracker( 'twitter' ) ) {
const params = [ 'event', 'tw-nvzbs-odfz9' ];
debug( 'retarget: [Twitter] [rate limited]', params );
window.twq( ...params );
}
// Yahoo Gemini
if ( mayWeTrackByTracker( 'gemini' ) ) {
const params = YAHOO_GEMINI_AUDIENCE_BUILDING_PIXEL_URL;
debug( 'retarget: [Yahoo Gemini] [rate limited]', params );
new window.Image().src = params;
}
// Quora
if ( mayWeTrackByTracker( 'quora' ) ) {
const params = [ 'track', 'ViewContent' ];
debug( 'retarget: [Quora] [rate limited]', params );
window.qp( ...params );
}
}
// uses JSON.stringify for consistency with recordOrder()
debug( 'retarget: dataLayer:', circularReferenceSafeJSONStringify( window.dataLayer, 2 ) );
}
|