mixpanel-browser 2.60.0 → 2.61.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/mixpanel-core.cjs.js +398 -128
- package/dist/mixpanel-recorder.js +670 -224
- package/dist/mixpanel-recorder.min.js +11 -11
- package/dist/mixpanel-recorder.min.js.map +1 -1
- package/dist/mixpanel-with-async-recorder.cjs.js +398 -128
- package/dist/mixpanel.amd.js +786 -242
- package/dist/mixpanel.cjs.js +786 -242
- package/dist/mixpanel.globals.js +398 -128
- package/dist/mixpanel.min.js +143 -138
- package/dist/mixpanel.module.js +786 -242
- package/dist/mixpanel.umd.js +786 -242
- package/package.json +2 -1
- package/src/config.js +1 -1
- package/src/mixpanel-core.js +119 -19
- package/src/recorder/index.js +1 -70
- package/src/recorder/recorder.js +137 -0
- package/src/recorder/recording-registry.js +98 -0
- package/src/recorder/session-recording.js +162 -43
- package/src/recorder/utils.js +12 -0
- package/src/request-batcher.js +6 -2
- package/src/request-queue.js +45 -39
- package/src/shared-lock.js +1 -1
- package/src/storage/indexed-db.js +127 -0
- package/src/storage/local-storage.js +4 -8
- package/src/storage/wrapper.js +3 -3
- package/src/utils.js +99 -61
package/dist/mixpanel.umd.js
CHANGED
|
@@ -4,6 +4,28 @@
|
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.mixpanel = factory());
|
|
5
5
|
})(this, (function () { 'use strict';
|
|
6
6
|
|
|
7
|
+
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
|
|
8
|
+
var win;
|
|
9
|
+
if (typeof(window) === 'undefined') {
|
|
10
|
+
var loc = {
|
|
11
|
+
hostname: ''
|
|
12
|
+
};
|
|
13
|
+
win = {
|
|
14
|
+
navigator: { userAgent: '', onLine: true },
|
|
15
|
+
document: {
|
|
16
|
+
createElement: function() { return {}; },
|
|
17
|
+
location: loc,
|
|
18
|
+
referrer: ''
|
|
19
|
+
},
|
|
20
|
+
screen: { width: 0, height: 0 },
|
|
21
|
+
location: loc,
|
|
22
|
+
addEventListener: function() {},
|
|
23
|
+
removeEventListener: function() {}
|
|
24
|
+
};
|
|
25
|
+
} else {
|
|
26
|
+
win = window;
|
|
27
|
+
}
|
|
28
|
+
|
|
7
29
|
var NodeType;
|
|
8
30
|
(function (NodeType) {
|
|
9
31
|
NodeType[NodeType["Document"] = 0] = "Document";
|
|
@@ -4480,64 +4502,6 @@
|
|
|
4480
4502
|
};
|
|
4481
4503
|
record.mirror = mirror;
|
|
4482
4504
|
|
|
4483
|
-
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
4484
|
-
EventType2[EventType2["DomContentLoaded"] = 0] = "DomContentLoaded";
|
|
4485
|
-
EventType2[EventType2["Load"] = 1] = "Load";
|
|
4486
|
-
EventType2[EventType2["FullSnapshot"] = 2] = "FullSnapshot";
|
|
4487
|
-
EventType2[EventType2["IncrementalSnapshot"] = 3] = "IncrementalSnapshot";
|
|
4488
|
-
EventType2[EventType2["Meta"] = 4] = "Meta";
|
|
4489
|
-
EventType2[EventType2["Custom"] = 5] = "Custom";
|
|
4490
|
-
EventType2[EventType2["Plugin"] = 6] = "Plugin";
|
|
4491
|
-
return EventType2;
|
|
4492
|
-
})(EventType || {});
|
|
4493
|
-
var IncrementalSource = /* @__PURE__ */ ((IncrementalSource2) => {
|
|
4494
|
-
IncrementalSource2[IncrementalSource2["Mutation"] = 0] = "Mutation";
|
|
4495
|
-
IncrementalSource2[IncrementalSource2["MouseMove"] = 1] = "MouseMove";
|
|
4496
|
-
IncrementalSource2[IncrementalSource2["MouseInteraction"] = 2] = "MouseInteraction";
|
|
4497
|
-
IncrementalSource2[IncrementalSource2["Scroll"] = 3] = "Scroll";
|
|
4498
|
-
IncrementalSource2[IncrementalSource2["ViewportResize"] = 4] = "ViewportResize";
|
|
4499
|
-
IncrementalSource2[IncrementalSource2["Input"] = 5] = "Input";
|
|
4500
|
-
IncrementalSource2[IncrementalSource2["TouchMove"] = 6] = "TouchMove";
|
|
4501
|
-
IncrementalSource2[IncrementalSource2["MediaInteraction"] = 7] = "MediaInteraction";
|
|
4502
|
-
IncrementalSource2[IncrementalSource2["StyleSheetRule"] = 8] = "StyleSheetRule";
|
|
4503
|
-
IncrementalSource2[IncrementalSource2["CanvasMutation"] = 9] = "CanvasMutation";
|
|
4504
|
-
IncrementalSource2[IncrementalSource2["Font"] = 10] = "Font";
|
|
4505
|
-
IncrementalSource2[IncrementalSource2["Log"] = 11] = "Log";
|
|
4506
|
-
IncrementalSource2[IncrementalSource2["Drag"] = 12] = "Drag";
|
|
4507
|
-
IncrementalSource2[IncrementalSource2["StyleDeclaration"] = 13] = "StyleDeclaration";
|
|
4508
|
-
IncrementalSource2[IncrementalSource2["Selection"] = 14] = "Selection";
|
|
4509
|
-
IncrementalSource2[IncrementalSource2["AdoptedStyleSheet"] = 15] = "AdoptedStyleSheet";
|
|
4510
|
-
IncrementalSource2[IncrementalSource2["CustomElement"] = 16] = "CustomElement";
|
|
4511
|
-
return IncrementalSource2;
|
|
4512
|
-
})(IncrementalSource || {});
|
|
4513
|
-
|
|
4514
|
-
var Config = {
|
|
4515
|
-
DEBUG: false,
|
|
4516
|
-
LIB_VERSION: '2.60.0'
|
|
4517
|
-
};
|
|
4518
|
-
|
|
4519
|
-
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
|
|
4520
|
-
var win;
|
|
4521
|
-
if (typeof(window) === 'undefined') {
|
|
4522
|
-
var loc = {
|
|
4523
|
-
hostname: ''
|
|
4524
|
-
};
|
|
4525
|
-
win = {
|
|
4526
|
-
navigator: { userAgent: '', onLine: true },
|
|
4527
|
-
document: {
|
|
4528
|
-
createElement: function() { return {}; },
|
|
4529
|
-
location: loc,
|
|
4530
|
-
referrer: ''
|
|
4531
|
-
},
|
|
4532
|
-
screen: { width: 0, height: 0 },
|
|
4533
|
-
location: loc,
|
|
4534
|
-
addEventListener: function() {},
|
|
4535
|
-
removeEventListener: function() {}
|
|
4536
|
-
};
|
|
4537
|
-
} else {
|
|
4538
|
-
win = window;
|
|
4539
|
-
}
|
|
4540
|
-
|
|
4541
4505
|
var setImmediate = win['setImmediate'];
|
|
4542
4506
|
var builtInProp, cycle, schedulingQueue,
|
|
4543
4507
|
ToString = Object.prototype.toString,
|
|
@@ -4900,6 +4864,42 @@
|
|
|
4900
4864
|
PromisePolyfill = NpoPromise;
|
|
4901
4865
|
}
|
|
4902
4866
|
|
|
4867
|
+
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
4868
|
+
EventType2[EventType2["DomContentLoaded"] = 0] = "DomContentLoaded";
|
|
4869
|
+
EventType2[EventType2["Load"] = 1] = "Load";
|
|
4870
|
+
EventType2[EventType2["FullSnapshot"] = 2] = "FullSnapshot";
|
|
4871
|
+
EventType2[EventType2["IncrementalSnapshot"] = 3] = "IncrementalSnapshot";
|
|
4872
|
+
EventType2[EventType2["Meta"] = 4] = "Meta";
|
|
4873
|
+
EventType2[EventType2["Custom"] = 5] = "Custom";
|
|
4874
|
+
EventType2[EventType2["Plugin"] = 6] = "Plugin";
|
|
4875
|
+
return EventType2;
|
|
4876
|
+
})(EventType || {});
|
|
4877
|
+
var IncrementalSource = /* @__PURE__ */ ((IncrementalSource2) => {
|
|
4878
|
+
IncrementalSource2[IncrementalSource2["Mutation"] = 0] = "Mutation";
|
|
4879
|
+
IncrementalSource2[IncrementalSource2["MouseMove"] = 1] = "MouseMove";
|
|
4880
|
+
IncrementalSource2[IncrementalSource2["MouseInteraction"] = 2] = "MouseInteraction";
|
|
4881
|
+
IncrementalSource2[IncrementalSource2["Scroll"] = 3] = "Scroll";
|
|
4882
|
+
IncrementalSource2[IncrementalSource2["ViewportResize"] = 4] = "ViewportResize";
|
|
4883
|
+
IncrementalSource2[IncrementalSource2["Input"] = 5] = "Input";
|
|
4884
|
+
IncrementalSource2[IncrementalSource2["TouchMove"] = 6] = "TouchMove";
|
|
4885
|
+
IncrementalSource2[IncrementalSource2["MediaInteraction"] = 7] = "MediaInteraction";
|
|
4886
|
+
IncrementalSource2[IncrementalSource2["StyleSheetRule"] = 8] = "StyleSheetRule";
|
|
4887
|
+
IncrementalSource2[IncrementalSource2["CanvasMutation"] = 9] = "CanvasMutation";
|
|
4888
|
+
IncrementalSource2[IncrementalSource2["Font"] = 10] = "Font";
|
|
4889
|
+
IncrementalSource2[IncrementalSource2["Log"] = 11] = "Log";
|
|
4890
|
+
IncrementalSource2[IncrementalSource2["Drag"] = 12] = "Drag";
|
|
4891
|
+
IncrementalSource2[IncrementalSource2["StyleDeclaration"] = 13] = "StyleDeclaration";
|
|
4892
|
+
IncrementalSource2[IncrementalSource2["Selection"] = 14] = "Selection";
|
|
4893
|
+
IncrementalSource2[IncrementalSource2["AdoptedStyleSheet"] = 15] = "AdoptedStyleSheet";
|
|
4894
|
+
IncrementalSource2[IncrementalSource2["CustomElement"] = 16] = "CustomElement";
|
|
4895
|
+
return IncrementalSource2;
|
|
4896
|
+
})(IncrementalSource || {});
|
|
4897
|
+
|
|
4898
|
+
var Config = {
|
|
4899
|
+
DEBUG: false,
|
|
4900
|
+
LIB_VERSION: '2.61.0'
|
|
4901
|
+
};
|
|
4902
|
+
|
|
4903
4903
|
/* eslint camelcase: "off", eqeqeq: "off" */
|
|
4904
4904
|
|
|
4905
4905
|
// Maximum allowed session recording length
|
|
@@ -5979,15 +5979,9 @@
|
|
|
5979
5979
|
}
|
|
5980
5980
|
};
|
|
5981
5981
|
|
|
5982
|
-
var
|
|
5983
|
-
var localStorageSupported = function(storage, forceCheck) {
|
|
5984
|
-
if (_localStorageSupported !== null && !forceCheck) {
|
|
5985
|
-
return _localStorageSupported;
|
|
5986
|
-
}
|
|
5987
|
-
|
|
5982
|
+
var _testStorageSupported = function (storage) {
|
|
5988
5983
|
var supported = true;
|
|
5989
5984
|
try {
|
|
5990
|
-
storage = storage || win.localStorage;
|
|
5991
5985
|
var key = '__mplss_' + cheap_guid(8),
|
|
5992
5986
|
val = 'xyz';
|
|
5993
5987
|
storage.setItem(key, val);
|
|
@@ -5998,59 +5992,74 @@
|
|
|
5998
5992
|
} catch (err) {
|
|
5999
5993
|
supported = false;
|
|
6000
5994
|
}
|
|
6001
|
-
|
|
6002
|
-
_localStorageSupported = supported;
|
|
6003
5995
|
return supported;
|
|
6004
5996
|
};
|
|
6005
5997
|
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
|
|
6012
|
-
|
|
6013
|
-
return supported;
|
|
6014
|
-
},
|
|
5998
|
+
var _localStorageSupported = null;
|
|
5999
|
+
var localStorageSupported = function(storage, forceCheck) {
|
|
6000
|
+
if (_localStorageSupported !== null && !forceCheck) {
|
|
6001
|
+
return _localStorageSupported;
|
|
6002
|
+
}
|
|
6003
|
+
return _localStorageSupported = _testStorageSupported(storage || win.localStorage);
|
|
6004
|
+
};
|
|
6015
6005
|
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6006
|
+
var _sessionStorageSupported = null;
|
|
6007
|
+
var sessionStorageSupported = function(storage, forceCheck) {
|
|
6008
|
+
if (_sessionStorageSupported !== null && !forceCheck) {
|
|
6009
|
+
return _sessionStorageSupported;
|
|
6010
|
+
}
|
|
6011
|
+
return _sessionStorageSupported = _testStorageSupported(storage || win.sessionStorage);
|
|
6012
|
+
};
|
|
6019
6013
|
|
|
6020
|
-
|
|
6021
|
-
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
_.localStorage.error(err);
|
|
6025
|
-
}
|
|
6026
|
-
return null;
|
|
6027
|
-
},
|
|
6014
|
+
function _storageWrapper(storage, name, is_supported_fn) {
|
|
6015
|
+
var log_error = function(msg) {
|
|
6016
|
+
console$1.error(name + ' error: ' + msg);
|
|
6017
|
+
};
|
|
6028
6018
|
|
|
6029
|
-
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6019
|
+
return {
|
|
6020
|
+
is_supported: function(forceCheck) {
|
|
6021
|
+
var supported = is_supported_fn(storage, forceCheck);
|
|
6022
|
+
if (!supported) {
|
|
6023
|
+
console$1.error(name + ' unsupported');
|
|
6024
|
+
}
|
|
6025
|
+
return supported;
|
|
6026
|
+
},
|
|
6027
|
+
error: log_error,
|
|
6028
|
+
get: function(key) {
|
|
6029
|
+
try {
|
|
6030
|
+
return storage.getItem(key);
|
|
6031
|
+
} catch (err) {
|
|
6032
|
+
log_error(err);
|
|
6033
|
+
}
|
|
6034
|
+
return null;
|
|
6035
|
+
},
|
|
6036
|
+
parse: function(key) {
|
|
6037
|
+
try {
|
|
6038
|
+
return _.JSONDecode(storage.getItem(key)) || {};
|
|
6039
|
+
} catch (err) {
|
|
6040
|
+
// noop
|
|
6041
|
+
}
|
|
6042
|
+
return null;
|
|
6043
|
+
},
|
|
6044
|
+
set: function(key, value) {
|
|
6045
|
+
try {
|
|
6046
|
+
storage.setItem(key, value);
|
|
6047
|
+
} catch (err) {
|
|
6048
|
+
log_error(err);
|
|
6049
|
+
}
|
|
6050
|
+
},
|
|
6051
|
+
remove: function(key) {
|
|
6052
|
+
try {
|
|
6053
|
+
storage.removeItem(key);
|
|
6054
|
+
} catch (err) {
|
|
6055
|
+
log_error(err);
|
|
6056
|
+
}
|
|
6034
6057
|
}
|
|
6035
|
-
|
|
6036
|
-
|
|
6058
|
+
};
|
|
6059
|
+
}
|
|
6037
6060
|
|
|
6038
|
-
|
|
6039
|
-
|
|
6040
|
-
win.localStorage.setItem(name, value);
|
|
6041
|
-
} catch (err) {
|
|
6042
|
-
_.localStorage.error(err);
|
|
6043
|
-
}
|
|
6044
|
-
},
|
|
6045
|
-
|
|
6046
|
-
remove: function(name) {
|
|
6047
|
-
try {
|
|
6048
|
-
win.localStorage.removeItem(name);
|
|
6049
|
-
} catch (err) {
|
|
6050
|
-
_.localStorage.error(err);
|
|
6051
|
-
}
|
|
6052
|
-
}
|
|
6053
|
-
};
|
|
6061
|
+
_.localStorage = _storageWrapper(win.localStorage, 'localStorage', localStorageSupported);
|
|
6062
|
+
_.sessionStorage = _storageWrapper(win.sessionStorage, 'sessionStorage', sessionStorageSupported);
|
|
6054
6063
|
|
|
6055
6064
|
_.register_event = (function() {
|
|
6056
6065
|
// written by Dean Edwards, 2005
|
|
@@ -6577,6 +6586,31 @@
|
|
|
6577
6586
|
}
|
|
6578
6587
|
};
|
|
6579
6588
|
|
|
6589
|
+
/**
|
|
6590
|
+
* Returns a throttled function that will only run at most every `waitMs` and returns a promise that resolves with the next invocation.
|
|
6591
|
+
* Throttled calls will build up a batch of args and invoke the callback with all args since the last invocation.
|
|
6592
|
+
*/
|
|
6593
|
+
var batchedThrottle = function (fn, waitMs) {
|
|
6594
|
+
var timeoutPromise = null;
|
|
6595
|
+
var throttledItems = [];
|
|
6596
|
+
return function (item) {
|
|
6597
|
+
var self = this;
|
|
6598
|
+
throttledItems.push(item);
|
|
6599
|
+
|
|
6600
|
+
if (!timeoutPromise) {
|
|
6601
|
+
timeoutPromise = new PromisePolyfill(function (resolve) {
|
|
6602
|
+
setTimeout(function () {
|
|
6603
|
+
var returnValue = fn.apply(self, [throttledItems]);
|
|
6604
|
+
timeoutPromise = null;
|
|
6605
|
+
throttledItems = [];
|
|
6606
|
+
resolve(returnValue);
|
|
6607
|
+
}, waitMs);
|
|
6608
|
+
});
|
|
6609
|
+
}
|
|
6610
|
+
return timeoutPromise;
|
|
6611
|
+
};
|
|
6612
|
+
};
|
|
6613
|
+
|
|
6580
6614
|
var cheap_guid = function(maxlen) {
|
|
6581
6615
|
var guid = Math.random().toString(36).substring(2, 10) + Math.random().toString(36).substring(2, 10);
|
|
6582
6616
|
return maxlen ? guid.substring(0, maxlen) : guid;
|
|
@@ -6619,6 +6653,8 @@
|
|
|
6619
6653
|
return _.isUndefined(onLine) || onLine;
|
|
6620
6654
|
};
|
|
6621
6655
|
|
|
6656
|
+
var NOOP_FUNC = function () {};
|
|
6657
|
+
|
|
6622
6658
|
var JSONStringify = null, JSONParse = null;
|
|
6623
6659
|
if (typeof JSON !== 'undefined') {
|
|
6624
6660
|
JSONStringify = JSON.stringify;
|
|
@@ -6627,20 +6663,143 @@
|
|
|
6627
6663
|
JSONStringify = JSONStringify || _.JSONEncode;
|
|
6628
6664
|
JSONParse = JSONParse || _.JSONDecode;
|
|
6629
6665
|
|
|
6630
|
-
// EXPORTS (for closure compiler)
|
|
6631
|
-
_['toArray'] = _.toArray;
|
|
6632
|
-
_['isObject'] = _.isObject;
|
|
6633
|
-
_['JSONEncode'] = _.JSONEncode;
|
|
6634
|
-
_['JSONDecode'] = _.JSONDecode;
|
|
6635
|
-
_['isBlockedUA'] = _.isBlockedUA;
|
|
6636
|
-
_['isEmptyObject'] = _.isEmptyObject;
|
|
6666
|
+
// UNMINIFIED EXPORTS (for closure compiler)
|
|
6637
6667
|
_['info'] = _.info;
|
|
6638
|
-
_['info']['device'] = _.info.device;
|
|
6639
6668
|
_['info']['browser'] = _.info.browser;
|
|
6640
6669
|
_['info']['browserVersion'] = _.info.browserVersion;
|
|
6670
|
+
_['info']['device'] = _.info.device;
|
|
6641
6671
|
_['info']['properties'] = _.info.properties;
|
|
6672
|
+
_['isBlockedUA'] = _.isBlockedUA;
|
|
6673
|
+
_['isEmptyObject'] = _.isEmptyObject;
|
|
6674
|
+
_['isObject'] = _.isObject;
|
|
6675
|
+
_['JSONDecode'] = _.JSONDecode;
|
|
6676
|
+
_['JSONEncode'] = _.JSONEncode;
|
|
6677
|
+
_['toArray'] = _.toArray;
|
|
6642
6678
|
_['NPO'] = NpoPromise;
|
|
6643
6679
|
|
|
6680
|
+
var MIXPANEL_DB_NAME = 'mixpanelBrowserDb';
|
|
6681
|
+
|
|
6682
|
+
var RECORDING_EVENTS_STORE_NAME = 'mixpanelRecordingEvents';
|
|
6683
|
+
var RECORDING_REGISTRY_STORE_NAME = 'mixpanelRecordingRegistry';
|
|
6684
|
+
|
|
6685
|
+
// note: increment the version number when adding new object stores
|
|
6686
|
+
var DB_VERSION = 1;
|
|
6687
|
+
var OBJECT_STORES = [RECORDING_EVENTS_STORE_NAME, RECORDING_REGISTRY_STORE_NAME];
|
|
6688
|
+
|
|
6689
|
+
/**
|
|
6690
|
+
* @type {import('./wrapper').StorageWrapper}
|
|
6691
|
+
*/
|
|
6692
|
+
var IDBStorageWrapper = function (storeName) {
|
|
6693
|
+
/**
|
|
6694
|
+
* @type {Promise<IDBDatabase>|null}
|
|
6695
|
+
*/
|
|
6696
|
+
this.dbPromise = null;
|
|
6697
|
+
this.storeName = storeName;
|
|
6698
|
+
};
|
|
6699
|
+
|
|
6700
|
+
IDBStorageWrapper.prototype._openDb = function () {
|
|
6701
|
+
return new PromisePolyfill(function (resolve, reject) {
|
|
6702
|
+
var openRequest = win.indexedDB.open(MIXPANEL_DB_NAME, DB_VERSION);
|
|
6703
|
+
openRequest['onerror'] = function () {
|
|
6704
|
+
reject(openRequest.error);
|
|
6705
|
+
};
|
|
6706
|
+
|
|
6707
|
+
openRequest['onsuccess'] = function () {
|
|
6708
|
+
resolve(openRequest.result);
|
|
6709
|
+
};
|
|
6710
|
+
|
|
6711
|
+
openRequest['onupgradeneeded'] = function (ev) {
|
|
6712
|
+
var db = ev.target.result;
|
|
6713
|
+
|
|
6714
|
+
OBJECT_STORES.forEach(function (storeName) {
|
|
6715
|
+
db.createObjectStore(storeName);
|
|
6716
|
+
});
|
|
6717
|
+
};
|
|
6718
|
+
});
|
|
6719
|
+
};
|
|
6720
|
+
|
|
6721
|
+
IDBStorageWrapper.prototype.init = function () {
|
|
6722
|
+
if (!win.indexedDB) {
|
|
6723
|
+
return PromisePolyfill.reject('indexedDB is not supported in this browser');
|
|
6724
|
+
}
|
|
6725
|
+
|
|
6726
|
+
if (!this.dbPromise) {
|
|
6727
|
+
this.dbPromise = this._openDb();
|
|
6728
|
+
}
|
|
6729
|
+
|
|
6730
|
+
return this.dbPromise
|
|
6731
|
+
.then(function (dbOrError) {
|
|
6732
|
+
if (dbOrError instanceof win['IDBDatabase']) {
|
|
6733
|
+
return PromisePolyfill.resolve();
|
|
6734
|
+
} else {
|
|
6735
|
+
return PromisePolyfill.reject(dbOrError);
|
|
6736
|
+
}
|
|
6737
|
+
});
|
|
6738
|
+
};
|
|
6739
|
+
|
|
6740
|
+
/**
|
|
6741
|
+
* @param {IDBTransactionMode} mode
|
|
6742
|
+
* @param {function(IDBObjectStore): void} storeCb
|
|
6743
|
+
*/
|
|
6744
|
+
IDBStorageWrapper.prototype.makeTransaction = function (mode, storeCb) {
|
|
6745
|
+
var storeName = this.storeName;
|
|
6746
|
+
var doTransaction = function (db) {
|
|
6747
|
+
return new PromisePolyfill(function (resolve, reject) {
|
|
6748
|
+
var transaction = db.transaction(storeName, mode);
|
|
6749
|
+
transaction.oncomplete = function () {
|
|
6750
|
+
resolve(transaction);
|
|
6751
|
+
};
|
|
6752
|
+
transaction.onabort = transaction.onerror = function () {
|
|
6753
|
+
reject(transaction.error);
|
|
6754
|
+
};
|
|
6755
|
+
|
|
6756
|
+
storeCb(transaction.objectStore(storeName));
|
|
6757
|
+
});
|
|
6758
|
+
};
|
|
6759
|
+
|
|
6760
|
+
return this.dbPromise
|
|
6761
|
+
.then(doTransaction)
|
|
6762
|
+
.catch(function (err) {
|
|
6763
|
+
if (err['name'] === 'InvalidStateError') {
|
|
6764
|
+
// try reopening the DB if the connection is closed
|
|
6765
|
+
this.dbPromise = this._openDb();
|
|
6766
|
+
return this.dbPromise.then(doTransaction);
|
|
6767
|
+
} else {
|
|
6768
|
+
return PromisePolyfill.reject(err);
|
|
6769
|
+
}
|
|
6770
|
+
}.bind(this));
|
|
6771
|
+
};
|
|
6772
|
+
|
|
6773
|
+
IDBStorageWrapper.prototype.setItem = function (key, value) {
|
|
6774
|
+
return this.makeTransaction('readwrite', function (objectStore) {
|
|
6775
|
+
objectStore.put(value, key);
|
|
6776
|
+
});
|
|
6777
|
+
};
|
|
6778
|
+
|
|
6779
|
+
IDBStorageWrapper.prototype.getItem = function (key) {
|
|
6780
|
+
var req;
|
|
6781
|
+
return this.makeTransaction('readonly', function (objectStore) {
|
|
6782
|
+
req = objectStore.get(key);
|
|
6783
|
+
}).then(function () {
|
|
6784
|
+
return req.result;
|
|
6785
|
+
});
|
|
6786
|
+
};
|
|
6787
|
+
|
|
6788
|
+
IDBStorageWrapper.prototype.removeItem = function (key) {
|
|
6789
|
+
return this.makeTransaction('readwrite', function (objectStore) {
|
|
6790
|
+
objectStore.delete(key);
|
|
6791
|
+
});
|
|
6792
|
+
};
|
|
6793
|
+
|
|
6794
|
+
IDBStorageWrapper.prototype.getAll = function () {
|
|
6795
|
+
var req;
|
|
6796
|
+
return this.makeTransaction('readonly', function (objectStore) {
|
|
6797
|
+
req = objectStore.getAll();
|
|
6798
|
+
}).then(function () {
|
|
6799
|
+
return req.result;
|
|
6800
|
+
});
|
|
6801
|
+
};
|
|
6802
|
+
|
|
6644
6803
|
/**
|
|
6645
6804
|
* GDPR utils
|
|
6646
6805
|
*
|
|
@@ -6966,7 +7125,7 @@
|
|
|
6966
7125
|
options = options || {};
|
|
6967
7126
|
|
|
6968
7127
|
this.storageKey = key;
|
|
6969
|
-
this.storage = options.storage ||
|
|
7128
|
+
this.storage = options.storage || win.localStorage;
|
|
6970
7129
|
this.pollIntervalMS = options.pollIntervalMS || 100;
|
|
6971
7130
|
this.timeoutMS = options.timeoutMS || 2000;
|
|
6972
7131
|
|
|
@@ -6981,7 +7140,6 @@
|
|
|
6981
7140
|
return new Promise(_.bind(function (resolve, reject) {
|
|
6982
7141
|
var i = pid || (new Date().getTime() + '|' + Math.random());
|
|
6983
7142
|
var startTime = new Date().getTime();
|
|
6984
|
-
|
|
6985
7143
|
var key = this.storageKey;
|
|
6986
7144
|
var pollIntervalMS = this.pollIntervalMS;
|
|
6987
7145
|
var timeoutMS = this.timeoutMS;
|
|
@@ -7092,11 +7250,7 @@
|
|
|
7092
7250
|
};
|
|
7093
7251
|
|
|
7094
7252
|
/**
|
|
7095
|
-
* @
|
|
7096
|
-
*/
|
|
7097
|
-
|
|
7098
|
-
/**
|
|
7099
|
-
* @type {StorageWrapper}
|
|
7253
|
+
* @type {import('./wrapper').StorageWrapper}
|
|
7100
7254
|
*/
|
|
7101
7255
|
var LocalStorageWrapper = function (storageOverride) {
|
|
7102
7256
|
this.storage = storageOverride || localStorage;
|
|
@@ -7109,7 +7263,7 @@
|
|
|
7109
7263
|
LocalStorageWrapper.prototype.setItem = function (key, value) {
|
|
7110
7264
|
return new PromisePolyfill(_.bind(function (resolve, reject) {
|
|
7111
7265
|
try {
|
|
7112
|
-
this.storage.setItem(key, value);
|
|
7266
|
+
this.storage.setItem(key, JSONStringify(value));
|
|
7113
7267
|
} catch (e) {
|
|
7114
7268
|
reject(e);
|
|
7115
7269
|
}
|
|
@@ -7121,7 +7275,7 @@
|
|
|
7121
7275
|
return new PromisePolyfill(_.bind(function (resolve, reject) {
|
|
7122
7276
|
var item;
|
|
7123
7277
|
try {
|
|
7124
|
-
item = this.storage.getItem(key);
|
|
7278
|
+
item = JSONParse(this.storage.getItem(key));
|
|
7125
7279
|
} catch (e) {
|
|
7126
7280
|
reject(e);
|
|
7127
7281
|
}
|
|
@@ -7164,8 +7318,10 @@
|
|
|
7164
7318
|
this.usePersistence = options.usePersistence;
|
|
7165
7319
|
if (this.usePersistence) {
|
|
7166
7320
|
this.queueStorage = options.queueStorage || new LocalStorageWrapper();
|
|
7167
|
-
this.lock = new SharedLock(storageKey, {
|
|
7168
|
-
|
|
7321
|
+
this.lock = new SharedLock(storageKey, {
|
|
7322
|
+
storage: options.sharedLockStorage || win.localStorage,
|
|
7323
|
+
timeoutMS: options.sharedLockTimeoutMS,
|
|
7324
|
+
});
|
|
7169
7325
|
}
|
|
7170
7326
|
this.reportError = options.errorReporter || _.bind(logger$4.error, logger$4);
|
|
7171
7327
|
|
|
@@ -7173,6 +7329,14 @@
|
|
|
7173
7329
|
|
|
7174
7330
|
this.memQueue = [];
|
|
7175
7331
|
this.initialized = false;
|
|
7332
|
+
|
|
7333
|
+
if (options.enqueueThrottleMs) {
|
|
7334
|
+
this.enqueuePersisted = batchedThrottle(_.bind(this._enqueuePersisted, this), options.enqueueThrottleMs);
|
|
7335
|
+
} else {
|
|
7336
|
+
this.enqueuePersisted = _.bind(function (queueEntry) {
|
|
7337
|
+
return this._enqueuePersisted([queueEntry]);
|
|
7338
|
+
}, this);
|
|
7339
|
+
}
|
|
7176
7340
|
};
|
|
7177
7341
|
|
|
7178
7342
|
RequestQueue.prototype.ensureInit = function () {
|
|
@@ -7215,36 +7379,39 @@
|
|
|
7215
7379
|
this.memQueue.push(queueEntry);
|
|
7216
7380
|
return PromisePolyfill.resolve(true);
|
|
7217
7381
|
} else {
|
|
7382
|
+
return this.enqueuePersisted(queueEntry);
|
|
7383
|
+
}
|
|
7384
|
+
};
|
|
7218
7385
|
|
|
7219
|
-
|
|
7220
|
-
|
|
7221
|
-
|
|
7222
|
-
|
|
7223
|
-
|
|
7224
|
-
|
|
7225
|
-
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7229
|
-
|
|
7230
|
-
|
|
7231
|
-
|
|
7232
|
-
|
|
7233
|
-
return succeeded;
|
|
7234
|
-
}, this))
|
|
7235
|
-
.catch(_.bind(function (err) {
|
|
7236
|
-
this.reportError('Error enqueueing item', err, item);
|
|
7237
|
-
return false;
|
|
7238
|
-
}, this));
|
|
7239
|
-
}, this);
|
|
7386
|
+
RequestQueue.prototype._enqueuePersisted = function (queueEntries) {
|
|
7387
|
+
var enqueueItem = _.bind(function () {
|
|
7388
|
+
return this.ensureInit()
|
|
7389
|
+
.then(_.bind(function () {
|
|
7390
|
+
return this.readFromStorage();
|
|
7391
|
+
}, this))
|
|
7392
|
+
.then(_.bind(function (storedQueue) {
|
|
7393
|
+
return this.saveToStorage(storedQueue.concat(queueEntries));
|
|
7394
|
+
}, this))
|
|
7395
|
+
.then(_.bind(function (succeeded) {
|
|
7396
|
+
// only add to in-memory queue when storage succeeds
|
|
7397
|
+
if (succeeded) {
|
|
7398
|
+
this.memQueue = this.memQueue.concat(queueEntries);
|
|
7399
|
+
}
|
|
7240
7400
|
|
|
7241
|
-
|
|
7242
|
-
|
|
7401
|
+
return succeeded;
|
|
7402
|
+
}, this))
|
|
7243
7403
|
.catch(_.bind(function (err) {
|
|
7244
|
-
this.reportError('Error
|
|
7404
|
+
this.reportError('Error enqueueing items', err, queueEntries);
|
|
7245
7405
|
return false;
|
|
7246
7406
|
}, this));
|
|
7247
|
-
}
|
|
7407
|
+
}, this);
|
|
7408
|
+
|
|
7409
|
+
return this.lock
|
|
7410
|
+
.withLock(enqueueItem, this.pid)
|
|
7411
|
+
.catch(_.bind(function (err) {
|
|
7412
|
+
this.reportError('Error acquiring storage lock', err);
|
|
7413
|
+
return false;
|
|
7414
|
+
}, this));
|
|
7248
7415
|
};
|
|
7249
7416
|
|
|
7250
7417
|
/**
|
|
@@ -7265,7 +7432,7 @@
|
|
|
7265
7432
|
}, this))
|
|
7266
7433
|
.then(_.bind(function (storedQueue) {
|
|
7267
7434
|
if (storedQueue.length) {
|
|
7268
|
-
|
|
7435
|
+
// item IDs already in batch; don't duplicate out of storage
|
|
7269
7436
|
var idsInBatch = {}; // poor man's Set
|
|
7270
7437
|
_.each(batch, function (item) {
|
|
7271
7438
|
idsInBatch[item['id']] = true;
|
|
@@ -7352,7 +7519,7 @@
|
|
|
7352
7519
|
.withLock(removeFromStorage, this.pid)
|
|
7353
7520
|
.catch(_.bind(function (err) {
|
|
7354
7521
|
this.reportError('Error acquiring storage lock', err);
|
|
7355
|
-
if (!localStorageSupported(this.
|
|
7522
|
+
if (!localStorageSupported(this.lock.storage, true)) {
|
|
7356
7523
|
// Looks like localStorage writes have stopped working sometime after
|
|
7357
7524
|
// initialization (probably full), and so nobody can acquire locks
|
|
7358
7525
|
// anymore. Consider it temporarily safe to remove items without the
|
|
@@ -7440,7 +7607,6 @@
|
|
|
7440
7607
|
}, this))
|
|
7441
7608
|
.then(_.bind(function (storageEntry) {
|
|
7442
7609
|
if (storageEntry) {
|
|
7443
|
-
storageEntry = JSONParse(storageEntry);
|
|
7444
7610
|
if (!_.isArray(storageEntry)) {
|
|
7445
7611
|
this.reportError('Invalid storage entry:', storageEntry);
|
|
7446
7612
|
storageEntry = null;
|
|
@@ -7458,16 +7624,9 @@
|
|
|
7458
7624
|
* Serialize the given items array to localStorage.
|
|
7459
7625
|
*/
|
|
7460
7626
|
RequestQueue.prototype.saveToStorage = function (queue) {
|
|
7461
|
-
try {
|
|
7462
|
-
var serialized = JSONStringify(queue);
|
|
7463
|
-
} catch (err) {
|
|
7464
|
-
this.reportError('Error serializing queue', err);
|
|
7465
|
-
return PromisePolyfill.resolve(false);
|
|
7466
|
-
}
|
|
7467
|
-
|
|
7468
7627
|
return this.ensureInit()
|
|
7469
7628
|
.then(_.bind(function () {
|
|
7470
|
-
return this.queueStorage.setItem(this.storageKey,
|
|
7629
|
+
return this.queueStorage.setItem(this.storageKey, queue);
|
|
7471
7630
|
}, this))
|
|
7472
7631
|
.then(function () {
|
|
7473
7632
|
return true;
|
|
@@ -7511,7 +7670,9 @@
|
|
|
7511
7670
|
errorReporter: _.bind(this.reportError, this),
|
|
7512
7671
|
queueStorage: options.queueStorage,
|
|
7513
7672
|
sharedLockStorage: options.sharedLockStorage,
|
|
7514
|
-
|
|
7673
|
+
sharedLockTimeoutMS: options.sharedLockTimeoutMS,
|
|
7674
|
+
usePersistence: options.usePersistence,
|
|
7675
|
+
enqueueThrottleMs: options.enqueueThrottleMs
|
|
7515
7676
|
});
|
|
7516
7677
|
|
|
7517
7678
|
this.libConfig = options.libConfig;
|
|
@@ -7533,6 +7694,8 @@
|
|
|
7533
7694
|
// as long as the queue is not empty. This is useful for high-frequency events like Session Replay where we might end up
|
|
7534
7695
|
// in a request loop and get ratelimited by the server.
|
|
7535
7696
|
this.flushOnlyOnInterval = options.flushOnlyOnInterval || false;
|
|
7697
|
+
|
|
7698
|
+
this._flushPromise = null;
|
|
7536
7699
|
};
|
|
7537
7700
|
|
|
7538
7701
|
/**
|
|
@@ -7592,7 +7755,7 @@
|
|
|
7592
7755
|
if (!this.stopped) { // don't schedule anymore if batching has been stopped
|
|
7593
7756
|
this.timeoutID = setTimeout(_.bind(function() {
|
|
7594
7757
|
if (!this.stopped) {
|
|
7595
|
-
this.flush();
|
|
7758
|
+
this._flushPromise = this.flush();
|
|
7596
7759
|
}
|
|
7597
7760
|
}, this), this.flushInterval);
|
|
7598
7761
|
}
|
|
@@ -7824,6 +7987,17 @@
|
|
|
7824
7987
|
}
|
|
7825
7988
|
};
|
|
7826
7989
|
|
|
7990
|
+
/**
|
|
7991
|
+
* @param {import('./session-recording').SerializedRecording} serializedRecording
|
|
7992
|
+
* @returns {boolean}
|
|
7993
|
+
*/
|
|
7994
|
+
var isRecordingExpired = function(serializedRecording) {
|
|
7995
|
+
var now = Date.now();
|
|
7996
|
+
return !serializedRecording || now > serializedRecording['maxExpires'] || now > serializedRecording['idleExpires'];
|
|
7997
|
+
};
|
|
7998
|
+
|
|
7999
|
+
var RECORD_ENQUEUE_THROTTLE_MS = 250;
|
|
8000
|
+
|
|
7827
8001
|
var logger$2 = console_with_prefix('recorder');
|
|
7828
8002
|
var CompressionStream = win['CompressionStream'];
|
|
7829
8003
|
|
|
@@ -7850,29 +8024,58 @@
|
|
|
7850
8024
|
return ev.type === EventType.IncrementalSnapshot && ACTIVE_SOURCES.has(ev.data.source);
|
|
7851
8025
|
}
|
|
7852
8026
|
|
|
8027
|
+
/**
|
|
8028
|
+
* @typedef {Object} SerializedRecording
|
|
8029
|
+
* @property {number} idleExpires
|
|
8030
|
+
* @property {number} maxExpires
|
|
8031
|
+
* @property {number} replayStartTime
|
|
8032
|
+
* @property {number} seqNo
|
|
8033
|
+
* @property {string} batchStartUrl
|
|
8034
|
+
* @property {string} replayId
|
|
8035
|
+
* @property {string} tabId
|
|
8036
|
+
* @property {string} replayStartUrl
|
|
8037
|
+
*/
|
|
8038
|
+
|
|
8039
|
+
/**
|
|
8040
|
+
* @typedef {Object} SessionRecordingOptions
|
|
8041
|
+
* @property {Object} [options.mixpanelInstance] - reference to the core MixpanelLib
|
|
8042
|
+
* @property {String} [options.replayId] - unique uuid for a single replay
|
|
8043
|
+
* @property {Function} [options.onIdleTimeout] - callback when a recording reaches idle timeout
|
|
8044
|
+
* @property {Function} [options.onMaxLengthReached] - callback when a recording reaches its maximum length
|
|
8045
|
+
* @property {Function} [options.rrwebRecord] - rrweb's `record` function
|
|
8046
|
+
* @property {Function} [options.onBatchSent] - callback when a batch of events is sent to the server
|
|
8047
|
+
* @property {Storage} [options.sharedLockStorage] - optional storage for shared lock, used for test dependency injection
|
|
8048
|
+
* optional properties for deserialization:
|
|
8049
|
+
* @property {number} idleExpires
|
|
8050
|
+
* @property {number} maxExpires
|
|
8051
|
+
* @property {number} replayStartTime
|
|
8052
|
+
* @property {number} seqNo
|
|
8053
|
+
* @property {string} batchStartUrl
|
|
8054
|
+
* @property {string} replayStartUrl
|
|
8055
|
+
*/
|
|
8056
|
+
|
|
8057
|
+
|
|
7853
8058
|
/**
|
|
7854
8059
|
* This class encapsulates a single session recording and its lifecycle.
|
|
7855
|
-
* @param {
|
|
7856
|
-
* @param {String} [options.replayId] - unique uuid for a single replay
|
|
7857
|
-
* @param {Function} [options.onIdleTimeout] - callback when a recording reaches idle timeout
|
|
7858
|
-
* @param {Function} [options.onMaxLengthReached] - callback when a recording reaches its maximum length
|
|
7859
|
-
* @param {Function} [options.rrwebRecord] - rrweb's `record` function
|
|
8060
|
+
* @param {SessionRecordingOptions} options
|
|
7860
8061
|
*/
|
|
7861
8062
|
var SessionRecording = function(options) {
|
|
7862
8063
|
this._mixpanel = options.mixpanelInstance;
|
|
7863
|
-
this._onIdleTimeout = options.onIdleTimeout;
|
|
7864
|
-
this._onMaxLengthReached = options.onMaxLengthReached;
|
|
7865
|
-
this.
|
|
7866
|
-
|
|
7867
|
-
this.replayId = options.replayId;
|
|
8064
|
+
this._onIdleTimeout = options.onIdleTimeout || NOOP_FUNC;
|
|
8065
|
+
this._onMaxLengthReached = options.onMaxLengthReached || NOOP_FUNC;
|
|
8066
|
+
this._onBatchSent = options.onBatchSent || NOOP_FUNC;
|
|
8067
|
+
this._rrwebRecord = options.rrwebRecord || null;
|
|
7868
8068
|
|
|
7869
8069
|
// internal rrweb stopRecording function
|
|
7870
8070
|
this._stopRecording = null;
|
|
8071
|
+
this.replayId = options.replayId;
|
|
7871
8072
|
|
|
7872
|
-
this.
|
|
7873
|
-
this.
|
|
7874
|
-
this.
|
|
7875
|
-
this.
|
|
8073
|
+
this.batchStartUrl = options.batchStartUrl || null;
|
|
8074
|
+
this.replayStartUrl = options.replayStartUrl || null;
|
|
8075
|
+
this.idleExpires = options.idleExpires || null;
|
|
8076
|
+
this.maxExpires = options.maxExpires || null;
|
|
8077
|
+
this.replayStartTime = options.replayStartTime || null;
|
|
8078
|
+
this.seqNo = options.seqNo || 0;
|
|
7876
8079
|
|
|
7877
8080
|
this.idleTimeoutId = null;
|
|
7878
8081
|
this.maxTimeoutId = null;
|
|
@@ -7880,18 +8083,40 @@
|
|
|
7880
8083
|
this.recordMaxMs = MAX_RECORDING_MS;
|
|
7881
8084
|
this.recordMinMs = 0;
|
|
7882
8085
|
|
|
8086
|
+
// disable persistence if localStorage is not supported
|
|
8087
|
+
// request-queue will automatically disable persistence if indexedDB fails to initialize
|
|
8088
|
+
var usePersistence = localStorageSupported(options.sharedLockStorage, true);
|
|
8089
|
+
|
|
7883
8090
|
// each replay has its own batcher key to avoid conflicts between rrweb events of different recordings
|
|
7884
8091
|
// this will be important when persistence is introduced
|
|
7885
|
-
|
|
7886
|
-
this.
|
|
7887
|
-
|
|
8092
|
+
this.batcherKey = '__mprec_' + this.getConfig('name') + '_' + this.getConfig('token') + '_' + this.replayId;
|
|
8093
|
+
this.queueStorage = new IDBStorageWrapper(RECORDING_EVENTS_STORE_NAME);
|
|
8094
|
+
this.batcher = new RequestBatcher(this.batcherKey, {
|
|
8095
|
+
errorReporter: this.reportError.bind(this),
|
|
7888
8096
|
flushOnlyOnInterval: true,
|
|
7889
8097
|
libConfig: RECORDER_BATCHER_LIB_CONFIG,
|
|
7890
|
-
sendRequestFunc:
|
|
7891
|
-
|
|
8098
|
+
sendRequestFunc: this.flushEventsWithOptOut.bind(this),
|
|
8099
|
+
queueStorage: this.queueStorage,
|
|
8100
|
+
sharedLockStorage: options.sharedLockStorage,
|
|
8101
|
+
usePersistence: usePersistence,
|
|
8102
|
+
stopAllBatchingFunc: this.stopRecording.bind(this),
|
|
8103
|
+
|
|
8104
|
+
// increased throttle and shared lock timeout because recording events are very high frequency.
|
|
8105
|
+
// this will minimize the amount of lock contention between enqueued events.
|
|
8106
|
+
// for session recordings there is a lock for each tab anyway, so there's no risk of deadlock between tabs.
|
|
8107
|
+
enqueueThrottleMs: RECORD_ENQUEUE_THROTTLE_MS,
|
|
8108
|
+
sharedLockTimeoutMS: 10 * 1000,
|
|
7892
8109
|
});
|
|
7893
8110
|
};
|
|
7894
8111
|
|
|
8112
|
+
SessionRecording.prototype.unloadPersistedData = function () {
|
|
8113
|
+
this.batcher.stop();
|
|
8114
|
+
return this.batcher.flush()
|
|
8115
|
+
.then(function () {
|
|
8116
|
+
return this.queueStorage.removeItem(this.batcherKey);
|
|
8117
|
+
}.bind(this));
|
|
8118
|
+
};
|
|
8119
|
+
|
|
7895
8120
|
SessionRecording.prototype.getConfig = function(configVar) {
|
|
7896
8121
|
return this._mixpanel.get_config(configVar);
|
|
7897
8122
|
};
|
|
@@ -7904,6 +8129,11 @@
|
|
|
7904
8129
|
};
|
|
7905
8130
|
|
|
7906
8131
|
SessionRecording.prototype.startRecording = function (shouldStopBatcher) {
|
|
8132
|
+
if (this._rrwebRecord === null) {
|
|
8133
|
+
this.reportError('rrweb record function not provided. ');
|
|
8134
|
+
return;
|
|
8135
|
+
}
|
|
8136
|
+
|
|
7907
8137
|
if (this._stopRecording !== null) {
|
|
7908
8138
|
logger$2.log('Recording already in progress, skipping startRecording.');
|
|
7909
8139
|
return;
|
|
@@ -7915,15 +8145,21 @@
|
|
|
7915
8145
|
logger$2.critical('record_max_ms cannot be greater than ' + MAX_RECORDING_MS + 'ms. Capping value.');
|
|
7916
8146
|
}
|
|
7917
8147
|
|
|
8148
|
+
if (!this.maxExpires) {
|
|
8149
|
+
this.maxExpires = new Date().getTime() + this.recordMaxMs;
|
|
8150
|
+
}
|
|
8151
|
+
|
|
7918
8152
|
this.recordMinMs = this.getConfig('record_min_ms');
|
|
7919
8153
|
if (this.recordMinMs > MAX_VALUE_FOR_MIN_RECORDING_MS) {
|
|
7920
8154
|
this.recordMinMs = MAX_VALUE_FOR_MIN_RECORDING_MS;
|
|
7921
8155
|
logger$2.critical('record_min_ms cannot be greater than ' + MAX_VALUE_FOR_MIN_RECORDING_MS + 'ms. Capping value.');
|
|
7922
8156
|
}
|
|
7923
8157
|
|
|
7924
|
-
this.replayStartTime
|
|
7925
|
-
|
|
7926
|
-
|
|
8158
|
+
if (!this.replayStartTime) {
|
|
8159
|
+
this.replayStartTime = new Date().getTime();
|
|
8160
|
+
this.batchStartUrl = _.info.currentUrl();
|
|
8161
|
+
this.replayStartUrl = _.info.currentUrl();
|
|
8162
|
+
}
|
|
7927
8163
|
|
|
7928
8164
|
if (shouldStopBatcher || this.recordMinMs > 0) {
|
|
7929
8165
|
// the primary case for shouldStopBatcher is when we're starting recording after a reset
|
|
@@ -7936,10 +8172,12 @@
|
|
|
7936
8172
|
this.batcher.start();
|
|
7937
8173
|
}
|
|
7938
8174
|
|
|
7939
|
-
var resetIdleTimeout =
|
|
8175
|
+
var resetIdleTimeout = function () {
|
|
7940
8176
|
clearTimeout(this.idleTimeoutId);
|
|
7941
|
-
|
|
7942
|
-
|
|
8177
|
+
var idleTimeoutMs = this.getConfig('record_idle_timeout_ms');
|
|
8178
|
+
this.idleTimeoutId = setTimeout(this._onIdleTimeout, idleTimeoutMs);
|
|
8179
|
+
this.idleExpires = new Date().getTime() + idleTimeoutMs;
|
|
8180
|
+
}.bind(this);
|
|
7943
8181
|
|
|
7944
8182
|
var blockSelector = this.getConfig('record_block_selector');
|
|
7945
8183
|
if (blockSelector === '' || blockSelector === null) {
|
|
@@ -7947,8 +8185,7 @@
|
|
|
7947
8185
|
}
|
|
7948
8186
|
|
|
7949
8187
|
this._stopRecording = this._rrwebRecord({
|
|
7950
|
-
'emit':
|
|
7951
|
-
this.batcher.enqueue(ev);
|
|
8188
|
+
'emit': addOptOutCheckMixpanelLib(function (ev) {
|
|
7952
8189
|
if (isUserEvent(ev)) {
|
|
7953
8190
|
if (this.batcher.stopped && new Date().getTime() - this.replayStartTime >= this.recordMinMs) {
|
|
7954
8191
|
// start flushing again after user activity
|
|
@@ -7956,7 +8193,10 @@
|
|
|
7956
8193
|
}
|
|
7957
8194
|
resetIdleTimeout();
|
|
7958
8195
|
}
|
|
7959
|
-
|
|
8196
|
+
|
|
8197
|
+
// promise only used to await during tests
|
|
8198
|
+
this.__enqueuePromise = this.batcher.enqueue(ev);
|
|
8199
|
+
}.bind(this)),
|
|
7960
8200
|
'blockClass': this.getConfig('record_block_class'),
|
|
7961
8201
|
'blockSelector': blockSelector,
|
|
7962
8202
|
'collectFonts': this.getConfig('record_collect_fonts'),
|
|
@@ -7982,10 +8222,11 @@
|
|
|
7982
8222
|
|
|
7983
8223
|
resetIdleTimeout();
|
|
7984
8224
|
|
|
7985
|
-
|
|
8225
|
+
var maxTimeoutMs = this.maxExpires - new Date().getTime();
|
|
8226
|
+
this.maxTimeoutId = setTimeout(this._onMaxLengthReached.bind(this), maxTimeoutMs);
|
|
7986
8227
|
};
|
|
7987
8228
|
|
|
7988
|
-
SessionRecording.prototype.stopRecording = function () {
|
|
8229
|
+
SessionRecording.prototype.stopRecording = function (skipFlush) {
|
|
7989
8230
|
if (!this.isRrwebStopped()) {
|
|
7990
8231
|
try {
|
|
7991
8232
|
this._stopRecording();
|
|
@@ -7995,17 +8236,19 @@
|
|
|
7995
8236
|
this._stopRecording = null;
|
|
7996
8237
|
}
|
|
7997
8238
|
|
|
8239
|
+
var flushPromise;
|
|
7998
8240
|
if (this.batcher.stopped) {
|
|
7999
8241
|
// never got user activity to flush after reset, so just clear the batcher
|
|
8000
|
-
this.batcher.clear();
|
|
8001
|
-
} else {
|
|
8242
|
+
flushPromise = this.batcher.clear();
|
|
8243
|
+
} else if (!skipFlush) {
|
|
8002
8244
|
// flush any remaining events from running batcher
|
|
8003
|
-
this.batcher.flush();
|
|
8004
|
-
this.batcher.stop();
|
|
8245
|
+
flushPromise = this.batcher.flush();
|
|
8005
8246
|
}
|
|
8247
|
+
this.batcher.stop();
|
|
8006
8248
|
|
|
8007
8249
|
clearTimeout(this.idleTimeoutId);
|
|
8008
8250
|
clearTimeout(this.maxTimeoutId);
|
|
8251
|
+
return flushPromise;
|
|
8009
8252
|
};
|
|
8010
8253
|
|
|
8011
8254
|
SessionRecording.prototype.isRrwebStopped = function () {
|
|
@@ -8017,7 +8260,54 @@
|
|
|
8017
8260
|
* we stop recording and dump any queued events if the user has opted out.
|
|
8018
8261
|
*/
|
|
8019
8262
|
SessionRecording.prototype.flushEventsWithOptOut = function (data, options, cb) {
|
|
8020
|
-
this._flushEvents(data, options, cb,
|
|
8263
|
+
this._flushEvents(data, options, cb, this._onOptOut.bind(this));
|
|
8264
|
+
};
|
|
8265
|
+
|
|
8266
|
+
/**
|
|
8267
|
+
* @returns {SerializedRecording}
|
|
8268
|
+
*/
|
|
8269
|
+
SessionRecording.prototype.serialize = function () {
|
|
8270
|
+
// don't break if mixpanel instance was destroyed at some point
|
|
8271
|
+
var tabId;
|
|
8272
|
+
try {
|
|
8273
|
+
tabId = this._mixpanel.get_tab_id();
|
|
8274
|
+
} catch (e) {
|
|
8275
|
+
this.reportError('Error getting tab ID for serialization ', e);
|
|
8276
|
+
tabId = null;
|
|
8277
|
+
}
|
|
8278
|
+
|
|
8279
|
+
return {
|
|
8280
|
+
'replayId': this.replayId,
|
|
8281
|
+
'seqNo': this.seqNo,
|
|
8282
|
+
'replayStartTime': this.replayStartTime,
|
|
8283
|
+
'batchStartUrl': this.batchStartUrl,
|
|
8284
|
+
'replayStartUrl': this.replayStartUrl,
|
|
8285
|
+
'idleExpires': this.idleExpires,
|
|
8286
|
+
'maxExpires': this.maxExpires,
|
|
8287
|
+
'tabId': tabId,
|
|
8288
|
+
};
|
|
8289
|
+
};
|
|
8290
|
+
|
|
8291
|
+
|
|
8292
|
+
/**
|
|
8293
|
+
* @static
|
|
8294
|
+
* @param {SerializedRecording} serializedRecording
|
|
8295
|
+
* @param {SessionRecordingOptions} options
|
|
8296
|
+
* @returns {SessionRecording}
|
|
8297
|
+
*/
|
|
8298
|
+
SessionRecording.deserialize = function (serializedRecording, options) {
|
|
8299
|
+
var recording = new SessionRecording(_.extend({}, options, {
|
|
8300
|
+
replayId: serializedRecording['replayId'],
|
|
8301
|
+
batchStartUrl: serializedRecording['batchStartUrl'],
|
|
8302
|
+
replayStartUrl: serializedRecording['replayStartUrl'],
|
|
8303
|
+
idleExpires: serializedRecording['idleExpires'],
|
|
8304
|
+
maxExpires: serializedRecording['maxExpires'],
|
|
8305
|
+
replayStartTime: serializedRecording['replayStartTime'],
|
|
8306
|
+
seqNo: serializedRecording['seqNo'],
|
|
8307
|
+
sharedLockStorage: options.sharedLockStorage,
|
|
8308
|
+
}));
|
|
8309
|
+
|
|
8310
|
+
return recording;
|
|
8021
8311
|
};
|
|
8022
8312
|
|
|
8023
8313
|
SessionRecording.prototype._onOptOut = function (code) {
|
|
@@ -8028,7 +8318,7 @@
|
|
|
8028
8318
|
};
|
|
8029
8319
|
|
|
8030
8320
|
SessionRecording.prototype._sendRequest = function(currentReplayId, reqParams, reqBody, callback) {
|
|
8031
|
-
var onSuccess =
|
|
8321
|
+
var onSuccess = function (response, responseBody) {
|
|
8032
8322
|
// Update batch specific props only if the request was successful to guarantee ordering.
|
|
8033
8323
|
// RequestBatcher will always flush the next batch after the previous one succeeds.
|
|
8034
8324
|
// extra check to see if the replay ID has changed so that we don't increment the seqNo on the wrong replay
|
|
@@ -8036,13 +8326,15 @@
|
|
|
8036
8326
|
this.seqNo++;
|
|
8037
8327
|
this.batchStartUrl = _.info.currentUrl();
|
|
8038
8328
|
}
|
|
8329
|
+
|
|
8330
|
+
this._onBatchSent();
|
|
8039
8331
|
callback({
|
|
8040
8332
|
status: 0,
|
|
8041
8333
|
httpStatusCode: response.status,
|
|
8042
8334
|
responseBody: responseBody,
|
|
8043
8335
|
retryAfter: response.headers.get('Retry-After')
|
|
8044
8336
|
});
|
|
8045
|
-
}
|
|
8337
|
+
}.bind(this);
|
|
8046
8338
|
|
|
8047
8339
|
win['fetch'](this.getConfig('api_host') + '/' + this.getConfig('api_routes')['record'] + '?' + new URLSearchParams(reqParams), {
|
|
8048
8340
|
'method': 'POST',
|
|
@@ -8063,7 +8355,7 @@
|
|
|
8063
8355
|
};
|
|
8064
8356
|
|
|
8065
8357
|
SessionRecording.prototype._flushEvents = addOptOutCheckMixpanelLib(function (data, options, callback) {
|
|
8066
|
-
|
|
8358
|
+
var numEvents = data.length;
|
|
8067
8359
|
|
|
8068
8360
|
if (numEvents > 0) {
|
|
8069
8361
|
var replayId = this.replayId;
|
|
@@ -8108,10 +8400,10 @@
|
|
|
8108
8400
|
var gzipStream = jsonStream.pipeThrough(new CompressionStream('gzip'));
|
|
8109
8401
|
new Response(gzipStream)
|
|
8110
8402
|
.blob()
|
|
8111
|
-
.then(
|
|
8403
|
+
.then(function(compressedBlob) {
|
|
8112
8404
|
reqParams['format'] = 'gzip';
|
|
8113
8405
|
this._sendRequest(replayId, reqParams, compressedBlob, callback);
|
|
8114
|
-
}
|
|
8406
|
+
}.bind(this));
|
|
8115
8407
|
} else {
|
|
8116
8408
|
reqParams['format'] = 'body';
|
|
8117
8409
|
this._sendRequest(replayId, reqParams, eventsJson, callback);
|
|
@@ -8132,54 +8424,208 @@
|
|
|
8132
8424
|
}
|
|
8133
8425
|
};
|
|
8134
8426
|
|
|
8427
|
+
/**
|
|
8428
|
+
* Module for handling the storage and retrieval of recording metadata as well as any active recordings.
|
|
8429
|
+
* Makes sure that only one tab can be recording at a time.
|
|
8430
|
+
*/
|
|
8431
|
+
var RecordingRegistry = function (options) {
|
|
8432
|
+
this.idb = new IDBStorageWrapper(RECORDING_REGISTRY_STORE_NAME);
|
|
8433
|
+
this.errorReporter = options.errorReporter;
|
|
8434
|
+
this.mixpanelInstance = options.mixpanelInstance;
|
|
8435
|
+
this.sharedLockStorage = options.sharedLockStorage;
|
|
8436
|
+
};
|
|
8437
|
+
|
|
8438
|
+
RecordingRegistry.prototype.handleError = function (err) {
|
|
8439
|
+
this.errorReporter('IndexedDB error: ', err);
|
|
8440
|
+
};
|
|
8441
|
+
|
|
8442
|
+
/**
|
|
8443
|
+
* @param {import('./session-recording').SerializedRecording} serializedRecording
|
|
8444
|
+
*/
|
|
8445
|
+
RecordingRegistry.prototype.setActiveRecording = function (serializedRecording) {
|
|
8446
|
+
var tabId = serializedRecording['tabId'];
|
|
8447
|
+
if (!tabId) {
|
|
8448
|
+
console.warn('No tab ID is set, cannot persist recording metadata.');
|
|
8449
|
+
return PromisePolyfill.resolve();
|
|
8450
|
+
}
|
|
8451
|
+
|
|
8452
|
+
return this.idb.init()
|
|
8453
|
+
.then(function () {
|
|
8454
|
+
return this.idb.setItem(tabId, serializedRecording);
|
|
8455
|
+
}.bind(this))
|
|
8456
|
+
.catch(this.handleError.bind(this));
|
|
8457
|
+
};
|
|
8458
|
+
|
|
8459
|
+
/**
|
|
8460
|
+
* @returns {Promise<import('./session-recording').SerializedRecording>}
|
|
8461
|
+
*/
|
|
8462
|
+
RecordingRegistry.prototype.getActiveRecording = function () {
|
|
8463
|
+
return this.idb.init()
|
|
8464
|
+
.then(function () {
|
|
8465
|
+
return this.idb.getItem(this.mixpanelInstance.get_tab_id());
|
|
8466
|
+
}.bind(this))
|
|
8467
|
+
.then(function (serializedRecording) {
|
|
8468
|
+
return isRecordingExpired(serializedRecording) ? null : serializedRecording;
|
|
8469
|
+
}.bind(this))
|
|
8470
|
+
.catch(this.handleError.bind(this));
|
|
8471
|
+
};
|
|
8472
|
+
|
|
8473
|
+
RecordingRegistry.prototype.clearActiveRecording = function () {
|
|
8474
|
+
// mark recording as expired instead of deleting it in case the page unloads mid-flush and doesn't make it to ingestion.
|
|
8475
|
+
// this will ensure the next pageload will flush the remaining events, but not try to continue the recording.
|
|
8476
|
+
return this.getActiveRecording()
|
|
8477
|
+
.then(function (serializedRecording) {
|
|
8478
|
+
if (serializedRecording) {
|
|
8479
|
+
serializedRecording['maxExpires'] = 0;
|
|
8480
|
+
return this.setActiveRecording(serializedRecording);
|
|
8481
|
+
}
|
|
8482
|
+
}.bind(this))
|
|
8483
|
+
.catch(this.handleError.bind(this));
|
|
8484
|
+
};
|
|
8485
|
+
|
|
8486
|
+
/**
|
|
8487
|
+
* Flush any inactive recordings from the registry to minimize data loss.
|
|
8488
|
+
* The main idea here is that we can flush remaining rrweb events on the next page load if a tab is closed mid-batch.
|
|
8489
|
+
*/
|
|
8490
|
+
RecordingRegistry.prototype.flushInactiveRecordings = function () {
|
|
8491
|
+
return this.idb.init()
|
|
8492
|
+
.then(function() {
|
|
8493
|
+
return this.idb.getAll();
|
|
8494
|
+
}.bind(this))
|
|
8495
|
+
.then(function (serializedRecordings) {
|
|
8496
|
+
// clean up any expired recordings from the registry, non-expired ones may be active in other tabs
|
|
8497
|
+
var unloadPromises = serializedRecordings
|
|
8498
|
+
.filter(function (serializedRecording) {
|
|
8499
|
+
return isRecordingExpired(serializedRecording);
|
|
8500
|
+
})
|
|
8501
|
+
.map(function (serializedRecording) {
|
|
8502
|
+
var sessionRecording = SessionRecording.deserialize(serializedRecording, {
|
|
8503
|
+
mixpanelInstance: this.mixpanelInstance,
|
|
8504
|
+
sharedLockStorage: this.sharedLockStorage
|
|
8505
|
+
});
|
|
8506
|
+
return sessionRecording.unloadPersistedData()
|
|
8507
|
+
.then(function () {
|
|
8508
|
+
// expired recording was successfully flushed, we can clean it up from the registry
|
|
8509
|
+
return this.idb.removeItem(serializedRecording['tabId']);
|
|
8510
|
+
}.bind(this))
|
|
8511
|
+
.catch(this.handleError.bind(this));
|
|
8512
|
+
}.bind(this));
|
|
8513
|
+
|
|
8514
|
+
return PromisePolyfill.all(unloadPromises);
|
|
8515
|
+
}.bind(this))
|
|
8516
|
+
.catch(this.handleError.bind(this));
|
|
8517
|
+
};
|
|
8518
|
+
|
|
8135
8519
|
var logger$1 = console_with_prefix('recorder');
|
|
8136
8520
|
|
|
8137
8521
|
/**
|
|
8138
|
-
* Recorder API:
|
|
8522
|
+
* Recorder API: bundles rrweb and and exposes methods to start and stop recordings.
|
|
8139
8523
|
* @param {Object} [options.mixpanelInstance] - reference to the core MixpanelLib
|
|
8140
|
-
|
|
8141
|
-
var MixpanelRecorder = function(mixpanelInstance) {
|
|
8142
|
-
this.
|
|
8524
|
+
*/
|
|
8525
|
+
var MixpanelRecorder = function(mixpanelInstance, rrwebRecord, sharedLockStorage) {
|
|
8526
|
+
this.mixpanelInstance = mixpanelInstance;
|
|
8527
|
+
this.rrwebRecord = rrwebRecord || record;
|
|
8528
|
+
this.sharedLockStorage = sharedLockStorage;
|
|
8529
|
+
|
|
8530
|
+
/**
|
|
8531
|
+
* @member {import('./registry').RecordingRegistry}
|
|
8532
|
+
*/
|
|
8533
|
+
this.recordingRegistry = new RecordingRegistry({
|
|
8534
|
+
mixpanelInstance: this.mixpanelInstance,
|
|
8535
|
+
errorReporter: logger$1.error,
|
|
8536
|
+
sharedLockStorage: sharedLockStorage
|
|
8537
|
+
});
|
|
8538
|
+
this._flushInactivePromise = this.recordingRegistry.flushInactiveRecordings();
|
|
8539
|
+
|
|
8143
8540
|
this.activeRecording = null;
|
|
8144
8541
|
};
|
|
8145
8542
|
|
|
8146
|
-
MixpanelRecorder.prototype.startRecording = function(
|
|
8543
|
+
MixpanelRecorder.prototype.startRecording = function(options) {
|
|
8544
|
+
options = options || {};
|
|
8147
8545
|
if (this.activeRecording && !this.activeRecording.isRrwebStopped()) {
|
|
8148
8546
|
logger$1.log('Recording already in progress, skipping startRecording.');
|
|
8149
8547
|
return;
|
|
8150
8548
|
}
|
|
8151
8549
|
|
|
8152
|
-
var onIdleTimeout =
|
|
8550
|
+
var onIdleTimeout = function () {
|
|
8153
8551
|
logger$1.log('Idle timeout reached, restarting recording.');
|
|
8154
8552
|
this.resetRecording();
|
|
8155
|
-
}
|
|
8553
|
+
}.bind(this);
|
|
8156
8554
|
|
|
8157
|
-
var onMaxLengthReached =
|
|
8555
|
+
var onMaxLengthReached = function () {
|
|
8158
8556
|
logger$1.log('Max recording length reached, stopping recording.');
|
|
8159
8557
|
this.resetRecording();
|
|
8160
|
-
}
|
|
8558
|
+
}.bind(this);
|
|
8559
|
+
|
|
8560
|
+
var onBatchSent = function () {
|
|
8561
|
+
this.recordingRegistry.setActiveRecording(this.activeRecording.serialize());
|
|
8562
|
+
this['__flushPromise'] = this.activeRecording.batcher._flushPromise;
|
|
8563
|
+
}.bind(this);
|
|
8161
8564
|
|
|
8162
|
-
|
|
8163
|
-
|
|
8565
|
+
/**
|
|
8566
|
+
* @type {import('./session-recording').SessionRecordingOptions}
|
|
8567
|
+
*/
|
|
8568
|
+
var sessionRecordingOptions = {
|
|
8569
|
+
mixpanelInstance: this.mixpanelInstance,
|
|
8570
|
+
onBatchSent: onBatchSent,
|
|
8164
8571
|
onIdleTimeout: onIdleTimeout,
|
|
8165
8572
|
onMaxLengthReached: onMaxLengthReached,
|
|
8166
8573
|
replayId: _.UUID(),
|
|
8167
|
-
rrwebRecord:
|
|
8168
|
-
|
|
8574
|
+
rrwebRecord: this.rrwebRecord,
|
|
8575
|
+
sharedLockStorage: this.sharedLockStorage
|
|
8576
|
+
};
|
|
8577
|
+
|
|
8578
|
+
if (options.activeSerializedRecording) {
|
|
8579
|
+
this.activeRecording = SessionRecording.deserialize(options.activeSerializedRecording, sessionRecordingOptions);
|
|
8580
|
+
} else {
|
|
8581
|
+
this.activeRecording = new SessionRecording(sessionRecordingOptions);
|
|
8582
|
+
}
|
|
8169
8583
|
|
|
8170
|
-
this.activeRecording.startRecording(shouldStopBatcher);
|
|
8584
|
+
this.activeRecording.startRecording(options.shouldStopBatcher);
|
|
8585
|
+
return this.recordingRegistry.setActiveRecording(this.activeRecording.serialize());
|
|
8171
8586
|
};
|
|
8172
8587
|
|
|
8173
8588
|
MixpanelRecorder.prototype.stopRecording = function() {
|
|
8589
|
+
var stopPromise = this._stopCurrentRecording(false);
|
|
8590
|
+
this.recordingRegistry.clearActiveRecording();
|
|
8591
|
+
this.activeRecording = null;
|
|
8592
|
+
return stopPromise;
|
|
8593
|
+
};
|
|
8594
|
+
|
|
8595
|
+
MixpanelRecorder.prototype.pauseRecording = function() {
|
|
8596
|
+
return this._stopCurrentRecording(false);
|
|
8597
|
+
};
|
|
8598
|
+
|
|
8599
|
+
MixpanelRecorder.prototype._stopCurrentRecording = function(skipFlush) {
|
|
8174
8600
|
if (this.activeRecording) {
|
|
8175
|
-
this.activeRecording.stopRecording();
|
|
8176
|
-
this.activeRecording = null;
|
|
8601
|
+
return this.activeRecording.stopRecording(skipFlush);
|
|
8177
8602
|
}
|
|
8603
|
+
return PromisePolyfill.resolve();
|
|
8604
|
+
};
|
|
8605
|
+
|
|
8606
|
+
MixpanelRecorder.prototype.resumeRecording = function (startNewIfInactive) {
|
|
8607
|
+
if (this.activeRecording && this.activeRecording.isRrwebStopped()) {
|
|
8608
|
+
this.activeRecording.startRecording(false);
|
|
8609
|
+
return PromisePolyfill.resolve(null);
|
|
8610
|
+
}
|
|
8611
|
+
|
|
8612
|
+
return this.recordingRegistry.getActiveRecording()
|
|
8613
|
+
.then(function (activeSerializedRecording) {
|
|
8614
|
+
if (activeSerializedRecording) {
|
|
8615
|
+
return this.startRecording({activeSerializedRecording: activeSerializedRecording});
|
|
8616
|
+
} else if (startNewIfInactive) {
|
|
8617
|
+
return this.startRecording({shouldStopBatcher: false});
|
|
8618
|
+
} else {
|
|
8619
|
+
logger$1.log('No resumable recording found.');
|
|
8620
|
+
return null;
|
|
8621
|
+
}
|
|
8622
|
+
}.bind(this));
|
|
8178
8623
|
};
|
|
8179
8624
|
|
|
8625
|
+
|
|
8180
8626
|
MixpanelRecorder.prototype.resetRecording = function () {
|
|
8181
8627
|
this.stopRecording();
|
|
8182
|
-
this.startRecording(true);
|
|
8628
|
+
this.startRecording({shouldStopBatcher: true});
|
|
8183
8629
|
};
|
|
8184
8630
|
|
|
8185
8631
|
MixpanelRecorder.prototype.getActiveReplayId = function () {
|
|
@@ -10395,11 +10841,6 @@
|
|
|
10395
10841
|
* Released under the MIT License.
|
|
10396
10842
|
*/
|
|
10397
10843
|
|
|
10398
|
-
// ==ClosureCompiler==
|
|
10399
|
-
// @compilation_level ADVANCED_OPTIMIZATIONS
|
|
10400
|
-
// @output_file_name mixpanel-2.8.min.js
|
|
10401
|
-
// ==/ClosureCompiler==
|
|
10402
|
-
|
|
10403
10844
|
/*
|
|
10404
10845
|
SIMPLE STYLE GUIDE:
|
|
10405
10846
|
|
|
@@ -10422,7 +10863,6 @@
|
|
|
10422
10863
|
var INIT_SNIPPET = 1;
|
|
10423
10864
|
|
|
10424
10865
|
var IDENTITY_FUNC = function(x) {return x;};
|
|
10425
|
-
var NOOP_FUNC = function() {};
|
|
10426
10866
|
|
|
10427
10867
|
/** @const */ var PRIMARY_INSTANCE_NAME = 'mixpanel';
|
|
10428
10868
|
/** @const */ var PAYLOAD_TYPE_BASE64 = 'base64';
|
|
@@ -10731,34 +11171,125 @@
|
|
|
10731
11171
|
this.autocapture = new Autocapture(this);
|
|
10732
11172
|
this.autocapture.init();
|
|
10733
11173
|
|
|
10734
|
-
|
|
10735
|
-
|
|
11174
|
+
this._init_tab_id();
|
|
11175
|
+
this._check_and_start_session_recording();
|
|
11176
|
+
};
|
|
11177
|
+
|
|
11178
|
+
/**
|
|
11179
|
+
* Assigns a unique UUID to this tab / window by leveraging sessionStorage.
|
|
11180
|
+
* This is primarily used for session recording, where data must be isolated to the current tab.
|
|
11181
|
+
*/
|
|
11182
|
+
MixpanelLib.prototype._init_tab_id = function() {
|
|
11183
|
+
if (_.sessionStorage.is_supported()) {
|
|
11184
|
+
try {
|
|
11185
|
+
var key_suffix = this.get_config('name') + '_' + this.get_config('token');
|
|
11186
|
+
var tab_id_key = 'mp_tab_id_' + key_suffix;
|
|
11187
|
+
|
|
11188
|
+
// A flag is used to determine if sessionStorage is copied over and we need to generate a new tab ID.
|
|
11189
|
+
// This enforces a unique ID in the cases like duplicated tab, window.open(...)
|
|
11190
|
+
var should_generate_new_tab_id_key = 'mp_gen_new_tab_id_' + key_suffix;
|
|
11191
|
+
if (_.sessionStorage.get(should_generate_new_tab_id_key) || !_.sessionStorage.get(tab_id_key)) {
|
|
11192
|
+
_.sessionStorage.set(tab_id_key, '$tab-' + _.UUID());
|
|
11193
|
+
}
|
|
11194
|
+
|
|
11195
|
+
_.sessionStorage.set(should_generate_new_tab_id_key, '1');
|
|
11196
|
+
this.tab_id = _.sessionStorage.get(tab_id_key);
|
|
11197
|
+
|
|
11198
|
+
// Remove the flag when the tab is unloaded to indicate the stored tab ID can be reused. This event is not reliable to detect all page unloads,
|
|
11199
|
+
// but reliable in cases where the user remains in the tab e.g. a refresh or href navigation.
|
|
11200
|
+
// If the flag is absent, this indicates to the next SDK instance that we can reuse the stored tab_id.
|
|
11201
|
+
win.addEventListener('beforeunload', function () {
|
|
11202
|
+
_.sessionStorage.remove(should_generate_new_tab_id_key);
|
|
11203
|
+
});
|
|
11204
|
+
} catch(err) {
|
|
11205
|
+
this.report_error('Error initializing tab id', err);
|
|
11206
|
+
}
|
|
11207
|
+
} else {
|
|
11208
|
+
this.report_error('Session storage is not supported, cannot keep track of unique tab ID.');
|
|
10736
11209
|
}
|
|
10737
11210
|
};
|
|
10738
11211
|
|
|
10739
|
-
MixpanelLib.prototype.
|
|
11212
|
+
MixpanelLib.prototype.get_tab_id = function () {
|
|
11213
|
+
return this.tab_id || null;
|
|
11214
|
+
};
|
|
11215
|
+
|
|
11216
|
+
MixpanelLib.prototype._should_load_recorder = function () {
|
|
11217
|
+
var recording_registry_idb = new IDBStorageWrapper(RECORDING_REGISTRY_STORE_NAME);
|
|
11218
|
+
var tab_id = this.get_tab_id();
|
|
11219
|
+
return recording_registry_idb.init()
|
|
11220
|
+
.then(function () {
|
|
11221
|
+
return recording_registry_idb.getAll();
|
|
11222
|
+
})
|
|
11223
|
+
.then(function (recordings) {
|
|
11224
|
+
for (var i = 0; i < recordings.length; i++) {
|
|
11225
|
+
// if there are expired recordings in the registry, we should load the recorder to flush them
|
|
11226
|
+
// if there's a recording for this tab id, we should load the recorder to continue the recording
|
|
11227
|
+
if (isRecordingExpired(recordings[i]) || recordings[i]['tabId'] === tab_id) {
|
|
11228
|
+
return true;
|
|
11229
|
+
}
|
|
11230
|
+
}
|
|
11231
|
+
return false;
|
|
11232
|
+
})
|
|
11233
|
+
.catch(_.bind(function (err) {
|
|
11234
|
+
this.report_error('Error checking recording registry', err);
|
|
11235
|
+
}, this));
|
|
11236
|
+
};
|
|
11237
|
+
|
|
11238
|
+
MixpanelLib.prototype._check_and_start_session_recording = addOptOutCheckMixpanelLib(function(force_start) {
|
|
10740
11239
|
if (!win['MutationObserver']) {
|
|
10741
11240
|
console$1.critical('Browser does not support MutationObserver; skipping session recording');
|
|
10742
11241
|
return;
|
|
10743
11242
|
}
|
|
10744
11243
|
|
|
10745
|
-
var
|
|
10746
|
-
|
|
10747
|
-
|
|
11244
|
+
var loadRecorder = _.bind(function(startNewIfInactive) {
|
|
11245
|
+
var handleLoadedRecorder = _.bind(function() {
|
|
11246
|
+
this._recorder = this._recorder || new win['__mp_recorder'](this);
|
|
11247
|
+
this._recorder['resumeRecording'](startNewIfInactive);
|
|
11248
|
+
}, this);
|
|
11249
|
+
|
|
11250
|
+
if (_.isUndefined(win['__mp_recorder'])) {
|
|
11251
|
+
load_extra_bundle(this.get_config('recorder_src'), handleLoadedRecorder);
|
|
11252
|
+
} else {
|
|
11253
|
+
handleLoadedRecorder();
|
|
11254
|
+
}
|
|
10748
11255
|
}, this);
|
|
10749
11256
|
|
|
10750
|
-
|
|
10751
|
-
|
|
11257
|
+
/**
|
|
11258
|
+
* If the user is sampled or start_session_recording is called, we always load the recorder since it's guaranteed a recording should start.
|
|
11259
|
+
* Otherwise, if the recording registry has any records then it's likely there's a recording in progress or orphaned data that needs to be flushed.
|
|
11260
|
+
*/
|
|
11261
|
+
var is_sampled = this.get_config('record_sessions_percent') > 0 && Math.random() * 100 <= this.get_config('record_sessions_percent');
|
|
11262
|
+
if (force_start || is_sampled) {
|
|
11263
|
+
loadRecorder(true);
|
|
10752
11264
|
} else {
|
|
10753
|
-
|
|
11265
|
+
this._should_load_recorder()
|
|
11266
|
+
.then(function (shouldLoad) {
|
|
11267
|
+
if (shouldLoad) {
|
|
11268
|
+
loadRecorder(false);
|
|
11269
|
+
}
|
|
11270
|
+
});
|
|
10754
11271
|
}
|
|
10755
11272
|
});
|
|
10756
11273
|
|
|
11274
|
+
MixpanelLib.prototype.start_session_recording = function () {
|
|
11275
|
+
this._check_and_start_session_recording(true);
|
|
11276
|
+
};
|
|
11277
|
+
|
|
10757
11278
|
MixpanelLib.prototype.stop_session_recording = function () {
|
|
10758
11279
|
if (this._recorder) {
|
|
10759
11280
|
this._recorder['stopRecording']();
|
|
10760
|
-
}
|
|
10761
|
-
|
|
11281
|
+
}
|
|
11282
|
+
};
|
|
11283
|
+
|
|
11284
|
+
MixpanelLib.prototype.pause_session_recording = function () {
|
|
11285
|
+
if (this._recorder) {
|
|
11286
|
+
this._recorder['pauseRecording']();
|
|
11287
|
+
}
|
|
11288
|
+
};
|
|
11289
|
+
|
|
11290
|
+
MixpanelLib.prototype.resume_session_recording = function () {
|
|
11291
|
+
if (this._recorder) {
|
|
11292
|
+
this._recorder['resumeRecording']();
|
|
10762
11293
|
}
|
|
10763
11294
|
};
|
|
10764
11295
|
|
|
@@ -10793,6 +11324,11 @@
|
|
|
10793
11324
|
return replay_id || null;
|
|
10794
11325
|
};
|
|
10795
11326
|
|
|
11327
|
+
// "private" public method to reach into the recorder in test cases
|
|
11328
|
+
MixpanelLib.prototype.__get_recorder = function () {
|
|
11329
|
+
return this._recorder;
|
|
11330
|
+
};
|
|
11331
|
+
|
|
10796
11332
|
// Private methods
|
|
10797
11333
|
|
|
10798
11334
|
MixpanelLib.prototype._loaded = function() {
|
|
@@ -11132,7 +11668,8 @@
|
|
|
11132
11668
|
return this._run_hook('before_send_' + attrs.type, item);
|
|
11133
11669
|
}, this),
|
|
11134
11670
|
stopAllBatchingFunc: _.bind(this.stop_batch_senders, this),
|
|
11135
|
-
usePersistence: true
|
|
11671
|
+
usePersistence: true,
|
|
11672
|
+
enqueueThrottleMs: 10,
|
|
11136
11673
|
}
|
|
11137
11674
|
);
|
|
11138
11675
|
}, this);
|
|
@@ -12233,6 +12770,7 @@
|
|
|
12233
12770
|
|
|
12234
12771
|
if (disabled) {
|
|
12235
12772
|
this.stop_batch_senders();
|
|
12773
|
+
this.stop_session_recording();
|
|
12236
12774
|
} else {
|
|
12237
12775
|
// only start batchers after opt-in if they have previously been started
|
|
12238
12776
|
// in order to avoid unintentionally starting up batching for the first time
|
|
@@ -12473,10 +13011,16 @@
|
|
|
12473
13011
|
MixpanelLib.prototype['stop_batch_senders'] = MixpanelLib.prototype.stop_batch_senders;
|
|
12474
13012
|
MixpanelLib.prototype['start_session_recording'] = MixpanelLib.prototype.start_session_recording;
|
|
12475
13013
|
MixpanelLib.prototype['stop_session_recording'] = MixpanelLib.prototype.stop_session_recording;
|
|
13014
|
+
MixpanelLib.prototype['pause_session_recording'] = MixpanelLib.prototype.pause_session_recording;
|
|
13015
|
+
MixpanelLib.prototype['resume_session_recording'] = MixpanelLib.prototype.resume_session_recording;
|
|
12476
13016
|
MixpanelLib.prototype['get_session_recording_properties'] = MixpanelLib.prototype.get_session_recording_properties;
|
|
12477
13017
|
MixpanelLib.prototype['get_session_replay_url'] = MixpanelLib.prototype.get_session_replay_url;
|
|
13018
|
+
MixpanelLib.prototype['get_tab_id'] = MixpanelLib.prototype.get_tab_id;
|
|
12478
13019
|
MixpanelLib.prototype['DEFAULT_API_ROUTES'] = DEFAULT_API_ROUTES;
|
|
12479
13020
|
|
|
13021
|
+
// Exports intended only for testing
|
|
13022
|
+
MixpanelLib.prototype['__get_recorder'] = MixpanelLib.prototype.__get_recorder;
|
|
13023
|
+
|
|
12480
13024
|
// MixpanelPersistence Exports
|
|
12481
13025
|
MixpanelPersistence.prototype['properties'] = MixpanelPersistence.prototype.properties;
|
|
12482
13026
|
MixpanelPersistence.prototype['update_search_keyword'] = MixpanelPersistence.prototype.update_search_keyword;
|