forked from keen/keen-tracking.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser-auto-tracking.js
355 lines (321 loc) · 9.63 KB
/
browser-auto-tracking.js
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
import pkg from '../package.json';
export function initAutoTrackingCore(lib) {
return function(obj) {
const client = this;
const helpers = lib.helpers;
const utils = lib.utils;
const options = utils.extend({
ignoreDisabledFormFields: false,
ignoreFormFieldTypes: ['password'],
recordClicks: true,
recordClicksPositionPointer: false,
recordFormSubmits: true,
recordPageViews: true,
recordPageViewsOnExit: false,
recordScrollState: true,
shareUuidAcrossDomains: false,
collectIpAddress: true,
collectUuid: true,
recordElementViews: true,
catchError: undefined, // optional, function(someError) - error handler
disableCookies: false,
}, obj);
if (client.config.requestType === 'beaconAPI' && options.catchError) {
throw `You cannot use the BeaconAPI and catchError function in the same time, because BeaconAPI ignores errors. For requests with error handling - use requestType: 'fetch'`;
return;
}
if (
client.config.requestType === 'jsonp' // jsonp is deprecated, it's the default value from old keen's client
) {
if (options.catchError) {
client.config.requestType = 'fetch';
} else {
client.config.requestType = 'beaconAPI';
}
}
let now = new Date();
let allTimeOnSiteS = 0;
let allTimeOnSiteMS = 0;
if(typeof document !== 'undefined') {
let hidden;
let visibilityChange;
if (typeof document.hidden !== "undefined") {
hidden = "hidden";
visibilityChange = "visibilitychange";
} else if (typeof document.msHidden !== "undefined") {
hidden = "msHidden";
visibilityChange = "msvisibilitychange";
} else if (typeof document.webkitHidden !== "undefined") {
hidden = "webkitHidden";
visibilityChange = "webkitvisibilitychange";
}
const handleVisibilityChange = () => {
if(document[hidden]) {
allTimeOnSiteS += getSecondsSinceDate(now);
allTimeOnSiteMS += getMiliSecondsSinceDate(now);
return;
}
now = new Date();
}
if(typeof document.addEventListener !== "undefined" ||
hidden !== undefined){
document.addEventListener(visibilityChange, handleVisibilityChange, false);
}
}
let cookie;
if (!options.disableCookies) {
cookie = new utils.cookie('keen');
}
const domainName = helpers.getDomainName(window.location.hostname);
const cookieDomain = domainName && options.shareUuidAcrossDomains ? {
domain: '.' + domainName
} : {};
let uuid;
if (options.collectUuid) {
if (!options.disableCookies) {
uuid = cookie.get('uuid');
}
if (!uuid) {
uuid = helpers.getUniqueId();
if (!options.disableCookies) { // if cookies disabled, uuid will not persist across page reloads or subsequent visits
cookie.set('uuid', uuid, cookieDomain);
}
}
}
let initialReferrer;
if (!options.disableCookies) {
initialReferrer = cookie.get('initialReferrer');
}
if (!initialReferrer) {
initialReferrer = document && document.referrer || undefined;
if (!options.disableCookies) {
cookie.set('initialReferrer', initialReferrer, cookieDomain);
}
}
let scrollState = {};
if (options.recordScrollState) {
scrollState = helpers.getScrollState();
utils.listener('window').on('scroll', () => {
scrollState = helpers.getScrollState(scrollState);
});
}
const addons = [
{
name: 'keen:ua_parser',
input: {
ua_string: 'user_agent'
},
output: 'tech'
},
{
name: 'keen:url_parser',
input: {
url: 'url.full'
},
output: 'url.info'
},
{
name: 'keen:url_parser',
input: {
url: 'referrer.full'
},
output: 'referrer.info'
},
{
name: 'keen:date_time_parser',
input: {
date_time: 'keen.timestamp'
},
output: 'time.utc'
},
{
name: 'keen:date_time_parser',
input: {
date_time: 'local_time_full'
},
output: 'time.local'
}
];
let ip_address = '${keen.ip}';
addons.push({
name: 'keen:ip_to_geo',
input: {
ip: 'ip_address',
remove_ip_property: !options.collectIpAddress
},
output : 'geo'
});
client.extendEvents(function() {
const browserProfile = helpers.getBrowserProfile();
return {
tracked_by: pkg.name + '-' + pkg.version,
local_time_full: new Date().toISOString(),
user: {
uuid
},
page: {
title: document ? document.title : null,
description: browserProfile.description,
scroll_state: scrollState,
time_on_page: allTimeOnSiteS > 0 ? allTimeOnSiteS : getSecondsSinceDate(now),
time_on_page_ms: allTimeOnSiteMS > 0 ? allTimeOnSiteMS : getMiliSecondsSinceDate(now)
},
ip_address,
geo: { /* Enriched */ },
user_agent: '${keen.user_agent}',
tech: {
profile: browserProfile
/* Enriched */
},
url: {
full: window ? window.location.href : '',
info: { /* Enriched */ }
},
referrer: {
initial: initialReferrer,
full: document ? document.referrer : '',
info: { /* Enriched */ }
},
time: {
local: { /* Enriched */ },
utc: { /* Enriched */ }
},
keen: {
timestamp: new Date().toISOString(),
addons,
}
};
});
if (options.recordClicks === true) {
utils.listener('a, a *').on('click', function(e) {
const el = e.target;
let event = {
element: helpers.getDomNodeProfile(el),
local_time_full: new Date().toISOString(),
};
// pointer position tracking
if(options.recordClicksPositionPointer === true) {
const pointer = {
x_position: e.pageX,
y_position: e.pageY,
}
event = {...event, pointer};
}
if (options.catchError) {
return client
.recordEvent({
collection: 'clicks',
event
}).catch(err => {
options.catchError(err);
});
}
return client
.recordEvent({
collection: 'clicks',
event
});
});
}
if (options.recordFormSubmits === true) {
utils.listener('form').on('submit', function(e) {
const el = e.target;
const serializerOptions = {
disabled: options.ignoreDisabledFormFields,
ignoreTypes: options.ignoreFormFieldTypes
};
const event = {
form: {
action: el.action,
fields: utils.serializeForm(el, serializerOptions),
method: el.method
},
element: helpers.getDomNodeProfile(el),
local_time_full: new Date().toISOString()
};
if (options.catchError) {
return client
.recordEvent({
collection: 'form_submissions',
event
})
.catch(err => {
options.catchError(err);
});
}
return client.recordEvent({
collection: 'form_submissions',
event
});
});
}
if (options.recordPageViews === true && !options.recordPageViewsOnExit) {
if (options.catchError) {
client
.recordEvent({
collection: 'pageviews'
})
.catch(err => {
options.catchError(err);
});
} else {
client
.recordEvent({
collection: 'pageviews'
});
}
}
if (options.recordPageViewsOnExit && typeof window !== 'undefined') {
window.addEventListener('beforeunload', () => {
client.config.requestType = 'beaconAPI'; // you can run beforeunload only with beaconAPI
client.recordEvent({
collection: 'pageviews'
});
});
}
if(options.recordElementViews === true){
if(typeof IntersectionObserver !== 'undefined'){
const elementViewsOptions = {
threshold: 1.0,
}
const elementViewsCallback = (events, observer) => {
events.forEach(el => {
if(el.isIntersecting){
const event = {
element: helpers.getDomNodeProfile(el.target),
local_time_full: new Date().toISOString()
}
if (options.catchError) {
return client
.recordEvent({
collection: 'element_views',
event
}).catch(err => {
options.catchError(err);
});
}
return client
.recordEvent({
collection: 'element_views',
event
});
}
})
}
const observer = new IntersectionObserver(elementViewsCallback, elementViewsOptions);
const target = document.querySelectorAll('.track-element-view');
target.forEach(el => {
observer.observe(el);
});
client.observers.IntersectionObserver = observer;
}
}
return client;
};
}
function getSecondsSinceDate(date) {
return Math.round(getMiliSecondsSinceDate(date) / 1000);
}
function getMiliSecondsSinceDate(date) {
return new Date().getTime() - date.getTime();
}