| | |
| |
|
| | import { EventEmitter } from 'events'; |
| | import { loadScript } from '@automattic/load-script'; |
| | import cookie from 'cookie'; |
| | import { getPageViewParams } from './page-view-params'; |
| | import { getCurrentUser, setCurrentUser } from './utils/current-user'; |
| | import debug from './utils/debug'; |
| | import getDoNotTrack from './utils/do-not-track'; |
| | import getTrackingPrefs from './utils/get-tracking-prefs'; |
| |
|
| | declare global { |
| | interface Window { |
| | _tkq: Array< Array< any > >; |
| | } |
| | } |
| | declare const window: undefined | ( Window & { BUILD_TIMESTAMP?: number } ); |
| |
|
| | |
| | |
| | |
| | |
| | const TRACKS_SPECIAL_PROPS_NAMES = [ 'geo', 'message', 'request', 'geocity', 'ip' ]; |
| | const ALLOWED_EVENT_SOURCES = [ 'calypso', 'jetpack', 'remotedatablocks', 'wpcom_dsp_widget' ]; |
| | const EVENT_NAME_EXCEPTIONS = [ |
| | 'a8c_cookie_banner_ok', |
| | 'a8c_cookie_banner_view', |
| | 'a8c_ccpa_optout', |
| | |
| | 'wcadmin_storeprofiler_payment_login', |
| | 'wcadmin_storeprofiler_payment_create_account', |
| | |
| | 'calypso_checkout_switch_to_p_24', |
| | 'calypso_checkout_composite_p24_submit_clicked', |
| | |
| | 'wpcom_launchbar_button_click', |
| | |
| | 'wpcom_support_free_migration_request_click', |
| | ]; |
| |
|
| | let _superProps: any; |
| | let _loadTracksResult = Promise.resolve(); |
| |
|
| | if ( typeof document !== 'undefined' ) { |
| | _loadTracksResult = loadScript( '//stats.wp.com/w.js?67' ); |
| | } |
| |
|
| | function createRandomId( randomBytesLength = 9 ): string { |
| | if ( typeof window === 'undefined' ) { |
| | return ''; |
| | } |
| | |
| | |
| | let randomBytes: any; |
| |
|
| | if ( window.crypto && window.crypto.getRandomValues ) { |
| | randomBytes = new Uint8Array( randomBytesLength ); |
| | window.crypto.getRandomValues( randomBytes ); |
| | } else { |
| | randomBytes = Array( randomBytesLength ) |
| | .fill( 0 ) |
| | .map( () => Math.floor( Math.random() * 256 ) ); |
| | } |
| |
|
| | return window.btoa( String.fromCharCode( ...randomBytes ) ); |
| | } |
| |
|
| | function getUrlParameter( name: string ): string { |
| | if ( typeof window === 'undefined' ) { |
| | return ''; |
| | } |
| | name = name.replace( /[[]/g, '\\[' ).replace( /[\]]/g, '\\]' ); |
| | const regex = new RegExp( '[\\?&]' + name + '=([^&#]*)' ); |
| | const results = regex.exec( window.location.search ); |
| | return results === null ? '' : decodeURIComponent( results[ 1 ].replace( /\+/g, ' ' ) ); |
| | } |
| |
|
| | function checkForBlockedTracks(): Promise< void > { |
| | |
| | |
| | |
| | return _loadTracksResult.catch( () => { |
| | let _ut; |
| | let _ui; |
| | const currentUser = getCurrentUser(); |
| | if ( currentUser && currentUser.ID ) { |
| | _ut = 'wpcom:user_id'; |
| | _ui = currentUser.ID; |
| | } else { |
| | _ut = getUrlParameter( '_ut' ) || 'anon'; |
| | _ui = getUrlParameter( '_ui' ); |
| | if ( ! _ui ) { |
| | const cookies = cookie.parse( document.cookie ); |
| | if ( cookies.tk_ai ) { |
| | _ui = cookies.tk_ai; |
| | } else { |
| | const randomIdLength = 18; |
| | _ui = createRandomId( randomIdLength ); |
| | document.cookie = cookie.serialize( 'tk_ai', _ui ); |
| | } |
| | } |
| | } |
| |
|
| | debug( 'Loading /nostats.js', { _ut, _ui } ); |
| | return loadScript( |
| | '/nostats.js?_ut=' + encodeURIComponent( _ut ) + '&_ui=' + encodeURIComponent( _ui ) |
| | ); |
| | } ); |
| | } |
| |
|
| | |
| | |
| | |
| | export function getTracksLoadPromise() { |
| | return _loadTracksResult; |
| | } |
| |
|
| | export function pushEventToTracksQueue( args: Array< any > ) { |
| | if ( typeof window !== 'undefined' ) { |
| | window._tkq = window._tkq || []; |
| | window._tkq.push( args ); |
| | } |
| | } |
| |
|
| | export const analyticsEvents: EventEmitter = new EventEmitter(); |
| |
|
| | |
| | |
| | |
| | |
| | export function getTracksAnonymousUserId(): string { |
| | const cookies = cookie.parse( document.cookie ); |
| |
|
| | return cookies.tk_ai; |
| | } |
| |
|
| | export function initializeAnalytics( |
| | currentUser: any | undefined, |
| | superProps: any |
| | ): Promise< void > { |
| | |
| | if ( 'function' === typeof superProps ) { |
| | debug( 'superProps', superProps ); |
| | _superProps = superProps; |
| | } |
| |
|
| | |
| | if ( 'object' === typeof currentUser ) { |
| | debug( 'identifyUser', currentUser ); |
| | identifyUser( currentUser ); |
| | } |
| |
|
| | const tracksLinkerId = getUrlParameter( '_tkl' ); |
| | if ( tracksLinkerId && tracksLinkerId !== getTracksAnonymousUserId() ) { |
| | |
| | signalUserFromAnotherProduct( tracksLinkerId, 'anon' ); |
| | } |
| |
|
| | |
| | debug( 'checkForBlockedTracks' ); |
| | return checkForBlockedTracks(); |
| | } |
| |
|
| | export function identifyUser( userData: any ): any { |
| | |
| | if ( 'object' !== typeof userData ) { |
| | debug( 'Invalid userData.', userData ); |
| | return; |
| | } |
| |
|
| | |
| | const currentUser = setCurrentUser( userData ); |
| | if ( ! currentUser ) { |
| | debug( 'Insufficient userData.', userData ); |
| | return; |
| | } |
| |
|
| | |
| | debug( 'Tracks identifyUser.', currentUser ); |
| | pushEventToTracksQueue( [ 'identifyUser', currentUser.ID, currentUser.username ] ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | export function signalUserFromAnotherProduct( userId: string, userIdType: string ): any { |
| | debug( 'Tracks signalUserFromAnotherProduct.', userId, userIdType ); |
| | pushEventToTracksQueue( [ 'signalAliasUserGeneral', userId, userIdType ] ); |
| | } |
| |
|
| | export function recordTracksEvent( eventName: string, eventProperties?: any ) { |
| | eventProperties = eventProperties || {}; |
| |
|
| | const currentUser = getCurrentUser(); |
| |
|
| | if ( currentUser?.localeSlug ) { |
| | eventProperties[ 'user_lang' ] = currentUser.localeSlug; |
| | } |
| |
|
| | const trackingPrefs = getTrackingPrefs(); |
| | if ( ! trackingPrefs?.buckets.analytics ) { |
| | debug( |
| | 'Analytics has been disabled - Ignoring event "%s" with actual props %o', |
| | eventName, |
| | eventProperties |
| | ); |
| | return; |
| | } |
| |
|
| | if ( process.env.NODE_ENV !== 'production' && typeof console !== 'undefined' ) { |
| | if ( ! isValidEventName( eventName ) && ! EVENT_NAME_EXCEPTIONS.includes( eventName ) ) { |
| | |
| | console.error( |
| | 'Tracks: Event `%s` will be ignored because it does not match with the naming convention and is ' + |
| | 'not a listed exception. Please use a compliant event name.', |
| | eventName |
| | ); |
| | } |
| |
|
| | for ( const key in eventProperties ) { |
| | if ( eventProperties[ key ] !== null && typeof eventProperties[ key ] === 'object' ) { |
| | const errorMessage = |
| | `Tracks: Unable to record event "${ eventName }" because nested ` + |
| | `properties are not supported by Tracks. Check '${ key }' on`; |
| | |
| | console.error( errorMessage, eventProperties ); |
| | return; |
| | } |
| |
|
| | if ( ! /^[a-z_][a-z0-9_]*$/.test( key ) ) { |
| | |
| | console.error( |
| | 'Tracks: Event `%s` will be rejected because property name `%s` does not match /^[a-z_][a-z0-9_]*$/. ' + |
| | 'Please use a compliant property name.', |
| | eventName, |
| | key |
| | ); |
| | } |
| |
|
| | if ( TRACKS_SPECIAL_PROPS_NAMES.indexOf( key ) !== -1 ) { |
| | |
| | console.error( |
| | "Tracks: Event property `%s` will be overwritten because it uses one of Tracks' internal prop name: %s. " + |
| | 'Please use another property name.', |
| | key, |
| | TRACKS_SPECIAL_PROPS_NAMES.join( ', ' ) |
| | ); |
| | } |
| | } |
| | } |
| |
|
| | debug( 'Record event "%s" called with props %o', eventName, eventProperties ); |
| |
|
| | if ( ! isValidEventSource( eventName ) && ! EVENT_NAME_EXCEPTIONS.includes( eventName ) ) { |
| | debug( '- Event name must be prefixed by a known source or added to `EVENT_NAME_EXCEPTIONS`' ); |
| | return; |
| | } |
| |
|
| | if ( _superProps ) { |
| | const superProperties = _superProps( eventProperties ); |
| | eventProperties = { ...eventProperties, ...superProperties }; |
| | } |
| |
|
| | |
| | |
| | eventProperties = Object.fromEntries( |
| | Object.entries( eventProperties ).filter( ( [ , val ] ) => typeof val !== 'undefined' ) |
| | ); |
| |
|
| | debug( 'Recording event "%s" with actual props %o', eventName, eventProperties ); |
| |
|
| | pushEventToTracksQueue( [ 'recordEvent', eventName, eventProperties ] ); |
| | analyticsEvents.emit( 'record-event', eventName, eventProperties ); |
| | } |
| |
|
| | |
| | |
| | |
| | function isValidEventName( eventName: string ): boolean { |
| | return ALLOWED_EVENT_SOURCES.some( ( eventSource: string ): boolean => |
| | new RegExp( `^${ eventSource }(?:_[a-z0-9]+){2,}$` ).test( eventName ) |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | function isValidEventSource( eventName: string ): boolean { |
| | return ALLOWED_EVENT_SOURCES.some( ( eventSource: string ): boolean => |
| | eventName.startsWith( `${ eventSource }_` ) |
| | ); |
| | } |
| |
|
| | export function recordTracksPageView( urlPath: string, params: any ) { |
| | debug( 'Recording pageview in tracks.', urlPath, params ); |
| |
|
| | let eventProperties = { |
| | do_not_track: getDoNotTrack() ? 1 : 0, |
| | path: urlPath, |
| | }; |
| |
|
| | |
| | const build_timestamp = typeof window !== 'undefined' && window.BUILD_TIMESTAMP; |
| | if ( build_timestamp ) { |
| | eventProperties = Object.assign( eventProperties, { build_timestamp } ); |
| | } |
| |
|
| | |
| | if ( params ) { |
| | eventProperties = Object.assign( eventProperties, params ); |
| | } |
| |
|
| | |
| | |
| | if ( typeof window !== 'undefined' && window.location ) { |
| | const urlParams = new URL( window.location.href ).searchParams; |
| |
|
| | |
| | const utmParamEntries = |
| | urlParams && |
| | Array.from( urlParams.entries() ).filter( ( [ key ] ) => key.startsWith( 'utm_' ) ); |
| | const utmParams = utmParamEntries ? Object.fromEntries( utmParamEntries ) : {}; |
| |
|
| | |
| | const refParam = urlParams && urlParams.get( 'ref' ) ? { ref: urlParams.get( 'ref' ) } : {}; |
| |
|
| | eventProperties = Object.assign( eventProperties, { ...utmParams, ...refParam } ); |
| | } |
| |
|
| | recordTracksEvent( 'calypso_page_view', eventProperties ); |
| | } |
| |
|
| | export function recordTracksPageViewWithPageParams( urlPath: string, params?: any ) { |
| | const pageViewParams = getPageViewParams( urlPath ); |
| | recordTracksPageView( urlPath, Object.assign( params || {}, pageViewParams ) ); |
| | } |
| |
|
| | export function getGenericSuperPropsGetter( config: ( key: string ) => string ) { |
| | return () => { |
| | const superProps = { |
| | environment: process.env.NODE_ENV, |
| | environment_id: config( 'env_id' ), |
| | site_id_label: 'wpcom', |
| | client: config( 'client_slug' ), |
| | }; |
| |
|
| | if ( typeof window !== 'undefined' ) { |
| | Object.assign( superProps, { |
| | vph: window.innerHeight, |
| | vpw: window.innerWidth, |
| | } ); |
| | } |
| |
|
| | return superProps; |
| | }; |
| | } |
| |
|