forked from akamai/boomerang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boomerang.js
1998 lines (1705 loc) · 54.3 KB
/
boomerang.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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @copyright (c) 2011, Yahoo! Inc. All rights reserved.
* @copyright (c) 2012, Log-Normal, Inc. All rights reserved.
* @copyright (c) 2012-2016, SOASTA, Inc. All rights reserved.
* Copyrights licensed under the BSD License. See the accompanying LICENSE.txt file for terms.
*/
/**
* @namespace Boomerang
* @desc
* boomerang measures various performance characteristics of your user's browsing
* experience and beacons it back to your server.
*
* To use this you'll need a web site, lots of users and the ability to do
* something with the data you collect. How you collect the data is up to
* you, but we have a few ideas.
*/
/**
* @memberof Boomerang
* @type {TimeStamp}
* @desc
* Measure the time the script started
* This has to be global so that we don't wait for the entire
* BOOMR function to download and execute before measuring the
* time. We also declare it without `var` so that we can later
* `delete` it. This is the only way that works on Internet Explorer
*/
BOOMR_start = new Date().getTime();
/**
* @function
* @desc
* Check the value of document.domain and fix it if incorrect.
* This function is run at the top of boomerang, and then whenever
* init() is called. If boomerang is running within an iframe, this
* function checks to see if it can access elements in the parent
* iframe. If not, it will fudge around with document.domain until
* it finds a value that works.
*
* This allows site owners to change the value of document.domain at
* any point within their page's load process, and we will adapt to
* it.
* @param {string} domain - domain name as retrieved from page url
*/
function BOOMR_check_doc_domain(domain) {
/*eslint no-unused-vars:0*/
var test;
if (!window) {
return;
}
// If domain is not passed in, then this is a global call
// domain is only passed in if we call ourselves, so we
// skip the frame check at that point
if (!domain) {
// If we're running in the main window, then we don't need this
if (window.parent === window || !document.getElementById("boomr-if-as")) {
return;// true; // nothing to do
}
if (window.BOOMR && BOOMR.boomerang_frame && BOOMR.window) {
try {
// If document.domain is changed during page load (from www.blah.com to blah.com, for example),
// BOOMR.window.location.href throws "Permission Denied" in IE.
// Resetting the inner domain to match the outer makes location accessible once again
if (BOOMR.boomerang_frame.document.domain !== BOOMR.window.document.domain) {
BOOMR.boomerang_frame.document.domain = BOOMR.window.document.domain;
}
}
catch (err) {
if (!BOOMR.isCrossOriginError(err)) {
BOOMR.addError(err, "BOOMR_check_doc_domain.domainFix");
}
}
}
domain = document.domain;
}
if (domain.indexOf(".") === -1) {
return;// false; // not okay, but we did our best
}
// 1. Test without setting document.domain
try {
test = window.parent.document;
return;// test !== undefined; // all okay
}
// 2. Test with document.domain
catch (err) {
document.domain = domain;
}
try {
test = window.parent.document;
return;// test !== undefined; // all okay
}
// 3. Strip off leading part and try again
catch (err) {
domain = domain.replace(/^[\w\-]+\./, "");
}
BOOMR_check_doc_domain(domain);
}
BOOMR_check_doc_domain();
// beaconing section
// the parameter is the window
(function(w) {
var impl, boomr, d, myurl, createCustomEvent, dispatchEvent, visibilityState, visibilityChange, orig_w = w;
// This is the only block where we use document without the w. qualifier
if (w.parent !== w &&
document.getElementById("boomr-if-as") &&
document.getElementById("boomr-if-as").nodeName.toLowerCase() === "script") {
w = w.parent;
myurl = document.getElementById("boomr-if-as").src;
}
d = w.document;
// Short namespace because I don't want to keep typing BOOMERANG
if (!w.BOOMR) { w.BOOMR = {}; }
BOOMR = w.BOOMR;
// don't allow this code to be included twice
if (BOOMR.version) {
return;
}
BOOMR.version = "%boomerang_version%";
BOOMR.window = w;
BOOMR.boomerang_frame = orig_w;
if (!BOOMR.plugins) { BOOMR.plugins = {}; }
// CustomEvent proxy for IE9 & 10 from https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent
(function() {
try {
if (new w.CustomEvent("CustomEvent") !== undefined) {
createCustomEvent = function(e_name, params) {
return new w.CustomEvent(e_name, params);
};
}
}
catch (ignore) {
// empty
}
try {
if (!createCustomEvent && d.createEvent && d.createEvent("CustomEvent")) {
createCustomEvent = function(e_name, params) {
var evt = d.createEvent("CustomEvent");
params = params || { cancelable: false, bubbles: false };
evt.initCustomEvent(e_name, params.bubbles, params.cancelable, params.detail);
return evt;
};
}
}
catch (ignore) {
// empty
}
if (!createCustomEvent && d.createEventObject) {
createCustomEvent = function(e_name, params) {
var evt = d.createEventObject();
evt.type = evt.propertyName = e_name;
evt.detail = params.detail;
return evt;
};
}
if (!createCustomEvent) {
createCustomEvent = function() { return undefined; };
}
}());
/**
dispatch a custom event to the browser
@param e_name The custom event name that consumers can subscribe to
@param e_data Any data passed to subscribers of the custom event via the `event.detail` property
@param async By default, custom events are dispatched immediately.
Set to true if the event should be dispatched once the browser has finished its current
JavaScript execution.
*/
dispatchEvent = function(e_name, e_data, async) {
var ev = createCustomEvent(e_name, {"detail": e_data});
if (!ev) {
return;
}
function dispatch() {
try {
if (d.dispatchEvent) {
d.dispatchEvent(ev);
}
else if (d.fireEvent) {
d.fireEvent("onpropertychange", ev);
}
}
catch (e) {
BOOMR.debug("Error when dispatching " + e_name);
}
}
if (async) {
BOOMR.setImmediate(dispatch);
}
else {
dispatch();
}
};
// visibilitychange is useful to detect if the page loaded through prerender
// or if the page never became visible
// http://www.w3.org/TR/2011/WD-page-visibility-20110602/
// http://www.nczonline.net/blog/2011/08/09/introduction-to-the-page-visibility-api/
// https://developer.mozilla.org/en-US/docs/Web/Guide/User_experience/Using_the_Page_Visibility_API
// Set the name of the hidden property and the change event for visibility
if (typeof document.hidden !== "undefined") { // Opera 12.10 and Firefox 18 and later support
visibilityState = "visibilityState";
visibilityChange = "visibilitychange";
}
else if (typeof document.mozHidden !== "undefined") {
visibilityState = "mozVisibilityState";
visibilityChange = "mozvisibilitychange";
}
else if (typeof document.msHidden !== "undefined") {
visibilityState = "msVisibilityState";
visibilityChange = "msvisibilitychange";
}
else if (typeof document.webkitHidden !== "undefined") {
visibilityState = "webkitVisibilityState";
visibilityChange = "webkitvisibilitychange";
}
// impl is a private object not reachable from outside the BOOMR object
// users can set properties by passing in to the init() method
impl = {
// properties
beacon_url: "",
// beacon request method, either GET, POST or AUTO. AUTO will check the
// request size then use GET if the request URL is less than MAX_GET_LENGTH chars
// otherwise it will fall back to a POST request.
beacon_type: "AUTO",
// beacon authorization key value. Most systems will use the 'Authentication' keyword, but some
// some services use keys like 'X-Auth-Token' or other custom keys
beacon_auth_key: "Authorization",
// beacon authorization token. This is only needed if your are using a POST and
// the beacon requires an Authorization token to accept your data
beacon_auth_token: undefined,
// strip out everything except last two parts of hostname.
// This doesn't work well for domains that end with a country tld,
// but we allow the developer to override site_domain for that.
// You can disable all cookies by setting site_domain to a falsy value
site_domain: w.location.hostname.
replace(/.*?([^.]+\.[^.]+)\.?$/, "$1").
toLowerCase(),
//! User's ip address determined on the server. Used for the BA cookie
user_ip: "",
// Whether or not to send beacons on page load
autorun: true,
// Whether or not we've sent a page load beacon
hasSentPageLoadBeacon: false,
// cookie referrer
r: undefined,
// document.referrer
r2: undefined,
//! strip_query_string: false,
//! onloadfired: false,
//! handlers_attached: false,
events: {
"page_ready": [],
"page_unload": [],
"before_unload": [],
"dom_loaded": [],
"visibility_changed": [],
"prerender_to_visible": [],
"before_beacon": [],
"onbeacon": [],
"page_load_beacon": [],
"xhr_load": [],
"click": [],
"form_submit": [],
"onconfig": [],
"xhr_init": [],
"spa_init": [],
"spa_navigation": [],
"xhr_send": []
},
public_events: {
"before_beacon": "onBeforeBoomerangBeacon",
"onbeacon": "onBoomerangBeacon",
"onboomerangloaded": "onBoomerangLoaded"
},
listenerCallbacks: {},
vars: {},
/**
* Variable priority lists:
* -1 = first
* 1 = last
*/
varPriority: {
"-1": {},
"1": {}
},
errors: {},
disabled_plugins: {},
xb_handler: function(type) {
return function(ev) {
var target;
if (!ev) { ev = w.event; }
if (ev.target) { target = ev.target; }
else if (ev.srcElement) { target = ev.srcElement; }
if (target.nodeType === 3) {// defeat Safari bug
target = target.parentNode;
}
// don't capture events on flash objects
// because of context slowdowns in PepperFlash
if (target && target.nodeName.toUpperCase() === "OBJECT" && target.type === "application/x-shockwave-flash") {
return;
}
impl.fireEvent(type, target);
};
},
clearEvents: function() {
var eventName;
for (eventName in this.events) {
if (this.events.hasOwnProperty(eventName)) {
this.events[eventName] = [];
}
}
},
clearListeners: function() {
var type, i;
for (type in impl.listenerCallbacks) {
if (impl.listenerCallbacks.hasOwnProperty(type)) {
// remove all callbacks -- removeListener is guaranteed
// to remove the element we're calling with
while (impl.listenerCallbacks[type].length) {
BOOMR.utils.removeListener(
impl.listenerCallbacks[type][0].el,
type,
impl.listenerCallbacks[type][0].fn);
}
}
}
impl.listenerCallbacks = {};
},
fireEvent: function(e_name, data) {
var i, handler, handlers, handlersLen;
e_name = e_name.toLowerCase();
if (!this.events.hasOwnProperty(e_name)) {
return;// false;
}
if (this.public_events.hasOwnProperty(e_name)) {
dispatchEvent(this.public_events[e_name], data);
}
handlers = this.events[e_name];
// Before we fire any event listeners, let's call real_sendBeacon() to flush
// any beacon that is being held by the setImmediate.
if (e_name !== "before_beacon" && e_name !== "onbeacon") {
BOOMR.real_sendBeacon();
}
// only call handlers at the time of fireEvent (and not handlers that are
// added during this callback to avoid an infinite loop)
handlersLen = handlers.length;
for (i = 0; i < handlersLen; i++) {
try {
handler = handlers[i];
handler.fn.call(handler.scope, data, handler.cb_data);
}
catch (err) {
BOOMR.addError(err, "fireEvent." + e_name + "<" + i + ">");
}
}
// remove any 'once' handlers now that we've fired all of them
for (i = 0; i < handlersLen; i++) {
if (handlers[i].once) {
handlers.splice(i, 1);
handlersLen--;
i--;
}
}
return;// true;
},
spaNavigation: function() {
// a SPA navigation occured, force onloadfired to true
impl.onloadfired = true;
}
};
// We create a boomr object and then copy all its properties to BOOMR so that
// we don't overwrite anything additional that was added to BOOMR before this
// was called... for example, a plugin.
boomr = {
//! t_lstart: value of BOOMR_lstart set in host page
t_start: BOOMR_start,
//! t_end: value set in zzz-last-plugin.js
url: myurl,
// constants visible to the world
constants: {
// SPA beacon types
BEACON_TYPE_SPAS: ["spa", "spa_hard"],
// using 2000 here as a de facto maximum URL length based on:
// http://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers
MAX_GET_LENGTH: 2000
},
// Utility functions
utils: {
objectToString: function(o, separator, nest_level) {
var value = [], k;
if (!o || typeof o !== "object") {
return o;
}
if (separator === undefined) {
separator = "\n\t";
}
if (!nest_level) {
nest_level = 0;
}
if (Object.prototype.toString.call(o) === "[object Array]") {
for (k = 0; k < o.length; k++) {
if (nest_level > 0 && o[k] !== null && typeof o[k] === "object") {
value.push(
this.objectToString(
o[k],
separator + (separator === "\n\t" ? "\t" : ""),
nest_level - 1
)
);
}
else {
if (separator === "&") {
value.push(encodeURIComponent(o[k]));
}
else {
value.push(o[k]);
}
}
}
separator = ",";
}
else {
for (k in o) {
if (Object.prototype.hasOwnProperty.call(o, k)) {
if (nest_level > 0 && o[k] !== null && typeof o[k] === "object") {
value.push(encodeURIComponent(k) + "=" +
this.objectToString(
o[k],
separator + (separator === "\n\t" ? "\t" : ""),
nest_level - 1
)
);
}
else {
if (separator === "&") {
value.push(encodeURIComponent(k) + "=" + encodeURIComponent(o[k]));
}
else {
value.push(k + "=" + o[k]);
}
}
}
}
}
return value.join(separator);
},
getCookie: function(name) {
if (!name) {
return null;
}
name = " " + name + "=";
var i, cookies;
cookies = " " + d.cookie + ";";
if ((i = cookies.indexOf(name)) >= 0) {
i += name.length;
cookies = cookies.substring(i, cookies.indexOf(";", i)).replace(/^"/, "").replace(/"$/, "");
return cookies;
}
},
setCookie: function(name, subcookies, max_age) {
var value, nameval, savedval, c, exp;
if (!name || !impl.site_domain) {
BOOMR.debug("No cookie name or site domain: " + name + "/" + impl.site_domain);
return false;
}
value = this.objectToString(subcookies, "&");
nameval = name + "=\"" + value + "\"";
c = [nameval, "path=/", "domain=" + impl.site_domain];
if (max_age) {
exp = new Date();
exp.setTime(exp.getTime() + max_age * 1000);
exp = exp.toGMTString();
c.push("expires=" + exp);
}
if (nameval.length < 500) {
d.cookie = c.join("; ");
// confirm cookie was set (could be blocked by user's settings, etc.)
savedval = this.getCookie(name);
if (value === savedval) {
return true;
}
BOOMR.warn("Saved cookie value doesn't match what we tried to set:\n" + value + "\n" + savedval);
}
else {
BOOMR.warn("Cookie too long: " + nameval.length + " " + nameval);
}
return false;
},
getSubCookies: function(cookie) {
var cookies_a,
i, l, kv,
gotcookies = false,
cookies = {};
if (!cookie) {
return null;
}
if (typeof cookie !== "string") {
BOOMR.debug("TypeError: cookie is not a string: " + typeof cookie);
return null;
}
cookies_a = cookie.split("&");
for (i = 0, l = cookies_a.length; i < l; i++) {
kv = cookies_a[i].split("=");
if (kv[0]) {
kv.push(""); // just in case there's no value
cookies[decodeURIComponent(kv[0])] = decodeURIComponent(kv[1]);
gotcookies = true;
}
}
return gotcookies ? cookies : null;
},
removeCookie: function(name) {
return this.setCookie(name, {}, -86400);
},
/**
* Cleans up a URL by removing the query string (if configured), and
* limits the URL to the specified size.
*
* @param {string} url URL to clean
* @param {number} urlLimit Maximum size, in characters, of the URL
*
* @returns {string} Cleaned up URL
*/
cleanupURL: function(url, urlLimit) {
if (!url || Object.prototype.toString.call(url) === "[object Array]") {
return "";
}
if (impl.strip_query_string) {
url = url.replace(/\?.*/, "?qs-redacted");
}
if (typeof urlLimit !== "undefined" && url && url.length > urlLimit) {
// We need to break this URL up. Try at the query string first.
var qsStart = url.indexOf("?");
if (qsStart !== -1 && qsStart < urlLimit) {
url = url.substr(0, qsStart) + "?...";
}
else {
// No query string, just stop at the limit
url = url.substr(0, urlLimit - 3) + "...";
}
}
return url;
},
hashQueryString: function(url, stripHash) {
if (!url) {
return url;
}
if (!url.match) {
BOOMR.addError("TypeError: Not a string", "hashQueryString", typeof url);
return "";
}
if (url.match(/^\/\//)) {
url = location.protocol + url;
}
if (!url.match(/^(https?|file):/)) {
BOOMR.error("Passed in URL is invalid: " + url);
return "";
}
if (stripHash) {
url = url.replace(/#.*/, "");
}
if (!BOOMR.utils.MD5) {
return url;
}
return url.replace(/\?([^#]*)/, function(m0, m1) { return "?" + (m1.length > 10 ? BOOMR.utils.MD5(m1) : m1); });
},
pluginConfig: function(o, config, plugin_name, properties) {
var i, props = 0;
if (!config || !config[plugin_name]) {
return false;
}
for (i = 0; i < properties.length; i++) {
if (config[plugin_name][properties[i]] !== undefined) {
o[properties[i]] = config[plugin_name][properties[i]];
props++;
}
}
return (props > 0);
},
/**
* `filter` for arrays
*
* @private
* @param {Array} array The array to iterate over.
* @param {Function} predicate The function invoked per iteration.
* @returns {Array} Returns the new filtered array.
*/
arrayFilter: function(array, predicate) {
var result = [];
if (typeof array.filter === "function") {
result = array.filter(predicate);
}
else {
var index = -1,
length = array.length,
value;
while (++index < length) {
value = array[index];
if (predicate(value, index, array)) {
result[result.length] = value;
}
}
}
return result;
},
/**
* @desc
* Add a MutationObserver for a given element and terminate after `timeout`ms.
* @param el DOM element to watch for mutations
* @param config MutationObserverInit object (https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver#MutationObserverInit)
* @param timeout Number of milliseconds of no mutations after which the observer should be automatically disconnected
* If set to a falsy value, the observer will wait indefinitely for Mutations.
* @param callback Callback function to call either on timeout or if mutations are detected. The signature of this method is:
* function(mutations, callback_data)
* Where:
* mutations is the list of mutations detected by the observer or `undefined` if the observer timed out
* callback_data is the passed in `callback_data` parameter without modifications
*
* The callback function may return a falsy value to disconnect the observer after it returns, or a truthy value to
* keep watching for mutations. If the return value is numeric and greater than 0, then this will be the new timeout
* if it is boolean instead, then the timeout will not fire any more so the caller MUST call disconnect() at some point
* @param callback_data Any data to be passed to the callback function as its second parameter
* @param callback_ctx An object that represents the `this` object of the `callback` method. Leave unset the callback function is not a method of an object
*
* @returns {?object} - `null` if a MutationObserver could not be created OR
* - An object containing the observer and the timer object:
* { observer: <MutationObserver>, timer: <Timeout Timer if any> }
*
* The caller can use this to disconnect the observer at any point by calling `retval.observer.disconnect()`
* Note that the caller should first check to see if `retval.observer` is set before calling `disconnect()` as it may
* have been cleared automatically.
*/
addObserver: function(el, config, timeout, callback, callback_data, callback_ctx) {
var o = {observer: null, timer: null};
if (!BOOMR.window || !BOOMR.window.MutationObserver || !callback || !el) {
return null;
}
function done(mutations) {
var run_again = false;
if (o.timer) {
clearTimeout(o.timer);
o.timer = null;
}
if (callback) {
run_again = callback.call(callback_ctx, mutations, callback_data);
if (!run_again) {
callback = null;
}
}
if (!run_again && o.observer) {
o.observer.disconnect();
o.observer = null;
}
if (typeof run_again === "number" && run_again > 0) {
o.timer = setTimeout(done, run_again);
}
}
o.observer = new BOOMR.window.MutationObserver(done);
if (timeout) {
o.timer = setTimeout(done, o.timeout);
}
o.observer.observe(el, config);
return o;
},
addListener: function(el, type, fn) {
if (el.addEventListener) {
el.addEventListener(type, fn, false);
}
else if (el.attachEvent) {
el.attachEvent("on" + type, fn);
}
// ensure the type arry exists
impl.listenerCallbacks[type] = impl.listenerCallbacks[type] || [];
// save a reference to the target object and function
impl.listenerCallbacks[type].push({ el: el, fn: fn});
},
removeListener: function(el, type, fn) {
var i;
if (el.removeEventListener) {
el.removeEventListener(type, fn, false);
}
else if (el.detachEvent) {
el.detachEvent("on" + type, fn);
}
if (impl.listenerCallbacks.hasOwnProperty(type)) {
for (var i = 0; i < impl.listenerCallbacks[type].length; i++) {
if (fn === impl.listenerCallbacks[type][i].fn &&
el === impl.listenerCallbacks[type][i].el) {
impl.listenerCallbacks[type].splice(i, 1);
return;
}
}
}
},
pushVars: function(form, vars, prefix) {
var k, i, l = 0, input;
for (k in vars) {
if (vars.hasOwnProperty(k)) {
if (Object.prototype.toString.call(vars[k]) === "[object Array]") {
for (i = 0; i < vars[k].length; ++i) {
l += BOOMR.utils.pushVars(form, vars[k][i], k + "[" + i + "]");
}
}
else {
input = document.createElement("input");
input.type = "hidden"; // we need `hidden` to preserve newlines. see commit message for more details
input.name = (prefix ? (prefix + "[" + k + "]") : k);
input.value = (vars[k] === undefined || vars[k] === null ? "" : vars[k]);
form.appendChild(input);
l += encodeURIComponent(input.name).length + encodeURIComponent(input.value).length + 2;
}
}
}
return l;
},
isArray: function(ary) {
return Object.prototype.toString.call(ary) === "[object Array]";
},
inArray: function(val, ary) {
var i;
if (typeof val === "undefined" || typeof ary === "undefined" || !ary.length) {
return false;
}
for (i = 0; i < ary.length; i++) {
if (ary[i] === val) {
return true;
}
}
return false;
},
/**
* Get a query parameter value from a URL's query string
*
* @param {string} param Query parameter name
* @param {string|Object} [url] URL containing the query string, or a link object. Defaults to BOOMR.window.location
*
* @returns {string|null} URI decoded value or null if param isn't a query parameter
*/
getQueryParamValue: function(param, url) {
var l, params, i, kv;
if (!param) {
return null;
}
if (typeof url === "string") {
l = BOOMR.window.document.createElement("a");
l.href = url;
}
else if (typeof url === "object" && typeof url.search === "string") {
l = url;
}
else {
l = BOOMR.window.location;
}
// Now that we match, pull out all query string parameters
params = l.search.slice(1).split(/&/);
for (i = 0; i < params.length; i++) {
if (params[i]) {
kv = params[i].split("=");
if (kv.length && kv[0] === param) {
return decodeURIComponent(kv[1].replace(/\+/g, " "));
}
}
}
return null;
},
/**
* Generates a pseudo-random UUID (Version 4):
* https://en.wikipedia.org/wiki/Universally_unique_identifier
*
* @returns {string} UUID
*/
generateUUID: function() {
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(c) {
var r = Math.random() * 16 | 0;
var v = c === "x" ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
},
/**
* Generates a random ID based on the specified number of characters. Uses
* characters a-z0-9.
*
* @param {number} chars Number of characters (max 40)
* @returns {string} Random ID
*/
generateId: function(chars) {
return "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".substr(0, chars || 40).replace(/x/g, function(c) {
var c = (Math.random() || 0.01).toString(36);
// some implementations may return "0" for small numbers
if (c === "0") {
return "0";
}
else {
return c.substr(2, 1);
}
});
}
},
init: function(config) {
var i, k,
properties = [
"beacon_url",
"beacon_type",
"beacon_auth_key",
"beacon_auth_token",
"site_domain",
"user_ip",
"strip_query_string",
"secondary_beacons",
"autorun",
"site_domain"
];
BOOMR_check_doc_domain();
if (!config) {
config = {};
}
if (!this.pageId) {
// generate a random page ID for this page's lifetime
this.pageId = BOOMR.utils.generateId(8);
}
if (config.primary && impl.handlers_attached) {
return this;
}
if (config.log !== undefined) {
this.log = config.log;
}
if (!this.log) {
this.log = function(/* m,l,s */) {};
}
// Set autorun if in config right now, as plugins that listen for page_ready
// event may fire when they .init() if onload has already fired, and whether
// or not we should fire page_ready depends on config.autorun.
if (typeof config.autorun !== "undefined") {
impl.autorun = config.autorun;
}
for (k in this.plugins) {
if (this.plugins.hasOwnProperty(k)) {
// config[plugin].enabled has been set to false
if (config[k] &&
config[k].hasOwnProperty("enabled") &&
config[k].enabled === false) {
impl.disabled_plugins[k] = 1;
if (typeof this.plugins[k].disable === "function") {
this.plugins[k].disable();
}
continue;
}
// plugin was previously disabled
if (impl.disabled_plugins[k]) {
// and has not been explicitly re-enabled
if (!config[k] ||
!config[k].hasOwnProperty("enabled") ||
config[k].enabled !== true) {
continue;
}
if (typeof this.plugins[k].enable === "function") {
this.plugins[k].enable();
}
// plugin is now enabled
delete impl.disabled_plugins[k];
}
// plugin exists and has an init method