@rudderstack/analytics-js 3.0.0-beta.2 → 3.0.0-beta.20
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +200 -3
- package/README.md +57 -10
- package/dist/npm/index.d.ts +1335 -0
- package/dist/npm/legacy/cjs/index.js +3801 -0
- package/dist/npm/legacy/esm/index.js +3799 -0
- package/dist/npm/legacy/umd/index.js +3807 -0
- package/dist/npm/modern/bundled/cjs/index.js +3257 -0
- package/dist/npm/modern/bundled/esm/index.js +3253 -0
- package/dist/npm/modern/bundled/umd/index.js +3263 -0
- package/{modern → dist/npm/modern}/cjs/index.js +427 -516
- package/dist/npm/modern/content-script/cjs/index.js +3233 -0
- package/dist/npm/modern/content-script/esm/index.js +3229 -0
- package/dist/npm/modern/content-script/umd/index.js +3239 -0
- package/{modern → dist/npm/modern}/esm/index.js +428 -512
- package/{modern → dist/npm/modern}/umd/index.js +427 -516
- package/package.json +46 -118
- package/index.d.ts +0 -387
- package/legacy/cjs/index.js +0 -3887
- package/legacy/esm/index.js +0 -3880
- package/legacy/umd/index.js +0 -3893
@@ -0,0 +1,3233 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
4
|
+
|
5
|
+
function _isPlaceholder(a){return a!=null&&typeof a==='object'&&a['@@functional/placeholder']===true;}
|
6
|
+
|
7
|
+
/**
|
8
|
+
* Optimized internal one-arity curry function.
|
9
|
+
*
|
10
|
+
* @private
|
11
|
+
* @category Function
|
12
|
+
* @param {Function} fn The function to curry.
|
13
|
+
* @return {Function} The curried function.
|
14
|
+
*/function _curry1(fn){return function f1(a){if(arguments.length===0||_isPlaceholder(a)){return f1;}else {return fn.apply(this,arguments);}};}
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Optimized internal two-arity curry function.
|
18
|
+
*
|
19
|
+
* @private
|
20
|
+
* @category Function
|
21
|
+
* @param {Function} fn The function to curry.
|
22
|
+
* @return {Function} The curried function.
|
23
|
+
*/function _curry2(fn){return function f2(a,b){switch(arguments.length){case 0:return f2;case 1:return _isPlaceholder(a)?f2:_curry1(function(_b){return fn(a,_b);});default:return _isPlaceholder(a)&&_isPlaceholder(b)?f2:_isPlaceholder(a)?_curry1(function(_a){return fn(_a,b);}):_isPlaceholder(b)?_curry1(function(_b){return fn(a,_b);}):fn(a,b);}};}
|
24
|
+
|
25
|
+
/**
|
26
|
+
* Optimized internal three-arity curry function.
|
27
|
+
*
|
28
|
+
* @private
|
29
|
+
* @category Function
|
30
|
+
* @param {Function} fn The function to curry.
|
31
|
+
* @return {Function} The curried function.
|
32
|
+
*/function _curry3(fn){return function f3(a,b,c){switch(arguments.length){case 0:return f3;case 1:return _isPlaceholder(a)?f3:_curry2(function(_b,_c){return fn(a,_b,_c);});case 2:return _isPlaceholder(a)&&_isPlaceholder(b)?f3:_isPlaceholder(a)?_curry2(function(_a,_c){return fn(_a,b,_c);}):_isPlaceholder(b)?_curry2(function(_b,_c){return fn(a,_b,_c);}):_curry1(function(_c){return fn(a,b,_c);});default:return _isPlaceholder(a)&&_isPlaceholder(b)&&_isPlaceholder(c)?f3:_isPlaceholder(a)&&_isPlaceholder(b)?_curry2(function(_a,_b){return fn(_a,_b,c);}):_isPlaceholder(a)&&_isPlaceholder(c)?_curry2(function(_a,_c){return fn(_a,b,_c);}):_isPlaceholder(b)&&_isPlaceholder(c)?_curry2(function(_b,_c){return fn(a,_b,_c);}):_isPlaceholder(a)?_curry1(function(_a){return fn(_a,b,c);}):_isPlaceholder(b)?_curry1(function(_b){return fn(a,_b,c);}):_isPlaceholder(c)?_curry1(function(_c){return fn(a,b,_c);}):fn(a,b,c);}};}
|
33
|
+
|
34
|
+
function _has(prop,obj){return Object.prototype.hasOwnProperty.call(obj,prop);}
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Gives a single-word string description of the (native) type of a value,
|
38
|
+
* returning such answers as 'Object', 'Number', 'Array', or 'Null'. Does not
|
39
|
+
* attempt to distinguish user Object types any further, reporting them all as
|
40
|
+
* 'Object'.
|
41
|
+
*
|
42
|
+
* @func
|
43
|
+
* @memberOf R
|
44
|
+
* @since v0.8.0
|
45
|
+
* @category Type
|
46
|
+
* @sig * -> String
|
47
|
+
* @param {*} val The value to test
|
48
|
+
* @return {String}
|
49
|
+
* @example
|
50
|
+
*
|
51
|
+
* R.type({}); //=> "Object"
|
52
|
+
* R.type(1); //=> "Number"
|
53
|
+
* R.type(false); //=> "Boolean"
|
54
|
+
* R.type('s'); //=> "String"
|
55
|
+
* R.type(null); //=> "Null"
|
56
|
+
* R.type([]); //=> "Array"
|
57
|
+
* R.type(/[A-z]/); //=> "RegExp"
|
58
|
+
* R.type(() => {}); //=> "Function"
|
59
|
+
* R.type(async () => {}); //=> "AsyncFunction"
|
60
|
+
* R.type(undefined); //=> "Undefined"
|
61
|
+
*/var type=/*#__PURE__*/_curry1(function type(val){return val===null?'Null':val===undefined?'Undefined':Object.prototype.toString.call(val).slice(8,-1);});
|
62
|
+
|
63
|
+
function _isObject(x){return Object.prototype.toString.call(x)==='[object Object]';}
|
64
|
+
|
65
|
+
/**
|
66
|
+
* Determine if the passed argument is an integer.
|
67
|
+
*
|
68
|
+
* @private
|
69
|
+
* @param {*} n
|
70
|
+
* @category Type
|
71
|
+
* @return {Boolean}
|
72
|
+
*/const _isInteger = Number.isInteger||function _isInteger(n){return n<<0===n;};
|
73
|
+
|
74
|
+
function _isString(x){return Object.prototype.toString.call(x)==='[object String]';}
|
75
|
+
|
76
|
+
/**
|
77
|
+
* Returns the nth element of the given list or string. If n is negative the
|
78
|
+
* element at index length + n is returned.
|
79
|
+
*
|
80
|
+
* @func
|
81
|
+
* @memberOf R
|
82
|
+
* @since v0.1.0
|
83
|
+
* @category List
|
84
|
+
* @sig Number -> [a] -> a | Undefined
|
85
|
+
* @sig Number -> String -> String
|
86
|
+
* @param {Number} offset
|
87
|
+
* @param {*} list
|
88
|
+
* @return {*}
|
89
|
+
* @example
|
90
|
+
*
|
91
|
+
* const list = ['foo', 'bar', 'baz', 'quux'];
|
92
|
+
* R.nth(1, list); //=> 'bar'
|
93
|
+
* R.nth(-1, list); //=> 'quux'
|
94
|
+
* R.nth(-99, list); //=> undefined
|
95
|
+
*
|
96
|
+
* R.nth(2, 'abc'); //=> 'c'
|
97
|
+
* R.nth(3, 'abc'); //=> ''
|
98
|
+
* @symb R.nth(-1, [a, b, c]) = c
|
99
|
+
* @symb R.nth(0, [a, b, c]) = a
|
100
|
+
* @symb R.nth(1, [a, b, c]) = b
|
101
|
+
*/var nth=/*#__PURE__*/_curry2(function nth(offset,list){var idx=offset<0?list.length+offset:offset;return _isString(list)?list.charAt(idx):list[idx];});
|
102
|
+
|
103
|
+
function _cloneRegExp(pattern){return new RegExp(pattern.source,pattern.flags?pattern.flags:(pattern.global?'g':'')+(pattern.ignoreCase?'i':'')+(pattern.multiline?'m':'')+(pattern.sticky?'y':'')+(pattern.unicode?'u':'')+(pattern.dotAll?'s':''));}
|
104
|
+
|
105
|
+
/**
|
106
|
+
* Copies an object.
|
107
|
+
*
|
108
|
+
* @private
|
109
|
+
* @param {*} value The value to be copied
|
110
|
+
* @param {Boolean} deep Whether or not to perform deep cloning.
|
111
|
+
* @return {*} The copied value.
|
112
|
+
*/function _clone(value,deep,map){map||(map=new _ObjectMap());// this avoids the slower switch with a quick if decision removing some milliseconds in each run.
|
113
|
+
if(_isPrimitive(value)){return value;}var copy=function copy(copiedValue){// Check for circular and same references on the object graph and return its corresponding clone.
|
114
|
+
var cachedCopy=map.get(value);if(cachedCopy){return cachedCopy;}map.set(value,copiedValue);for(var key in value){if(Object.prototype.hasOwnProperty.call(value,key)){copiedValue[key]=deep?_clone(value[key],true,map):value[key];}}return copiedValue;};switch(type(value)){case'Object':return copy(Object.create(Object.getPrototypeOf(value)));case'Array':return copy([]);case'Date':return new Date(value.valueOf());case'RegExp':return _cloneRegExp(value);case'Int8Array':case'Uint8Array':case'Uint8ClampedArray':case'Int16Array':case'Uint16Array':case'Int32Array':case'Uint32Array':case'Float32Array':case'Float64Array':case'BigInt64Array':case'BigUint64Array':return value.slice();default:return value;}}function _isPrimitive(param){var type=typeof param;return param==null||type!='object'&&type!='function';}var _ObjectMap=/*#__PURE__*/function(){function _ObjectMap(){this.map={};this.length=0;}_ObjectMap.prototype.set=function(key,value){const hashedKey=this.hash(key);let bucket=this.map[hashedKey];if(!bucket){this.map[hashedKey]=bucket=[];}bucket.push([key,value]);this.length+=1;};_ObjectMap.prototype.hash=function(key){let hashedKey=[];for(var value in key){hashedKey.push(Object.prototype.toString.call(key[value]));}return hashedKey.join();};_ObjectMap.prototype.get=function(key){/**
|
115
|
+
* depending on the number of objects to be cloned is faster to just iterate over the items in the map just because the hash function is so costly,
|
116
|
+
* on my tests this number is 180, anything above that using the hash function is faster.
|
117
|
+
*/if(this.length<=180){for(const p in this.map){const bucket=this.map[p];for(let i=0;i<bucket.length;i+=1){const element=bucket[i];if(element[0]===key){return element[1];}}}return;}const hashedKey=this.hash(key);const bucket=this.map[hashedKey];if(!bucket){return;}for(let i=0;i<bucket.length;i+=1){const element=bucket[i];if(element[0]===key){return element[1];}}};return _ObjectMap;}();
|
118
|
+
|
119
|
+
/**
|
120
|
+
* Creates a deep copy of the source that can be used in place of the source
|
121
|
+
* object without retaining any references to it.
|
122
|
+
* The source object may contain (nested) `Array`s and `Object`s,
|
123
|
+
* `Number`s, `String`s, `Boolean`s and `Date`s.
|
124
|
+
* `Function`s are assigned by reference rather than copied.
|
125
|
+
*
|
126
|
+
* Dispatches to a `clone` method if present.
|
127
|
+
*
|
128
|
+
* Note that if the source object has multiple nodes that share a reference,
|
129
|
+
* the returned object will have the same structure, but the references will
|
130
|
+
* be pointed to the location within the cloned value.
|
131
|
+
*
|
132
|
+
* @func
|
133
|
+
* @memberOf R
|
134
|
+
* @since v0.1.0
|
135
|
+
* @category Object
|
136
|
+
* @sig {*} -> {*}
|
137
|
+
* @param {*} value The object or array to clone
|
138
|
+
* @return {*} A deeply cloned copy of `val`
|
139
|
+
* @example
|
140
|
+
*
|
141
|
+
* const objects = [{}, {}, {}];
|
142
|
+
* const objectsClone = R.clone(objects);
|
143
|
+
* objects === objectsClone; //=> false
|
144
|
+
* objects[0] === objectsClone[0]; //=> false
|
145
|
+
*/var clone=/*#__PURE__*/_curry1(function clone(value){return value!=null&&typeof value.clone==='function'?value.clone():_clone(value,true);});
|
146
|
+
|
147
|
+
/**
|
148
|
+
* Retrieves the values at given paths of an object.
|
149
|
+
*
|
150
|
+
* @func
|
151
|
+
* @memberOf R
|
152
|
+
* @since v0.27.1
|
153
|
+
* @category Object
|
154
|
+
* @typedefn Idx = [String | Int | Symbol]
|
155
|
+
* @sig [Idx] -> {a} -> [a | Undefined]
|
156
|
+
* @param {Array} pathsArray The array of paths to be fetched.
|
157
|
+
* @param {Object} obj The object to retrieve the nested properties from.
|
158
|
+
* @return {Array} A list consisting of values at paths specified by "pathsArray".
|
159
|
+
* @see R.path
|
160
|
+
* @example
|
161
|
+
*
|
162
|
+
* R.paths([['a', 'b'], ['p', 0, 'q']], {a: {b: 2}, p: [{q: 3}]}); //=> [2, 3]
|
163
|
+
* R.paths([['a', 'b'], ['p', 'r']], {a: {b: 2}, p: [{q: 3}]}); //=> [2, undefined]
|
164
|
+
*/var paths=/*#__PURE__*/_curry2(function paths(pathsArray,obj){return pathsArray.map(function(paths){var val=obj;var idx=0;var p;while(idx<paths.length){if(val==null){return;}p=paths[idx];val=_isInteger(p)?nth(p,val):val[p];idx+=1;}return val;});});
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Retrieves the value at a given path. The nodes of the path can be arbitrary strings or non-negative integers.
|
168
|
+
* For anything else, the value is unspecified. Integer paths are meant to index arrays, strings are meant for objects.
|
169
|
+
*
|
170
|
+
* @func
|
171
|
+
* @memberOf R
|
172
|
+
* @since v0.2.0
|
173
|
+
* @category Object
|
174
|
+
* @typedefn Idx = String | Int | Symbol
|
175
|
+
* @sig [Idx] -> {a} -> a | Undefined
|
176
|
+
* @sig Idx = String | NonNegativeInt
|
177
|
+
* @param {Array} path The path to use.
|
178
|
+
* @param {Object} obj The object or array to retrieve the nested property from.
|
179
|
+
* @return {*} The data at `path`.
|
180
|
+
* @see R.prop, R.nth, R.assocPath, R.dissocPath
|
181
|
+
* @example
|
182
|
+
*
|
183
|
+
* R.path(['a', 'b'], {a: {b: 2}}); //=> 2
|
184
|
+
* R.path(['a', 'b'], {c: {b: 2}}); //=> undefined
|
185
|
+
* R.path(['a', 'b', 0], {a: {b: [1, 2, 3]}}); //=> 1
|
186
|
+
* R.path(['a', 'b', -2], {a: {b: [1, 2, 3]}}); //=> 2
|
187
|
+
* R.path([2], {'2': 2}); //=> 2
|
188
|
+
* R.path([-2], {'-2': 'a'}); //=> undefined
|
189
|
+
*/var path=/*#__PURE__*/_curry2(function path(pathAr,obj){return paths([pathAr],obj)[0];});
|
190
|
+
|
191
|
+
/**
|
192
|
+
* Creates a new object with the own properties of the two provided objects. If
|
193
|
+
* a key exists in both objects, the provided function is applied to the key
|
194
|
+
* and the values associated with the key in each object, with the result being
|
195
|
+
* used as the value associated with the key in the returned object.
|
196
|
+
*
|
197
|
+
* @func
|
198
|
+
* @memberOf R
|
199
|
+
* @since v0.19.0
|
200
|
+
* @category Object
|
201
|
+
* @sig ((String, a, a) -> a) -> {a} -> {a} -> {a}
|
202
|
+
* @param {Function} fn
|
203
|
+
* @param {Object} l
|
204
|
+
* @param {Object} r
|
205
|
+
* @return {Object}
|
206
|
+
* @see R.mergeDeepWithKey, R.merge, R.mergeWith
|
207
|
+
* @example
|
208
|
+
*
|
209
|
+
* let concatValues = (k, l, r) => k == 'values' ? R.concat(l, r) : r
|
210
|
+
* R.mergeWithKey(concatValues,
|
211
|
+
* { a: true, thing: 'foo', values: [10, 20] },
|
212
|
+
* { b: true, thing: 'bar', values: [15, 35] });
|
213
|
+
* //=> { a: true, b: true, thing: 'bar', values: [10, 20, 15, 35] }
|
214
|
+
* @symb R.mergeWithKey(f, { x: 1, y: 2 }, { y: 5, z: 3 }) = { x: 1, y: f('y', 2, 5), z: 3 }
|
215
|
+
*/var mergeWithKey=/*#__PURE__*/_curry3(function mergeWithKey(fn,l,r){var result={};var k;l=l||{};r=r||{};for(k in l){if(_has(k,l)){result[k]=_has(k,r)?fn(k,l[k],r[k]):l[k];}}for(k in r){if(_has(k,r)&&!_has(k,result)){result[k]=r[k];}}return result;});
|
216
|
+
|
217
|
+
/**
|
218
|
+
* Creates a new object with the own properties of the two provided objects.
|
219
|
+
* If a key exists in both objects:
|
220
|
+
* - and both associated values are also objects then the values will be
|
221
|
+
* recursively merged.
|
222
|
+
* - otherwise the provided function is applied to the key and associated values
|
223
|
+
* using the resulting value as the new value associated with the key.
|
224
|
+
* If a key only exists in one object, the value will be associated with the key
|
225
|
+
* of the resulting object.
|
226
|
+
*
|
227
|
+
* @func
|
228
|
+
* @memberOf R
|
229
|
+
* @since v0.24.0
|
230
|
+
* @category Object
|
231
|
+
* @sig ((String, a, a) -> a) -> {a} -> {a} -> {a}
|
232
|
+
* @param {Function} fn
|
233
|
+
* @param {Object} lObj
|
234
|
+
* @param {Object} rObj
|
235
|
+
* @return {Object}
|
236
|
+
* @see R.mergeWithKey, R.mergeDeepWith
|
237
|
+
* @example
|
238
|
+
*
|
239
|
+
* let concatValues = (k, l, r) => k == 'values' ? R.concat(l, r) : r
|
240
|
+
* R.mergeDeepWithKey(concatValues,
|
241
|
+
* { a: true, c: { thing: 'foo', values: [10, 20] }},
|
242
|
+
* { b: true, c: { thing: 'bar', values: [15, 35] }});
|
243
|
+
* //=> { a: true, b: true, c: { thing: 'bar', values: [10, 20, 15, 35] }}
|
244
|
+
*/var mergeDeepWithKey=/*#__PURE__*/_curry3(function mergeDeepWithKey(fn,lObj,rObj){return mergeWithKey(function(k,lVal,rVal){if(_isObject(lVal)&&_isObject(rVal)){return mergeDeepWithKey(fn,lVal,rVal);}else {return fn(k,lVal,rVal);}},lObj,rObj);});
|
245
|
+
|
246
|
+
/**
|
247
|
+
* Creates a new object with the own properties of the two provided objects.
|
248
|
+
* If a key exists in both objects:
|
249
|
+
* - and both associated values are also objects then the values will be
|
250
|
+
* recursively merged.
|
251
|
+
* - otherwise the provided function is applied to associated values using the
|
252
|
+
* resulting value as the new value associated with the key.
|
253
|
+
* If a key only exists in one object, the value will be associated with the key
|
254
|
+
* of the resulting object.
|
255
|
+
*
|
256
|
+
* @func
|
257
|
+
* @memberOf R
|
258
|
+
* @since v0.24.0
|
259
|
+
* @category Object
|
260
|
+
* @sig ((a, a) -> a) -> {a} -> {a} -> {a}
|
261
|
+
* @param {Function} fn
|
262
|
+
* @param {Object} lObj
|
263
|
+
* @param {Object} rObj
|
264
|
+
* @return {Object}
|
265
|
+
* @see R.mergeWith, R.mergeDeepWithKey
|
266
|
+
* @example
|
267
|
+
*
|
268
|
+
* R.mergeDeepWith(R.concat,
|
269
|
+
* { a: true, c: { values: [10, 20] }},
|
270
|
+
* { b: true, c: { values: [15, 35] }});
|
271
|
+
* //=> { a: true, b: true, c: { values: [10, 20, 15, 35] }}
|
272
|
+
*/var mergeDeepWith=/*#__PURE__*/_curry3(function mergeDeepWith(fn,lObj,rObj){return mergeDeepWithKey(function(k,lVal,rVal){return fn(lVal,rVal);},lObj,rObj);});
|
273
|
+
|
274
|
+
/**
|
275
|
+
* Returns a partial copy of an object containing only the keys that satisfy
|
276
|
+
* the supplied predicate.
|
277
|
+
*
|
278
|
+
* @func
|
279
|
+
* @memberOf R
|
280
|
+
* @since v0.8.0
|
281
|
+
* @category Object
|
282
|
+
* @sig ((v, k) -> Boolean) -> {k: v} -> {k: v}
|
283
|
+
* @param {Function} pred A predicate to determine whether or not a key
|
284
|
+
* should be included on the output object.
|
285
|
+
* @param {Object} obj The object to copy from
|
286
|
+
* @return {Object} A new object with only properties that satisfy `pred`
|
287
|
+
* on it.
|
288
|
+
* @see R.pick, R.filter
|
289
|
+
* @example
|
290
|
+
*
|
291
|
+
* const isUpperCase = (val, key) => key.toUpperCase() === key;
|
292
|
+
* R.pickBy(isUpperCase, {a: 1, b: 2, A: 3, B: 4}); //=> {A: 3, B: 4}
|
293
|
+
*/var pickBy=/*#__PURE__*/_curry2(function pickBy(test,obj){var result={};for(var prop in obj){if(test(obj[prop],prop,obj)){result[prop]=obj[prop];}}return result;});
|
294
|
+
|
295
|
+
/**
|
296
|
+
* A function to check given value is a function
|
297
|
+
* @param value input value
|
298
|
+
* @returns boolean
|
299
|
+
*/ // eslint-disable-next-line @typescript-eslint/ban-types
|
300
|
+
const isFunction=value=>typeof value==='function'&&Boolean(value.constructor&&value.call&&value.apply);/**
|
301
|
+
* A function to check given value is a string
|
302
|
+
* @param value input value
|
303
|
+
* @returns boolean
|
304
|
+
*/const isString=value=>typeof value==='string';/**
|
305
|
+
* A function to check given value is null or not
|
306
|
+
* @param value input value
|
307
|
+
* @returns boolean
|
308
|
+
*/const isNull=value=>value===null;/**
|
309
|
+
* A function to check given value is undefined
|
310
|
+
* @param value input value
|
311
|
+
* @returns boolean
|
312
|
+
*/const isUndefined=value=>typeof value==='undefined';/**
|
313
|
+
* A function to check given value is null or undefined
|
314
|
+
* @param value input value
|
315
|
+
* @returns boolean
|
316
|
+
*/const isNullOrUndefined=value=>isNull(value)||isUndefined(value);/**
|
317
|
+
* A function to check given value is defined
|
318
|
+
* @param value input value
|
319
|
+
* @returns boolean
|
320
|
+
*/const isDefined=value=>!isUndefined(value);/**
|
321
|
+
* A function to check given value is defined and not null
|
322
|
+
* @param value input value
|
323
|
+
* @returns boolean
|
324
|
+
*/const isDefinedAndNotNull=value=>!isNullOrUndefined(value);/**
|
325
|
+
* A function to check given value is defined and not null
|
326
|
+
* @param value input value
|
327
|
+
* @returns boolean
|
328
|
+
*/const isDefinedNotNullAndNotEmptyString=value=>isDefinedAndNotNull(value)&&value!=='';/**
|
329
|
+
* Determines if the input is an instance of Error
|
330
|
+
* @param obj input value
|
331
|
+
* @returns true if the input is an instance of Error and false otherwise
|
332
|
+
*/const isTypeOfError=obj=>obj instanceof Error;
|
333
|
+
|
334
|
+
const getValueByPath=(obj,keyPath)=>{const pathParts=keyPath.split('.');return path(pathParts,obj);};const hasValueByPath=(obj,path)=>Boolean(getValueByPath(obj,path));/**
|
335
|
+
* Checks if the input is an object literal or built-in object type and not null
|
336
|
+
* @param value Input value
|
337
|
+
* @returns true if the input is an object and not null
|
338
|
+
*/const isObjectAndNotNull=value=>!isNull(value)&&typeof value==='object'&&!Array.isArray(value);/**
|
339
|
+
* Checks if the input is an object literal and not null
|
340
|
+
* @param value Input value
|
341
|
+
* @returns true if the input is an object and not null
|
342
|
+
*/const isObjectLiteralAndNotNull=value=>!isNull(value)&&Object.prototype.toString.call(value)==='[object Object]';const mergeDeepRightObjectArrays=(leftValue,rightValue)=>{if(!Array.isArray(leftValue)||!Array.isArray(rightValue)){return clone(rightValue);}const mergedArray=clone(leftValue);rightValue.forEach((value,index)=>{mergedArray[index]=Array.isArray(value)||isObjectAndNotNull(value)?// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
343
|
+
mergeDeepRight(mergedArray[index],value):value;});return mergedArray;};const mergeDeepRight=(leftObject,rightObject)=>mergeDeepWith(mergeDeepRightObjectArrays,leftObject,rightObject);/**
|
344
|
+
Checks if the input is a non-empty object literal type and not undefined or null
|
345
|
+
* @param value input any
|
346
|
+
* @returns boolean
|
347
|
+
*/const isNonEmptyObject=value=>isObjectLiteralAndNotNull(value)&&Object.keys(value).length>0;/**
|
348
|
+
* A utility to recursively remove undefined values from an object
|
349
|
+
* @param obj input object
|
350
|
+
* @returns a new object
|
351
|
+
*/const removeUndefinedValues=obj=>{const result=pickBy(isDefined,obj);Object.keys(result).forEach(key=>{const value=result[key];if(isObjectLiteralAndNotNull(value)){result[key]=removeUndefinedValues(value);}});return result;};/**
|
352
|
+
* A utility to recursively remove undefined and null values from an object
|
353
|
+
* @param obj input object
|
354
|
+
* @returns a new object
|
355
|
+
*/const removeUndefinedAndNullValues=obj=>{const result=pickBy(isDefinedAndNotNull,obj);Object.keys(result).forEach(key=>{const value=result[key];if(isObjectLiteralAndNotNull(value)){result[key]=removeUndefinedAndNullValues(value);}});return result;};
|
356
|
+
|
357
|
+
const trim=value=>value.replace(/^\s+|\s+$/gm,'');const removeDoubleSpaces=value=>value.replace(/ {2,}/g,' ');/**
|
358
|
+
* A function to convert values to string
|
359
|
+
* @param val input value
|
360
|
+
* @returns stringified value
|
361
|
+
*/const tryStringify=val=>{let retVal=val;if(!isString(val)&&!isNullOrUndefined(val)){try{retVal=JSON.stringify(val);}catch(e){retVal=null;}}return retVal;};// The following text encoding and decoding is done before base64 encoding to prevent
|
362
|
+
// https://developer.mozilla.org/en-US/docs/Glossary/Base64#the_unicode_problem
|
363
|
+
/**
|
364
|
+
* Converts a base64 encoded string to bytes array
|
365
|
+
* @param base64Str base64 encoded string
|
366
|
+
* @returns bytes array
|
367
|
+
*/const base64ToBytes=base64Str=>{const binString=globalThis.atob(base64Str);const bytes=binString.split('').map(char=>char.charCodeAt(0));return new Uint8Array(bytes);};/**
|
368
|
+
* Converts a bytes array to base64 encoded string
|
369
|
+
* @param bytes bytes array to be converted to base64
|
370
|
+
* @returns base64 encoded string
|
371
|
+
*/const bytesToBase64=bytes=>{const binString=Array.from(bytes,x=>String.fromCodePoint(x)).join('');return globalThis.btoa(binString);};/**
|
372
|
+
* Encodes a string to base64 even with unicode characters
|
373
|
+
* @param value input string
|
374
|
+
* @returns base64 encoded string
|
375
|
+
*/const toBase64=value=>bytesToBase64(new TextEncoder().encode(value));/**
|
376
|
+
* Decodes a base64 encoded string
|
377
|
+
* @param value base64 encoded string
|
378
|
+
* @returns decoded string
|
379
|
+
*/const fromBase64=value=>new TextDecoder().decode(base64ToBytes(value));
|
380
|
+
|
381
|
+
// if yes make them null instead of omitting in overloaded cases
|
382
|
+
/*
|
383
|
+
* Normalise the overloaded arguments of the page call facade
|
384
|
+
*/const pageArgumentsToCallOptions=(category,name,properties,options,callback)=>{const payload={category:category,name:name,properties:properties,options:options};if(isFunction(callback)){payload.callback=callback;}if(isFunction(options)){payload.category=category;payload.name=name;payload.properties=properties;delete payload.options;payload.callback=options;}if(isFunction(properties)){payload.category=category;payload.name=name;delete payload.properties;delete payload.options;payload.callback=properties;}if(isFunction(name)){payload.category=category;delete payload.name;delete payload.properties;delete payload.options;payload.callback=name;}if(isFunction(category)){delete payload.category;delete payload.name;delete payload.properties;delete payload.options;payload.callback=category;}if(isObjectLiteralAndNotNull(category)){delete payload.name;delete payload.category;payload.properties=category;payload.options=name;}else if(isObjectLiteralAndNotNull(name)){delete payload.name;payload.properties=name;payload.options=!isFunction(properties)?properties:null;}// if the category argument alone is provided b/w category and name,
|
385
|
+
// use it as name and set category to undefined
|
386
|
+
if(isString(category)&&!isString(name)){delete payload.category;payload.name=category;}// Rest of the code is just to clean up undefined values
|
387
|
+
// and set some proper defaults
|
388
|
+
// Also, to clone the incoming object type arguments
|
389
|
+
if(!isDefined(payload.category)){delete payload.category;}if(!isDefined(payload.name)){delete payload.name;}payload.properties=payload.properties?clone(payload.properties):{};if(isDefined(payload.options)){payload.options=clone(payload.options);}else {delete payload.options;}// add name and category to properties
|
390
|
+
payload.properties=mergeDeepRight(isObjectLiteralAndNotNull(payload.properties)?payload.properties:{},{name:isString(payload.name)?payload.name:null,category:isString(payload.category)?payload.category:null});return payload;};/*
|
391
|
+
* Normalise the overloaded arguments of the track call facade
|
392
|
+
*/const trackArgumentsToCallOptions=(event,properties,options,callback)=>{const payload={name:event,properties:properties,options:options};if(isFunction(callback)){payload.callback=callback;}if(isFunction(options)){payload.properties=properties;delete payload.options;payload.callback=options;}if(isFunction(properties)){delete payload.properties;delete payload.options;payload.callback=properties;}// Rest of the code is just to clean up undefined values
|
393
|
+
// and set some proper defaults
|
394
|
+
// Also, to clone the incoming object type arguments
|
395
|
+
payload.properties=isDefinedAndNotNull(payload.properties)?clone(payload.properties):{};if(isDefined(payload.options)){payload.options=clone(payload.options);}else {delete payload.options;}return payload;};/*
|
396
|
+
* Normalise the overloaded arguments of the identify call facade
|
397
|
+
*/const identifyArgumentsToCallOptions=(userId,traits,options,callback)=>{const payload={userId:userId,traits:traits,options:options};if(isFunction(callback)){payload.callback=callback;}if(isFunction(options)){payload.userId=userId;payload.traits=traits;delete payload.options;payload.callback=options;}if(isFunction(traits)){payload.userId=userId;delete payload.traits;delete payload.options;payload.callback=traits;}if(isObjectLiteralAndNotNull(userId)||isNull(userId)){// Explicitly set null to prevent resetting the existing value
|
398
|
+
// in the Analytics class
|
399
|
+
payload.userId=null;payload.traits=userId;payload.options=traits;}// Rest of the code is just to clean up undefined values
|
400
|
+
// and set some proper defaults
|
401
|
+
// Also, to clone the incoming object type arguments
|
402
|
+
if(isDefined(payload.userId)){payload.userId=tryStringify(payload.userId);}else {delete payload.userId;}if(isObjectLiteralAndNotNull(payload.traits)){payload.traits=clone(payload.traits);}else {delete payload.traits;}if(isDefined(payload.options)){payload.options=clone(payload.options);}else {delete payload.options;}return payload;};/*
|
403
|
+
* Normalise the overloaded arguments of the alias call facade
|
404
|
+
*/const aliasArgumentsToCallOptions=(to,from,options,callback)=>{const payload={to:to,from:from,options:options};if(isFunction(callback)){payload.callback=callback;}if(isFunction(options)){payload.to=to;payload.from=from;delete payload.options;payload.callback=options;}if(isFunction(from)){payload.to=to;delete payload.from;delete payload.options;payload.callback=from;}else if(isObjectLiteralAndNotNull(from)||isNull(from)){payload.to=to;delete payload.from;payload.options=from;}if(isFunction(to)){delete payload.to;delete payload.from;delete payload.options;payload.callback=to;}else if(isObjectLiteralAndNotNull(to)||isNull(to)){delete payload.to;delete payload.from;payload.options=to;}// Rest of the code is just to clean up undefined values
|
405
|
+
// and set some proper defaults
|
406
|
+
// Also, to clone the incoming object type arguments
|
407
|
+
if(isDefined(payload.to)){payload.to=tryStringify(payload.to);}else {delete payload.to;}if(isDefined(payload.from)){payload.from=tryStringify(payload.from);}else {delete payload.from;}if(isDefined(payload.options)){payload.options=clone(payload.options);}else {delete payload.options;}return payload;};/*
|
408
|
+
* Normalise the overloaded arguments of the group call facade
|
409
|
+
*/const groupArgumentsToCallOptions=(groupId,traits,options,callback)=>{const payload={groupId:groupId,traits:traits,options:options};if(isFunction(callback)){payload.callback=callback;}if(isFunction(options)){payload.groupId=groupId;payload.traits=traits;delete payload.options;payload.callback=options;}if(isFunction(traits)){payload.groupId=groupId;delete payload.traits;delete payload.options;payload.callback=traits;}// TODO: why do we enable overload for group that only passes callback? is there any use case?
|
410
|
+
if(isFunction(groupId)){// Explicitly set null to prevent resetting the existing value
|
411
|
+
payload.groupId=null;delete payload.traits;delete payload.options;payload.callback=groupId;}else if(isObjectLiteralAndNotNull(groupId)||isNull(groupId)){// Explicitly set null to prevent resetting the existing value
|
412
|
+
// in the Analytics class
|
413
|
+
payload.groupId=null;payload.traits=groupId;payload.options=!isFunction(traits)?traits:null;}// Rest of the code is just to clean up undefined values
|
414
|
+
// and set some proper defaults
|
415
|
+
// Also, to clone the incoming object type arguments
|
416
|
+
if(isDefined(payload.groupId)){payload.groupId=tryStringify(payload.groupId);}else {delete payload.groupId;}payload.traits=isObjectLiteralAndNotNull(payload.traits)?clone(payload.traits):{};if(isDefined(payload.options)){payload.options=clone(payload.options);}else {delete payload.options;}return payload;};
|
417
|
+
|
418
|
+
const CAPABILITIES_MANAGER='CapabilitiesManager';const CONFIG_MANAGER='ConfigManager';const EVENT_MANAGER='EventManager';const PLUGINS_MANAGER='PluginsManager';const USER_SESSION_MANAGER='UserSessionManager';const ERROR_HANDLER='ErrorHandler';const PLUGIN_ENGINE='PluginEngine';const STORE_MANAGER='StoreManager';const READY_API='readyApi';const EVENT_REPOSITORY='EventRepository';const EXTERNAL_SRC_LOADER='ExternalSrcLoader';const HTTP_CLIENT='HttpClient';const RS_APP='RudderStackApplication';const ANALYTICS_CORE='AnalyticsCore';
|
419
|
+
|
420
|
+
const APP_NAME='RudderLabs JavaScript SDK';const APP_VERSION='3.0.0-beta.20';const APP_NAMESPACE='com.rudderlabs.javascript';const MODULE_TYPE='npm';const ADBLOCK_PAGE_CATEGORY='RudderJS-Initiated';const ADBLOCK_PAGE_NAME='ad-block page request';const ADBLOCK_PAGE_PATH='/ad-blocked';const GLOBAL_PRELOAD_BUFFER='preloadedEventsBuffer';const CONSENT_TRACK_EVENT_NAME='Consent Management Interaction';
|
421
|
+
|
422
|
+
const QUERY_PARAM_TRAIT_PREFIX='ajs_trait_';const QUERY_PARAM_PROPERTY_PREFIX='ajs_prop_';const QUERY_PARAM_ANONYMOUS_ID_KEY='ajs_aid';const QUERY_PARAM_USER_ID_KEY='ajs_uid';const QUERY_PARAM_TRACK_EVENT_NAME_KEY='ajs_event';
|
423
|
+
|
424
|
+
const DEFAULT_XHR_TIMEOUT_MS=10*1000;// 10 seconds
|
425
|
+
const DEFAULT_COOKIE_MAX_AGE_MS=31536000*1000;// 1 year
|
426
|
+
const DEFAULT_SESSION_TIMEOUT_MS=30*60*1000;// 30 minutes
|
427
|
+
const MIN_SESSION_TIMEOUT_MS=10*1000;// 10 seconds
|
428
|
+
const DEFAULT_DATA_PLANE_EVENTS_BUFFER_TIMEOUT_MS=10*1000;// 10 seconds
|
429
|
+
const DEBOUNCED_TIMEOUT_MS=250;// 250 milliseconds
|
430
|
+
|
431
|
+
/**
|
432
|
+
* Create globally accessible RudderStackGlobals object
|
433
|
+
*/const createExposedGlobals=(analyticsInstanceId='app')=>{if(!globalThis.RudderStackGlobals){globalThis.RudderStackGlobals={};}if(!globalThis.RudderStackGlobals[analyticsInstanceId]){globalThis.RudderStackGlobals[analyticsInstanceId]={};}};/**
|
434
|
+
* Add move values to globally accessible RudderStackGlobals object per analytics instance
|
435
|
+
*/const setExposedGlobal=(keyName,value,analyticsInstanceId='app')=>{createExposedGlobals(analyticsInstanceId);globalThis.RudderStackGlobals[analyticsInstanceId][keyName]=value;};/**
|
436
|
+
* Get values from globally accessible RudderStackGlobals object by analytics instance
|
437
|
+
*/const getExposedGlobal=(keyName,analyticsInstanceId='app')=>{createExposedGlobals(analyticsInstanceId);return globalThis.RudderStackGlobals[analyticsInstanceId][keyName];};function debounce(func,thisArg,delay=DEBOUNCED_TIMEOUT_MS){let timeoutId;return (...args)=>{globalThis.clearTimeout(timeoutId);timeoutId=globalThis.setTimeout(()=>{func.apply(thisArg,args);},delay);};}
|
438
|
+
|
439
|
+
/**
|
440
|
+
* Parse query string params into object values for keys that start with a defined prefix
|
441
|
+
*/const getEventDataFromQueryString=(params,dataTypeNamePrefix)=>{const data={};params.forEach((value,key)=>{if(key.startsWith(dataTypeNamePrefix)){// remove prefix from key name
|
442
|
+
const dataKey=key.substring(dataTypeNamePrefix.length);// add new key value pair in generated object
|
443
|
+
data[dataKey]=params.get(key);}});return data;};/**
|
444
|
+
* Parse query string into preload buffer events & push into existing array before any other events
|
445
|
+
*/const retrieveEventsFromQueryString=(argumentsArray=[])=>{// Mapping for trait and properties values based on key prefix
|
446
|
+
const eventArgumentToQueryParamMap={trait:QUERY_PARAM_TRAIT_PREFIX,properties:QUERY_PARAM_PROPERTY_PREFIX};const queryObject=new URLSearchParams(globalThis.location.search);// Add track events with name and properties
|
447
|
+
if(queryObject.get(QUERY_PARAM_TRACK_EVENT_NAME_KEY)){argumentsArray.unshift(['track',queryObject.get(QUERY_PARAM_TRACK_EVENT_NAME_KEY),getEventDataFromQueryString(queryObject,eventArgumentToQueryParamMap.properties)]);}// Set userId and user traits
|
448
|
+
if(queryObject.get(QUERY_PARAM_USER_ID_KEY)){argumentsArray.unshift(['identify',queryObject.get(QUERY_PARAM_USER_ID_KEY),getEventDataFromQueryString(queryObject,eventArgumentToQueryParamMap.trait)]);}// Set anonymousID
|
449
|
+
if(queryObject.get(QUERY_PARAM_ANONYMOUS_ID_KEY)){argumentsArray.unshift(['setAnonymousId',queryObject.get(QUERY_PARAM_ANONYMOUS_ID_KEY)]);}};/**
|
450
|
+
* Retrieve an existing buffered load method call and remove from the existing array
|
451
|
+
*/const getPreloadedLoadEvent=preloadedEventsArray=>{const loadMethodName='load';let loadEvent=[];/**
|
452
|
+
* Iterate the buffered API calls until we find load call and process it separately
|
453
|
+
*/let i=0;while(i<preloadedEventsArray.length){if(preloadedEventsArray[i]&&preloadedEventsArray[i][0]===loadMethodName){loadEvent=clone(preloadedEventsArray[i]);preloadedEventsArray.splice(i,1);break;}i+=1;}return loadEvent;};/**
|
454
|
+
* Promote consent events to the top of the preloaded events array
|
455
|
+
* @param preloadedEventsArray Preloaded events array
|
456
|
+
* @returns None
|
457
|
+
*/const promotePreloadedConsentEventsToTop=preloadedEventsArray=>{const consentMethodName='consent';const consentEvents=preloadedEventsArray.filter(bufferedEvent=>bufferedEvent[0]===consentMethodName);const nonConsentEvents=preloadedEventsArray.filter(bufferedEvent=>bufferedEvent[0]!==consentMethodName);// Remove all elements and add consent events first followed by non consent events
|
458
|
+
// eslint-disable-next-line unicorn/no-useless-spread
|
459
|
+
preloadedEventsArray.splice(0,preloadedEventsArray.length,...consentEvents,...nonConsentEvents);};/**
|
460
|
+
* Retrieve any existing events that were triggered before SDK load and enqueue in buffer
|
461
|
+
*/const retrievePreloadBufferEvents=instance=>{const preloadedEventsArray=getExposedGlobal(GLOBAL_PRELOAD_BUFFER)||[];// Get events that are pre-populated via query string params
|
462
|
+
retrieveEventsFromQueryString(preloadedEventsArray);// Enqueue the non load events in the buffer of the global rudder analytics singleton
|
463
|
+
if(preloadedEventsArray.length>0){instance.enqueuePreloadBufferEvents(preloadedEventsArray);setExposedGlobal(GLOBAL_PRELOAD_BUFFER,[]);}};const consumePreloadBufferedEvent=(event,analyticsInstance)=>{const methodName=event.shift();let callOptions;if(isFunction(analyticsInstance[methodName])){switch(methodName){case'page':callOptions=pageArgumentsToCallOptions(...event);break;case'track':callOptions=trackArgumentsToCallOptions(...event);break;case'identify':callOptions=identifyArgumentsToCallOptions(...event);break;case'alias':callOptions=aliasArgumentsToCallOptions(...event);break;case'group':callOptions=groupArgumentsToCallOptions(...event);break;default:analyticsInstance[methodName](...event);break;}if(callOptions){analyticsInstance[methodName](callOptions);}}};
|
464
|
+
|
465
|
+
const DEFAULT_EXT_SRC_LOAD_TIMEOUT_MS=10*1000;// 10 seconds
|
466
|
+
|
467
|
+
const LOG_CONTEXT_SEPARATOR=':: ';const SCRIPT_ALREADY_EXISTS_ERROR=id=>`A script with the id "${id}" is already loaded. Skipping the loading of this script to prevent conflicts.`;const SCRIPT_LOAD_ERROR=(id,url)=>`Failed to load the script with the id "${id}" from URL "${url}".`;const SCRIPT_LOAD_TIMEOUT_ERROR=(id,url,timeout)=>`A timeout of ${timeout} ms occurred while trying to load the script with id "${id}" from URL "${url}".`;const CIRCULAR_REFERENCE_WARNING=(context,key)=>`${context}${LOG_CONTEXT_SEPARATOR}A circular reference has been detected in the object and the property "${key}" has been dropped from the output.`;const JSON_STRINGIFY_WARNING=`Failed to convert the value to a JSON string.`;
|
468
|
+
|
469
|
+
const JSON_STRINGIFY='JSONStringify';const getCircularReplacer=(excludeNull,excludeKeys,logger)=>{const ancestors=[];// Here we do not want to use arrow function to use "this" in function context
|
470
|
+
// eslint-disable-next-line func-names
|
471
|
+
return function(key,value){if(excludeKeys?.includes(key)){return undefined;}if(excludeNull&&isNullOrUndefined(value)){return undefined;}if(typeof value!=='object'||isNull(value)){return value;}// `this` is the object that value is contained in, i.e., its direct parent.
|
472
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
473
|
+
// @ts-ignore-next-line
|
474
|
+
while(ancestors.length>0&&ancestors[ancestors.length-1]!==this){ancestors.pop();}if(ancestors.includes(value)){logger?.warn(CIRCULAR_REFERENCE_WARNING(JSON_STRINGIFY,key));return '[Circular Reference]';}ancestors.push(value);return value;};};/**
|
475
|
+
* Utility method for JSON stringify object excluding null values & circular references
|
476
|
+
*
|
477
|
+
* @param {*} value input
|
478
|
+
* @param {boolean} excludeNull if it should exclude nul or not
|
479
|
+
* @param {function} logger optional logger methods for warning
|
480
|
+
* @returns string
|
481
|
+
*/const stringifyWithoutCircular=(value,excludeNull,excludeKeys,logger)=>{try{return JSON.stringify(value,getCircularReplacer(excludeNull,excludeKeys,logger));}catch(err){logger?.warn(JSON_STRINGIFY_WARNING,err);return null;}};
|
482
|
+
|
483
|
+
/**
|
484
|
+
* Get mutated error with issue prepended to error message
|
485
|
+
* @param err Original error
|
486
|
+
* @param issue Issue to prepend to error message
|
487
|
+
* @returns Instance of Error with message prepended with issue
|
488
|
+
*/const getMutatedError=(err,issue)=>{let finalError=err;if(!isTypeOfError(err)){finalError=new Error(`${issue}: ${stringifyWithoutCircular(err)}`);}else {finalError.message=`${issue}: ${err.message}`;}return finalError;};
|
489
|
+
|
490
|
+
const EXTERNAL_SOURCE_LOAD_ORIGIN='RS_JS_SDK';
|
491
|
+
|
492
|
+
/**
|
493
|
+
* Create the DOM element to load a script marked as RS SDK originated
|
494
|
+
*
|
495
|
+
* @param {*} url The URL of the script to be loaded
|
496
|
+
* @param {*} id ID for the script tag
|
497
|
+
* @param {*} async Whether to load the script in async mode. Defaults to `true` [optional]
|
498
|
+
* @param {*} onload callback to invoke onload [optional]
|
499
|
+
* @param {*} onerror callback to invoke onerror [optional]
|
500
|
+
* @param {*} extraAttributes key/value pair with html attributes to add in html tag [optional]
|
501
|
+
*
|
502
|
+
* @returns HTMLScriptElement
|
503
|
+
*/const createScriptElement=(url,id,async=true,onload=null,onerror=null,extraAttributes={})=>{const scriptElement=document.createElement('script');scriptElement.type='text/javascript';scriptElement.onload=onload;scriptElement.onerror=onerror;scriptElement.src=url;scriptElement.id=id;scriptElement.async=async;scriptElement.setAttribute('data-append-origin',EXTERNAL_SOURCE_LOAD_ORIGIN);Object.keys(extraAttributes).forEach(attributeName=>{scriptElement.setAttribute(attributeName,extraAttributes[attributeName]);});return scriptElement;};/**
|
504
|
+
* Add script DOM element to DOM
|
505
|
+
*
|
506
|
+
* @param {*} newScriptElement the script element to add
|
507
|
+
*
|
508
|
+
* @returns
|
509
|
+
*/const insertScript=newScriptElement=>{// First try to add it to the head
|
510
|
+
const headElements=document.getElementsByTagName('head');if(headElements.length>0){headElements[0]?.insertBefore(newScriptElement,headElements[0]?.firstChild);return;}// Else wise add it before the first script tag
|
511
|
+
const scriptElements=document.getElementsByTagName('script');if(scriptElements.length>0&&scriptElements[0]?.parentNode){scriptElements[0]?.parentNode.insertBefore(newScriptElement,scriptElements[0]);return;}// Create a new head element and add the script as fallback
|
512
|
+
const headElement=document.createElement('head');headElement.appendChild(newScriptElement);const htmlElement=document.getElementsByTagName('html')[0];htmlElement?.insertBefore(headElement,htmlElement.firstChild);};/**
|
513
|
+
* Loads external js file as a script html tag
|
514
|
+
*
|
515
|
+
* @param {*} url The URL of the script to be loaded
|
516
|
+
* @param {*} id ID for the script tag
|
517
|
+
* @param {*} timeout loading timeout
|
518
|
+
* @param {*} async Whether to load the script in async mode. Defaults to `true` [optional]
|
519
|
+
* @param {*} extraAttributes key/value pair with html attributes to add in html tag [optional]
|
520
|
+
*
|
521
|
+
* @returns
|
522
|
+
*/const jsFileLoader=(url,id,timeout,async=true,extraAttributes)=>new Promise((resolve,reject)=>{const scriptExists=document.getElementById(id);if(scriptExists){reject(new Error(SCRIPT_ALREADY_EXISTS_ERROR(id)));}try{let timeoutID;const onload=()=>{globalThis.clearTimeout(timeoutID);resolve(id);};const onerror=()=>{globalThis.clearTimeout(timeoutID);reject(new Error(SCRIPT_LOAD_ERROR(id,url)));};// Create the DOM element to load the script and add it to the DOM
|
523
|
+
insertScript(createScriptElement(url,id,async,onload,onerror,extraAttributes));// Reject on timeout
|
524
|
+
timeoutID=globalThis.setTimeout(()=>{reject(new Error(SCRIPT_LOAD_TIMEOUT_ERROR(id,url,timeout)));},timeout);}catch(err){reject(getMutatedError(err,SCRIPT_LOAD_ERROR(id,url)));}});
|
525
|
+
|
526
|
+
/**
|
527
|
+
* Service to load external resources/files
|
528
|
+
*/class ExternalSrcLoader{hasErrorHandler=false;constructor(errorHandler,logger,timeout=DEFAULT_EXT_SRC_LOAD_TIMEOUT_MS){this.errorHandler=errorHandler;this.logger=logger;this.timeout=timeout;this.hasErrorHandler=Boolean(this.errorHandler);this.onError=this.onError.bind(this);}/**
|
529
|
+
* Load external resource of type javascript
|
530
|
+
*/loadJSFile(config){const{url,id,timeout,async,callback,extraAttributes}=config;const isFireAndForget=!isFunction(callback);jsFileLoader(url,id,timeout||this.timeout,async,extraAttributes).then(id=>{if(!isFireAndForget){callback(id);}}).catch(err=>{this.onError(err);if(!isFireAndForget){callback();}});}/**
|
531
|
+
* Handle errors
|
532
|
+
*/onError(error){if(this.hasErrorHandler){this.errorHandler?.onError(error,EXTERNAL_SRC_LOADER);}else {throw error;}}}
|
533
|
+
|
534
|
+
function i(){throw new Error("Cycle detected");}var t=Symbol.for("preact-signals");function r(){if(!(v>1)){var i,t=!1;while(void 0!==f){var r=f;f=void 0;e++;while(void 0!==r){var n=r.o;r.o=void 0;r.f&=-3;if(!(8&r.f)&&l(r))try{r.c();}catch(r){if(!t){i=r;t=!0;}}r=n;}}e=0;v--;if(t)throw i;}else v--;}function n(i){if(v>0)return i();v++;try{return i();}finally{r();}}var o=void 0;var f=void 0,v=0,e=0,u=0;function c(i){if(void 0!==o){var t=i.n;if(void 0===t||t.t!==o){t={i:0,S:i,p:o.s,n:void 0,t:o,e:void 0,x:void 0,r:t};if(void 0!==o.s)o.s.n=t;o.s=t;i.n=t;if(32&o.f)i.S(t);return t;}else if(-1===t.i){t.i=0;if(void 0!==t.n){t.n.p=t.p;if(void 0!==t.p)t.p.n=t.n;t.p=o.s;t.n=void 0;o.s.n=t;o.s=t;}return t;}}}function d$1(i){this.v=i;this.i=0;this.n=void 0;this.t=void 0;}d$1.prototype.brand=t;d$1.prototype.h=function(){return !0;};d$1.prototype.S=function(i){if(this.t!==i&&void 0===i.e){i.x=this.t;if(void 0!==this.t)this.t.e=i;this.t=i;}};d$1.prototype.U=function(i){if(void 0!==this.t){var t=i.e,r=i.x;if(void 0!==t){t.x=r;i.e=void 0;}if(void 0!==r){r.e=t;i.x=void 0;}if(i===this.t)this.t=r;}};d$1.prototype.subscribe=function(i){var t=this;return O(function(){var r=t.value,n=32&this.f;this.f&=-33;try{i(r);}finally{this.f|=n;}});};d$1.prototype.valueOf=function(){return this.value;};d$1.prototype.toString=function(){return this.value+"";};d$1.prototype.toJSON=function(){return this.value;};d$1.prototype.peek=function(){return this.v;};Object.defineProperty(d$1.prototype,"value",{get:function(){var i=c(this);if(void 0!==i)i.i=this.i;return this.v;},set:function(t){if(o instanceof _)!function(){throw new Error("Computed cannot have side-effects");}();if(t!==this.v){if(e>100)i();this.v=t;this.i++;u++;v++;try{for(var n=this.t;void 0!==n;n=n.x)n.t.N();}finally{r();}}}});function a(i){return new d$1(i);}function l(i){for(var t=i.s;void 0!==t;t=t.n)if(t.S.i!==t.i||!t.S.h()||t.S.i!==t.i)return !0;return !1;}function y(i){for(var t=i.s;void 0!==t;t=t.n){var r=t.S.n;if(void 0!==r)t.r=r;t.S.n=t;t.i=-1;if(void 0===t.n){i.s=t;break;}}}function w(i){var t=i.s,r=void 0;while(void 0!==t){var n=t.p;if(-1===t.i){t.S.U(t);if(void 0!==n)n.n=t.n;if(void 0!==t.n)t.n.p=n;}else r=t;t.S.n=t.r;if(void 0!==t.r)t.r=void 0;t=n;}i.s=r;}function _(i){d$1.call(this,void 0);this.x=i;this.s=void 0;this.g=u-1;this.f=4;}(_.prototype=new d$1()).h=function(){this.f&=-3;if(1&this.f)return !1;if(32==(36&this.f))return !0;this.f&=-5;if(this.g===u)return !0;this.g=u;this.f|=1;if(this.i>0&&!l(this)){this.f&=-2;return !0;}var i=o;try{y(this);o=this;var t=this.x();if(16&this.f||this.v!==t||0===this.i){this.v=t;this.f&=-17;this.i++;}}catch(i){this.v=i;this.f|=16;this.i++;}o=i;w(this);this.f&=-2;return !0;};_.prototype.S=function(i){if(void 0===this.t){this.f|=36;for(var t=this.s;void 0!==t;t=t.n)t.S.S(t);}d$1.prototype.S.call(this,i);};_.prototype.U=function(i){if(void 0!==this.t){d$1.prototype.U.call(this,i);if(void 0===this.t){this.f&=-33;for(var t=this.s;void 0!==t;t=t.n)t.S.U(t);}}};_.prototype.N=function(){if(!(2&this.f)){this.f|=6;for(var i=this.t;void 0!==i;i=i.x)i.t.N();}};_.prototype.peek=function(){if(!this.h())i();if(16&this.f)throw this.v;return this.v;};Object.defineProperty(_.prototype,"value",{get:function(){if(1&this.f)i();var t=c(this);this.h();if(void 0!==t)t.i=this.i;if(16&this.f)throw this.v;return this.v;}});function g(i){var t=i.u;i.u=void 0;if("function"==typeof t){v++;var n=o;o=void 0;try{t();}catch(t){i.f&=-2;i.f|=8;b(i);throw t;}finally{o=n;r();}}}function b(i){for(var t=i.s;void 0!==t;t=t.n)t.S.U(t);i.x=void 0;i.s=void 0;g(i);}function x$1(i){if(o!==this)throw new Error("Out-of-order effect");w(this);o=i;this.f&=-2;if(8&this.f)b(this);r();}function E(i){this.x=i;this.u=void 0;this.s=void 0;this.o=void 0;this.f=32;}E.prototype.c=function(){var i=this.S();try{if(8&this.f)return;if(void 0===this.x)return;var t=this.x();if("function"==typeof t)this.u=t;}finally{i();}};E.prototype.S=function(){if(1&this.f)i();this.f|=1;this.f&=-9;g(this);y(this);v++;var t=o;o=this;return x$1.bind(this,t);};E.prototype.N=function(){if(!(2&this.f)){this.f|=2;this.o=f;f=this;}};E.prototype.d=function(){this.f|=8;if(!(1&this.f))b(this);};function O(i){var t=new E(i);try{t.c();}catch(i){t.d();throw i;}return t.d.bind(t);}
|
535
|
+
|
536
|
+
/**
|
537
|
+
* A buffer queue to serve as a store for any type of data
|
538
|
+
*/class BufferQueue{constructor(){this.items=[];}enqueue(item){this.items.push(item);}dequeue(){if(this.items.length===0){return null;}return this.items.shift();}isEmpty(){return this.items.length===0;}size(){return this.items.length;}clear(){this.items=[];}}
|
539
|
+
|
540
|
+
const LOG_LEVEL_MAP={LOG:0,INFO:1,DEBUG:2,WARN:3,ERROR:4,NONE:5};const DEFAULT_LOG_LEVEL='ERROR';const LOG_MSG_PREFIX='RS SDK';const LOG_MSG_PREFIX_STYLE='font-weight: bold; background: black; color: white;';const LOG_MSG_STYLE='font-weight: normal;';/**
|
541
|
+
* Service to log messages/data to output provider, default is console
|
542
|
+
*/class Logger{constructor(minLogLevel=DEFAULT_LOG_LEVEL,scope='',logProvider=console){this.minLogLevel=LOG_LEVEL_MAP[minLogLevel];this.scope=scope;this.logProvider=logProvider;}log(...data){this.outputLog('LOG',data);}info(...data){this.outputLog('INFO',data);}debug(...data){this.outputLog('DEBUG',data);}warn(...data){this.outputLog('WARN',data);}error(...data){this.outputLog('ERROR',data);}outputLog(logMethod,data){if(this.minLogLevel<=LOG_LEVEL_MAP[logMethod]){this.logProvider[logMethod.toLowerCase()]?.(...this.formatLogData(data));}}setScope(scopeVal){this.scope=scopeVal||this.scope;}// TODO: should we allow to change the level via global variable on run time
|
543
|
+
// to assist on the fly debugging?
|
544
|
+
setMinLogLevel(logLevel){this.minLogLevel=LOG_LEVEL_MAP[logLevel];if(isUndefined(this.minLogLevel)){this.minLogLevel=LOG_LEVEL_MAP[DEFAULT_LOG_LEVEL];}}/**
|
545
|
+
* Formats the console message using `scope` and styles
|
546
|
+
*/formatLogData(data){if(Array.isArray(data)&&data.length>0){// prefix SDK identifier
|
547
|
+
let msg=`%c ${LOG_MSG_PREFIX}`;// format the log message using `scope`
|
548
|
+
if(this.scope){msg=`${msg} - ${this.scope}`;}// trim whitespaces for original message
|
549
|
+
const originalMsg=isString(data[0])?data[0].trim():'';// prepare the final message
|
550
|
+
msg=`${msg} %c ${originalMsg}`;const styledLogArgs=[msg,LOG_MSG_PREFIX_STYLE,// add style for the prefix
|
551
|
+
LOG_MSG_STYLE// reset the style for the actual message
|
552
|
+
];// add first it if it was not a string msg
|
553
|
+
if(!isString(data[0])){styledLogArgs.push(data[0]);}// append rest of the original arguments
|
554
|
+
styledLogArgs.push(...data.slice(1));return styledLogArgs;}return data;}}const defaultLogger=new Logger();
|
555
|
+
|
556
|
+
// default is v3
|
557
|
+
const SUPPORTED_STORAGE_TYPES=['localStorage','memoryStorage','cookieStorage','sessionStorage','none'];const DEFAULT_STORAGE_TYPE='cookieStorage';
|
558
|
+
|
559
|
+
const SOURCE_CONFIG_OPTION_ERROR=`"getSourceConfig" must be a function. Please make sure that it is defined and returns a valid source configuration object.`;const INTG_CDN_BASE_URL_ERROR=`Failed to load the SDK as the CDN base URL for integrations is not valid.`;const PLUGINS_CDN_BASE_URL_ERROR=`Failed to load the SDK as the CDN base URL for plugins is not valid.`;const DATA_PLANE_URL_ERROR=`Failed to load the SDK as the data plane URL could not be determined. Please check that the data plane URL is set correctly and try again.`;const SOURCE_CONFIG_RESOLUTION_ERROR=`Unable to process/parse source configuration response.`;const XHR_PAYLOAD_PREP_ERROR=`Failed to prepare data for the request.`;const EVENT_OBJECT_GENERATION_ERROR=`Failed to generate the event object.`;const PLUGIN_EXT_POINT_MISSING_ERROR=`Failed to invoke plugin because the extension point name is missing.`;const PLUGIN_EXT_POINT_INVALID_ERROR=`Failed to invoke plugin because the extension point name is invalid.`;// ERROR
|
560
|
+
const UNSUPPORTED_CONSENT_MANAGER_ERROR=(context,selectedConsentManager,consentManagersToPluginNameMap)=>`${context}${LOG_CONTEXT_SEPARATOR}The consent manager "${selectedConsentManager}" is not supported. Please choose one of the following supported consent managers: "${Object.keys(consentManagersToPluginNameMap)}".`;const REPORTING_PLUGIN_INIT_FAILURE_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to initialize the error reporting plugin.`;const NOTIFY_FAILURE_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to notify the error.`;const PLUGIN_NAME_MISSING_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Plugin name is missing.`;const PLUGIN_ALREADY_EXISTS_ERROR=(context,pluginName)=>`${context}${LOG_CONTEXT_SEPARATOR}Plugin "${pluginName}" already exists.`;const PLUGIN_NOT_FOUND_ERROR=(context,pluginName)=>`${context}${LOG_CONTEXT_SEPARATOR}Plugin "${pluginName}" not found.`;const PLUGIN_ENGINE_BUG_ERROR=(context,pluginName)=>`${context}${LOG_CONTEXT_SEPARATOR}Plugin "${pluginName}" not found in plugins but found in byName. This indicates a bug in the plugin engine. Please report this issue to the development team.`;const PLUGIN_DEPS_ERROR=(context,pluginName,notExistDeps)=>`${context}${LOG_CONTEXT_SEPARATOR}Plugin "${pluginName}" could not be loaded because some of its dependencies "${notExistDeps}" do not exist.`;const PLUGIN_INVOCATION_ERROR=(context,extPoint,pluginName)=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to invoke the "${extPoint}" extension point of plugin "${pluginName}".`;const STORAGE_UNAVAILABILITY_ERROR_PREFIX=(context,storageType)=>`${context}${LOG_CONTEXT_SEPARATOR}The "${storageType}" storage type is `;const SOURCE_CONFIG_FETCH_ERROR=reason=>`Failed to fetch the source config. Reason: ${reason}`;const WRITE_KEY_VALIDATION_ERROR=writeKey=>`The write key "${writeKey}" is invalid. It must be a non-empty string. Please check that the write key is correct and try again.`;const DATA_PLANE_URL_VALIDATION_ERROR=dataPlaneUrl=>`The data plane URL "${dataPlaneUrl}" is invalid. It must be a valid URL string. Please check that the data plane URL is correct and try again.`;const READY_API_CALLBACK_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}The callback is not a function.`;const XHR_DELIVERY_ERROR=(prefix,status,statusText,url)=>`${prefix} with status: ${status}, ${statusText} for URL: ${url}.`;const XHR_REQUEST_ERROR=(prefix,e,url)=>`${prefix} due to timeout or no connection (${e?e.type:''}) for URL: ${url}.`;const XHR_SEND_ERROR=(prefix,url)=>`${prefix} for URL: ${url}`;const STORE_DATA_SAVE_ERROR=key=>`Failed to save the value for "${key}" to storage`;const STORE_DATA_FETCH_ERROR=key=>`Failed to retrieve or parse data for "${key}" from storage`;// WARNING
|
561
|
+
const STORAGE_TYPE_VALIDATION_WARNING=(context,storageType,defaultStorageType)=>`${context}${LOG_CONTEXT_SEPARATOR}The storage type "${storageType}" is not supported. Please choose one of the following supported types: "${SUPPORTED_STORAGE_TYPES}". The default type "${defaultStorageType}" will be used instead.`;const UNSUPPORTED_ERROR_REPORTING_PROVIDER_WARNING=(context,selectedErrorReportingProvider,errorReportingProvidersToPluginNameMap,defaultProvider)=>`${context}${LOG_CONTEXT_SEPARATOR}The error reporting provider "${selectedErrorReportingProvider}" is not supported. Please choose one of the following supported providers: "${Object.keys(errorReportingProvidersToPluginNameMap)}". The default provider "${defaultProvider}" will be used instead.`;const UNSUPPORTED_STORAGE_ENCRYPTION_VERSION_WARNING=(context,selectedStorageEncryptionVersion,storageEncryptionVersionsToPluginNameMap,defaultVersion)=>`${context}${LOG_CONTEXT_SEPARATOR}The storage encryption version "${selectedStorageEncryptionVersion}" is not supported. Please choose one of the following supported versions: "${Object.keys(storageEncryptionVersionsToPluginNameMap)}". The default version "${defaultVersion}" will be used instead.`;const STORAGE_DATA_MIGRATION_OVERRIDE_WARNING=(context,storageEncryptionVersion,defaultVersion)=>`${context}${LOG_CONTEXT_SEPARATOR}The storage data migration has been disabled because the configured storage encryption version (${storageEncryptionVersion}) is not the latest (${defaultVersion}). To enable storage data migration, please update the storage encryption version to the latest version.`;const UNSUPPORTED_RESIDENCY_SERVER_REGION_WARNING=(context,selectedResidencyServerRegion,defaultRegion)=>`${context}${LOG_CONTEXT_SEPARATOR}The residency server region "${selectedResidencyServerRegion}" is not supported. Please choose one of the following supported regions: "US, EU". The default region "${defaultRegion}" will be used instead.`;const RESERVED_KEYWORD_WARNING=(context,property,parentKeyPath,reservedElements)=>`${context}${LOG_CONTEXT_SEPARATOR}The "${property}" property defined under "${parentKeyPath}" is a reserved keyword. Please choose a different property name to avoid conflicts with reserved keywords (${reservedElements}).`;const INVALID_CONTEXT_OBJECT_WARNING=logContext=>`${logContext}${LOG_CONTEXT_SEPARATOR}Please make sure that the "context" property in the event API's "options" argument is a valid object literal with key-value pairs.`;const UNSUPPORTED_BEACON_API_WARNING=context=>`${context}${LOG_CONTEXT_SEPARATOR}The Beacon API is not supported by your browser. The events will be sent using XHR instead.`;const TIMEOUT_NOT_NUMBER_WARNING=(context,timeout,defaultValue)=>`${context}${LOG_CONTEXT_SEPARATOR}The session timeout value "${timeout}" is not a number. The default timeout of ${defaultValue} ms will be used instead.`;const TIMEOUT_ZERO_WARNING=context=>`${context}${LOG_CONTEXT_SEPARATOR}The session timeout value is 0, which disables the automatic session tracking feature. If you want to enable session tracking, please provide a positive integer value for the timeout.`;const TIMEOUT_NOT_RECOMMENDED_WARNING=(context,timeout,minTimeout)=>`${context}${LOG_CONTEXT_SEPARATOR}The session timeout value ${timeout} ms is less than the recommended minimum of ${minTimeout} ms. Please consider increasing the timeout value to ensure optimal performance and reliability.`;const INVALID_SESSION_ID_WARNING=(context,sessionId,minSessionIdLength)=>`${context}${LOG_CONTEXT_SEPARATOR}The provided session ID (${sessionId}) is either invalid, not a positive integer, or not at least "${minSessionIdLength}" digits long. A new session ID will be auto-generated instead.`;const STORAGE_QUOTA_EXCEEDED_WARNING=context=>`${context}${LOG_CONTEXT_SEPARATOR}The storage is either full or unavailable, so the data will not be persisted. Switching to in-memory storage.`;const STORAGE_UNAVAILABLE_WARNING=(context,entry,selectedStorageType,finalStorageType)=>`${context}${LOG_CONTEXT_SEPARATOR}The storage type "${selectedStorageType}" is not available for entry "${entry}". The SDK will initialize the entry with "${finalStorageType}" storage type instead.`;const WRITE_KEY_NOT_A_STRING_ERROR=(context,writeKey)=>`${context}${LOG_CONTEXT_SEPARATOR}The write key "${writeKey}" is not a string. Please check that the write key is correct and try again.`;const EMPTY_GROUP_CALL_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}The group() method must be called with at least one argument.`;const READY_CALLBACK_INVOKE_ERROR=`Failed to invoke the ready callback`;const API_CALLBACK_INVOKE_ERROR=`API Callback Invocation Failed`;const NATIVE_DEST_PLUGIN_INITIALIZE_ERROR=`NativeDestinationQueuePlugin initialization failed`;const DATAPLANE_PLUGIN_INITIALIZE_ERROR=`XhrQueuePlugin initialization failed`;const DMT_PLUGIN_INITIALIZE_ERROR=`DeviceModeTransformationPlugin initialization failed`;const NATIVE_DEST_PLUGIN_ENQUEUE_ERROR=`NativeDestinationQueuePlugin event enqueue failed`;const DATAPLANE_PLUGIN_ENQUEUE_ERROR=`XhrQueuePlugin event enqueue failed`;const INVALID_CONFIG_URL_WARNING=(context,configUrl)=>`${context}${LOG_CONTEXT_SEPARATOR}The provided config URL "${configUrl}" is invalid. Using the default value instead.`;const POLYFILL_SCRIPT_LOAD_ERROR=(scriptId,url)=>`Failed to load the polyfill script with ID "${scriptId}" from URL ${url}.`;const COOKIE_DATA_ENCODING_ERROR=`Failed to encode the cookie data.`;const UNSUPPORTED_PRE_CONSENT_STORAGE_STRATEGY=(context,selectedStrategy,defaultStrategy)=>`${context}${LOG_CONTEXT_SEPARATOR}The pre-consent storage strategy "${selectedStrategy}" is not supported. Please choose one of the following supported strategies: "none, session, anonymousId". The default strategy "${defaultStrategy}" will be used instead.`;const UNSUPPORTED_PRE_CONSENT_EVENTS_DELIVERY_TYPE=(context,selectedDeliveryType,defaultDeliveryType)=>`${context}${LOG_CONTEXT_SEPARATOR}The pre-consent events delivery type "${selectedDeliveryType}" is not supported. Please choose one of the following supported types: "immediate, buffer". The default type "${defaultDeliveryType}" will be used instead.`;// DEBUG
|
562
|
+
|
563
|
+
const CDN_INT_DIR='js-integrations';const CDN_PLUGINS_DIR='plugins';
|
564
|
+
|
565
|
+
const BUILD_TYPE='modern';const SDK_CDN_BASE_URL='https://cdn.rudderlabs.com';const CDN_ARCH_VERSION_DIR='v3';const DEST_SDK_BASE_URL=`${SDK_CDN_BASE_URL}/beta/3.0.0-beta/${BUILD_TYPE}/${CDN_INT_DIR}`;const PLUGINS_BASE_URL=`${SDK_CDN_BASE_URL}/beta/3.0.0-beta/${BUILD_TYPE}/${CDN_PLUGINS_DIR}`;// TODO: change the above to production URLs when beta phase is done
|
566
|
+
// const DEST_SDK_BASE_URL = `${SDK_CDN_BASE_URL}/latest/${CDN_ARCH_VERSION_DIR}/${BUILD_TYPE}/${CDN_INT_DIR}`;
|
567
|
+
// const PLUGINS_BASE_URL = `${SDK_CDN_BASE_URL}/latest/${CDN_ARCH_VERSION_DIR}/${BUILD_TYPE}/${CDN_PLUGINS_DIR}`;
|
568
|
+
const DEFAULT_CONFIG_BE_URL='https://api.rudderstack.com';
|
569
|
+
|
570
|
+
const DEFAULT_ERROR_REPORTING_PROVIDER='bugsnag';const DEFAULT_STORAGE_ENCRYPTION_VERSION='v3';const ConsentManagersToPluginNameMap={oneTrust:'OneTrustConsentManager',ketch:'KetchConsentManager',custom:'CustomConsentManager'};const ErrorReportingProvidersToPluginNameMap={[DEFAULT_ERROR_REPORTING_PROVIDER]:'Bugsnag'};const StorageEncryptionVersionsToPluginNameMap={[DEFAULT_STORAGE_ENCRYPTION_VERSION]:'StorageEncryption',legacy:'StorageEncryptionLegacy'};
|
571
|
+
|
572
|
+
const defaultLoadOptions={logLevel:'ERROR',configUrl:DEFAULT_CONFIG_BE_URL,loadIntegration:true,sessions:{autoTrack:true,timeout:DEFAULT_SESSION_TIMEOUT_MS},sameSiteCookie:'Lax',polyfillIfRequired:true,integrations:{All:true},useBeacon:false,beaconQueueOptions:{},destinationsQueueOptions:{},queueOptions:{},lockIntegrationsVersion:false,uaChTrackLevel:'none',plugins:[],useGlobalIntegrationsConfigInEvents:false,bufferDataPlaneEventsUntilReady:false,dataPlaneEventsBufferTimeout:DEFAULT_DATA_PLANE_EVENTS_BUFFER_TIMEOUT_MS,storage:{encryption:{version:DEFAULT_STORAGE_ENCRYPTION_VERSION},migrate:false},sendAdblockPageOptions:{}};const loadOptionsState=a(clone(defaultLoadOptions));
|
573
|
+
|
574
|
+
const USER_SESSION_STORAGE_KEYS={userId:'rl_user_id',userTraits:'rl_trait',anonymousId:'rl_anonymous_id',groupId:'rl_group_id',groupTraits:'rl_group_trait',initialReferrer:'rl_page_init_referrer',initialReferringDomain:'rl_page_init_referring_domain',sessionInfo:'rl_session',authToken:'rl_auth_token'};const DEFAULT_USER_SESSION_VALUES={userId:'',userTraits:{},anonymousId:'',groupId:'',groupTraits:{},initialReferrer:'',initialReferringDomain:'',sessionInfo:{},authToken:null};
|
575
|
+
|
576
|
+
const defaultSessionInfo={autoTrack:true,timeout:DEFAULT_SESSION_TIMEOUT_MS};const sessionState={userId:a(DEFAULT_USER_SESSION_VALUES.userId),userTraits:a(DEFAULT_USER_SESSION_VALUES.userTraits),anonymousId:a(DEFAULT_USER_SESSION_VALUES.anonymousId),groupId:a(DEFAULT_USER_SESSION_VALUES.groupId),groupTraits:a(DEFAULT_USER_SESSION_VALUES.groupTraits),initialReferrer:a(DEFAULT_USER_SESSION_VALUES.initialReferrer),initialReferringDomain:a(DEFAULT_USER_SESSION_VALUES.initialReferringDomain),sessionInfo:a(DEFAULT_USER_SESSION_VALUES.sessionInfo),authToken:a(DEFAULT_USER_SESSION_VALUES.authToken)};
|
577
|
+
|
578
|
+
const capabilitiesState={isOnline:a(true),storage:{isLocalStorageAvailable:a(false),isCookieStorageAvailable:a(false),isSessionStorageAvailable:a(false)},isBeaconAvailable:a(false),isLegacyDOM:a(false),isUaCHAvailable:a(false),isCryptoAvailable:a(false),isIE11:a(false),isAdBlocked:a(false)};
|
579
|
+
|
580
|
+
const reportingState={isErrorReportingEnabled:a(false),isMetricsReportingEnabled:a(false),errorReportingProviderPluginName:a(undefined),isErrorReportingPluginLoaded:a(false)};
|
581
|
+
|
582
|
+
const sourceConfigState=a(undefined);
|
583
|
+
|
584
|
+
const lifecycleState={activeDataplaneUrl:a(undefined),integrationsCDNPath:a(DEST_SDK_BASE_URL),pluginsCDNPath:a(PLUGINS_BASE_URL),sourceConfigUrl:a(undefined),status:a(undefined),initialized:a(false),logLevel:a('ERROR'),loaded:a(false),readyCallbacks:a([]),writeKey:a(undefined),dataPlaneUrl:a(undefined)};
|
585
|
+
|
586
|
+
const consentsState={enabled:a(false),initialized:a(false),data:a({}),activeConsentManagerPluginName:a(undefined),preConsent:a({enabled:false}),postConsent:a({}),resolutionStrategy:a('and'),provider:a(undefined),metadata:a(undefined)};
|
587
|
+
|
588
|
+
const metricsState={retries:a(0),dropped:a(0),sent:a(0),queued:a(0),triggered:a(0)};
|
589
|
+
|
590
|
+
const contextState={app:a({name:APP_NAME,namespace:APP_NAMESPACE,version:APP_VERSION}),traits:a(null),library:a({name:APP_NAME,version:APP_VERSION,snippetVersion:globalThis.RudderSnippetVersion}),userAgent:a(''),device:a(null),network:a(null),os:a({name:'',version:''}),locale:a(null),screen:a({density:0,width:0,height:0,innerWidth:0,innerHeight:0}),'ua-ch':a(undefined),timezone:a(undefined)};
|
591
|
+
|
592
|
+
const nativeDestinationsState={configuredDestinations:a([]),activeDestinations:a([]),loadOnlyIntegrations:a({}),failedDestinations:a([]),loadIntegration:a(true),initializedDestinations:a([]),clientDestinationsReady:a(false),integrationsConfig:a({})};
|
593
|
+
|
594
|
+
const eventBufferState={toBeProcessedArray:a([]),readyCallbacksArray:a([])};
|
595
|
+
|
596
|
+
const pluginsState={ready:a(false),loadedPlugins:a([]),failedPlugins:a([]),pluginsToLoadFromConfig:a([]),activePlugins:a([]),totalPluginsToLoad:a(0)};
|
597
|
+
|
598
|
+
const storageState={encryptionPluginName:a(undefined),migrate:a(false),type:a(undefined),cookie:a(undefined),entries:a({}),trulyAnonymousTracking:a(false)};
|
599
|
+
|
600
|
+
const defaultStateValues={capabilities:capabilitiesState,consents:consentsState,context:contextState,eventBuffer:eventBufferState,lifecycle:lifecycleState,loadOptions:loadOptionsState,metrics:metricsState,nativeDestinations:nativeDestinationsState,plugins:pluginsState,reporting:reportingState,session:sessionState,source:sourceConfigState,storage:storageState};const state={...clone(defaultStateValues)};
|
601
|
+
|
602
|
+
// to next or return the value if it is the last one instead of an array per
|
603
|
+
// plugin that is the normal invoke
|
604
|
+
// TODO: add invoke method for extension point that we know only one plugin can be used. add invokeMultiple and invokeSingle methods
|
605
|
+
class PluginEngine{plugins=[];byName={};cache={};config={throws:true};constructor(options={},logger){this.config={throws:true,...options};this.logger=logger;}register(plugin,state){if(!plugin.name){const errorMessage=PLUGIN_NAME_MISSING_ERROR(PLUGIN_ENGINE);if(this.config.throws){throw new Error(errorMessage);}else {this.logger?.error(errorMessage,plugin);}}if(this.byName[plugin.name]){const errorMessage=PLUGIN_ALREADY_EXISTS_ERROR(PLUGIN_ENGINE,plugin.name);if(this.config.throws){throw new Error(errorMessage);}else {this.logger?.error(errorMessage);}}this.cache={};this.plugins=this.plugins.slice();let pos=this.plugins.length;this.plugins.forEach((pluginItem,index)=>{if(pluginItem.deps?.includes(plugin.name)){pos=Math.min(pos,index);}});this.plugins.splice(pos,0,plugin);this.byName[plugin.name]=plugin;if(isFunction(plugin.initialize)){plugin.initialize(state);}}unregister(name){const plugin=this.byName[name];if(!plugin){const errorMessage=PLUGIN_NOT_FOUND_ERROR(PLUGIN_ENGINE,name);if(this.config.throws){throw new Error(errorMessage);}else {this.logger?.error(errorMessage);}}const index=this.plugins.indexOf(plugin);if(index===-1){const errorMessage=PLUGIN_ENGINE_BUG_ERROR(PLUGIN_ENGINE,name);if(this.config.throws){throw new Error(errorMessage);}else {this.logger?.error(errorMessage);}}this.cache={};delete this.byName[name];this.plugins=this.plugins.slice();this.plugins.splice(index,1);}getPlugin(name){return this.byName[name];}getPlugins(extPoint){const lifeCycleName=extPoint??'.';if(!this.cache[lifeCycleName]){this.cache[lifeCycleName]=this.plugins.filter(plugin=>{if(plugin.deps?.some(dependency=>!this.byName[dependency])){// If deps not exist, then not load it.
|
606
|
+
const notExistDeps=plugin.deps.filter(dependency=>!this.byName[dependency]);this.logger?.error(PLUGIN_DEPS_ERROR(PLUGIN_ENGINE,plugin.name,notExistDeps));return false;}return lifeCycleName==='.'?true:hasValueByPath(plugin,lifeCycleName);});}return this.cache[lifeCycleName];}// This method allows to process this.plugins so that it could
|
607
|
+
// do some unified pre-process before application starts.
|
608
|
+
processRawPlugins(callback){callback(this.plugins);this.cache={};}invoke(extPoint,allowMultiple=true,...args){let extensionPointName=extPoint;if(!extensionPointName){throw new Error(PLUGIN_EXT_POINT_MISSING_ERROR);}const noCall=extensionPointName.startsWith('!');const throws=this.config.throws??extensionPointName.endsWith('!');// eslint-disable-next-line unicorn/better-regex
|
609
|
+
extensionPointName=extensionPointName.replace(/(^!|!$)/g,'');if(!extensionPointName){throw new Error(PLUGIN_EXT_POINT_INVALID_ERROR);}const extensionPointNameParts=extensionPointName.split('.');extensionPointNameParts.pop();const pluginMethodPath=extensionPointNameParts.join('.');const pluginsToInvoke=allowMultiple?this.getPlugins(extensionPointName):[this.getPlugins(extensionPointName)[0]];return pluginsToInvoke.map(plugin=>{const method=getValueByPath(plugin,extensionPointName);if(!isFunction(method)||noCall){return method;}try{return method.apply(getValueByPath(plugin,pluginMethodPath),args);}catch(err){// When a plugin failed, doesn't break the app
|
610
|
+
if(throws){throw err;}else {this.logger?.error(PLUGIN_INVOCATION_ERROR(PLUGIN_ENGINE,extensionPointName,plugin.name),err);}}return null;});}invokeSingle(extPoint,...args){return this.invoke(extPoint,false,...args)[0];}invokeMultiple(extPoint,...args){return this.invoke(extPoint,true,...args);}}const defaultPluginEngine=new PluginEngine({throws:true},defaultLogger);
|
611
|
+
|
612
|
+
const FAILED_REQUEST_ERR_MSG_PREFIX='The request failed';const ERROR_MESSAGES_TO_BE_FILTERED=[FAILED_REQUEST_ERR_MSG_PREFIX];
|
613
|
+
|
614
|
+
const LOAD_ORIGIN='RS_JS_SDK';
|
615
|
+
|
616
|
+
/**
|
617
|
+
* Utility method to normalise errors
|
618
|
+
*/const processError=error=>{let errorMessage;try{if(isString(error)){errorMessage=error;}else if(error instanceof Error){errorMessage=error.message;}else if(error instanceof ErrorEvent){errorMessage=error.message;}// TODO: remove this block once all device mode integrations start using the v3 script loader module (TS)
|
619
|
+
else if(error instanceof Event){const eventTarget=error.target;// Discard all the non-script loading errors
|
620
|
+
if(eventTarget&&eventTarget.localName!=='script'){return '';}// Discard script errors that are not originated at SDK or from native SDKs
|
621
|
+
if(eventTarget?.dataset&&(eventTarget.dataset.loader!==LOAD_ORIGIN||eventTarget.dataset.isnonnativesdk!=='true')){return '';}errorMessage=`Error in loading a third-party script from URL ${eventTarget?.src} with ID ${eventTarget?.id}.`;}else {errorMessage=error.message?error.message:stringifyWithoutCircular(error);}}catch(e){errorMessage=`Unknown error: ${e.message}`;}return errorMessage;};/**
|
622
|
+
* A function to determine whether the error should be promoted to notify or not
|
623
|
+
* @param {Error} error
|
624
|
+
* @returns
|
625
|
+
*/const isAllowedToBeNotified=error=>{if(error.message){return !ERROR_MESSAGES_TO_BE_FILTERED.some(e=>error.message.includes(e));}return true;};
|
626
|
+
|
627
|
+
/**
|
628
|
+
* A service to handle errors
|
629
|
+
*/class ErrorHandler{// If no logger is passed errors will be thrown as unhandled error
|
630
|
+
constructor(logger,pluginEngine){this.logger=logger;this.pluginEngine=pluginEngine;this.errorBuffer=new BufferQueue();this.attachEffect();}attachEffect(){if(state.reporting.isErrorReportingPluginLoaded.value===true){while(this.errorBuffer.size()>0){this.errorBuffer.dequeue();}}}attachErrorListeners(){if('addEventListener'in globalThis){globalThis.addEventListener('error',event=>{this.onError(event,undefined,undefined,undefined,'unhandledException');});globalThis.addEventListener('unhandledrejection',event=>{this.onError(event,undefined,undefined,undefined,'unhandledPromiseRejection');});}else {this.logger?.debug(`Failed to attach global error listeners.`);}}init(externalSrcLoader){if(!this.pluginEngine){return;}try{const extPoint='errorReporting.init';const errReportingInitVal=this.pluginEngine.invokeSingle(extPoint,state,this.pluginEngine,externalSrcLoader,this.logger);if(errReportingInitVal instanceof Promise){errReportingInitVal.then(client=>{this.errReportingClient=client;}).catch(err=>{this.logger?.error(REPORTING_PLUGIN_INIT_FAILURE_ERROR(ERROR_HANDLER),err);});}}catch(err){this.onError(err,ERROR_HANDLER);}}onError(error,context='',customMessage='',shouldAlwaysThrow=false,errorType='handled'){// Error handling is already implemented in processError method
|
631
|
+
let errorMessage=processError(error);// If no error message after we normalize, then we swallow/ignore the errors
|
632
|
+
if(!errorMessage){return;}// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
633
|
+
errorMessage=removeDoubleSpaces(`${context}${LOG_CONTEXT_SEPARATOR}${customMessage} ${errorMessage}`);let normalizedError=new Error(errorMessage);if(isTypeOfError(error)){normalizedError=Object.create(error,{message:{value:errorMessage}});}if(errorType==='handled'){// TODO: Remove the below line once the new Reporting plugin is ready
|
634
|
+
this.notifyError(normalizedError);if(this.logger){this.logger.error(errorMessage);if(shouldAlwaysThrow){throw normalizedError;}}else {throw normalizedError;}}// eslint-disable-next-line sonarjs/no-all-duplicated-branches
|
635
|
+
if(state.reporting.isErrorReportingEnabled.value&&!state.reporting.isErrorReportingPluginLoaded.value);}/**
|
636
|
+
* Add breadcrumbs to add insight of a user's journey before an error
|
637
|
+
* occurred and send to external error monitoring service via a plugin
|
638
|
+
*
|
639
|
+
* @param {string} breadcrumb breadcrumbs message
|
640
|
+
*/leaveBreadcrumb(breadcrumb){if(this.pluginEngine){try{this.pluginEngine.invokeSingle('errorReporting.breadcrumb',this.pluginEngine,this.errReportingClient,breadcrumb,this.logger);}catch(err){this.onError(err,ERROR_HANDLER,'errorReporting.breadcrumb');}}}/**
|
641
|
+
* Send handled errors to external error monitoring service via a plugin
|
642
|
+
*
|
643
|
+
* @param {Error} error Error instance from handled error
|
644
|
+
*/notifyError(error){if(this.pluginEngine&&isAllowedToBeNotified(error)){try{this.pluginEngine.invokeSingle('errorReporting.notify',this.pluginEngine,this.errReportingClient,error,state,this.logger);}catch(err){// Not calling onError here as we don't want to go into infinite loop
|
645
|
+
this.logger?.error(NOTIFY_FAILURE_ERROR(ERROR_HANDLER),err);}}}}const defaultErrorHandler=new ErrorHandler(defaultLogger,defaultPluginEngine);
|
646
|
+
|
647
|
+
/**
|
648
|
+
* A function to filter and return non cloud mode destinations
|
649
|
+
* @param destination
|
650
|
+
*
|
651
|
+
* @returns boolean
|
652
|
+
*/const isNonCloudDestination=destination=>Boolean(destination.config.connectionMode!=='cloud'||destination.config.useNativeSDKToSend===true||// this is the older flag for hybrid mode destinations
|
653
|
+
destination.config.useNativeSDK===true);const isHybridModeDestination=destination=>Boolean(destination.config.connectionMode==='hybrid'||destination.config.useNativeSDKToSend===true);/**
|
654
|
+
* A function to filter and return non cloud mode destinations
|
655
|
+
* @param destinations
|
656
|
+
*
|
657
|
+
* @returns destinations
|
658
|
+
*/const getNonCloudDestinations=destinations=>destinations.filter(isNonCloudDestination);
|
659
|
+
|
660
|
+
/**
|
661
|
+
* List of plugin names that are loaded as dynamic imports in modern builds
|
662
|
+
*/const pluginNamesList=['BeaconQueue','Bugsnag','CustomConsentManager','DeviceModeDestinations','DeviceModeTransformation','ErrorReporting','ExternalAnonymousId','GoogleLinker','KetchConsentManager','NativeDestinationQueue','OneTrustConsentManager','StorageEncryption','StorageEncryptionLegacy','StorageMigrator','XhrQueue'];
|
663
|
+
|
664
|
+
/**
|
665
|
+
* To get the current timestamp in ISO string format
|
666
|
+
* @returns ISO formatted timestamp string
|
667
|
+
*/const getCurrentTimeFormatted=()=>{const curDateTime=new Date().toISOString();return curDateTime;};
|
668
|
+
|
669
|
+
const COOKIE_STORAGE='cookieStorage';const LOCAL_STORAGE='localStorage';const SESSION_STORAGE='sessionStorage';const MEMORY_STORAGE='memoryStorage';const NO_STORAGE='none';
|
670
|
+
|
671
|
+
const removeDuplicateSlashes=str=>str.replace(/\/{2,}/g,'/');
|
672
|
+
|
673
|
+
function random(len){return crypto.getRandomValues(new Uint8Array(len));}
|
674
|
+
|
675
|
+
var SIZE=4096,HEX$1=[],IDX$1=0,BUFFER$1;for(;IDX$1<256;IDX$1++){HEX$1[IDX$1]=(IDX$1+256).toString(16).substring(1);}function v4$1(){if(!BUFFER$1||IDX$1+16>SIZE){BUFFER$1=random(SIZE);IDX$1=0;}var i=0,tmp,out='';for(;i<16;i++){tmp=BUFFER$1[IDX$1+i];if(i==6)out+=HEX$1[tmp&15|64];else if(i==8)out+=HEX$1[tmp&63|128];else out+=HEX$1[tmp];if(i&1&&i>1&&i<11)out+='-';}IDX$1+=16;return out;}
|
676
|
+
|
677
|
+
var IDX=256,HEX=[],BUFFER;while(IDX--)HEX[IDX]=(IDX+256).toString(16).substring(1);function v4(){var i=0,num,out='';if(!BUFFER||IDX+16>256){BUFFER=Array(i=256);while(i--)BUFFER[i]=256*Math.random()|0;i=IDX=0;}for(;i<16;i++){num=BUFFER[IDX+i];if(i==6)out+=HEX[num&15|64];else if(i==8)out+=HEX[num&63|128];else out+=HEX[num];if(i&1&&i>1&&i<11)out+='-';}IDX++;return out;}
|
678
|
+
|
679
|
+
const hasCrypto$1=()=>!isNullOrUndefined(globalThis.crypto)&&isFunction(globalThis.crypto.getRandomValues);
|
680
|
+
|
681
|
+
const generateUUID=()=>{if(hasCrypto$1()){return v4$1();}return v4();};
|
682
|
+
|
683
|
+
const isErrRetryable=details=>{let isRetryableNWFailure=false;if(details?.error&&details?.xhr){const xhrStatus=details.xhr.status;// same as in v1.1
|
684
|
+
isRetryableNWFailure=xhrStatus===429||xhrStatus>=500&&xhrStatus<600;}return isRetryableNWFailure;};
|
685
|
+
|
686
|
+
const EVENT_PAYLOAD_SIZE_BYTES_LIMIT=32*1024;// 32 KB
|
687
|
+
|
688
|
+
const EVENT_PAYLOAD_SIZE_CHECK_FAIL_WARNING=(context,payloadSize,sizeLimit)=>`${context}${LOG_CONTEXT_SEPARATOR}The size of the event payload (${payloadSize} bytes) exceeds the maximum limit of ${sizeLimit} bytes. Events with large payloads may be dropped in the future. Please review your instrumentation to ensure that event payloads are within the size limit.`;const EVENT_PAYLOAD_SIZE_VALIDATION_WARNING=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to validate event payload size. Please make sure that the event payload is within the size limit and is a valid JSON object.`;const QUEUE_UTILITIES='QueueUtilities';/**
|
689
|
+
* Utility to get the stringified event payload
|
690
|
+
* @param event RudderEvent object
|
691
|
+
* @param logger Logger instance
|
692
|
+
* @returns stringified event payload. Empty string if error occurs.
|
693
|
+
*/const getDeliveryPayload=(event,logger)=>stringifyWithoutCircular(event,true,undefined,logger);const getDMTDeliveryPayload=(dmtRequestPayload,logger)=>stringifyWithoutCircular(dmtRequestPayload,true,undefined,logger);/**
|
694
|
+
* Utility to validate final payload size before sending to server
|
695
|
+
* @param event RudderEvent object
|
696
|
+
* @param logger Logger instance
|
697
|
+
*/const validateEventPayloadSize=(event,logger)=>{const payloadStr=getDeliveryPayload(event,logger);if(payloadStr){const payloadSize=payloadStr.length;if(payloadSize>EVENT_PAYLOAD_SIZE_BYTES_LIMIT){logger?.warn(EVENT_PAYLOAD_SIZE_CHECK_FAIL_WARNING(QUEUE_UTILITIES,payloadSize,EVENT_PAYLOAD_SIZE_BYTES_LIMIT));}}else {logger?.warn(EVENT_PAYLOAD_SIZE_VALIDATION_WARNING(QUEUE_UTILITIES));}};/**
|
698
|
+
* Mutates the event and return final event for delivery
|
699
|
+
* Updates certain parameters like sentAt timestamp, integrations config etc.
|
700
|
+
* @param event RudderEvent object
|
701
|
+
* @returns Final event ready to be delivered
|
702
|
+
*/const getFinalEventForDeliveryMutator=(event,currentTime)=>{const finalEvent=clone(event);// Update sentAt timestamp to the latest timestamp
|
703
|
+
finalEvent.sentAt=currentTime;return finalEvent;};
|
704
|
+
|
705
|
+
const ENCRYPTION_PREFIX_V3='RS_ENC_v3_';
|
706
|
+
|
707
|
+
const encrypt$1=value=>`${ENCRYPTION_PREFIX_V3}${toBase64(value)}`;const decrypt$1=value=>{if(value.startsWith(ENCRYPTION_PREFIX_V3)){return fromBase64(value.substring(ENCRYPTION_PREFIX_V3.length));}return value;};
|
708
|
+
|
709
|
+
const BEACON_PLUGIN_EVENTS_QUEUE_DEBUG=context=>`${context}${LOG_CONTEXT_SEPARATOR}Sending events to data plane.`;const BEACON_QUEUE_STRING_CONVERSION_FAILURE_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to convert events batch object to string.`;const BEACON_QUEUE_BLOB_CONVERSION_FAILURE_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to convert events batch object to Blob.`;const BEACON_QUEUE_SEND_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to send events batch data to the browser's beacon queue. The events will be dropped.`;const BEACON_QUEUE_DELIVERY_ERROR=url=>`Failed to send events batch data to the browser's beacon queue for URL ${url}.`;
|
710
|
+
|
711
|
+
const DEFAULT_BEACON_QUEUE_MAX_SIZE=10;const DEFAULT_BEACON_QUEUE_FLUSH_INTERVAL_MS=10*60*1000;// 10 minutes
|
712
|
+
// Limit of the Beacon transfer mechanism on the browsers
|
713
|
+
const MAX_BATCH_PAYLOAD_SIZE_BYTES=64*1024;// 64 KB
|
714
|
+
const DEFAULT_BEACON_QUEUE_OPTIONS={maxItems:DEFAULT_BEACON_QUEUE_MAX_SIZE,flushQueueInterval:DEFAULT_BEACON_QUEUE_FLUSH_INTERVAL_MS};const DATA_PLANE_API_VERSION$1='v1';const QUEUE_NAME$3='rudder_beacon';const BEACON_QUEUE_PLUGIN='BeaconQueuePlugin';
|
715
|
+
|
716
|
+
/**
|
717
|
+
* Utility to get the stringified event payload as Blob
|
718
|
+
* @param events RudderEvent object array
|
719
|
+
* @param logger Logger instance
|
720
|
+
* @returns stringified events payload as Blob, undefined if error occurs.
|
721
|
+
*/const getBatchDeliveryPayload$1=(events,currentTime,logger)=>{const data={batch:events,sentAt:currentTime};try{const blobPayload=stringifyWithoutCircular(data,true);const blobOptions={type:'text/plain'};if(blobPayload){return new Blob([blobPayload],blobOptions);}logger?.error(BEACON_QUEUE_STRING_CONVERSION_FAILURE_ERROR(BEACON_QUEUE_PLUGIN));}catch(err){logger?.error(BEACON_QUEUE_BLOB_CONVERSION_FAILURE_ERROR(BEACON_QUEUE_PLUGIN),err);}return undefined;};const getNormalizedBeaconQueueOptions=queueOpts=>mergeDeepRight(DEFAULT_BEACON_QUEUE_OPTIONS,queueOpts);const getDeliveryUrl$1=(dataplaneUrl,writeKey)=>{const dpUrl=new URL(dataplaneUrl);return new URL(removeDuplicateSlashes([dpUrl.pathname,'/','beacon','/',DATA_PLANE_API_VERSION$1,'/',`batch?writeKey=${writeKey}`].join('')),dpUrl).href;};
|
722
|
+
|
723
|
+
const QueueStatuses={IN_PROGRESS:'inProgress',QUEUE:'queue',RECLAIM_START:'reclaimStart',RECLAIM_END:'reclaimEnd',ACK:'ack',BATCH_QUEUE:'batchQueue'};
|
724
|
+
|
725
|
+
let ScheduleModes=/*#__PURE__*/function(ScheduleModes){ScheduleModes[ScheduleModes["ASAP"]=1]="ASAP";ScheduleModes[ScheduleModes["RESCHEDULE"]=2]="RESCHEDULE";ScheduleModes[ScheduleModes["ABANDON"]=3]="ABANDON";return ScheduleModes;}({});const DEFAULT_CLOCK_LATE_FACTOR=2;const DEFAULT_CLOCK={setTimeout(fn,ms){return globalThis.setTimeout(fn,ms);},clearTimeout(id){return globalThis.clearTimeout(id);},Date:globalThis.Date,clockLateFactor:DEFAULT_CLOCK_LATE_FACTOR};class Schedule{constructor(){this.tasks={};this.nextId=1;this.clock=DEFAULT_CLOCK;}now(){return +new this.clock.Date();}run(task,timeout,mode){const id=(this.nextId+1).toString();this.tasks[id]=this.clock.setTimeout(this.handle(id,task,timeout,mode||ScheduleModes.ASAP),timeout);return id;}handle(id,callback,timeout,mode){const start=this.now();return ()=>{delete this.tasks[id];const elapsedTimeoutTime=start+timeout*(this.clock.clockLateFactor||DEFAULT_CLOCK_LATE_FACTOR);const currentTime=this.now();const notCompletedOrTimedOut=mode>=ScheduleModes.RESCHEDULE&&elapsedTimeoutTime<currentTime;if(notCompletedOrTimedOut){if(mode===ScheduleModes.RESCHEDULE){this.run(callback,timeout,mode);}return undefined;}return callback();};}cancel(id){if(this.tasks[id]){this.clock.clearTimeout(this.tasks[id]);delete this.tasks[id];}}cancelAll(){Object.values(this.tasks).forEach(this.clock.clearTimeout);this.tasks={};}}
|
726
|
+
|
727
|
+
const RETRY_QUEUE_PROCESS_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Process function threw an error.`;const RETRY_QUEUE_ENTRY_REMOVE_ERROR=(context,entry,attempt)=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to remove local storage entry "${entry}" (attempt: ${attempt}.`;
|
728
|
+
|
729
|
+
const DEFAULT_MIN_RETRY_DELAY_MS=1000;const DEFAULT_MAX_RETRY_DELAY_MS=30000;const DEFAULT_BACKOFF_FACTOR=2;const DEFAULT_BACKOFF_JITTER=0;const DEFAULT_MAX_RETRY_ATTEMPTS=Infinity;const DEFAULT_MAX_ITEMS=Infinity;const DEFAULT_ACK_TIMER_MS=1000;const DEFAULT_RECLAIM_TIMER_MS=3000;const DEFAULT_RECLAIM_TIMEOUT_MS=10000;const DEFAULT_RECLAIM_WAIT_MS=500;const DEFAULT_MAX_BATCH_SIZE_BYTES=512*1024;// 512 KB; this is also the max size of a batch
|
730
|
+
const DEFAULT_MAX_BATCH_ITEMS=100;const DEFAULT_BATCH_FLUSH_INTERVAL_MS=60*1000;// 1 minutes
|
731
|
+
|
732
|
+
const sortByTime=(a,b)=>a.time-b.time;const RETRY_QUEUE='RetryQueue';/**
|
733
|
+
* Constructs a RetryQueue backed by localStorage
|
734
|
+
*
|
735
|
+
* @constructor
|
736
|
+
* @param {String} name The name of the queue. Will be used to find abandoned queues and retry their items
|
737
|
+
* @param {Object} [opts] Optional argument to override `maxItems`, `maxAttempts`, `minRetryDelay, `maxRetryDelay`, `backoffFactor` and `backoffJitter`.
|
738
|
+
* @param {QueueProcessCallback} fn The function to call in order to process an item added to the queue
|
739
|
+
*/class RetryQueue{constructor(name,options,queueProcessCb,storeManager,storageType=LOCAL_STORAGE,logger,queueBatchItemsSizeCalculatorCb){this.storeManager=storeManager;this.logger=logger;this.name=name;this.id=generateUUID();this.processQueueCb=queueProcessCb;this.batchSizeCalcCb=queueBatchItemsSizeCalculatorCb;this.maxItems=options.maxItems||DEFAULT_MAX_ITEMS;this.maxAttempts=options.maxAttempts||DEFAULT_MAX_RETRY_ATTEMPTS;this.batch={enabled:false};this.configureBatchMode(options);this.backoff={minRetryDelay:options.minRetryDelay||DEFAULT_MIN_RETRY_DELAY_MS,maxRetryDelay:options.maxRetryDelay||DEFAULT_MAX_RETRY_DELAY_MS,factor:options.backoffFactor||DEFAULT_BACKOFF_FACTOR,jitter:options.backoffJitter||DEFAULT_BACKOFF_JITTER};// painstakingly tuned. that's why they're not "easily" configurable
|
740
|
+
this.timeouts={ackTimer:DEFAULT_ACK_TIMER_MS,reclaimTimer:DEFAULT_RECLAIM_TIMER_MS,reclaimTimeout:DEFAULT_RECLAIM_TIMEOUT_MS,reclaimWait:DEFAULT_RECLAIM_WAIT_MS};this.schedule=new Schedule();this.processId='0';// Set up our empty queues
|
741
|
+
this.store=this.storeManager.setStore({id:this.id,name:this.name,validKeys:QueueStatuses,type:storageType});this.setDefaultQueueEntries();// bind recurring tasks for ease of use
|
742
|
+
this.ack=this.ack.bind(this);this.checkReclaim=this.checkReclaim.bind(this);this.processHead=this.processHead.bind(this);this.flushBatch=this.flushBatch.bind(this);// Attach visibility change listener to flush the queue
|
743
|
+
this.attachListeners();this.scheduleTimeoutActive=false;}setDefaultQueueEntries(){this.setStorageEntry(QueueStatuses.IN_PROGRESS,{});this.setStorageEntry(QueueStatuses.QUEUE,[]);this.setStorageEntry(QueueStatuses.BATCH_QUEUE,[]);}configureBatchMode(options){this.batchingInProgress=false;if(!isObjectLiteralAndNotNull(options.batch)){return;}const batchOptions=options.batch;this.batch.enabled=batchOptions.enabled===true;if(this.batch.enabled){// Set upper cap on the batch payload size
|
744
|
+
this.batch.maxSize=Math.min(batchOptions.maxSize??DEFAULT_MAX_BATCH_SIZE_BYTES,DEFAULT_MAX_BATCH_SIZE_BYTES);this.batch.maxItems=batchOptions.maxItems??DEFAULT_MAX_BATCH_ITEMS;this.batch.flushInterval=batchOptions.flushInterval??DEFAULT_BATCH_FLUSH_INTERVAL_MS;}}attachListeners(){if(this.batch.enabled){globalThis.addEventListener('visibilitychange',()=>{if(document.visibilityState==='hidden'){this.flushBatch();}});}}getStorageEntry(name){return this.store.get(name??this.name);}// TODO: fix the type of different queues to be the same if possible
|
745
|
+
setStorageEntry(name,value){this.store.set(name??this.name,value??[]);}/**
|
746
|
+
* Stops processing the queue
|
747
|
+
*/stop(){this.schedule.cancelAll();this.scheduleTimeoutActive=false;}/**
|
748
|
+
* Starts processing the queue
|
749
|
+
*/start(){if(this.scheduleTimeoutActive){this.stop();}this.scheduleTimeoutActive=true;this.scheduleFlushBatch();this.ack();this.checkReclaim();this.processHead();}/**
|
750
|
+
* Configures the timeout handler for flushing the batch queue
|
751
|
+
*/scheduleFlushBatch(){if(this.batch.enabled&&this.batch?.flushInterval){if(this.flushBatchTaskId){this.schedule.cancel(this.flushBatchTaskId);}this.flushBatchTaskId=this.schedule.run(this.flushBatch,this.batch.flushInterval,ScheduleModes.ASAP);}}/**
|
752
|
+
* Flushes the batch queue
|
753
|
+
*/flushBatch(){if(!this.batchingInProgress){this.batchingInProgress=true;let batchQueue=this.getStorageEntry(QueueStatuses.BATCH_QUEUE)??[];if(batchQueue.length>0){batchQueue=batchQueue.slice(-batchQueue.length);const batchEntry=this.genQueueItem(batchQueue.map(queueItem=>queueItem.item));this.setStorageEntry(QueueStatuses.BATCH_QUEUE,[]);this.pushToMainQueue(batchEntry);}this.batchingInProgress=false;// Re-schedule the flush task
|
754
|
+
this.scheduleFlushBatch();}}/**
|
755
|
+
* Decides whether to retry. Overridable.
|
756
|
+
*
|
757
|
+
* @param {Object} item The item being processed
|
758
|
+
* @param {Number} attemptNumber The attemptNumber (1 for first retry)
|
759
|
+
* @return {Boolean} Whether to requeue the message
|
760
|
+
*/shouldRetry(item,attemptNumber){return attemptNumber<=this.maxAttempts;}/**
|
761
|
+
* Calculates the delay (in ms) for a retry attempt
|
762
|
+
*
|
763
|
+
* @param {Number} attemptNumber The attemptNumber (1 for first retry)
|
764
|
+
* @return {Number} The delay in milliseconds to wait before attempting a retry
|
765
|
+
*/getDelay(attemptNumber){let ms=this.backoff.minRetryDelay*this.backoff.factor**attemptNumber;if(this.backoff.jitter){const rand=Math.random();const deviation=Math.floor(rand*this.backoff.jitter*ms);if(Math.floor(rand*10)<5){ms-=deviation;}else {ms+=deviation;}}return Number(Math.min(ms,this.backoff.maxRetryDelay).toPrecision(1));}enqueue(entry){let curEntry;if(this.batch.enabled){curEntry=this.handleNewItemForBatch(entry);}else {curEntry=entry;}// when batching is enabled, `curEntry` could be `undefined` if the batch criteria is not met
|
766
|
+
if(curEntry){this.pushToMainQueue(curEntry);}}/**
|
767
|
+
* Handles a new item added to the retry queue when batching is enabled
|
768
|
+
* @param entry New item added to the retry queue
|
769
|
+
* @returns Undefined or batch entry object
|
770
|
+
*/handleNewItemForBatch(entry){let curEntry;let batchQueue=this.getStorageEntry(QueueStatuses.BATCH_QUEUE)??[];if(!this.batchingInProgress){this.batchingInProgress=true;batchQueue=batchQueue.slice(-batchQueue.length);batchQueue.push(entry);const batchDispatchInfo=this.getBatchDispInfo(batchQueue);// if batch criteria is met, queue the batch events to the main queue and clear batch queue
|
771
|
+
if(batchDispatchInfo.criteriaMet||batchDispatchInfo.criteriaExceeded){let batchItems;if(batchDispatchInfo.criteriaExceeded){batchItems=batchQueue.slice(0,batchQueue.length-1).map(queueItem=>queueItem.item);batchQueue=[entry];}else {batchItems=batchQueue.map(queueItem=>queueItem.item);batchQueue=[];}// Don't make any batch request if there are no items
|
772
|
+
if(batchItems.length>0){curEntry=this.genQueueItem(batchItems);}// re-attach the timeout handler
|
773
|
+
this.scheduleFlushBatch();}this.batchingInProgress=false;}else {batchQueue.push(entry);}// update the batch queue
|
774
|
+
this.setStorageEntry(QueueStatuses.BATCH_QUEUE,batchQueue);return curEntry;}pushToMainQueue(curEntry){let queue=this.getStorageEntry(QueueStatuses.QUEUE)??[];queue=queue.slice(-(this.maxItems-1));queue.push(curEntry);queue=queue.sort(sortByTime);this.setStorageEntry(QueueStatuses.QUEUE,queue);if(this.scheduleTimeoutActive){this.processHead();}}/**
|
775
|
+
* Adds an item to the queue
|
776
|
+
*
|
777
|
+
* @param {Object} itemData The item to process
|
778
|
+
*/addItem(itemData){this.enqueue(this.genQueueItem(itemData));}/**
|
779
|
+
* Generates a queue item
|
780
|
+
* @param itemData Queue item data
|
781
|
+
* @returns Queue item
|
782
|
+
*/genQueueItem(itemData){return {item:itemData,attemptNumber:0,time:this.schedule.now(),id:generateUUID()};}/**
|
783
|
+
* Adds an item to the retry queue
|
784
|
+
*
|
785
|
+
* @param {Object} itemData The item to retry
|
786
|
+
* @param {Number} attemptNumber The attempt number (1 for first retry)
|
787
|
+
* @param {Error} [error] The error from previous attempt, if there was one
|
788
|
+
* @param {String} [id] The id of the queued message used for tracking duplicate entries
|
789
|
+
*/requeue(itemData,attemptNumber,error,id){if(this.shouldRetry(itemData,attemptNumber)){this.enqueue({item:itemData,attemptNumber,time:this.schedule.now()+this.getDelay(attemptNumber),id:id??generateUUID()});}}/**
|
790
|
+
* Returns the information about whether the batch criteria is met or exceeded
|
791
|
+
* @param batchItems Prospective batch items
|
792
|
+
* @returns Batch dispatch info
|
793
|
+
*/getBatchDispInfo(batchItems){let lengthCriteriaMet=false;let lengthCriteriaExceeded=false;const configuredBatchMaxItems=this.batch?.maxItems;if(isDefined(configuredBatchMaxItems)){lengthCriteriaMet=batchItems.length===configuredBatchMaxItems;lengthCriteriaExceeded=batchItems.length>configuredBatchMaxItems;}if(lengthCriteriaMet||lengthCriteriaExceeded){return {criteriaMet:lengthCriteriaMet,criteriaExceeded:lengthCriteriaExceeded};}let sizeCriteriaMet=false;let sizeCriteriaExceeded=false;const configuredBatchMaxSize=this.batch?.maxSize;if(isDefined(configuredBatchMaxSize)&&isDefined(this.batchSizeCalcCb)){const curBatchSize=this.batchSizeCalcCb(batchItems.map(queueItem=>queueItem.item));sizeCriteriaMet=curBatchSize===configuredBatchMaxSize;sizeCriteriaExceeded=curBatchSize>configuredBatchMaxSize;}return {criteriaMet:sizeCriteriaMet,criteriaExceeded:sizeCriteriaExceeded};}processHead(){// cancel the scheduled task if it exists
|
794
|
+
this.schedule.cancel(this.processId);// Pop the head off the queue
|
795
|
+
let queue=this.getStorageEntry(QueueStatuses.QUEUE)??[];const inProgress=this.getStorageEntry(QueueStatuses.IN_PROGRESS)??{};const now=this.schedule.now();const toRun=[];// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
796
|
+
const processItemCallback=(el,id)=>(err,res)=>{const inProgress=this.getStorageEntry(QueueStatuses.IN_PROGRESS)??{};delete inProgress[id];this.setStorageEntry(QueueStatuses.IN_PROGRESS,inProgress);if(err){this.requeue(el.item,el.attemptNumber+1,err,el.id);}};const enqueueItem=(el,id)=>{toRun.push({item:el.item,done:processItemCallback(el,id),attemptNumber:el.attemptNumber});};let inProgressSize=Object.keys(inProgress).length;// eslint-disable-next-line no-plusplus
|
797
|
+
while(queue.length>0&&queue[0].time<=now&&inProgressSize++<this.maxItems){const el=queue.shift();if(el){const id=generateUUID();// Save this to the in progress map
|
798
|
+
inProgress[id]={item:el.item,attemptNumber:el.attemptNumber,time:this.schedule.now()};enqueueItem(el,id);}}this.setStorageEntry(QueueStatuses.QUEUE,queue);this.setStorageEntry(QueueStatuses.IN_PROGRESS,inProgress);toRun.forEach(el=>{// TODO: handle processQueueCb timeout
|
799
|
+
try{const willBeRetried=this.shouldRetry(el.item,el.attemptNumber+1);this.processQueueCb(el.item,el.done,el.attemptNumber,this.maxAttempts,willBeRetried);}catch(err){this.logger?.error(RETRY_QUEUE_PROCESS_ERROR(RETRY_QUEUE),err);}});// re-read the queue in case the process function finished immediately or added another item
|
800
|
+
queue=this.getStorageEntry(QueueStatuses.QUEUE)??[];this.schedule.cancel(this.processId);if(queue.length>0){const nextProcessExecutionTime=queue[0].time-now;this.processId=this.schedule.run(this.processHead,nextProcessExecutionTime,ScheduleModes.ASAP);}}// Ack continuously to prevent other tabs from claiming our queue
|
801
|
+
ack(){this.setStorageEntry(QueueStatuses.ACK,this.schedule.now());this.setStorageEntry(QueueStatuses.RECLAIM_START,null);this.setStorageEntry(QueueStatuses.RECLAIM_END,null);this.schedule.run(this.ack,this.timeouts.ackTimer,ScheduleModes.ASAP);}reclaim(id){const other=this.storeManager.setStore({id,name:this.name,validKeys:QueueStatuses,type:LOCAL_STORAGE});const our={queue:this.getStorageEntry(QueueStatuses.QUEUE)??[]};const their={inProgress:other.get(QueueStatuses.IN_PROGRESS)??{},batchQueue:other.get(QueueStatuses.BATCH_QUEUE)??[],queue:other.get(QueueStatuses.QUEUE)??[]};const trackMessageIds=[];const addConcatQueue=(queue,incrementAttemptNumberBy)=>{const concatIterator=el=>{const id=el.id??generateUUID();if(trackMessageIds.includes(id));else {our.queue.push({item:el.item,attemptNumber:el.attemptNumber+incrementAttemptNumberBy,time:this.schedule.now(),id});trackMessageIds.push(id);}};if(Array.isArray(queue)){queue.forEach(concatIterator);}else if(queue){Object.values(queue).forEach(concatIterator);}};// add their queue to ours, resetting run-time to immediate and copying the attempt#
|
802
|
+
addConcatQueue(their.queue,0);// Process batch queue items
|
803
|
+
if(this.batch.enabled){their.batchQueue.forEach(el=>{const id=el.id??generateUUID();if(trackMessageIds.includes(id));else {this.enqueue(el);trackMessageIds.push(id);}});}else {// if batching is not enabled in the current instance, add those items to the main queue directly
|
804
|
+
addConcatQueue(their.batchQueue,0);}// if the queue is abandoned, all the in-progress are failed. retry them immediately and increment the attempt#
|
805
|
+
addConcatQueue(their.inProgress,1);our.queue=our.queue.sort(sortByTime);this.setStorageEntry(QueueStatuses.QUEUE,our.queue);// remove all keys one by on next tick to avoid NS_ERROR_STORAGE_BUSY error
|
806
|
+
this.clearQueueEntries(other,1);// process the new items we claimed
|
807
|
+
this.processHead();}// eslint-disable-next-line class-methods-use-this
|
808
|
+
clearQueueEntries(other,localStorageBackoff){this.removeStorageEntry(other,0,localStorageBackoff);}removeStorageEntry(store,entryIdx,backoff,attempt=1){const maxAttempts=2;globalThis.setTimeout(()=>{const queueEntryKeys=Object.keys(QueueStatuses);const entry=QueueStatuses[queueEntryKeys[entryIdx]];try{store.remove(entry);// clear the next entry
|
809
|
+
if(entryIdx+1<queueEntryKeys.length){this.removeStorageEntry(store,entryIdx+1,backoff);}}catch(err){const storageBusyErr='NS_ERROR_STORAGE_BUSY';const isLocalStorageBusy=err.name===storageBusyErr||err.code===storageBusyErr||err.code===0x80630001;if(isLocalStorageBusy&&attempt<maxAttempts){// Try clearing the same entry again with some extra delay
|
810
|
+
this.removeStorageEntry(store,entryIdx,backoff+40,attempt+1);}else {this.logger?.error(RETRY_QUEUE_ENTRY_REMOVE_ERROR(RETRY_QUEUE,entry,attempt),err);}// clear the next entry
|
811
|
+
if(attempt===maxAttempts&&entryIdx+1<queueEntryKeys.length){this.removeStorageEntry(store,entryIdx+1,backoff);}}},backoff);}checkReclaim(){const createReclaimStartTask=store=>()=>{if(store.get(QueueStatuses.RECLAIM_END)!==this.id){return;}if(store.get(QueueStatuses.RECLAIM_START)!==this.id){return;}this.reclaim(store.id);};const createReclaimEndTask=store=>()=>{if(store.get(QueueStatuses.RECLAIM_START)!==this.id){return;}store.set(QueueStatuses.RECLAIM_END,this.id);this.schedule.run(createReclaimStartTask(store),this.timeouts.reclaimWait,ScheduleModes.ABANDON);};const tryReclaim=store=>{store.set(QueueStatuses.RECLAIM_START,this.id);store.set(QueueStatuses.ACK,this.schedule.now());this.schedule.run(createReclaimEndTask(store),this.timeouts.reclaimWait,ScheduleModes.ABANDON);};const findOtherQueues=name=>{const res=[];const storage=this.store.getOriginalEngine();for(let i=0;i<storage.length;i++){const k=storage.key(i);const parts=k?k.split('.'):[];if(parts.length!==3){// eslint-disable-next-line no-continue
|
812
|
+
continue;}if(parts[0]!==name){// eslint-disable-next-line no-continue
|
813
|
+
continue;}if(parts[2]!==QueueStatuses.ACK){// eslint-disable-next-line no-continue
|
814
|
+
continue;}res.push(this.storeManager.setStore({id:parts[1],name,validKeys:QueueStatuses,type:LOCAL_STORAGE}));}return res;};findOtherQueues(this.name).forEach(store=>{if(store.id===this.id){return;}if(this.schedule.now()-store.get(QueueStatuses.ACK)<this.timeouts.reclaimTimeout){return;}tryReclaim(store);});this.schedule.run(this.checkReclaim,this.timeouts.reclaimTimer,ScheduleModes.RESCHEDULE);}clear(){this.schedule.cancelAll();this.setDefaultQueueEntries();}}
|
815
|
+
|
816
|
+
const pluginName$e='BeaconQueue';const BeaconQueue=()=>({name:pluginName$e,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$e];},dataplaneEventsQueue:{/**
|
817
|
+
* Initialize the queue for delivery
|
818
|
+
* @param state Application state
|
819
|
+
* @param httpClient http client instance
|
820
|
+
* @param storeManager Store Manager instance
|
821
|
+
* @param errorHandler Error handler instance
|
822
|
+
* @param logger Logger instance
|
823
|
+
* @returns BeaconItemsQueue instance
|
824
|
+
*/init(state,httpClient,storeManager,errorHandler,logger){const writeKey=state.lifecycle.writeKey.value;const dataplaneUrl=state.lifecycle.activeDataplaneUrl.value;const url=getDeliveryUrl$1(dataplaneUrl,writeKey);const finalQOpts=getNormalizedBeaconQueueOptions(state.loadOptions.value.beaconQueueOptions??{});const queueProcessCallback=(itemData,done)=>{logger?.debug(BEACON_PLUGIN_EVENTS_QUEUE_DEBUG(BEACON_QUEUE_PLUGIN));const currentTime=getCurrentTimeFormatted();const finalEvents=itemData.map(queueItemData=>getFinalEventForDeliveryMutator(queueItemData.event,currentTime));const data=getBatchDeliveryPayload$1(finalEvents,currentTime,logger);if(data){try{const isEnqueuedInBeacon=navigator.sendBeacon(url,data);if(!isEnqueuedInBeacon){logger?.error(BEACON_QUEUE_SEND_ERROR(BEACON_QUEUE_PLUGIN));}done(null,isEnqueuedInBeacon);}catch(err){errorHandler?.onError(err,BEACON_QUEUE_PLUGIN,BEACON_QUEUE_DELIVERY_ERROR(url));// Remove the item from queue
|
825
|
+
done(null);}}else {// Mark the item as done so that it can be removed from the queue
|
826
|
+
done(null);}};const eventsQueue=new RetryQueue(`${QUEUE_NAME$3}_${writeKey}`,{batch:{enabled:true,flushInterval:finalQOpts.flushQueueInterval,maxSize:MAX_BATCH_PAYLOAD_SIZE_BYTES,// set the hard limit
|
827
|
+
maxItems:finalQOpts.maxItems}},queueProcessCallback,storeManager,LOCAL_STORAGE,logger,itemData=>{const currentTime=getCurrentTimeFormatted();const events=itemData.map(queueItemData=>queueItemData.event);// type casting to Blob as we know that the event has already been validated prior to enqueue
|
828
|
+
return getBatchDeliveryPayload$1(events,currentTime,logger).size;});return eventsQueue;},/**
|
829
|
+
* Add event to the queue for delivery
|
830
|
+
* @param state Application state
|
831
|
+
* @param eventsQueue IQueue instance
|
832
|
+
* @param event RudderEvent object
|
833
|
+
* @param errorHandler Error handler instance
|
834
|
+
* @param logger Logger instance
|
835
|
+
* @returns none
|
836
|
+
*/enqueue(state,eventsQueue,event,errorHandler,logger){// sentAt is only added here for the validation step
|
837
|
+
// It'll be updated to the latest timestamp during actual delivery
|
838
|
+
event.sentAt=getCurrentTimeFormatted();validateEventPayloadSize(event,logger);eventsQueue.addItem({event});}}});
|
839
|
+
|
840
|
+
const BUGSNAG_API_KEY_VALIDATION_ERROR=apiKey=>`The Bugsnag API key (${apiKey}) is invalid or not provided.`;const BUGSNAG_SDK_URL_ERROR='The Bugsnag SDK URL is invalid. Failed to load the Bugsnag SDK.';
|
841
|
+
|
842
|
+
const API_KEY='0d96a60df267f4a13f808bbaa54e535c';// Potential PII or sensitive data
|
843
|
+
const APP_STATE_EXCLUDE_KEYS=['userId','userTraits','groupId','groupTraits','anonymousId','config','instance',// destination instance objects
|
844
|
+
'eventBuffer',// pre-load event buffer (may contain PII)
|
845
|
+
'traits'];
|
846
|
+
|
847
|
+
const isApiKeyValid=apiKey=>{const isAPIKeyValid=!(apiKey.startsWith('{{')||apiKey.endsWith('}}')||apiKey.length===0);return isAPIKeyValid;};const getAppStateForMetadata=state=>{const stateStr=stringifyWithoutCircular(state,false,APP_STATE_EXCLUDE_KEYS);return stateStr!==null?JSON.parse(stateStr):undefined;};
|
848
|
+
|
849
|
+
const pluginName$d='Bugsnag';const Bugsnag=()=>({name:pluginName$d,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$d];},errorReportingProvider:{init:(state,externalSrcLoader,logger)=>new Promise((resolve,reject)=>{// If API key token is not parsed or invalid, don't proceed to initialize the client
|
850
|
+
if(!isApiKeyValid(API_KEY)){reject(new Error(BUGSNAG_API_KEY_VALIDATION_ERROR(API_KEY)));return;}// If SDK URL is empty, don't proceed to initialize the client
|
851
|
+
// eslint-disable-next-line no-constant-condition
|
852
|
+
{reject(new Error(BUGSNAG_SDK_URL_ERROR));return;}}),notify:(client,error,state,logger)=>{client?.notify(error,{metaData:{state:getAppStateForMetadata(state)}});},breadcrumb:(client,message,logger)=>{client?.leaveBreadcrumb(message);}}});
|
853
|
+
|
854
|
+
const CUSTOM_CONSENT_MANAGER_PLUGIN='CustomConsentManagerPlugin';
|
855
|
+
|
856
|
+
const DESTINATION_CONSENT_STATUS_ERROR$2=`Failed to determine the consent status for the destination. Please check the destination configuration and try again.`;
|
857
|
+
|
858
|
+
const pluginName$c='CustomConsentManager';const CustomConsentManager=()=>({name:pluginName$c,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$c];},consentManager:{init(state,logger){// Nothing to initialize
|
859
|
+
},updateConsentsInfo(state,storeManager,logger){// Nothing to update. Already provided by the user
|
860
|
+
},isDestinationConsented(state,destConfig,errorHandler,logger){if(!state.consents.initialized.value){return true;}const allowedConsentIds=state.consents.data.value.allowedConsentIds;try{const{consentManagement}=destConfig;// If the destination does not have consent management config, events should be sent.
|
861
|
+
if(!consentManagement){return true;}// Get the corresponding consents for the destination
|
862
|
+
const cmpConfig=consentManagement.find(c=>c.provider===state.consents.provider.value);// If there are no consents configured for the destination for the current provider, events should be sent.
|
863
|
+
if(!cmpConfig?.consents){return true;}const configuredConsents=cmpConfig.consents.map(c=>c.consent.trim()).filter(n=>n);const resolutionStrategy=cmpConfig.resolutionStrategy??state.consents.resolutionStrategy.value;// match the configured consents with user provided consents as per
|
864
|
+
// the configured resolution strategy
|
865
|
+
const matchPredicate=consent=>allowedConsentIds.includes(consent);switch(resolutionStrategy){case'or':return configuredConsents.some(matchPredicate)||configuredConsents.length===0;case'and':default:return configuredConsents.every(matchPredicate);}}catch(err){errorHandler?.onError(err,CUSTOM_CONSENT_MANAGER_PLUGIN,DESTINATION_CONSENT_STATUS_ERROR$2);return true;}}}});
|
866
|
+
|
867
|
+
const DIR_NAME$1b='AdobeAnalytics';const DISPLAY_NAME$1b='Adobe Analytics';
|
868
|
+
|
869
|
+
const DIR_NAME$1a='Amplitude';const DISPLAY_NAME$1a='Amplitude';
|
870
|
+
|
871
|
+
const DIR_NAME$19='Appcues';const DISPLAY_NAME$19='Appcues';
|
872
|
+
|
873
|
+
const DIR_NAME$18='BingAds';const DISPLAY_NAME$18='Bing Ads';
|
874
|
+
|
875
|
+
const DIR_NAME$17='Braze';const DISPLAY_NAME$17='Braze';
|
876
|
+
|
877
|
+
const DIR_NAME$16='Bugsnag';const DISPLAY_NAME$16='Bugsnag';
|
878
|
+
|
879
|
+
const DIR_NAME$15='Chartbeat';const DISPLAY_NAME$15='Chartbeat';
|
880
|
+
|
881
|
+
const DIR_NAME$14='Clevertap';const DISPLAY_NAME$14='CleverTap';
|
882
|
+
|
883
|
+
const DIR_NAME$13='Comscore';const DISPLAY_NAME$13='Comscore';
|
884
|
+
|
885
|
+
const DIR_NAME$12='Criteo';const DISPLAY_NAME$12='Criteo';
|
886
|
+
|
887
|
+
const DIR_NAME$11='CustomerIO';const DISPLAY_NAME$11='Customer IO';
|
888
|
+
|
889
|
+
const DIR_NAME$10='Drip';const DISPLAY_NAME$10='Drip';
|
890
|
+
|
891
|
+
const DIR_NAME$$='FacebookPixel';const DISPLAY_NAME$$='Facebook Pixel';
|
892
|
+
|
893
|
+
const DIR_NAME$_='Fullstory';const DISPLAY_NAME$_='Fullstory';
|
894
|
+
|
895
|
+
const DIR_NAME$Z='GA';const DISPLAY_NAME$Z='Google Analytics';
|
896
|
+
|
897
|
+
const DIR_NAME$Y='GA4';const DISPLAY_NAME$Y='Google Analytics 4 (GA4)';
|
898
|
+
|
899
|
+
const DIR_NAME$X='GoogleAds';const DISPLAY_NAME$X='Google Ads';
|
900
|
+
|
901
|
+
const DIR_NAME$W='GoogleOptimize';const DISPLAY_NAME$W='Google Optimize';
|
902
|
+
|
903
|
+
const DIR_NAME$V='GoogleTagManager';const DISPLAY_NAME$V='Google Tag Manager';
|
904
|
+
|
905
|
+
const DIR_NAME$U='Heap';const DISPLAY_NAME$U='Heap.io';
|
906
|
+
|
907
|
+
const DIR_NAME$T='Hotjar';const DISPLAY_NAME$T='Hotjar';
|
908
|
+
|
909
|
+
const DIR_NAME$S='HubSpot';const DISPLAY_NAME$S='HubSpot';
|
910
|
+
|
911
|
+
const DIR_NAME$R='INTERCOM';const DISPLAY_NAME$R='Intercom';
|
912
|
+
|
913
|
+
const DIR_NAME$Q='Keen';const DISPLAY_NAME$Q='Keen';
|
914
|
+
|
915
|
+
const DIR_NAME$P='Kissmetrics';const DISPLAY_NAME$P='Kiss Metrics';
|
916
|
+
|
917
|
+
const DIR_NAME$O='Klaviyo';const DISPLAY_NAME$O='Klaviyo';
|
918
|
+
|
919
|
+
const DIR_NAME$N='LaunchDarkly';const DISPLAY_NAME$N='LaunchDarkly';
|
920
|
+
|
921
|
+
const DIR_NAME$M='LinkedInInsightTag';const DISPLAY_NAME$M='Linkedin Insight Tag';
|
922
|
+
|
923
|
+
const DIR_NAME$L='Lotame';const DISPLAY_NAME$L='Lotame';
|
924
|
+
|
925
|
+
const DIR_NAME$K='Lytics';const DISPLAY_NAME$K='Lytics';
|
926
|
+
|
927
|
+
const DIR_NAME$J='Mixpanel';const DISPLAY_NAME$J='Mixpanel';
|
928
|
+
|
929
|
+
const DIR_NAME$I='MoEngage';const DISPLAY_NAME$I='MoEngage';
|
930
|
+
|
931
|
+
const DIR_NAME$H='Optimizely';const DISPLAY_NAME$H='Optimizely Web';
|
932
|
+
|
933
|
+
const DIR_NAME$G='Pendo';const DISPLAY_NAME$G='Pendo';
|
934
|
+
|
935
|
+
const DIR_NAME$F='PinterestTag';const DISPLAY_NAME$F='Pinterest Tag';
|
936
|
+
|
937
|
+
const DIR_NAME$E='PostAffiliatePro';const DISPLAY_NAME$E='Post Affiliate Pro';
|
938
|
+
|
939
|
+
const DIR_NAME$D='Posthog';const DISPLAY_NAME$D='PostHog';
|
940
|
+
|
941
|
+
const DIR_NAME$C='ProfitWell';const DISPLAY_NAME$C='ProfitWell';
|
942
|
+
|
943
|
+
const DIR_NAME$B='Qualtrics';const DISPLAY_NAME$B='Qualtrics';
|
944
|
+
|
945
|
+
const DIR_NAME$A='QuantumMetric';const DISPLAY_NAME$A='Quantum Metric';
|
946
|
+
|
947
|
+
const DIR_NAME$z='RedditPixel';const DISPLAY_NAME$z='Reddit Pixel';
|
948
|
+
|
949
|
+
const DIR_NAME$y='Sentry';const DISPLAY_NAME$y='Sentry';
|
950
|
+
|
951
|
+
const DIR_NAME$x='SnapPixel';const DISPLAY_NAME$x='Snap Pixel';
|
952
|
+
|
953
|
+
const DIR_NAME$w='TVSquared';const DISPLAY_NAME$w='TVSquared';
|
954
|
+
|
955
|
+
const DIR_NAME$v='VWO';const DISPLAY_NAME$v='VWO';
|
956
|
+
|
957
|
+
const DIR_NAME$u='GA360';const DISPLAY_NAME$u='Google Analytics 360';
|
958
|
+
|
959
|
+
const DIR_NAME$t='Adroll';const DISPLAY_NAME$t='Adroll';
|
960
|
+
|
961
|
+
const DIR_NAME$s='DCMFloodlight';const DISPLAY_NAME$s='DCM Floodlight';
|
962
|
+
|
963
|
+
const DIR_NAME$r='Matomo';const DISPLAY_NAME$r='Matomo';
|
964
|
+
|
965
|
+
const DIR_NAME$q='Vero';const DISPLAY_NAME$q='Vero';
|
966
|
+
|
967
|
+
const DIR_NAME$p='Mouseflow';const DISPLAY_NAME$p='Mouseflow';
|
968
|
+
|
969
|
+
const DIR_NAME$o='Rockerbox';const DISPLAY_NAME$o='Rockerbox';
|
970
|
+
|
971
|
+
const DIR_NAME$n='ConvertFlow';const DISPLAY_NAME$n='ConvertFlow';
|
972
|
+
|
973
|
+
const DIR_NAME$m='SnapEngage';const DISPLAY_NAME$m='SnapEngage';
|
974
|
+
|
975
|
+
const DIR_NAME$l='LiveChat';const DISPLAY_NAME$l='LiveChat';
|
976
|
+
|
977
|
+
const DIR_NAME$k='Shynet';const DISPLAY_NAME$k='Shynet';
|
978
|
+
|
979
|
+
const DIR_NAME$j='Woopra';const DISPLAY_NAME$j='Woopra';
|
980
|
+
|
981
|
+
const DIR_NAME$i='RollBar';const DISPLAY_NAME$i='RollBar';
|
982
|
+
|
983
|
+
const DIR_NAME$h='QuoraPixel';const DISPLAY_NAME$h='Quora Pixel';
|
984
|
+
|
985
|
+
const DIR_NAME$g='June';const DISPLAY_NAME$g='June';
|
986
|
+
|
987
|
+
const DIR_NAME$f='Engage';const DISPLAY_NAME$f='Engage';
|
988
|
+
|
989
|
+
const DIR_NAME$e='Iterable';const DISPLAY_NAME$e='Iterable';
|
990
|
+
|
991
|
+
const DIR_NAME$d='YandexMetrica';const DISPLAY_NAME$d='Yandex.Metrica';
|
992
|
+
|
993
|
+
const DIR_NAME$c='Refiner';const DISPLAY_NAME$c='Refiner';
|
994
|
+
|
995
|
+
const DIR_NAME$b='Qualaroo';const DISPLAY_NAME$b='Qualaroo';
|
996
|
+
|
997
|
+
const DIR_NAME$a='Podsights';const DISPLAY_NAME$a='Podsights';
|
998
|
+
|
999
|
+
const DIR_NAME$9='Axeptio';const DISPLAY_NAME$9='Axeptio';
|
1000
|
+
|
1001
|
+
const DIR_NAME$8='Satismeter';const DISPLAY_NAME$8='Satismeter';
|
1002
|
+
|
1003
|
+
const DIR_NAME$7='MicrosoftClarity';const DISPLAY_NAME$7='Microsoft Clarity';
|
1004
|
+
|
1005
|
+
const DIR_NAME$6='Sendinblue';const DISPLAY_NAME$6='Sendinblue';
|
1006
|
+
|
1007
|
+
const DIR_NAME$5='Olark';const DISPLAY_NAME$5='Olark';
|
1008
|
+
|
1009
|
+
const DIR_NAME$4='Lemnisk';const DISPLAY_NAME$4='Lemnisk';
|
1010
|
+
|
1011
|
+
const DIR_NAME$3='TiktokAds';const DISPLAY_NAME$3='TikTok Ads';
|
1012
|
+
|
1013
|
+
const DIR_NAME$2='ActiveCampaign';const DISPLAY_NAME$2='Active Campaign';
|
1014
|
+
|
1015
|
+
const DIR_NAME$1='Sprig';const DISPLAY_NAME$1='Sprig';
|
1016
|
+
|
1017
|
+
const DIR_NAME='SpotifyPixel';const DISPLAY_NAME='Spotify Pixel';
|
1018
|
+
|
1019
|
+
// map of the destination display names to the destination directory names
|
1020
|
+
const destDisplayNamesToFileNamesMap={[DISPLAY_NAME$S]:DIR_NAME$S,[DISPLAY_NAME$Z]:DIR_NAME$Z,[DISPLAY_NAME$T]:DIR_NAME$T,[DISPLAY_NAME$X]:DIR_NAME$X,[DISPLAY_NAME$v]:DIR_NAME$v,[DISPLAY_NAME$V]:DIR_NAME$V,[DISPLAY_NAME$17]:DIR_NAME$17,[DISPLAY_NAME$R]:DIR_NAME$R,[DISPLAY_NAME$Q]:DIR_NAME$Q,[DISPLAY_NAME$P]:DIR_NAME$P,[DISPLAY_NAME$11]:DIR_NAME$11,[DISPLAY_NAME$15]:DIR_NAME$15,[DISPLAY_NAME$13]:DIR_NAME$13,[DISPLAY_NAME$$]:DIR_NAME$$,[DISPLAY_NAME$L]:DIR_NAME$L,[DISPLAY_NAME$H]:DIR_NAME$H,[DISPLAY_NAME$16]:DIR_NAME$16,[DISPLAY_NAME$_]:DIR_NAME$_,[DISPLAY_NAME$w]:DIR_NAME$w,[DISPLAY_NAME$Y]:DIR_NAME$Y,[DISPLAY_NAME$I]:DIR_NAME$I,[DISPLAY_NAME$1a]:DIR_NAME$1a,[DISPLAY_NAME$G]:DIR_NAME$G,[DISPLAY_NAME$K]:DIR_NAME$K,[DISPLAY_NAME$19]:DIR_NAME$19,[DISPLAY_NAME$D]:DIR_NAME$D,[DISPLAY_NAME$O]:DIR_NAME$O,[DISPLAY_NAME$14]:DIR_NAME$14,[DISPLAY_NAME$18]:DIR_NAME$18,[DISPLAY_NAME$F]:DIR_NAME$F,[DISPLAY_NAME$1b]:DIR_NAME$1b,[DISPLAY_NAME$M]:DIR_NAME$M,[DISPLAY_NAME$z]:DIR_NAME$z,[DISPLAY_NAME$10]:DIR_NAME$10,[DISPLAY_NAME$U]:DIR_NAME$U,[DISPLAY_NAME$12]:DIR_NAME$12,[DISPLAY_NAME$J]:DIR_NAME$J,[DISPLAY_NAME$B]:DIR_NAME$B,[DISPLAY_NAME$C]:DIR_NAME$C,[DISPLAY_NAME$y]:DIR_NAME$y,[DISPLAY_NAME$A]:DIR_NAME$A,[DISPLAY_NAME$x]:DIR_NAME$x,[DISPLAY_NAME$E]:DIR_NAME$E,[DISPLAY_NAME$W]:DIR_NAME$W,[DISPLAY_NAME$N]:DIR_NAME$N,[DISPLAY_NAME$u]:DIR_NAME$u,[DISPLAY_NAME$t]:DIR_NAME$t,[DISPLAY_NAME$s]:DIR_NAME$s,[DISPLAY_NAME$r]:DIR_NAME$r,[DISPLAY_NAME$q]:DIR_NAME$q,[DISPLAY_NAME$p]:DIR_NAME$p,[DISPLAY_NAME$o]:DIR_NAME$o,[DISPLAY_NAME$n]:DIR_NAME$n,[DISPLAY_NAME$m]:DIR_NAME$m,[DISPLAY_NAME$l]:DIR_NAME$l,[DISPLAY_NAME$k]:DIR_NAME$k,[DISPLAY_NAME$j]:DIR_NAME$j,[DISPLAY_NAME$i]:DIR_NAME$i,[DISPLAY_NAME$h]:DIR_NAME$h,[DISPLAY_NAME$g]:DIR_NAME$g,[DISPLAY_NAME$f]:DIR_NAME$f,[DISPLAY_NAME$e]:DIR_NAME$e,[DISPLAY_NAME$d]:DIR_NAME$d,[DISPLAY_NAME$c]:DIR_NAME$c,[DISPLAY_NAME$b]:DIR_NAME$b,[DISPLAY_NAME$a]:DIR_NAME$a,[DISPLAY_NAME$9]:DIR_NAME$9,[DISPLAY_NAME$8]:DIR_NAME$8,[DISPLAY_NAME$7]:DIR_NAME$7,[DISPLAY_NAME$6]:DIR_NAME$6,[DISPLAY_NAME$5]:DIR_NAME$5,[DISPLAY_NAME$4]:DIR_NAME$4,[DISPLAY_NAME$3]:DIR_NAME$3,[DISPLAY_NAME$2]:DIR_NAME$2,[DISPLAY_NAME$1]:DIR_NAME$1,[DISPLAY_NAME]:DIR_NAME};
|
1021
|
+
|
1022
|
+
const DEFAULT_INTEGRATIONS_CONFIG={All:true};
|
1023
|
+
|
1024
|
+
const isDestIntgConfigTruthy=destIntgConfig=>!isUndefined(destIntgConfig)&&Boolean(destIntgConfig)===true;const isDestIntgConfigFalsy=destIntgConfig=>!isUndefined(destIntgConfig)&&Boolean(destIntgConfig)===false;/**
|
1025
|
+
* Filters the destinations that should not be loaded or forwarded events to based on the integration options (load or events API)
|
1026
|
+
* @param intgOpts Integration options object
|
1027
|
+
* @param destinations Destinations array
|
1028
|
+
* @returns Destinations array filtered based on the integration options
|
1029
|
+
*/const filterDestinations=(intgOpts,destinations)=>{const allOptVal=intgOpts.All??true;return destinations.filter(dest=>{const destDisplayName=dest.displayName;let isDestEnabled;if(allOptVal){isDestEnabled=true;if(isDestIntgConfigFalsy(intgOpts[destDisplayName])){isDestEnabled=false;}}else {isDestEnabled=false;if(isDestIntgConfigTruthy(intgOpts[destDisplayName])){isDestEnabled=true;}}return isDestEnabled;});};
|
1030
|
+
|
1031
|
+
const READY_CHECK_TIMEOUT_MS=11*1000;// 11 seconds
|
1032
|
+
const SCRIPT_LOAD_TIMEOUT_MS=10*1000;// 10 seconds
|
1033
|
+
const DEVICE_MODE_DESTINATIONS_PLUGIN='DeviceModeDestinationsPlugin';
|
1034
|
+
|
1035
|
+
const DESTINATION_NOT_SUPPORTED_ERROR=destUserFriendlyId=>`Destination ${destUserFriendlyId} is not supported.`;const DESTINATION_SDK_LOAD_ERROR=(context,destUserFriendlyId)=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to load script for destination ${destUserFriendlyId}.`;const DESTINATION_INIT_ERROR=destUserFriendlyId=>`Failed to initialize destination ${destUserFriendlyId}.`;const DESTINATION_INTEGRATIONS_DATA_ERROR=destUserFriendlyId=>`Failed to get integrations data for destination ${destUserFriendlyId}.`;const DESTINATION_READY_TIMEOUT_ERROR=(timeout,destUserFriendlyId)=>`A timeout of ${timeout} ms occurred while trying to check the ready status for "${destUserFriendlyId}" destination.`;
|
1036
|
+
|
1037
|
+
/**
|
1038
|
+
* Determines if the destination SDK code is evaluated
|
1039
|
+
* @param destSDKIdentifier The name of the global globalThis object that contains the destination SDK
|
1040
|
+
* @param sdkTypeName The name of the destination SDK type
|
1041
|
+
* @param logger Logger instance
|
1042
|
+
* @returns true if the destination SDK code is evaluated, false otherwise
|
1043
|
+
*/const isDestinationSDKMounted=(destSDKIdentifier,sdkTypeName,logger)=>Boolean(globalThis[destSDKIdentifier]&&globalThis[destSDKIdentifier][sdkTypeName]&&globalThis[destSDKIdentifier][sdkTypeName].prototype&&typeof globalThis[destSDKIdentifier][sdkTypeName].prototype.constructor!=='undefined');const createDestinationInstance=(destSDKIdentifier,sdkTypeName,dest,state)=>{const rAnalytics=globalThis.rudderanalytics;const analytics=rAnalytics.getAnalyticsInstance(state.lifecycle.writeKey.value);return new globalThis[destSDKIdentifier][sdkTypeName](clone(dest.config),{loadIntegration:state.nativeDestinations.loadIntegration.value,logLevel:state.lifecycle.logLevel.value,loadOnlyIntegrations:state.consents.postConsent.value?.integrations??state.nativeDestinations.loadOnlyIntegrations.value,page:(category,name,properties,options,callback)=>analytics.page(pageArgumentsToCallOptions(category,name,properties,options,callback)),track:(event,properties,options,callback)=>analytics.track(trackArgumentsToCallOptions(event,properties,options,callback)),identify:(userId,traits,options,callback)=>analytics.identify(identifyArgumentsToCallOptions(userId,traits,options,callback)),alias:(to,from,options,callback)=>analytics.alias(aliasArgumentsToCallOptions(to,from,options,callback)),group:(groupId,traits,options,callback)=>analytics.group(groupArgumentsToCallOptions(groupId,traits,options,callback)),getAnonymousId:()=>analytics.getAnonymousId(),getUserId:()=>analytics.getUserId(),getUserTraits:()=>analytics.getUserTraits(),getGroupId:()=>analytics.getGroupId(),getGroupTraits:()=>analytics.getGroupTraits(),getSessionId:()=>analytics.getSessionId()},{shouldApplyDeviceModeTransformation:dest.shouldApplyDeviceModeTransformation,propagateEventsUntransformedOnError:dest.propagateEventsUntransformedOnError,destinationId:dest.id});};const isDestinationReady=dest=>new Promise((resolve,reject)=>{const instance=dest.instance;let handleNumber;const checkReady=()=>{if(instance.isLoaded()&&(!instance.isReady||instance.isReady())){resolve(true);}else {handleNumber=globalThis.requestAnimationFrame(checkReady);}};checkReady();setTimeout(()=>{globalThis.cancelAnimationFrame(handleNumber);reject(new Error(DESTINATION_READY_TIMEOUT_ERROR(READY_CHECK_TIMEOUT_MS,dest.userFriendlyId)));},READY_CHECK_TIMEOUT_MS);});/**
|
1044
|
+
* Extracts the integration config, if any, from the given destination
|
1045
|
+
* and merges it with the current integrations config
|
1046
|
+
* @param dest Destination object
|
1047
|
+
* @param curDestIntgConfig Current destinations integration config
|
1048
|
+
* @param logger Logger object
|
1049
|
+
* @returns Combined destinations integrations config
|
1050
|
+
*/const getCumulativeIntegrationsConfig=(dest,curDestIntgConfig,errorHandler)=>{let integrationsConfig=curDestIntgConfig;if(isFunction(dest.instance?.getDataForIntegrationsObject)){try{integrationsConfig=mergeDeepRight(curDestIntgConfig,dest.instance?.getDataForIntegrationsObject());}catch(err){errorHandler?.onError(err,DEVICE_MODE_DESTINATIONS_PLUGIN,DESTINATION_INTEGRATIONS_DATA_ERROR(dest.userFriendlyId));}}return integrationsConfig;};const initializeDestination=(dest,state,destSDKIdentifier,sdkTypeName,errorHandler,logger)=>{try{const initializedDestination=clone(dest);const destInstance=createDestinationInstance(destSDKIdentifier,sdkTypeName,dest,state);initializedDestination.instance=destInstance;destInstance.init();isDestinationReady(initializedDestination).then(()=>{// Collect the integrations data for the hybrid mode destinations
|
1051
|
+
if(isHybridModeDestination(initializedDestination)){state.nativeDestinations.integrationsConfig.value=getCumulativeIntegrationsConfig(initializedDestination,state.nativeDestinations.integrationsConfig.value,errorHandler);}state.nativeDestinations.initializedDestinations.value=[...state.nativeDestinations.initializedDestinations.value,initializedDestination];}).catch(err=>{state.nativeDestinations.failedDestinations.value=[...state.nativeDestinations.failedDestinations.value,dest];// The error message is already formatted in the isDestinationReady function
|
1052
|
+
logger?.error(err);});}catch(err){state.nativeDestinations.failedDestinations.value=[...state.nativeDestinations.failedDestinations.value,dest];errorHandler?.onError(err,DEVICE_MODE_DESTINATIONS_PLUGIN,DESTINATION_INIT_ERROR(dest.userFriendlyId));}};
|
1053
|
+
|
1054
|
+
const pluginName$b='DeviceModeDestinations';const DeviceModeDestinations=()=>({name:pluginName$b,initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$b];},nativeDestinations:{setActiveDestinations(state,pluginsManager,errorHandler,logger){// Normalize the integration options from the load API call
|
1055
|
+
state.nativeDestinations.loadOnlyIntegrations.value=clone(state.loadOptions.value.integrations)??DEFAULT_INTEGRATIONS_CONFIG;state.nativeDestinations.loadIntegration.value=state.loadOptions.value.loadIntegration;// Filter destination that doesn't have mapping config-->Integration names
|
1056
|
+
const configSupportedDestinations=state.nativeDestinations.configuredDestinations.value.filter(configDest=>{if(destDisplayNamesToFileNamesMap[configDest.displayName]){return true;}errorHandler?.onError(new Error(DESTINATION_NOT_SUPPORTED_ERROR(configDest.userFriendlyId)),DEVICE_MODE_DESTINATIONS_PLUGIN);return false;});// Filter destinations that are disabled through load or consent API options
|
1057
|
+
const destinationsToLoad=filterDestinations(state.consents.postConsent.value?.integrations??state.nativeDestinations.loadOnlyIntegrations.value,configSupportedDestinations);const consentedDestinations=destinationsToLoad.filter(dest=>// if consent manager is not configured, then default to load the destination
|
1058
|
+
pluginsManager.invokeSingle(`consentManager.isDestinationConsented`,state,dest.config,errorHandler,logger)??true);state.nativeDestinations.activeDestinations.value=consentedDestinations;},load(state,externalSrcLoader,errorHandler,logger,externalScriptOnLoad){const integrationsCDNPath=state.lifecycle.integrationsCDNPath.value;const activeDestinations=state.nativeDestinations.activeDestinations.value;activeDestinations.forEach(dest=>{const sdkName=destDisplayNamesToFileNamesMap[dest.displayName];const destSDKIdentifier=`${sdkName}_RS`;// this is the name of the object loaded on the window
|
1059
|
+
const sdkTypeName=sdkName;if(sdkTypeName&&!isDestinationSDKMounted(destSDKIdentifier,sdkTypeName)){const destSdkURL=`${integrationsCDNPath}/${sdkName}.min.js`;externalSrcLoader.loadJSFile({url:destSdkURL,id:dest.userFriendlyId,callback:externalScriptOnLoad??(id=>{if(!id){logger?.error(DESTINATION_SDK_LOAD_ERROR(DEVICE_MODE_DESTINATIONS_PLUGIN,dest.userFriendlyId));state.nativeDestinations.failedDestinations.value=[...state.nativeDestinations.failedDestinations.value,dest];}else {initializeDestination(dest,state,destSDKIdentifier,sdkTypeName,errorHandler,logger);}}),timeout:SCRIPT_LOAD_TIMEOUT_MS});}else if(sdkTypeName){initializeDestination(dest,state,destSDKIdentifier,sdkTypeName,errorHandler,logger);}else {logger?.error(DESTINATION_SDK_LOAD_ERROR(DEVICE_MODE_DESTINATIONS_PLUGIN,dest.displayName));}});}}});
|
1060
|
+
|
1061
|
+
const DEFAULT_TRANSFORMATION_QUEUE_OPTIONS={minRetryDelay:500,backoffFactor:2,maxAttempts:3};const REQUEST_TIMEOUT_MS$1=10*1000;// 10 seconds
|
1062
|
+
const QUEUE_NAME$2='rudder';const DMT_PLUGIN='DeviceModeTransformationPlugin';
|
1063
|
+
|
1064
|
+
const DMT_TRANSFORMATION_UNSUCCESSFUL_ERROR=(context,displayName,reason,action)=>`${context}${LOG_CONTEXT_SEPARATOR}Event transformation unsuccessful for destination "${displayName}". Reason: ${reason}. ${action}.`;const DMT_REQUEST_FAILED_ERROR=(context,displayName,status,action)=>`${context}${LOG_CONTEXT_SEPARATOR}[Destination: ${displayName}].Transformation request failed with status: ${status}. Retries exhausted. ${action}.`;const DMT_EXCEPTION=displayName=>`[Destination:${displayName}].`;const DMT_SERVER_ACCESS_DENIED_WARNING=context=>`${context}${LOG_CONTEXT_SEPARATOR}Transformation server access is denied. The configuration data seems to be out of sync. Sending untransformed event to the destination.`;
|
1065
|
+
|
1066
|
+
/**
|
1067
|
+
* A helper function that will take rudderEvent and generate
|
1068
|
+
* a batch payload that will be sent to transformation server
|
1069
|
+
*
|
1070
|
+
*/const createPayload=(event,destinationIds,token)=>{const orderNo=Date.now();const payload={metadata:{'Custom-Authorization':token},batch:[{orderNo,destinationIds,event}]};return payload;};const sendTransformedEventToDestinations=(state,pluginsManager,destinationIds,result,status,event,errorHandler,logger)=>{const NATIVE_DEST_EXT_POINT='destinationsEventsQueue.enqueueEventToDestination';const ACTION_TO_SEND_UNTRANSFORMED_EVENT='Sending untransformed event';const ACTION_TO_DROP_EVENT='Dropping the event';const destinations=state.nativeDestinations.initializedDestinations.value.filter(d=>d&&destinationIds.includes(d.id));destinations.forEach(dest=>{try{const eventsToSend=[];switch(status){case 200:{const response=JSON.parse(result);const destTransformedResult=response.transformedBatch.find(e=>e.id===dest.id);destTransformedResult?.payload.forEach(tEvent=>{if(tEvent.status==='200'){eventsToSend.push(tEvent.event);}else {let reason='Unknown';if(tEvent.status==='410'){reason='Transformation is not available';}let action=ACTION_TO_DROP_EVENT;if(dest.propagateEventsUntransformedOnError===true){action=ACTION_TO_SEND_UNTRANSFORMED_EVENT;eventsToSend.push(event);logger?.warn(DMT_TRANSFORMATION_UNSUCCESSFUL_ERROR(DMT_PLUGIN,dest.displayName,reason,action));}else {logger?.error(DMT_TRANSFORMATION_UNSUCCESSFUL_ERROR(DMT_PLUGIN,dest.displayName,reason,action));}}});break;}// Transformation server access denied
|
1071
|
+
case 404:{logger?.warn(DMT_SERVER_ACCESS_DENIED_WARNING(DMT_PLUGIN));eventsToSend.push(event);break;}default:{if(dest.propagateEventsUntransformedOnError===true){logger?.warn(DMT_REQUEST_FAILED_ERROR(DMT_PLUGIN,dest.displayName,status,ACTION_TO_SEND_UNTRANSFORMED_EVENT));eventsToSend.push(event);}else {logger?.error(DMT_REQUEST_FAILED_ERROR(DMT_PLUGIN,dest.displayName,status,ACTION_TO_DROP_EVENT));}break;}}eventsToSend?.forEach(tEvent=>{if(isNonEmptyObject(tEvent)){pluginsManager.invokeSingle(NATIVE_DEST_EXT_POINT,state,tEvent,dest,errorHandler,logger);}});}catch(e){errorHandler?.onError(e,DMT_PLUGIN,DMT_EXCEPTION(dest.displayName));}});};
|
1072
|
+
|
1073
|
+
const pluginName$a='DeviceModeTransformation';const DeviceModeTransformation=()=>({name:pluginName$a,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$a];},transformEvent:{init(state,pluginsManager,httpClient,storeManager,errorHandler,logger){const writeKey=state.lifecycle.writeKey.value;httpClient.setAuthHeader(writeKey);const eventsQueue=new RetryQueue(// adding write key to the queue name to avoid conflicts
|
1074
|
+
`${QUEUE_NAME$2}_${writeKey}`,DEFAULT_TRANSFORMATION_QUEUE_OPTIONS,(item,done,attemptNumber,maxRetryAttempts)=>{const payload=createPayload(item.event,item.destinationIds,item.token);httpClient.getAsyncData({url:`${state.lifecycle.dataPlaneUrl.value}/transform`,options:{method:'POST',data:getDMTDeliveryPayload(payload),sendRawData:true},isRawResponse:true,timeout:REQUEST_TIMEOUT_MS$1,callback:(result,details)=>{// null means item will not be requeued
|
1075
|
+
const queueErrResp=isErrRetryable(details)?details:null;if(!queueErrResp||attemptNumber===maxRetryAttempts){sendTransformedEventToDestinations(state,pluginsManager,item.destinationIds,result,details?.xhr?.status,item.event,errorHandler,logger);}done(queueErrResp,result);}});},storeManager,MEMORY_STORAGE);return eventsQueue;},enqueue(state,eventsQueue,event,destinations){const destinationIds=destinations.map(d=>d.id);eventsQueue.addItem({event,destinationIds,token:state.session.authToken.value});}}});
|
1076
|
+
|
1077
|
+
const INVALID_SOURCE_CONFIG_ERROR=`Invalid source configuration or source id.`;
|
1078
|
+
|
1079
|
+
const pluginName$9='ErrorReporting';const ErrorReporting=()=>({name:pluginName$9,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$9];},errorReporting:{init:(state,pluginEngine,externalSrcLoader,logger)=>{if(!state.source.value?.config||!state.source.value?.id){return Promise.reject(new Error(INVALID_SOURCE_CONFIG_ERROR));}return pluginEngine.invokeSingle('errorReportingProvider.init',state,externalSrcLoader,logger);},notify:(pluginEngine,client,error,state,logger)=>{pluginEngine.invokeSingle('errorReportingProvider.notify',client,error,state,logger);},breadcrumb:(pluginEngine,client,message,logger)=>{pluginEngine.invokeSingle('errorReportingProvider.breadcrumb',client,message,logger);}}});
|
1080
|
+
|
1081
|
+
const externallyLoadedSessionStorageKeys={segment:'ajs_anonymous_id'};
|
1082
|
+
|
1083
|
+
const getSegmentAnonymousId=getStorageEngine=>{let anonymousId;/**
|
1084
|
+
* First check the local storage for anonymousId
|
1085
|
+
* Ref: https://segment.com/docs/connections/sources/catalog/libraries/website/javascript/#identify
|
1086
|
+
*/const lsEngine=getStorageEngine(LOCAL_STORAGE);if(lsEngine?.isEnabled){anonymousId=lsEngine.getItem(externallyLoadedSessionStorageKeys.segment);}// If anonymousId is not present in local storage and find it in cookies
|
1087
|
+
const csEngine=getStorageEngine(COOKIE_STORAGE);if(!anonymousId&&csEngine?.isEnabled){anonymousId=csEngine.getItem(externallyLoadedSessionStorageKeys.segment);}return anonymousId;};
|
1088
|
+
|
1089
|
+
const pluginName$8='ExternalAnonymousId';const ExternalAnonymousId=()=>({name:pluginName$8,initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$8];},storage:{getAnonymousId(getStorageEngine,options){let anonymousId;if(options?.autoCapture?.enabled&&options.autoCapture.source){const source=options.autoCapture.source.toLowerCase();if(!Object.keys(externallyLoadedSessionStorageKeys).includes(source)){return anonymousId;}// eslint-disable-next-line sonarjs/no-small-switch
|
1090
|
+
switch(source){case'segment':anonymousId=getSegmentAnonymousId(getStorageEngine);break;}}return anonymousId;}}});
|
1091
|
+
|
1092
|
+
const AMP_LINKER_ANONYMOUS_ID_KEY='rs_amp_id';
|
1093
|
+
|
1094
|
+
/* eslint-disable no-bitwise */ /**
|
1095
|
+
* generate crc table
|
1096
|
+
*
|
1097
|
+
* @params none
|
1098
|
+
* @returns array of CRC table
|
1099
|
+
*/const makeCRCTable=()=>{const crcTable=[];let c;for(let n=0;n<256;n++){c=n;for(let k=0;k<8;k++){c=c&1?0xedb88320^c>>>1:c>>>1;}crcTable[n]=c;}return crcTable;};/**
|
1100
|
+
* This is utility function for crc32 algorithm
|
1101
|
+
*
|
1102
|
+
* @param {string} str
|
1103
|
+
* @returns {number} crc32
|
1104
|
+
*/const crc32=str=>{const crcTable=makeCRCTable();let crc=0^-1;for(let i=0;i<str.length;i++){// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
1105
|
+
// @ts-ignore
|
1106
|
+
crc=crc>>>8^crcTable[(crc^str.charCodeAt(i))&0xff];}return (crc^-1)>>>0;};
|
1107
|
+
|
1108
|
+
/**
|
1109
|
+
* An interface to fetch user device details.
|
1110
|
+
*/const USER_INTERFACE={/**
|
1111
|
+
* @returns {string} user language
|
1112
|
+
*/getUserLanguage:()=>navigator?.language,/**
|
1113
|
+
* @returns {string} userAgent
|
1114
|
+
*/getUserAgent:()=>navigator?.userAgent};
|
1115
|
+
|
1116
|
+
/**
|
1117
|
+
* This is utility function for decoding from base 64 to utf8
|
1118
|
+
*
|
1119
|
+
* @param {string} str base64
|
1120
|
+
*
|
1121
|
+
* @returns {string} utf8
|
1122
|
+
*/const b64DecodeUnicode=str=>// Going backwards: from bytestream, to percent-encoding, to original string.
|
1123
|
+
decodeURIComponent(globalThis.atob(str).split('').map(c=>{const percentEncodingChar=`00${c.charCodeAt(0).toString(16)}`;return `%${percentEncodingChar.slice(-2)}`;}).join(''));/**
|
1124
|
+
* This is utility function for decoding from base 64 to utf8
|
1125
|
+
*
|
1126
|
+
* @param {string} data
|
1127
|
+
*
|
1128
|
+
* @return {string}
|
1129
|
+
*/const decode$1=(data='')=>{const decodedData=data.endsWith('..')?data.substring(0,data.length-2):data;return b64DecodeUnicode(decodedData);};
|
1130
|
+
|
1131
|
+
const KEY_VALIDATOR=/^[\w.-]+$/;const CHECKSUM_OFFSET_MAX_MIN=1;const VALID_VERSION=1;const DELIMITER='*';/**
|
1132
|
+
* Parse the linker param value to version checksum and serializedParams
|
1133
|
+
*
|
1134
|
+
* @param {string} value
|
1135
|
+
*
|
1136
|
+
* @return {?Object}
|
1137
|
+
*/const parseLinkerParamValue=value=>{const parts=value.split(DELIMITER);const isEven=parts.length%2===0;if(parts.length<4||!isEven){// Format <version>*<checksum>*<key1>*<value1>
|
1138
|
+
// Note: linker makes sure there's at least one pair of non empty key value
|
1139
|
+
// Make sure there is at least three delimiters.
|
1140
|
+
return null;}const version=Number(parts.shift());if(version!==VALID_VERSION){return null;}const checksum=parts.shift();const serializedIds=parts.join(DELIMITER);return {checksum:checksum??'',serializedIds};};/**
|
1141
|
+
* Deserialize the serializedIds and return keyValue pairs.
|
1142
|
+
*
|
1143
|
+
* @param {string} serializedIds
|
1144
|
+
*
|
1145
|
+
* @return {!Object<string, string>}
|
1146
|
+
*/const deserialize=serializedIds=>{if(!serializedIds){return {};}const keyValuePairs={};const params=serializedIds.split(DELIMITER);for(let i=0;i<params.length;i+=2){const key=params[i];const valid=KEY_VALIDATOR.test(key);if(valid){keyValuePairs[key]=decode$1(params[i+1]);}}return keyValuePairs;};/**
|
1147
|
+
* Generates a semi-unique value for page visitor.
|
1148
|
+
*
|
1149
|
+
* @return {string}
|
1150
|
+
*/const getFingerprint=(userAgent,language)=>{const date=new Date();const timezone=date.getTimezoneOffset();return [userAgent,timezone,language].join(DELIMITER);};/**
|
1151
|
+
* Rounded time used to check if t2 - t1 is within our time tolerance.
|
1152
|
+
* Timestamp in minutes, floored.
|
1153
|
+
*
|
1154
|
+
* @return {number}
|
1155
|
+
*/const getMinSinceEpoch=()=>Math.floor(Date.now()/60000);/**
|
1156
|
+
* Create a unique checksum hashing the fingerprint and a few other values.
|
1157
|
+
*
|
1158
|
+
* @param {string} serializedIds
|
1159
|
+
* @param {number=} optOffsetMin
|
1160
|
+
* @param {string} userAgent
|
1161
|
+
* @param {string} language
|
1162
|
+
*
|
1163
|
+
* @return {string}
|
1164
|
+
*/const getCheckSum=(serializedIds,optOffsetMin,userAgent,language)=>{const fingerprint=getFingerprint(userAgent,language);const offset=optOffsetMin||0;const timestamp=getMinSinceEpoch()-offset;const crc=crc32([fingerprint,timestamp,serializedIds].join(DELIMITER));// Encoded to base36 for fewer bytes.
|
1165
|
+
return crc.toString(36);};/**
|
1166
|
+
* Check if the checksum is valid with time offset tolerance.
|
1167
|
+
*
|
1168
|
+
* @param {string} serializedIds
|
1169
|
+
* @param {string} checksum
|
1170
|
+
*
|
1171
|
+
* @return {boolean}
|
1172
|
+
*/const isCheckSumValid=(serializedIds,checksum)=>{const userAgent=USER_INTERFACE.getUserAgent();const language=USER_INTERFACE.getUserLanguage();for(let i=0;i<=CHECKSUM_OFFSET_MAX_MIN;i+=1){const calculateCheckSum=getCheckSum(serializedIds,i,userAgent,language);if(calculateCheckSum===checksum){return true;}}return false;};/**
|
1173
|
+
* AMP Linker Parser (works for Rudder, GA or any other linker created by following Google's linker standard.)
|
1174
|
+
*
|
1175
|
+
* @param {string} value
|
1176
|
+
*
|
1177
|
+
* @return {?Object<string, string>}
|
1178
|
+
*/const parseLinker=value=>{const linkerObj=parseLinkerParamValue(value);if(!linkerObj){return null;}const{checksum,serializedIds}=linkerObj;if(!serializedIds||!checksum||!isCheckSumValid(serializedIds,checksum)){return null;}return deserialize(serializedIds);};
|
1179
|
+
|
1180
|
+
const pluginName$7='GoogleLinker';const GoogleLinker=()=>({name:pluginName$7,initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$7];},userSession:{anonymousIdGoogleLinker(rudderAmpLinkerParam){if(!rudderAmpLinkerParam){return null;}const parsedAnonymousIdObj=rudderAmpLinkerParam?parseLinker(rudderAmpLinkerParam):null;return parsedAnonymousIdObj?parsedAnonymousIdObj[AMP_LINKER_ANONYMOUS_ID_KEY]:null;}}});
|
1181
|
+
|
1182
|
+
const KETCH_CONSENT_COOKIE_READ_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to read the consent cookie.`;const KETCH_CONSENT_COOKIE_PARSE_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to parse the consent cookie.`;const DESTINATION_CONSENT_STATUS_ERROR$1=`Failed to determine the consent status for the destination. Please check the destination configuration and try again.`;
|
1183
|
+
|
1184
|
+
const KETCH_CONSENT_MANAGER_PLUGIN='KetchConsentManagerPlugin';const KETCH_CONSENT_COOKIE_NAME_V1='_ketch_consent_v1_';
|
1185
|
+
|
1186
|
+
/**
|
1187
|
+
* Gets the consent data from the Ketch's consent cookie
|
1188
|
+
* @param storeManager Store manager instance
|
1189
|
+
* @param logger Logger instance
|
1190
|
+
* @returns Consent data from the consent cookie
|
1191
|
+
*/const getKetchConsentData=(storeManager,logger)=>{let rawConsentCookieData=null;try{// Create a data store instance to read the consent cookie
|
1192
|
+
const dataStore=storeManager?.setStore({id:KETCH_CONSENT_MANAGER_PLUGIN,name:KETCH_CONSENT_MANAGER_PLUGIN,type:COOKIE_STORAGE});rawConsentCookieData=dataStore?.engine.getItem(KETCH_CONSENT_COOKIE_NAME_V1);}catch(err){logger?.error(KETCH_CONSENT_COOKIE_READ_ERROR(KETCH_CONSENT_MANAGER_PLUGIN),err);return undefined;}if(isNullOrUndefined(rawConsentCookieData)){return undefined;}// Decode and parse the cookie data to JSON
|
1193
|
+
let consentCookieData;try{consentCookieData=JSON.parse(fromBase64(rawConsentCookieData));}catch(err){logger?.error(KETCH_CONSENT_COOKIE_PARSE_ERROR(KETCH_CONSENT_MANAGER_PLUGIN),err);return undefined;}if(!consentCookieData){return undefined;}// Convert the cookie data to consent data
|
1194
|
+
const consentPurposes={};Object.entries(consentCookieData).forEach(pEntry=>{const purposeCode=pEntry[0];const purposeValue=pEntry[1];consentPurposes[purposeCode]=purposeValue?.status==='granted';});return consentPurposes;};/**
|
1195
|
+
* Gets the consent data in the format expected by the application state
|
1196
|
+
* @param ketchConsentData Consent data derived from the consent cookie
|
1197
|
+
* @returns Consent data
|
1198
|
+
*/const getConsentData=ketchConsentData=>{const allowedConsentIds=[];const deniedConsentIds=[];if(ketchConsentData){Object.entries(ketchConsentData).forEach(e=>{const purposeCode=e[0];const isConsented=e[1];if(isConsented){allowedConsentIds.push(purposeCode);}else {deniedConsentIds.push(purposeCode);}});}return {allowedConsentIds,deniedConsentIds};};const updateConsentStateFromData=(state,ketchConsentData)=>{const consentData=getConsentData(ketchConsentData);state.consents.initialized.value=isDefined(ketchConsentData);state.consents.data.value=consentData;};
|
1199
|
+
|
1200
|
+
const pluginName$6='KetchConsentManager';const KetchConsentManager=()=>({name:pluginName$6,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$6];},consentManager:{init(state,logger){// getKetchUserConsentedPurposes returns current ketch opted-in purposes
|
1201
|
+
// This will be helpful for debugging
|
1202
|
+
globalThis.getKetchUserConsentedPurposes=()=>state.consents.data.value.allowedConsentIds?.slice();// getKetchUserDeniedPurposes returns current ketch opted-out purposes
|
1203
|
+
// This will be helpful for debugging
|
1204
|
+
globalThis.getKetchUserDeniedPurposes=()=>state.consents.data.value.deniedConsentIds?.slice();// updateKetchConsent callback function to update current consent purpose state
|
1205
|
+
// this will be called from ketch rudderstack plugin
|
1206
|
+
globalThis.updateKetchConsent=ketchConsentData=>{updateConsentStateFromData(state,ketchConsentData);};},updateConsentsInfo(state,storeManager,logger){// retrieve consent data and update the state
|
1207
|
+
let ketchConsentData;if(!isUndefined(globalThis.ketchConsent)){ketchConsentData=globalThis.ketchConsent;}else {ketchConsentData=getKetchConsentData(storeManager,logger);}updateConsentStateFromData(state,ketchConsentData);},isDestinationConsented(state,destConfig,errorHandler,logger){if(!state.consents.initialized.value){return true;}const allowedConsentIds=state.consents.data.value.allowedConsentIds;try{const{ketchConsentPurposes,consentManagement}=destConfig;const matchPredicate=consent=>allowedConsentIds.includes(consent);// Generic consent management
|
1208
|
+
if(consentManagement){// Get the corresponding consents for the destination
|
1209
|
+
const cmpConsents=consentManagement.find(c=>c.provider===state.consents.provider.value)?.consents;// If there are no consents configured for the destination for the current provider, events should be sent.
|
1210
|
+
if(!cmpConsents){return true;}const configuredConsents=cmpConsents.map(c=>c.consent.trim()).filter(n=>n);// match the configured consents with user provided consents as per
|
1211
|
+
// the configured resolution strategy
|
1212
|
+
switch(state.consents.resolutionStrategy.value){case'or':return configuredConsents.some(matchPredicate)||configuredConsents.length===0;case'and':default:return configuredConsents.every(matchPredicate);}// Legacy cookie consent management
|
1213
|
+
// TODO: To be removed once the source config API is updated to support generic consent management
|
1214
|
+
}else if(ketchConsentPurposes){const configuredConsents=ketchConsentPurposes.map(p=>p.purpose.trim()).filter(n=>n);// Check if any of the destination's mapped ketch purposes are consented by the user in the browser.
|
1215
|
+
return configuredConsents.some(matchPredicate)||configuredConsents.length===0;}// If there are no consents configured for the destination for the current provider, events should be sent.
|
1216
|
+
return true;}catch(err){errorHandler?.onError(err,KETCH_CONSENT_MANAGER_PLUGIN,DESTINATION_CONSENT_STATUS_ERROR$1);return true;}}}});
|
1217
|
+
|
1218
|
+
const DEFAULT_QUEUE_OPTIONS={maxItems:100};const QUEUE_NAME$1='rudder_destinations_events';const NATIVE_DESTINATION_QUEUE_PLUGIN='NativeDestinationQueuePlugin';
|
1219
|
+
|
1220
|
+
const DESTINATION_EVENT_FILTERING_WARNING=(context,eventName,destUserFriendlyId)=>`${context}${LOG_CONTEXT_SEPARATOR}The "${eventName}" track event has been filtered for the "${destUserFriendlyId}" destination.`;const DESTINATION_EVENT_FORWARDING_ERROR=destUserFriendlyId=>`Failed to forward event to destination "${destUserFriendlyId}".`;
|
1221
|
+
|
1222
|
+
const getNormalizedQueueOptions$1=queueOpts=>mergeDeepRight(DEFAULT_QUEUE_OPTIONS,queueOpts);const isValidEventName=eventName=>eventName&&typeof eventName==='string';const isEventDenyListed=(eventType,eventName,dest)=>{if(eventType!=='track'){return false;}const{blacklistedEvents,whitelistedEvents,eventFilteringOption}=dest.config;switch(eventFilteringOption){// Blacklist is chosen for filtering events
|
1223
|
+
case'blacklistedEvents':{if(!isValidEventName(eventName)){return false;}const trimmedEventName=eventName.trim();if(Array.isArray(blacklistedEvents)){return blacklistedEvents.some(eventObj=>eventObj.eventName.trim()===trimmedEventName);}return false;}// Whitelist is chosen for filtering events
|
1224
|
+
case'whitelistedEvents':{if(!isValidEventName(eventName)){return true;}const trimmedEventName=eventName.trim();if(Array.isArray(whitelistedEvents)){return !whitelistedEvents.some(eventObj=>eventObj.eventName.trim()===trimmedEventName);}return true;}case'disable':default:return false;}};const sendEventToDestination=(item,dest,errorHandler,logger)=>{const methodName=item.type.toString();try{// Destinations expect the event to be wrapped under the `message` key
|
1225
|
+
// This will remain until we update the destinations to accept the event directly
|
1226
|
+
dest.instance?.[methodName]?.({message:item});}catch(err){errorHandler?.onError(err,NATIVE_DESTINATION_QUEUE_PLUGIN,DESTINATION_EVENT_FORWARDING_ERROR(dest.userFriendlyId));}};
|
1227
|
+
|
1228
|
+
const pluginName$5='NativeDestinationQueue';const NativeDestinationQueue=()=>({name:pluginName$5,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$5];},destinationsEventsQueue:{/**
|
1229
|
+
* Initialize the queue for delivery to destinations
|
1230
|
+
* @param state Application state
|
1231
|
+
* @param pluginsManager PluginsManager instance
|
1232
|
+
* @param storeManager StoreManager instance
|
1233
|
+
* @param errorHandler Error handler instance
|
1234
|
+
* @param logger Logger instance
|
1235
|
+
* @returns IQueue instance
|
1236
|
+
*/init(state,pluginsManager,storeManager,dmtQueue,errorHandler,logger){const finalQOpts=getNormalizedQueueOptions$1(state.loadOptions.value.destinationsQueueOptions);const writeKey=state.lifecycle.writeKey.value;const eventsQueue=new RetryQueue(// adding write key to the queue name to avoid conflicts
|
1237
|
+
`${QUEUE_NAME$1}_${writeKey}`,finalQOpts,(rudderEvent,done)=>{const destinationsToSend=filterDestinations(rudderEvent.integrations,state.nativeDestinations.initializedDestinations.value);// list of destinations which are enable for DMT
|
1238
|
+
const destWithTransformationEnabled=[];const clonedRudderEvent=clone(rudderEvent);destinationsToSend.forEach(dest=>{try{const sendEvent=!isEventDenyListed(clonedRudderEvent.type,clonedRudderEvent.event,dest);if(!sendEvent){logger?.warn(DESTINATION_EVENT_FILTERING_WARNING(NATIVE_DESTINATION_QUEUE_PLUGIN,clonedRudderEvent.event,dest.userFriendlyId));return;}if(dest.shouldApplyDeviceModeTransformation){destWithTransformationEnabled.push(dest);}else {sendEventToDestination(clonedRudderEvent,dest,errorHandler,logger);}}catch(e){errorHandler?.onError(e,NATIVE_DESTINATION_QUEUE_PLUGIN);}});if(destWithTransformationEnabled.length>0){pluginsManager.invokeSingle('transformEvent.enqueue',state,dmtQueue,clonedRudderEvent,destWithTransformationEnabled,errorHandler,logger);}// Mark success always
|
1239
|
+
done(null);},storeManager,MEMORY_STORAGE);// TODO: This seems to not work as expected. Need to investigate
|
1240
|
+
// effect(() => {
|
1241
|
+
// if (state.nativeDestinations.clientDestinationsReady.value === true) {
|
1242
|
+
// eventsQueue.start();
|
1243
|
+
// }
|
1244
|
+
// });
|
1245
|
+
return eventsQueue;},/**
|
1246
|
+
* Add event to the queue for delivery to destinations
|
1247
|
+
* @param state Application state
|
1248
|
+
* @param eventsQueue IQueue instance
|
1249
|
+
* @param event RudderEvent object
|
1250
|
+
* @param errorHandler Error handler instance
|
1251
|
+
* @param logger Logger instance
|
1252
|
+
* @returns none
|
1253
|
+
*/enqueue(state,eventsQueue,event,errorHandler,logger){eventsQueue.addItem(event);},/**
|
1254
|
+
* This extension point is used to directly send the transformed event to the destination
|
1255
|
+
* @param state Application state
|
1256
|
+
* @param event RudderEvent Object
|
1257
|
+
* @param destination Destination Object
|
1258
|
+
* @param errorHandler Error handler instance
|
1259
|
+
* @param logger Logger instance
|
1260
|
+
*/enqueueEventToDestination(state,event,destination,errorHandler,logger){sendEventToDestination(event,destination,errorHandler);}}});
|
1261
|
+
|
1262
|
+
const ONETRUST_ACCESS_ERROR=context=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to access OneTrust SDK resources. Please ensure that the OneTrust SDK is loaded successfully before RudderStack SDK.`;const DESTINATION_CONSENT_STATUS_ERROR=`Failed to determine the consent status for the destination. Please check the destination configuration and try again.`;
|
1263
|
+
|
1264
|
+
const ONETRUST_CONSENT_MANAGER_PLUGIN='OneTrustConsentManagerPlugin';
|
1265
|
+
|
1266
|
+
const pluginName$4='OneTrustConsentManager';const OneTrustConsentManager=()=>({name:pluginName$4,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$4];},consentManager:{init(state,logger){// Nothing to initialize
|
1267
|
+
},updateConsentsInfo(state,storeManager,logger){if(!globalThis.OneTrust||!globalThis.OnetrustActiveGroups){logger?.error(ONETRUST_ACCESS_ERROR(ONETRUST_CONSENT_MANAGER_PLUGIN));state.consents.initialized.value=false;return;}// Get the groups (cookie categorization), user has created in OneTrust account.
|
1268
|
+
const oneTrustAllGroupsInfo=globalThis.OneTrust.GetDomainData().Groups;// OneTrustConsentManager SDK populates a data layer object OnetrustActiveGroups with
|
1269
|
+
// the cookie categories Ids that the user has consented to.
|
1270
|
+
// Eg: ',C0001,C0003,'
|
1271
|
+
// We split it and save it as an array.
|
1272
|
+
const allowedConsentIds=globalThis.OnetrustActiveGroups.split(',').filter(n=>n);const deniedConsentIds=[];oneTrustAllGroupsInfo.forEach(({CustomGroupId})=>{if(!allowedConsentIds.includes(CustomGroupId)){deniedConsentIds.push(CustomGroupId);}});state.consents.initialized.value=true;state.consents.data.value={allowedConsentIds,deniedConsentIds};},isDestinationConsented(state,destConfig,errorHandler,logger){if(!state.consents.initialized.value){return true;}const allowedConsentIds=state.consents.data.value.allowedConsentIds;try{// mapping of the destination with the consent group name
|
1273
|
+
const{oneTrustCookieCategories,consentManagement}=destConfig;const matchPredicate=consent=>allowedConsentIds.includes(consent);// Generic consent management
|
1274
|
+
if(consentManagement){// Get the corresponding consents for the destination
|
1275
|
+
const cmpConsents=consentManagement.find(c=>c.provider===state.consents.provider.value)?.consents;// If there are no consents configured for the destination for the current provider, events should be sent.
|
1276
|
+
if(!cmpConsents){return true;}const configuredConsents=cmpConsents.map(c=>c.consent.trim()).filter(n=>n);// match the configured consents with user provided consents as per
|
1277
|
+
// the configured resolution strategy
|
1278
|
+
switch(state.consents.resolutionStrategy.value){case'or':return configuredConsents.some(matchPredicate)||configuredConsents.length===0;case'and':default:return configuredConsents.every(matchPredicate);}// Legacy cookie consent management
|
1279
|
+
// TODO: To be removed once the source config API is updated to support generic consent management
|
1280
|
+
}else if(oneTrustCookieCategories){// Change the structure of oneTrustConsentGroup as an array and filter values if empty string
|
1281
|
+
// Eg:
|
1282
|
+
// ["Performance Cookies", "Functional Cookies"]
|
1283
|
+
const configuredConsents=oneTrustCookieCategories.map(c=>c.oneTrustCookieCategory.trim()).filter(n=>n);// Check if all the destination's mapped cookie categories are consented by the user in the browser.
|
1284
|
+
return configuredConsents.every(matchPredicate);}// If there are no consents configured for the destination for the current provider, events should be sent.
|
1285
|
+
return true;}catch(err){errorHandler?.onError(err,ONETRUST_CONSENT_MANAGER_PLUGIN,DESTINATION_CONSENT_STATUS_ERROR);return true;}}}});
|
1286
|
+
|
1287
|
+
const pluginName$3='StorageEncryption';const StorageEncryption=()=>({name:pluginName$3,initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$3];},storage:{encrypt(value){return encrypt$1(value);},decrypt(value){return decrypt$1(value);}}});
|
1288
|
+
|
1289
|
+
/* eslint-disable no-use-before-define */const crypto$1=(typeof globalThis!='undefined'?globalThis:void 0)?.crypto||(typeof global!='undefined'?global:void 0)?.crypto||(typeof window!='undefined'?window:void 0)?.crypto||(typeof self!='undefined'?self:void 0)?.crypto||(typeof frames!='undefined'?frames:void 0)?.[0]?.crypto;let randomWordArray;if(crypto$1){randomWordArray=nBytes=>{const words=[];for(let i=0,rcache;i<nBytes;i+=4){words.push(crypto$1.getRandomValues(new Uint32Array(1))[0]);}return new WordArray(words,nBytes);};}else {// Because there is no global crypto property in this context, cryptographically unsafe Math.random() is used.
|
1290
|
+
randomWordArray=nBytes=>{const words=[];const r=m_w=>{let _m_w=m_w;let _m_z=0x3ade68b1;const mask=0xffffffff;return ()=>{_m_z=0x9069*(_m_z&0xFFFF)+(_m_z>>0x10)&mask;_m_w=0x4650*(_m_w&0xFFFF)+(_m_w>>0x10)&mask;let result=(_m_z<<0x10)+_m_w&mask;result/=0x100000000;result+=0.5;return result*(Math.random()>0.5?1:-1);};};for(let i=0,rcache;i<nBytes;i+=4){const _r=r((rcache||Math.random())*0x100000000);rcache=_r()*0x3ade67b7;words.push(_r()*0x100000000|0);}return new WordArray(words,nBytes);};}/**
|
1291
|
+
* Base class for inheritance.
|
1292
|
+
*/class Base{/**
|
1293
|
+
* Extends this object and runs the init method.
|
1294
|
+
* Arguments to create() will be passed to init().
|
1295
|
+
*
|
1296
|
+
* @return {Object} The new object.
|
1297
|
+
*
|
1298
|
+
* @static
|
1299
|
+
*
|
1300
|
+
* @example
|
1301
|
+
*
|
1302
|
+
* var instance = MyType.create();
|
1303
|
+
*/static create(...args){return new this(...args);}/**
|
1304
|
+
* Copies properties into this object.
|
1305
|
+
*
|
1306
|
+
* @param {Object} properties The properties to mix in.
|
1307
|
+
*
|
1308
|
+
* @example
|
1309
|
+
*
|
1310
|
+
* MyType.mixIn({
|
1311
|
+
* field: 'value'
|
1312
|
+
* });
|
1313
|
+
*/mixIn(properties){return Object.assign(this,properties);}/**
|
1314
|
+
* Creates a copy of this object.
|
1315
|
+
*
|
1316
|
+
* @return {Object} The clone.
|
1317
|
+
*
|
1318
|
+
* @example
|
1319
|
+
*
|
1320
|
+
* var clone = instance.clone();
|
1321
|
+
*/clone(){const clone=new this.constructor();Object.assign(clone,this);return clone;}}/**
|
1322
|
+
* An array of 32-bit words.
|
1323
|
+
*
|
1324
|
+
* @property {Array} words The array of 32-bit words.
|
1325
|
+
* @property {number} sigBytes The number of significant bytes in this word array.
|
1326
|
+
*/class WordArray extends Base{/**
|
1327
|
+
* Initializes a newly created word array.
|
1328
|
+
*
|
1329
|
+
* @param {Array} words (Optional) An array of 32-bit words.
|
1330
|
+
* @param {number} sigBytes (Optional) The number of significant bytes in the words.
|
1331
|
+
*
|
1332
|
+
* @example
|
1333
|
+
*
|
1334
|
+
* var wordArray = CryptoJS.lib.WordArray.create();
|
1335
|
+
* var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]);
|
1336
|
+
* var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6);
|
1337
|
+
*/constructor(words=[],sigBytes=words.length*4){super();let typedArray=words;// Convert buffers to uint8
|
1338
|
+
if(typedArray instanceof ArrayBuffer){typedArray=new Uint8Array(typedArray);}// Convert other array views to uint8
|
1339
|
+
if(typedArray instanceof Int8Array||typedArray instanceof Uint8ClampedArray||typedArray instanceof Int16Array||typedArray instanceof Uint16Array||typedArray instanceof Int32Array||typedArray instanceof Uint32Array||typedArray instanceof Float32Array||typedArray instanceof Float64Array){typedArray=new Uint8Array(typedArray.buffer,typedArray.byteOffset,typedArray.byteLength);}// Handle Uint8Array
|
1340
|
+
if(typedArray instanceof Uint8Array){// Shortcut
|
1341
|
+
const typedArrayByteLength=typedArray.byteLength;// Extract bytes
|
1342
|
+
const _words=[];for(let i=0;i<typedArrayByteLength;i+=1){_words[i>>>2]|=typedArray[i]<<24-i%4*8;}// Initialize this word array
|
1343
|
+
this.words=_words;this.sigBytes=typedArrayByteLength;}else {// Else call normal init
|
1344
|
+
this.words=words;this.sigBytes=sigBytes;}}/**
|
1345
|
+
* Creates a word array filled with random bytes.
|
1346
|
+
*
|
1347
|
+
* @param {number} nBytes The number of random bytes to generate.
|
1348
|
+
*
|
1349
|
+
* @return {WordArray} The random word array.
|
1350
|
+
*
|
1351
|
+
* @static
|
1352
|
+
*
|
1353
|
+
* @example
|
1354
|
+
*
|
1355
|
+
* var wordArray = CryptoJS.lib.WordArray.random(16);
|
1356
|
+
*/static random=randomWordArray;/**
|
1357
|
+
* Converts this word array to a string.
|
1358
|
+
*
|
1359
|
+
* @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex
|
1360
|
+
*
|
1361
|
+
* @return {string} The stringified word array.
|
1362
|
+
*
|
1363
|
+
* @example
|
1364
|
+
*
|
1365
|
+
* var string = wordArray + '';
|
1366
|
+
* var string = wordArray.toString();
|
1367
|
+
* var string = wordArray.toString(CryptoJS.enc.Utf8);
|
1368
|
+
*/toString(encoder=Hex){return encoder.stringify(this);}/**
|
1369
|
+
* Concatenates a word array to this word array.
|
1370
|
+
*
|
1371
|
+
* @param {WordArray} wordArray The word array to append.
|
1372
|
+
*
|
1373
|
+
* @return {WordArray} This word array.
|
1374
|
+
*
|
1375
|
+
* @example
|
1376
|
+
*
|
1377
|
+
* wordArray1.concat(wordArray2);
|
1378
|
+
*/concat(wordArray){// Shortcuts
|
1379
|
+
const thisWords=this.words;const thatWords=wordArray.words;const thisSigBytes=this.sigBytes;const thatSigBytes=wordArray.sigBytes;// Clamp excess bits
|
1380
|
+
this.clamp();// Concat
|
1381
|
+
if(thisSigBytes%4){// Copy one byte at a time
|
1382
|
+
for(let i=0;i<thatSigBytes;i+=1){const thatByte=thatWords[i>>>2]>>>24-i%4*8&0xff;thisWords[thisSigBytes+i>>>2]|=thatByte<<24-(thisSigBytes+i)%4*8;}}else {// Copy one word at a time
|
1383
|
+
for(let i=0;i<thatSigBytes;i+=4){thisWords[thisSigBytes+i>>>2]=thatWords[i>>>2];}}this.sigBytes+=thatSigBytes;// Chainable
|
1384
|
+
return this;}/**
|
1385
|
+
* Removes insignificant bits.
|
1386
|
+
*
|
1387
|
+
* @example
|
1388
|
+
*
|
1389
|
+
* wordArray.clamp();
|
1390
|
+
*/clamp(){// Shortcuts
|
1391
|
+
const{words,sigBytes}=this;// Clamp
|
1392
|
+
words[sigBytes>>>2]&=0xffffffff<<32-sigBytes%4*8;words.length=Math.ceil(sigBytes/4);}/**
|
1393
|
+
* Creates a copy of this word array.
|
1394
|
+
*
|
1395
|
+
* @return {WordArray} The clone.
|
1396
|
+
*
|
1397
|
+
* @example
|
1398
|
+
*
|
1399
|
+
* var clone = wordArray.clone();
|
1400
|
+
*/clone(){const clone=super.clone.call(this);clone.words=this.words.slice(0);return clone;}}/**
|
1401
|
+
* Hex encoding strategy.
|
1402
|
+
*/const Hex={/**
|
1403
|
+
* Converts a word array to a hex string.
|
1404
|
+
*
|
1405
|
+
* @param {WordArray} wordArray The word array.
|
1406
|
+
*
|
1407
|
+
* @return {string} The hex string.
|
1408
|
+
*
|
1409
|
+
* @static
|
1410
|
+
*
|
1411
|
+
* @example
|
1412
|
+
*
|
1413
|
+
* var hexString = CryptoJS.enc.Hex.stringify(wordArray);
|
1414
|
+
*/stringify(wordArray){// Shortcuts
|
1415
|
+
const{words,sigBytes}=wordArray;// Convert
|
1416
|
+
const hexChars=[];for(let i=0;i<sigBytes;i+=1){const bite=words[i>>>2]>>>24-i%4*8&0xff;hexChars.push((bite>>>4).toString(16));hexChars.push((bite&0x0f).toString(16));}return hexChars.join('');},/**
|
1417
|
+
* Converts a hex string to a word array.
|
1418
|
+
*
|
1419
|
+
* @param {string} hexStr The hex string.
|
1420
|
+
*
|
1421
|
+
* @return {WordArray} The word array.
|
1422
|
+
*
|
1423
|
+
* @static
|
1424
|
+
*
|
1425
|
+
* @example
|
1426
|
+
*
|
1427
|
+
* var wordArray = CryptoJS.enc.Hex.parse(hexString);
|
1428
|
+
*/parse(hexStr){// Shortcut
|
1429
|
+
const hexStrLength=hexStr.length;// Convert
|
1430
|
+
const words=[];for(let i=0;i<hexStrLength;i+=2){words[i>>>3]|=parseInt(hexStr.substr(i,2),16)<<24-i%8*4;}return new WordArray(words,hexStrLength/2);}};/**
|
1431
|
+
* Latin1 encoding strategy.
|
1432
|
+
*/const Latin1={/**
|
1433
|
+
* Converts a word array to a Latin1 string.
|
1434
|
+
*
|
1435
|
+
* @param {WordArray} wordArray The word array.
|
1436
|
+
*
|
1437
|
+
* @return {string} The Latin1 string.
|
1438
|
+
*
|
1439
|
+
* @static
|
1440
|
+
*
|
1441
|
+
* @example
|
1442
|
+
*
|
1443
|
+
* var latin1String = CryptoJS.enc.Latin1.stringify(wordArray);
|
1444
|
+
*/stringify(wordArray){// Shortcuts
|
1445
|
+
const{words,sigBytes}=wordArray;// Convert
|
1446
|
+
const latin1Chars=[];for(let i=0;i<sigBytes;i+=1){const bite=words[i>>>2]>>>24-i%4*8&0xff;latin1Chars.push(String.fromCharCode(bite));}return latin1Chars.join('');},/**
|
1447
|
+
* Converts a Latin1 string to a word array.
|
1448
|
+
*
|
1449
|
+
* @param {string} latin1Str The Latin1 string.
|
1450
|
+
*
|
1451
|
+
* @return {WordArray} The word array.
|
1452
|
+
*
|
1453
|
+
* @static
|
1454
|
+
*
|
1455
|
+
* @example
|
1456
|
+
*
|
1457
|
+
* var wordArray = CryptoJS.enc.Latin1.parse(latin1String);
|
1458
|
+
*/parse(latin1Str){// Shortcut
|
1459
|
+
const latin1StrLength=latin1Str.length;// Convert
|
1460
|
+
const words=[];for(let i=0;i<latin1StrLength;i+=1){words[i>>>2]|=(latin1Str.charCodeAt(i)&0xff)<<24-i%4*8;}return new WordArray(words,latin1StrLength);}};/**
|
1461
|
+
* UTF-8 encoding strategy.
|
1462
|
+
*/const Utf8={/**
|
1463
|
+
* Converts a word array to a UTF-8 string.
|
1464
|
+
*
|
1465
|
+
* @param {WordArray} wordArray The word array.
|
1466
|
+
*
|
1467
|
+
* @return {string} The UTF-8 string.
|
1468
|
+
*
|
1469
|
+
* @static
|
1470
|
+
*
|
1471
|
+
* @example
|
1472
|
+
*
|
1473
|
+
* var utf8String = CryptoJS.enc.Utf8.stringify(wordArray);
|
1474
|
+
*/stringify(wordArray){try{return decodeURIComponent(escape(Latin1.stringify(wordArray)));}catch(e){throw new Error('Malformed UTF-8 data');}},/**
|
1475
|
+
* Converts a UTF-8 string to a word array.
|
1476
|
+
*
|
1477
|
+
* @param {string} utf8Str The UTF-8 string.
|
1478
|
+
*
|
1479
|
+
* @return {WordArray} The word array.
|
1480
|
+
*
|
1481
|
+
* @static
|
1482
|
+
*
|
1483
|
+
* @example
|
1484
|
+
*
|
1485
|
+
* var wordArray = CryptoJS.enc.Utf8.parse(utf8String);
|
1486
|
+
*/parse(utf8Str){return Latin1.parse(unescape(encodeURIComponent(utf8Str)));}};/**
|
1487
|
+
* Abstract buffered block algorithm template.
|
1488
|
+
*
|
1489
|
+
* The property blockSize must be implemented in a concrete subtype.
|
1490
|
+
*
|
1491
|
+
* @property {number} _minBufferSize
|
1492
|
+
*
|
1493
|
+
* The number of blocks that should be kept unprocessed in the buffer. Default: 0
|
1494
|
+
*/class BufferedBlockAlgorithm extends Base{constructor(){super();this._minBufferSize=0;}/**
|
1495
|
+
* Resets this block algorithm's data buffer to its initial state.
|
1496
|
+
*
|
1497
|
+
* @example
|
1498
|
+
*
|
1499
|
+
* bufferedBlockAlgorithm.reset();
|
1500
|
+
*/reset(){// Initial values
|
1501
|
+
this._data=new WordArray();this._nDataBytes=0;}/**
|
1502
|
+
* Adds new data to this block algorithm's buffer.
|
1503
|
+
*
|
1504
|
+
* @param {WordArray|string} data
|
1505
|
+
*
|
1506
|
+
* The data to append. Strings are converted to a WordArray using UTF-8.
|
1507
|
+
*
|
1508
|
+
* @example
|
1509
|
+
*
|
1510
|
+
* bufferedBlockAlgorithm._append('data');
|
1511
|
+
* bufferedBlockAlgorithm._append(wordArray);
|
1512
|
+
*/_append(data){let m_data=data;// Convert string to WordArray, else assume WordArray already
|
1513
|
+
if(typeof m_data==='string'){m_data=Utf8.parse(m_data);}// Append
|
1514
|
+
this._data.concat(m_data);this._nDataBytes+=m_data.sigBytes;}/**
|
1515
|
+
* Processes available data blocks.
|
1516
|
+
*
|
1517
|
+
* This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype.
|
1518
|
+
*
|
1519
|
+
* @param {boolean} doFlush Whether all blocks and partial blocks should be processed.
|
1520
|
+
*
|
1521
|
+
* @return {WordArray} The processed data.
|
1522
|
+
*
|
1523
|
+
* @example
|
1524
|
+
*
|
1525
|
+
* var processedData = bufferedBlockAlgorithm._process();
|
1526
|
+
* var processedData = bufferedBlockAlgorithm._process(!!'flush');
|
1527
|
+
*/_process(doFlush){let processedWords;// Shortcuts
|
1528
|
+
const{_data:data,blockSize}=this;const dataWords=data.words;const dataSigBytes=data.sigBytes;const blockSizeBytes=blockSize*4;// Count blocks ready
|
1529
|
+
let nBlocksReady=dataSigBytes/blockSizeBytes;if(doFlush){// Round up to include partial blocks
|
1530
|
+
nBlocksReady=Math.ceil(nBlocksReady);}else {// Round down to include only full blocks,
|
1531
|
+
// less the number of blocks that must remain in the buffer
|
1532
|
+
nBlocksReady=Math.max((nBlocksReady|0)-this._minBufferSize,0);}// Count words ready
|
1533
|
+
const nWordsReady=nBlocksReady*blockSize;// Count bytes ready
|
1534
|
+
const nBytesReady=Math.min(nWordsReady*4,dataSigBytes);// Process blocks
|
1535
|
+
if(nWordsReady){for(let offset=0;offset<nWordsReady;offset+=blockSize){// Perform concrete-algorithm logic
|
1536
|
+
this._doProcessBlock(dataWords,offset);}// Remove processed words
|
1537
|
+
processedWords=dataWords.splice(0,nWordsReady);data.sigBytes-=nBytesReady;}// Return processed words
|
1538
|
+
return new WordArray(processedWords,nBytesReady);}/**
|
1539
|
+
* Creates a copy of this object.
|
1540
|
+
*
|
1541
|
+
* @return {Object} The clone.
|
1542
|
+
*
|
1543
|
+
* @example
|
1544
|
+
*
|
1545
|
+
* var clone = bufferedBlockAlgorithm.clone();
|
1546
|
+
*/clone(){const clone=super.clone.call(this);clone._data=this._data.clone();return clone;}}/**
|
1547
|
+
* Abstract hasher template.
|
1548
|
+
*
|
1549
|
+
* @property {number} blockSize
|
1550
|
+
*
|
1551
|
+
* The number of 32-bit words this hasher operates on. Default: 16 (512 bits)
|
1552
|
+
*/class Hasher extends BufferedBlockAlgorithm{constructor(cfg){super();this.blockSize=512/32;/**
|
1553
|
+
* Configuration options.
|
1554
|
+
*/this.cfg=Object.assign(new Base(),cfg);// Set initial values
|
1555
|
+
this.reset();}/**
|
1556
|
+
* Creates a shortcut function to a hasher's object interface.
|
1557
|
+
*
|
1558
|
+
* @param {Hasher} SubHasher The hasher to create a helper for.
|
1559
|
+
*
|
1560
|
+
* @return {Function} The shortcut function.
|
1561
|
+
*
|
1562
|
+
* @static
|
1563
|
+
*
|
1564
|
+
* @example
|
1565
|
+
*
|
1566
|
+
* var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256);
|
1567
|
+
*/static _createHelper(SubHasher){return (message,cfg)=>new SubHasher(cfg).finalize(message);}/**
|
1568
|
+
* Creates a shortcut function to the HMAC's object interface.
|
1569
|
+
*
|
1570
|
+
* @param {Hasher} SubHasher The hasher to use in this HMAC helper.
|
1571
|
+
*
|
1572
|
+
* @return {Function} The shortcut function.
|
1573
|
+
*
|
1574
|
+
* @static
|
1575
|
+
*
|
1576
|
+
* @example
|
1577
|
+
*
|
1578
|
+
* var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256);
|
1579
|
+
*/static _createHmacHelper(SubHasher){return (message,key)=>new HMAC(SubHasher,key).finalize(message);}/**
|
1580
|
+
* Resets this hasher to its initial state.
|
1581
|
+
*
|
1582
|
+
* @example
|
1583
|
+
*
|
1584
|
+
* hasher.reset();
|
1585
|
+
*/reset(){// Reset data buffer
|
1586
|
+
super.reset.call(this);// Perform concrete-hasher logic
|
1587
|
+
this._doReset();}/**
|
1588
|
+
* Updates this hasher with a message.
|
1589
|
+
*
|
1590
|
+
* @param {WordArray|string} messageUpdate The message to append.
|
1591
|
+
*
|
1592
|
+
* @return {Hasher} This hasher.
|
1593
|
+
*
|
1594
|
+
* @example
|
1595
|
+
*
|
1596
|
+
* hasher.update('message');
|
1597
|
+
* hasher.update(wordArray);
|
1598
|
+
*/update(messageUpdate){// Append
|
1599
|
+
this._append(messageUpdate);// Update the hash
|
1600
|
+
this._process();// Chainable
|
1601
|
+
return this;}/**
|
1602
|
+
* Finalizes the hash computation.
|
1603
|
+
* Note that the finalize operation is effectively a destructive, read-once operation.
|
1604
|
+
*
|
1605
|
+
* @param {WordArray|string} messageUpdate (Optional) A final message update.
|
1606
|
+
*
|
1607
|
+
* @return {WordArray} The hash.
|
1608
|
+
*
|
1609
|
+
* @example
|
1610
|
+
*
|
1611
|
+
* var hash = hasher.finalize();
|
1612
|
+
* var hash = hasher.finalize('message');
|
1613
|
+
* var hash = hasher.finalize(wordArray);
|
1614
|
+
*/finalize(messageUpdate){// Final message update
|
1615
|
+
if(messageUpdate){this._append(messageUpdate);}// Perform concrete-hasher logic
|
1616
|
+
const hash=this._doFinalize();return hash;}}/**
|
1617
|
+
* HMAC algorithm.
|
1618
|
+
*/class HMAC extends Base{/**
|
1619
|
+
* Initializes a newly created HMAC.
|
1620
|
+
*
|
1621
|
+
* @param {Hasher} SubHasher The hash algorithm to use.
|
1622
|
+
* @param {WordArray|string} key The secret key.
|
1623
|
+
*
|
1624
|
+
* @example
|
1625
|
+
*
|
1626
|
+
* var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key);
|
1627
|
+
*/constructor(SubHasher,key){super();const hasher=new SubHasher();this._hasher=hasher;// Convert string to WordArray, else assume WordArray already
|
1628
|
+
let _key=key;if(typeof _key==='string'){_key=Utf8.parse(_key);}// Shortcuts
|
1629
|
+
const hasherBlockSize=hasher.blockSize;const hasherBlockSizeBytes=hasherBlockSize*4;// Allow arbitrary length keys
|
1630
|
+
if(_key.sigBytes>hasherBlockSizeBytes){_key=hasher.finalize(key);}// Clamp excess bits
|
1631
|
+
_key.clamp();// Clone key for inner and outer pads
|
1632
|
+
const oKey=_key.clone();this._oKey=oKey;const iKey=_key.clone();this._iKey=iKey;// Shortcuts
|
1633
|
+
const oKeyWords=oKey.words;const iKeyWords=iKey.words;// XOR keys with pad constants
|
1634
|
+
for(let i=0;i<hasherBlockSize;i+=1){oKeyWords[i]^=0x5c5c5c5c;iKeyWords[i]^=0x36363636;}oKey.sigBytes=hasherBlockSizeBytes;iKey.sigBytes=hasherBlockSizeBytes;// Set initial values
|
1635
|
+
this.reset();}/**
|
1636
|
+
* Resets this HMAC to its initial state.
|
1637
|
+
*
|
1638
|
+
* @example
|
1639
|
+
*
|
1640
|
+
* hmacHasher.reset();
|
1641
|
+
*/reset(){// Shortcut
|
1642
|
+
const hasher=this._hasher;// Reset
|
1643
|
+
hasher.reset();hasher.update(this._iKey);}/**
|
1644
|
+
* Updates this HMAC with a message.
|
1645
|
+
*
|
1646
|
+
* @param {WordArray|string} messageUpdate The message to append.
|
1647
|
+
*
|
1648
|
+
* @return {HMAC} This HMAC instance.
|
1649
|
+
*
|
1650
|
+
* @example
|
1651
|
+
*
|
1652
|
+
* hmacHasher.update('message');
|
1653
|
+
* hmacHasher.update(wordArray);
|
1654
|
+
*/update(messageUpdate){this._hasher.update(messageUpdate);// Chainable
|
1655
|
+
return this;}/**
|
1656
|
+
* Finalizes the HMAC computation.
|
1657
|
+
* Note that the finalize operation is effectively a destructive, read-once operation.
|
1658
|
+
*
|
1659
|
+
* @param {WordArray|string} messageUpdate (Optional) A final message update.
|
1660
|
+
*
|
1661
|
+
* @return {WordArray} The HMAC.
|
1662
|
+
*
|
1663
|
+
* @example
|
1664
|
+
*
|
1665
|
+
* var hmac = hmacHasher.finalize();
|
1666
|
+
* var hmac = hmacHasher.finalize('message');
|
1667
|
+
* var hmac = hmacHasher.finalize(wordArray);
|
1668
|
+
*/finalize(messageUpdate){// Shortcut
|
1669
|
+
const hasher=this._hasher;// Compute HMAC
|
1670
|
+
const innerHash=hasher.finalize(messageUpdate);hasher.reset();const hmac=hasher.finalize(this._oKey.clone().concat(innerHash));return hmac;}}
|
1671
|
+
|
1672
|
+
const parseLoop=(base64Str,base64StrLength,reverseMap)=>{const words=[];let nBytes=0;for(let i=0;i<base64StrLength;i+=1){if(i%4){const bits1=reverseMap[base64Str.charCodeAt(i-1)]<<i%4*2;const bits2=reverseMap[base64Str.charCodeAt(i)]>>>6-i%4*2;const bitsCombined=bits1|bits2;words[nBytes>>>2]|=bitsCombined<<24-nBytes%4*8;nBytes+=1;}}return WordArray.create(words,nBytes);};/**
|
1673
|
+
* Base64 encoding strategy.
|
1674
|
+
*/const Base64={/**
|
1675
|
+
* Converts a word array to a Base64 string.
|
1676
|
+
*
|
1677
|
+
* @param {WordArray} wordArray The word array.
|
1678
|
+
*
|
1679
|
+
* @return {string} The Base64 string.
|
1680
|
+
*
|
1681
|
+
* @static
|
1682
|
+
*
|
1683
|
+
* @example
|
1684
|
+
*
|
1685
|
+
* const base64String = CryptoJS.enc.Base64.stringify(wordArray);
|
1686
|
+
*/stringify(wordArray){// Shortcuts
|
1687
|
+
const{words,sigBytes}=wordArray;const map=this._map;// Clamp excess bits
|
1688
|
+
wordArray.clamp();// Convert
|
1689
|
+
const base64Chars=[];for(let i=0;i<sigBytes;i+=3){const byte1=words[i>>>2]>>>24-i%4*8&0xff;const byte2=words[i+1>>>2]>>>24-(i+1)%4*8&0xff;const byte3=words[i+2>>>2]>>>24-(i+2)%4*8&0xff;const triplet=byte1<<16|byte2<<8|byte3;for(let j=0;j<4&&i+j*0.75<sigBytes;j+=1){base64Chars.push(map.charAt(triplet>>>6*(3-j)&0x3f));}}// Add padding
|
1690
|
+
const paddingChar=map.charAt(64);if(paddingChar){while(base64Chars.length%4){base64Chars.push(paddingChar);}}return base64Chars.join('');},/**
|
1691
|
+
* Converts a Base64 string to a word array.
|
1692
|
+
*
|
1693
|
+
* @param {string} base64Str The Base64 string.
|
1694
|
+
*
|
1695
|
+
* @return {WordArray} The word array.
|
1696
|
+
*
|
1697
|
+
* @static
|
1698
|
+
*
|
1699
|
+
* @example
|
1700
|
+
*
|
1701
|
+
* const wordArray = CryptoJS.enc.Base64.parse(base64String);
|
1702
|
+
*/parse(base64Str){// Shortcuts
|
1703
|
+
let base64StrLength=base64Str.length;const map=this._map;let reverseMap=this._reverseMap;if(!reverseMap){this._reverseMap=[];reverseMap=this._reverseMap;for(let j=0;j<map.length;j+=1){reverseMap[map.charCodeAt(j)]=j;}}// Ignore padding
|
1704
|
+
const paddingChar=map.charAt(64);if(paddingChar){const paddingIndex=base64Str.indexOf(paddingChar);if(paddingIndex!==-1){base64StrLength=paddingIndex;}}// Convert
|
1705
|
+
return parseLoop(base64Str,base64StrLength,reverseMap);},_map:'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='};
|
1706
|
+
|
1707
|
+
const T=[];// Compute constants
|
1708
|
+
for(let i=0;i<64;i+=1){T[i]=Math.abs(Math.sin(i+1))*0x100000000|0;}const FF=(a,b,c,d,x,s,t)=>{const n=a+(b&c|~b&d)+x+t;return (n<<s|n>>>32-s)+b;};const GG=(a,b,c,d,x,s,t)=>{const n=a+(b&d|c&~d)+x+t;return (n<<s|n>>>32-s)+b;};const HH=(a,b,c,d,x,s,t)=>{const n=a+(b^c^d)+x+t;return (n<<s|n>>>32-s)+b;};const II=(a,b,c,d,x,s,t)=>{const n=a+(c^(b|~d))+x+t;return (n<<s|n>>>32-s)+b;};/**
|
1709
|
+
* MD5 hash algorithm.
|
1710
|
+
*/class MD5Algo extends Hasher{_doReset(){this._hash=new WordArray([0x67452301,0xefcdab89,0x98badcfe,0x10325476]);}_doProcessBlock(M,offset){const _M=M;// Swap endian
|
1711
|
+
for(let i=0;i<16;i+=1){// Shortcuts
|
1712
|
+
const offset_i=offset+i;const M_offset_i=M[offset_i];_M[offset_i]=(M_offset_i<<8|M_offset_i>>>24)&0x00ff00ff|(M_offset_i<<24|M_offset_i>>>8)&0xff00ff00;}// Shortcuts
|
1713
|
+
const H=this._hash.words;const M_offset_0=_M[offset+0];const M_offset_1=_M[offset+1];const M_offset_2=_M[offset+2];const M_offset_3=_M[offset+3];const M_offset_4=_M[offset+4];const M_offset_5=_M[offset+5];const M_offset_6=_M[offset+6];const M_offset_7=_M[offset+7];const M_offset_8=_M[offset+8];const M_offset_9=_M[offset+9];const M_offset_10=_M[offset+10];const M_offset_11=_M[offset+11];const M_offset_12=_M[offset+12];const M_offset_13=_M[offset+13];const M_offset_14=_M[offset+14];const M_offset_15=_M[offset+15];// Working varialbes
|
1714
|
+
let a=H[0];let b=H[1];let c=H[2];let d=H[3];// Computation
|
1715
|
+
a=FF(a,b,c,d,M_offset_0,7,T[0]);d=FF(d,a,b,c,M_offset_1,12,T[1]);c=FF(c,d,a,b,M_offset_2,17,T[2]);b=FF(b,c,d,a,M_offset_3,22,T[3]);a=FF(a,b,c,d,M_offset_4,7,T[4]);d=FF(d,a,b,c,M_offset_5,12,T[5]);c=FF(c,d,a,b,M_offset_6,17,T[6]);b=FF(b,c,d,a,M_offset_7,22,T[7]);a=FF(a,b,c,d,M_offset_8,7,T[8]);d=FF(d,a,b,c,M_offset_9,12,T[9]);c=FF(c,d,a,b,M_offset_10,17,T[10]);b=FF(b,c,d,a,M_offset_11,22,T[11]);a=FF(a,b,c,d,M_offset_12,7,T[12]);d=FF(d,a,b,c,M_offset_13,12,T[13]);c=FF(c,d,a,b,M_offset_14,17,T[14]);b=FF(b,c,d,a,M_offset_15,22,T[15]);a=GG(a,b,c,d,M_offset_1,5,T[16]);d=GG(d,a,b,c,M_offset_6,9,T[17]);c=GG(c,d,a,b,M_offset_11,14,T[18]);b=GG(b,c,d,a,M_offset_0,20,T[19]);a=GG(a,b,c,d,M_offset_5,5,T[20]);d=GG(d,a,b,c,M_offset_10,9,T[21]);c=GG(c,d,a,b,M_offset_15,14,T[22]);b=GG(b,c,d,a,M_offset_4,20,T[23]);a=GG(a,b,c,d,M_offset_9,5,T[24]);d=GG(d,a,b,c,M_offset_14,9,T[25]);c=GG(c,d,a,b,M_offset_3,14,T[26]);b=GG(b,c,d,a,M_offset_8,20,T[27]);a=GG(a,b,c,d,M_offset_13,5,T[28]);d=GG(d,a,b,c,M_offset_2,9,T[29]);c=GG(c,d,a,b,M_offset_7,14,T[30]);b=GG(b,c,d,a,M_offset_12,20,T[31]);a=HH(a,b,c,d,M_offset_5,4,T[32]);d=HH(d,a,b,c,M_offset_8,11,T[33]);c=HH(c,d,a,b,M_offset_11,16,T[34]);b=HH(b,c,d,a,M_offset_14,23,T[35]);a=HH(a,b,c,d,M_offset_1,4,T[36]);d=HH(d,a,b,c,M_offset_4,11,T[37]);c=HH(c,d,a,b,M_offset_7,16,T[38]);b=HH(b,c,d,a,M_offset_10,23,T[39]);a=HH(a,b,c,d,M_offset_13,4,T[40]);d=HH(d,a,b,c,M_offset_0,11,T[41]);c=HH(c,d,a,b,M_offset_3,16,T[42]);b=HH(b,c,d,a,M_offset_6,23,T[43]);a=HH(a,b,c,d,M_offset_9,4,T[44]);d=HH(d,a,b,c,M_offset_12,11,T[45]);c=HH(c,d,a,b,M_offset_15,16,T[46]);b=HH(b,c,d,a,M_offset_2,23,T[47]);a=II(a,b,c,d,M_offset_0,6,T[48]);d=II(d,a,b,c,M_offset_7,10,T[49]);c=II(c,d,a,b,M_offset_14,15,T[50]);b=II(b,c,d,a,M_offset_5,21,T[51]);a=II(a,b,c,d,M_offset_12,6,T[52]);d=II(d,a,b,c,M_offset_3,10,T[53]);c=II(c,d,a,b,M_offset_10,15,T[54]);b=II(b,c,d,a,M_offset_1,21,T[55]);a=II(a,b,c,d,M_offset_8,6,T[56]);d=II(d,a,b,c,M_offset_15,10,T[57]);c=II(c,d,a,b,M_offset_6,15,T[58]);b=II(b,c,d,a,M_offset_13,21,T[59]);a=II(a,b,c,d,M_offset_4,6,T[60]);d=II(d,a,b,c,M_offset_11,10,T[61]);c=II(c,d,a,b,M_offset_2,15,T[62]);b=II(b,c,d,a,M_offset_9,21,T[63]);// Intermediate hash value
|
1716
|
+
H[0]=H[0]+a|0;H[1]=H[1]+b|0;H[2]=H[2]+c|0;H[3]=H[3]+d|0;}/* eslint-ensable no-param-reassign */_doFinalize(){// Shortcuts
|
1717
|
+
const data=this._data;const dataWords=data.words;const nBitsTotal=this._nDataBytes*8;const nBitsLeft=data.sigBytes*8;// Add padding
|
1718
|
+
dataWords[nBitsLeft>>>5]|=0x80<<24-nBitsLeft%32;const nBitsTotalH=Math.floor(nBitsTotal/0x100000000);const nBitsTotalL=nBitsTotal;dataWords[(nBitsLeft+64>>>9<<4)+15]=(nBitsTotalH<<8|nBitsTotalH>>>24)&0x00ff00ff|(nBitsTotalH<<24|nBitsTotalH>>>8)&0xff00ff00;dataWords[(nBitsLeft+64>>>9<<4)+14]=(nBitsTotalL<<8|nBitsTotalL>>>24)&0x00ff00ff|(nBitsTotalL<<24|nBitsTotalL>>>8)&0xff00ff00;data.sigBytes=(dataWords.length+1)*4;// Hash final blocks
|
1719
|
+
this._process();// Shortcuts
|
1720
|
+
const hash=this._hash;const H=hash.words;// Swap endian
|
1721
|
+
for(let i=0;i<4;i+=1){// Shortcut
|
1722
|
+
const H_i=H[i];H[i]=(H_i<<8|H_i>>>24)&0x00ff00ff|(H_i<<24|H_i>>>8)&0xff00ff00;}// Return final computed hash
|
1723
|
+
return hash;}clone(){const clone=super.clone.call(this);clone._hash=this._hash.clone();return clone;}}
|
1724
|
+
|
1725
|
+
/**
|
1726
|
+
* This key derivation function is meant to conform with EVP_BytesToKey.
|
1727
|
+
* www.openssl.org/docs/crypto/EVP_BytesToKey.html
|
1728
|
+
*/class EvpKDFAlgo extends Base{/**
|
1729
|
+
* Initializes a newly created key derivation function.
|
1730
|
+
*
|
1731
|
+
* @param {Object} cfg (Optional) The configuration options to use for the derivation.
|
1732
|
+
*
|
1733
|
+
* @example
|
1734
|
+
*
|
1735
|
+
* const kdf = CryptoJS.algo.EvpKDF.create();
|
1736
|
+
* const kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8 });
|
1737
|
+
* const kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8, iterations: 1000 });
|
1738
|
+
*/constructor(cfg){super();/**
|
1739
|
+
* Configuration options.
|
1740
|
+
*
|
1741
|
+
* @property {number} keySize The key size in words to generate. Default: 4 (128 bits)
|
1742
|
+
* @property {Hasher} hasher The hash algorithm to use. Default: MD5
|
1743
|
+
* @property {number} iterations The number of iterations to perform. Default: 1
|
1744
|
+
*/this.cfg=Object.assign(new Base(),{keySize:128/32,hasher:MD5Algo,iterations:1},cfg);}/**
|
1745
|
+
* Derives a key from a password.
|
1746
|
+
*
|
1747
|
+
* @param {WordArray|string} password The password.
|
1748
|
+
* @param {WordArray|string} salt A salt.
|
1749
|
+
*
|
1750
|
+
* @return {WordArray} The derived key.
|
1751
|
+
*
|
1752
|
+
* @example
|
1753
|
+
*
|
1754
|
+
* const key = kdf.compute(password, salt);
|
1755
|
+
*/compute(password,salt){let block;// Shortcut
|
1756
|
+
const{cfg}=this;// Init hasher
|
1757
|
+
const hasher=cfg.hasher.create();// Initial values
|
1758
|
+
const derivedKey=WordArray.create();// Shortcuts
|
1759
|
+
const derivedKeyWords=derivedKey.words;const{keySize,iterations}=cfg;// Generate key
|
1760
|
+
while(derivedKeyWords.length<keySize){if(block){hasher.update(block);}block=hasher.update(password).finalize(salt);hasher.reset();// Iterations
|
1761
|
+
for(let i=1;i<iterations;i+=1){block=hasher.finalize(block);hasher.reset();}derivedKey.concat(block);}derivedKey.sigBytes=keySize*4;return derivedKey;}}
|
1762
|
+
|
1763
|
+
const ObjectAssign=typeof Object.assign!=="function"?function(target){if(target==null){throw new TypeError('Cannot convert undefined or null to object');}target=Object(target);for(let index=1;index<arguments.length;index++){const source=arguments[index];if(source!=null){for(const key in source){if(Object.prototype.hasOwnProperty.call(source,key)){target[key]=source[key];}}}}return target;}:Object.assign;/**
|
1764
|
+
* Abstract base cipher template.
|
1765
|
+
*
|
1766
|
+
* @property {number} keySize This cipher's key size. Default: 4 (128 bits)
|
1767
|
+
* @property {number} ivSize This cipher's IV size. Default: 4 (128 bits)
|
1768
|
+
* @property {number} _ENC_XFORM_MODE A constant representing encryption mode.
|
1769
|
+
* @property {number} _DEC_XFORM_MODE A constant representing decryption mode.
|
1770
|
+
*/class Cipher extends BufferedBlockAlgorithm{/**
|
1771
|
+
* Initializes a newly created cipher.
|
1772
|
+
*
|
1773
|
+
* @param {number} xformMode Either the encryption or decryption transormation mode constant.
|
1774
|
+
* @param {WordArray} key The key.
|
1775
|
+
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
1776
|
+
*
|
1777
|
+
* @example
|
1778
|
+
*
|
1779
|
+
* const cipher = CryptoJS.algo.AES.create(
|
1780
|
+
* CryptoJS.algo.AES._ENC_XFORM_MODE, keyWordArray, { iv: ivWordArray }
|
1781
|
+
* );
|
1782
|
+
*/constructor(xformMode,key,cfg){super();/**
|
1783
|
+
* Configuration options.
|
1784
|
+
*
|
1785
|
+
* @property {WordArray} iv The IV to use for this operation.
|
1786
|
+
*/this.cfg=ObjectAssign(new Base(),cfg);// Store transform mode and key
|
1787
|
+
this._xformMode=xformMode;this._key=key;// Set initial values
|
1788
|
+
this.reset();}/**
|
1789
|
+
* Creates this cipher in encryption mode.
|
1790
|
+
*
|
1791
|
+
* @param {WordArray} key The key.
|
1792
|
+
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
1793
|
+
*
|
1794
|
+
* @return {Cipher} A cipher instance.
|
1795
|
+
*
|
1796
|
+
* @static
|
1797
|
+
*
|
1798
|
+
* @example
|
1799
|
+
*
|
1800
|
+
* const cipher = CryptoJS.algo.AES.createEncryptor(keyWordArray, { iv: ivWordArray });
|
1801
|
+
*/static createEncryptor(key,cfg){return this.create(this._ENC_XFORM_MODE,key,cfg);}/**
|
1802
|
+
* Creates this cipher in decryption mode.
|
1803
|
+
*
|
1804
|
+
* @param {WordArray} key The key.
|
1805
|
+
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
1806
|
+
*
|
1807
|
+
* @return {Cipher} A cipher instance.
|
1808
|
+
*
|
1809
|
+
* @static
|
1810
|
+
*
|
1811
|
+
* @example
|
1812
|
+
*
|
1813
|
+
* const cipher = CryptoJS.algo.AES.createDecryptor(keyWordArray, { iv: ivWordArray });
|
1814
|
+
*/static createDecryptor(key,cfg){return this.create(this._DEC_XFORM_MODE,key,cfg);}/**
|
1815
|
+
* Creates shortcut functions to a cipher's object interface.
|
1816
|
+
*
|
1817
|
+
* @param {Cipher} cipher The cipher to create a helper for.
|
1818
|
+
*
|
1819
|
+
* @return {Object} An object with encrypt and decrypt shortcut functions.
|
1820
|
+
*
|
1821
|
+
* @static
|
1822
|
+
*
|
1823
|
+
* @example
|
1824
|
+
*
|
1825
|
+
* const AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES);
|
1826
|
+
*/static _createHelper(SubCipher){const selectCipherStrategy=key=>{if(typeof key==='string'){return PasswordBasedCipher;}return SerializableCipher;};return {encrypt(message,key,cfg){return selectCipherStrategy(key).encrypt(SubCipher,message,key,cfg);},decrypt(ciphertext,key,cfg){return selectCipherStrategy(key).decrypt(SubCipher,ciphertext,key,cfg);}};}/**
|
1827
|
+
* Resets this cipher to its initial state.
|
1828
|
+
*
|
1829
|
+
* @example
|
1830
|
+
*
|
1831
|
+
* cipher.reset();
|
1832
|
+
*/reset(){// Reset data buffer
|
1833
|
+
super.reset.call(this);// Perform concrete-cipher logic
|
1834
|
+
this._doReset();}/**
|
1835
|
+
* Adds data to be encrypted or decrypted.
|
1836
|
+
*
|
1837
|
+
* @param {WordArray|string} dataUpdate The data to encrypt or decrypt.
|
1838
|
+
*
|
1839
|
+
* @return {WordArray} The data after processing.
|
1840
|
+
*
|
1841
|
+
* @example
|
1842
|
+
*
|
1843
|
+
* const encrypted = cipher.process('data');
|
1844
|
+
* const encrypted = cipher.process(wordArray);
|
1845
|
+
*/process(dataUpdate){// Append
|
1846
|
+
this._append(dataUpdate);// Process available blocks
|
1847
|
+
return this._process();}/**
|
1848
|
+
* Finalizes the encryption or decryption process.
|
1849
|
+
* Note that the finalize operation is effectively a destructive, read-once operation.
|
1850
|
+
*
|
1851
|
+
* @param {WordArray|string} dataUpdate The final data to encrypt or decrypt.
|
1852
|
+
*
|
1853
|
+
* @return {WordArray} The data after final processing.
|
1854
|
+
*
|
1855
|
+
* @example
|
1856
|
+
*
|
1857
|
+
* const encrypted = cipher.finalize();
|
1858
|
+
* const encrypted = cipher.finalize('data');
|
1859
|
+
* const encrypted = cipher.finalize(wordArray);
|
1860
|
+
*/finalize(dataUpdate){// Final data update
|
1861
|
+
if(dataUpdate){this._append(dataUpdate);}// Perform concrete-cipher logic
|
1862
|
+
const finalProcessedData=this._doFinalize();return finalProcessedData;}}Cipher._ENC_XFORM_MODE=1;Cipher._DEC_XFORM_MODE=2;Cipher.keySize=128/32;Cipher.ivSize=128/32;/**
|
1863
|
+
* Abstract base block cipher mode template.
|
1864
|
+
*/class BlockCipherMode extends Base{/**
|
1865
|
+
* Initializes a newly created mode.
|
1866
|
+
*
|
1867
|
+
* @param {Cipher} cipher A block cipher instance.
|
1868
|
+
* @param {Array} iv The IV words.
|
1869
|
+
*
|
1870
|
+
* @example
|
1871
|
+
*
|
1872
|
+
* const mode = CryptoJS.mode.CBC.Encryptor.create(cipher, iv.words);
|
1873
|
+
*/constructor(cipher,iv){super();this._cipher=cipher;this._iv=iv;}/**
|
1874
|
+
* Creates this mode for encryption.
|
1875
|
+
*
|
1876
|
+
* @param {Cipher} cipher A block cipher instance.
|
1877
|
+
* @param {Array} iv The IV words.
|
1878
|
+
*
|
1879
|
+
* @static
|
1880
|
+
*
|
1881
|
+
* @example
|
1882
|
+
*
|
1883
|
+
* const mode = CryptoJS.mode.CBC.createEncryptor(cipher, iv.words);
|
1884
|
+
*/static createEncryptor(cipher,iv){return this.Encryptor.create(cipher,iv);}/**
|
1885
|
+
* Creates this mode for decryption.
|
1886
|
+
*
|
1887
|
+
* @param {Cipher} cipher A block cipher instance.
|
1888
|
+
* @param {Array} iv The IV words.
|
1889
|
+
*
|
1890
|
+
* @static
|
1891
|
+
*
|
1892
|
+
* @example
|
1893
|
+
*
|
1894
|
+
* const mode = CryptoJS.mode.CBC.createDecryptor(cipher, iv.words);
|
1895
|
+
*/static createDecryptor(cipher,iv){return this.Decryptor.create(cipher,iv);}}function xorBlock(words,offset,blockSize){const _words=words;let block;// Shortcut
|
1896
|
+
const iv=this._iv;// Choose mixing block
|
1897
|
+
if(iv){block=iv;// Remove IV for subsequent blocks
|
1898
|
+
this._iv=undefined;}else {block=this._prevBlock;}// XOR blocks
|
1899
|
+
for(let i=0;i<blockSize;i+=1){_words[offset+i]^=block[i];}}/**
|
1900
|
+
* Cipher Block Chaining mode.
|
1901
|
+
*/ /**
|
1902
|
+
* Abstract base CBC mode.
|
1903
|
+
*/class CBC extends BlockCipherMode{}/**
|
1904
|
+
* CBC encryptor.
|
1905
|
+
*/CBC.Encryptor=class extends CBC{/**
|
1906
|
+
* Processes the data block at offset.
|
1907
|
+
*
|
1908
|
+
* @param {Array} words The data words to operate on.
|
1909
|
+
* @param {number} offset The offset where the block starts.
|
1910
|
+
*
|
1911
|
+
* @example
|
1912
|
+
*
|
1913
|
+
* mode.processBlock(data.words, offset);
|
1914
|
+
*/processBlock(words,offset){// Shortcuts
|
1915
|
+
const cipher=this._cipher;const{blockSize}=cipher;// XOR and encrypt
|
1916
|
+
xorBlock.call(this,words,offset,blockSize);cipher.encryptBlock(words,offset);// Remember this block to use with next block
|
1917
|
+
this._prevBlock=words.slice(offset,offset+blockSize);}};/**
|
1918
|
+
* CBC decryptor.
|
1919
|
+
*/CBC.Decryptor=class extends CBC{/**
|
1920
|
+
* Processes the data block at offset.
|
1921
|
+
*
|
1922
|
+
* @param {Array} words The data words to operate on.
|
1923
|
+
* @param {number} offset The offset where the block starts.
|
1924
|
+
*
|
1925
|
+
* @example
|
1926
|
+
*
|
1927
|
+
* mode.processBlock(data.words, offset);
|
1928
|
+
*/processBlock(words,offset){// Shortcuts
|
1929
|
+
const cipher=this._cipher;const{blockSize}=cipher;// Remember this block to use with next block
|
1930
|
+
const thisBlock=words.slice(offset,offset+blockSize);// Decrypt and XOR
|
1931
|
+
cipher.decryptBlock(words,offset);xorBlock.call(this,words,offset,blockSize);// This block becomes the previous block
|
1932
|
+
this._prevBlock=thisBlock;}};/**
|
1933
|
+
* PKCS #5/7 padding strategy.
|
1934
|
+
*/const Pkcs7={/**
|
1935
|
+
* Pads data using the algorithm defined in PKCS #5/7.
|
1936
|
+
*
|
1937
|
+
* @param {WordArray} data The data to pad.
|
1938
|
+
* @param {number} blockSize The multiple that the data should be padded to.
|
1939
|
+
*
|
1940
|
+
* @static
|
1941
|
+
*
|
1942
|
+
* @example
|
1943
|
+
*
|
1944
|
+
* CryptoJS.pad.Pkcs7.pad(wordArray, 4);
|
1945
|
+
*/pad(data,blockSize){// Shortcut
|
1946
|
+
const blockSizeBytes=blockSize*4;// Count padding bytes
|
1947
|
+
const nPaddingBytes=blockSizeBytes-data.sigBytes%blockSizeBytes;// Create padding word
|
1948
|
+
const paddingWord=nPaddingBytes<<24|nPaddingBytes<<16|nPaddingBytes<<8|nPaddingBytes;// Create padding
|
1949
|
+
const paddingWords=[];for(let i=0;i<nPaddingBytes;i+=4){paddingWords.push(paddingWord);}const padding=WordArray.create(paddingWords,nPaddingBytes);// Add padding
|
1950
|
+
data.concat(padding);},/**
|
1951
|
+
* Unpads data that had been padded using the algorithm defined in PKCS #5/7.
|
1952
|
+
*
|
1953
|
+
* @param {WordArray} data The data to unpad.
|
1954
|
+
*
|
1955
|
+
* @static
|
1956
|
+
*
|
1957
|
+
* @example
|
1958
|
+
*
|
1959
|
+
* CryptoJS.pad.Pkcs7.unpad(wordArray);
|
1960
|
+
*/unpad(data){const _data=data;// Get number of padding bytes from last byte
|
1961
|
+
const nPaddingBytes=_data.words[_data.sigBytes-1>>>2]&0xff;// Remove padding
|
1962
|
+
_data.sigBytes-=nPaddingBytes;}};/**
|
1963
|
+
* Abstract base block cipher template.
|
1964
|
+
*
|
1965
|
+
* @property {number} blockSize
|
1966
|
+
*
|
1967
|
+
* The number of 32-bit words this cipher operates on. Default: 4 (128 bits)
|
1968
|
+
*/class BlockCipher extends Cipher{constructor(xformMode,key,cfg){/**
|
1969
|
+
* Configuration options.
|
1970
|
+
*
|
1971
|
+
* @property {Mode} mode The block mode to use. Default: CBC
|
1972
|
+
* @property {Padding} padding The padding strategy to use. Default: Pkcs7
|
1973
|
+
*/super(xformMode,key,ObjectAssign({mode:CBC,padding:Pkcs7},cfg));this.blockSize=128/32;}reset(){let modeCreator;// Reset cipher
|
1974
|
+
super.reset.call(this);// Shortcuts
|
1975
|
+
const{cfg}=this;const{iv,mode}=cfg;// Reset block mode
|
1976
|
+
if(this._xformMode===this.constructor._ENC_XFORM_MODE){modeCreator=mode.createEncryptor;}else/* if (this._xformMode == this._DEC_XFORM_MODE) */{modeCreator=mode.createDecryptor;// Keep at least one block in the buffer for unpadding
|
1977
|
+
this._minBufferSize=1;}this._mode=modeCreator.call(mode,this,iv&&iv.words);this._mode.__creator=modeCreator;}_doProcessBlock(words,offset){this._mode.processBlock(words,offset);}_doFinalize(){let finalProcessedBlocks;// Shortcut
|
1978
|
+
const{padding}=this.cfg;// Finalize
|
1979
|
+
if(this._xformMode===this.constructor._ENC_XFORM_MODE){// Pad data
|
1980
|
+
padding.pad(this._data,this.blockSize);// Process final blocks
|
1981
|
+
finalProcessedBlocks=this._process(!!'flush');}else/* if (this._xformMode == this._DEC_XFORM_MODE) */{// Process final blocks
|
1982
|
+
finalProcessedBlocks=this._process(!!'flush');// Unpad data
|
1983
|
+
padding.unpad(finalProcessedBlocks);}return finalProcessedBlocks;}}/**
|
1984
|
+
* A collection of cipher parameters.
|
1985
|
+
*
|
1986
|
+
* @property {WordArray} ciphertext The raw ciphertext.
|
1987
|
+
* @property {WordArray} key The key to this ciphertext.
|
1988
|
+
* @property {WordArray} iv The IV used in the ciphering operation.
|
1989
|
+
* @property {WordArray} salt The salt used with a key derivation function.
|
1990
|
+
* @property {Cipher} algorithm The cipher algorithm.
|
1991
|
+
* @property {Mode} mode The block mode used in the ciphering operation.
|
1992
|
+
* @property {Padding} padding The padding scheme used in the ciphering operation.
|
1993
|
+
* @property {number} blockSize The block size of the cipher.
|
1994
|
+
* @property {Format} formatter
|
1995
|
+
* The default formatting strategy to convert this cipher params object to a string.
|
1996
|
+
*/class CipherParams extends Base{/**
|
1997
|
+
* Initializes a newly created cipher params object.
|
1998
|
+
*
|
1999
|
+
* @param {Object} cipherParams An object with any of the possible cipher parameters.
|
2000
|
+
*
|
2001
|
+
* @example
|
2002
|
+
*
|
2003
|
+
* var cipherParams = CryptoJS.lib.CipherParams.create({
|
2004
|
+
* ciphertext: ciphertextWordArray,
|
2005
|
+
* key: keyWordArray,
|
2006
|
+
* iv: ivWordArray,
|
2007
|
+
* salt: saltWordArray,
|
2008
|
+
* algorithm: CryptoJS.algo.AES,
|
2009
|
+
* mode: CryptoJS.mode.CBC,
|
2010
|
+
* padding: CryptoJS.pad.PKCS7,
|
2011
|
+
* blockSize: 4,
|
2012
|
+
* formatter: CryptoJS.format.OpenSSL
|
2013
|
+
* });
|
2014
|
+
*/constructor(cipherParams){super();this.mixIn(cipherParams);}/**
|
2015
|
+
* Converts this cipher params object to a string.
|
2016
|
+
*
|
2017
|
+
* @param {Format} formatter (Optional) The formatting strategy to use.
|
2018
|
+
*
|
2019
|
+
* @return {string} The stringified cipher params.
|
2020
|
+
*
|
2021
|
+
* @throws Error If neither the formatter nor the default formatter is set.
|
2022
|
+
*
|
2023
|
+
* @example
|
2024
|
+
*
|
2025
|
+
* var string = cipherParams + '';
|
2026
|
+
* var string = cipherParams.toString();
|
2027
|
+
* var string = cipherParams.toString(CryptoJS.format.OpenSSL);
|
2028
|
+
*/toString(formatter){return (formatter||this.formatter).stringify(this);}}/**
|
2029
|
+
* OpenSSL formatting strategy.
|
2030
|
+
*/const OpenSSLFormatter={/**
|
2031
|
+
* Converts a cipher params object to an OpenSSL-compatible string.
|
2032
|
+
*
|
2033
|
+
* @param {CipherParams} cipherParams The cipher params object.
|
2034
|
+
*
|
2035
|
+
* @return {string} The OpenSSL-compatible string.
|
2036
|
+
*
|
2037
|
+
* @static
|
2038
|
+
*
|
2039
|
+
* @example
|
2040
|
+
*
|
2041
|
+
* var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams);
|
2042
|
+
*/stringify(cipherParams){let wordArray;// Shortcuts
|
2043
|
+
const{ciphertext,salt}=cipherParams;// Format
|
2044
|
+
if(salt){wordArray=WordArray.create([0x53616c74,0x65645f5f]).concat(salt).concat(ciphertext);}else {wordArray=ciphertext;}return wordArray.toString(Base64);},/**
|
2045
|
+
* Converts an OpenSSL-compatible string to a cipher params object.
|
2046
|
+
*
|
2047
|
+
* @param {string} openSSLStr The OpenSSL-compatible string.
|
2048
|
+
*
|
2049
|
+
* @return {CipherParams} The cipher params object.
|
2050
|
+
*
|
2051
|
+
* @static
|
2052
|
+
*
|
2053
|
+
* @example
|
2054
|
+
*
|
2055
|
+
* var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString);
|
2056
|
+
*/parse(openSSLStr){let salt;// Parse base64
|
2057
|
+
const ciphertext=Base64.parse(openSSLStr);// Shortcut
|
2058
|
+
const ciphertextWords=ciphertext.words;// Test for salt
|
2059
|
+
if(ciphertextWords[0]===0x53616c74&&ciphertextWords[1]===0x65645f5f){// Extract salt
|
2060
|
+
salt=WordArray.create(ciphertextWords.slice(2,4));// Remove salt from ciphertext
|
2061
|
+
ciphertextWords.splice(0,4);ciphertext.sigBytes-=16;}return CipherParams.create({ciphertext,salt});}};/**
|
2062
|
+
* A cipher wrapper that returns ciphertext as a serializable cipher params object.
|
2063
|
+
*/class SerializableCipher extends Base{/**
|
2064
|
+
* Encrypts a message.
|
2065
|
+
*
|
2066
|
+
* @param {Cipher} cipher The cipher algorithm to use.
|
2067
|
+
* @param {WordArray|string} message The message to encrypt.
|
2068
|
+
* @param {WordArray} key The key.
|
2069
|
+
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
2070
|
+
*
|
2071
|
+
* @return {CipherParams} A cipher params object.
|
2072
|
+
*
|
2073
|
+
* @static
|
2074
|
+
*
|
2075
|
+
* @example
|
2076
|
+
*
|
2077
|
+
* var ciphertextParams = CryptoJS.lib.SerializableCipher
|
2078
|
+
* .encrypt(CryptoJS.algo.AES, message, key);
|
2079
|
+
* var ciphertextParams = CryptoJS.lib.SerializableCipher
|
2080
|
+
* .encrypt(CryptoJS.algo.AES, message, key, { iv: iv });
|
2081
|
+
* var ciphertextParams = CryptoJS.lib.SerializableCipher
|
2082
|
+
* .encrypt(CryptoJS.algo.AES, message, key, { iv: iv, format: CryptoJS.format.OpenSSL });
|
2083
|
+
*/static encrypt(cipher,message,key,cfg){// Apply config defaults
|
2084
|
+
const _cfg=ObjectAssign(new Base(),this.cfg,cfg);// Encrypt
|
2085
|
+
const encryptor=cipher.createEncryptor(key,_cfg);const ciphertext=encryptor.finalize(message);// Shortcut
|
2086
|
+
const cipherCfg=encryptor.cfg;// Create and return serializable cipher params
|
2087
|
+
return CipherParams.create({ciphertext,key,iv:cipherCfg.iv,algorithm:cipher,mode:cipherCfg.mode,padding:cipherCfg.padding,blockSize:encryptor.blockSize,formatter:_cfg.format});}/**
|
2088
|
+
* Decrypts serialized ciphertext.
|
2089
|
+
*
|
2090
|
+
* @param {Cipher} cipher The cipher algorithm to use.
|
2091
|
+
* @param {CipherParams|string} ciphertext The ciphertext to decrypt.
|
2092
|
+
* @param {WordArray} key The key.
|
2093
|
+
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
2094
|
+
*
|
2095
|
+
* @return {WordArray} The plaintext.
|
2096
|
+
*
|
2097
|
+
* @static
|
2098
|
+
*
|
2099
|
+
* @example
|
2100
|
+
*
|
2101
|
+
* var plaintext = CryptoJS.lib.SerializableCipher
|
2102
|
+
* .decrypt(CryptoJS.algo.AES, formattedCiphertext, key,
|
2103
|
+
* { iv: iv, format: CryptoJS.format.OpenSSL });
|
2104
|
+
* var plaintext = CryptoJS.lib.SerializableCipher
|
2105
|
+
* .decrypt(CryptoJS.algo.AES, ciphertextParams, key,
|
2106
|
+
* { iv: iv, format: CryptoJS.format.OpenSSL });
|
2107
|
+
*/static decrypt(cipher,ciphertext,key,cfg){let _ciphertext=ciphertext;// Apply config defaults
|
2108
|
+
const _cfg=ObjectAssign(new Base(),this.cfg,cfg);// Convert string to CipherParams
|
2109
|
+
_ciphertext=this._parse(_ciphertext,_cfg.format);// Decrypt
|
2110
|
+
const plaintext=cipher.createDecryptor(key,_cfg).finalize(_ciphertext.ciphertext);return plaintext;}/**
|
2111
|
+
* Converts serialized ciphertext to CipherParams,
|
2112
|
+
* else assumed CipherParams already and returns ciphertext unchanged.
|
2113
|
+
*
|
2114
|
+
* @param {CipherParams|string} ciphertext The ciphertext.
|
2115
|
+
* @param {Formatter} format The formatting strategy to use to parse serialized ciphertext.
|
2116
|
+
*
|
2117
|
+
* @return {CipherParams} The unserialized ciphertext.
|
2118
|
+
*
|
2119
|
+
* @static
|
2120
|
+
*
|
2121
|
+
* @example
|
2122
|
+
*
|
2123
|
+
* var ciphertextParams = CryptoJS.lib.SerializableCipher
|
2124
|
+
* ._parse(ciphertextStringOrParams, format);
|
2125
|
+
*/static _parse(ciphertext,format){if(typeof ciphertext==='string'){return format.parse(ciphertext,this);}return ciphertext;}}/**
|
2126
|
+
* Configuration options.
|
2127
|
+
*
|
2128
|
+
* @property {Formatter} format
|
2129
|
+
*
|
2130
|
+
* The formatting strategy to convert cipher param objects to and from a string.
|
2131
|
+
* Default: OpenSSL
|
2132
|
+
*/SerializableCipher.cfg=ObjectAssign(new Base(),{format:OpenSSLFormatter});/**
|
2133
|
+
* OpenSSL key derivation function.
|
2134
|
+
*/const OpenSSLKdf={/**
|
2135
|
+
* Derives a key and IV from a password.
|
2136
|
+
*
|
2137
|
+
* @param {string} password The password to derive from.
|
2138
|
+
* @param {number} keySize The size in words of the key to generate.
|
2139
|
+
* @param {number} ivSize The size in words of the IV to generate.
|
2140
|
+
* @param {WordArray|string} salt
|
2141
|
+
* (Optional) A 64-bit salt to use. If omitted, a salt will be generated randomly.
|
2142
|
+
*
|
2143
|
+
* @return {CipherParams} A cipher params object with the key, IV, and salt.
|
2144
|
+
*
|
2145
|
+
* @static
|
2146
|
+
*
|
2147
|
+
* @example
|
2148
|
+
*
|
2149
|
+
* var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32);
|
2150
|
+
* var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32, 'saltsalt');
|
2151
|
+
*/execute(password,keySize,ivSize,salt,hasher){let _salt=salt;// Generate random salt
|
2152
|
+
if(!_salt){_salt=WordArray.random(64/8);}// Derive key and IV
|
2153
|
+
let key;if(!hasher){key=EvpKDFAlgo.create({keySize:keySize+ivSize}).compute(password,_salt);}else {key=EvpKDFAlgo.create({keySize:keySize+ivSize,hasher}).compute(password,_salt);}// Separate key and IV
|
2154
|
+
const iv=WordArray.create(key.words.slice(keySize),ivSize*4);key.sigBytes=keySize*4;// Return params
|
2155
|
+
return CipherParams.create({key,iv,salt:_salt});}};/**
|
2156
|
+
* A serializable cipher wrapper that derives the key from a password,
|
2157
|
+
* and returns ciphertext as a serializable cipher params object.
|
2158
|
+
*/class PasswordBasedCipher extends SerializableCipher{/**
|
2159
|
+
* Encrypts a message using a password.
|
2160
|
+
*
|
2161
|
+
* @param {Cipher} cipher The cipher algorithm to use.
|
2162
|
+
* @param {WordArray|string} message The message to encrypt.
|
2163
|
+
* @param {string} password The password.
|
2164
|
+
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
2165
|
+
*
|
2166
|
+
* @return {CipherParams} A cipher params object.
|
2167
|
+
*
|
2168
|
+
* @static
|
2169
|
+
*
|
2170
|
+
* @example
|
2171
|
+
*
|
2172
|
+
* var ciphertextParams = CryptoJS.lib.PasswordBasedCipher
|
2173
|
+
* .encrypt(CryptoJS.algo.AES, message, 'password');
|
2174
|
+
* var ciphertextParams = CryptoJS.lib.PasswordBasedCipher
|
2175
|
+
* .encrypt(CryptoJS.algo.AES, message, 'password', { format: CryptoJS.format.OpenSSL });
|
2176
|
+
*/static encrypt(cipher,message,password,cfg){// Apply config defaults
|
2177
|
+
const _cfg=ObjectAssign(new Base(),this.cfg,cfg);// Derive key and other params
|
2178
|
+
const derivedParams=_cfg.kdf.execute(password,cipher.keySize,cipher.ivSize,_cfg.salt,_cfg.hasher);// Add IV to config
|
2179
|
+
_cfg.iv=derivedParams.iv;// Encrypt
|
2180
|
+
const ciphertext=SerializableCipher.encrypt.call(this,cipher,message,derivedParams.key,_cfg);// Mix in derived params
|
2181
|
+
ciphertext.mixIn(derivedParams);return ciphertext;}/**
|
2182
|
+
* Decrypts serialized ciphertext using a password.
|
2183
|
+
*
|
2184
|
+
* @param {Cipher} cipher The cipher algorithm to use.
|
2185
|
+
* @param {CipherParams|string} ciphertext The ciphertext to decrypt.
|
2186
|
+
* @param {string} password The password.
|
2187
|
+
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
2188
|
+
*
|
2189
|
+
* @return {WordArray} The plaintext.
|
2190
|
+
*
|
2191
|
+
* @static
|
2192
|
+
*
|
2193
|
+
* @example
|
2194
|
+
*
|
2195
|
+
* var plaintext = CryptoJS.lib.PasswordBasedCipher
|
2196
|
+
* .decrypt(CryptoJS.algo.AES, formattedCiphertext, 'password',
|
2197
|
+
* { format: CryptoJS.format.OpenSSL });
|
2198
|
+
* var plaintext = CryptoJS.lib.PasswordBasedCipher
|
2199
|
+
* .decrypt(CryptoJS.algo.AES, ciphertextParams, 'password',
|
2200
|
+
* { format: CryptoJS.format.OpenSSL });
|
2201
|
+
*/static decrypt(cipher,ciphertext,password,cfg){let _ciphertext=ciphertext;// Apply config defaults
|
2202
|
+
const _cfg=ObjectAssign(new Base(),this.cfg,cfg);// Convert string to CipherParams
|
2203
|
+
_ciphertext=this._parse(_ciphertext,_cfg.format);// Derive key and other params
|
2204
|
+
const derivedParams=_cfg.kdf.execute(password,cipher.keySize,cipher.ivSize,_ciphertext.salt,_cfg.hasher);// Add IV to config
|
2205
|
+
_cfg.iv=derivedParams.iv;// Decrypt
|
2206
|
+
const plaintext=SerializableCipher.decrypt.call(this,cipher,_ciphertext,derivedParams.key,_cfg);return plaintext;}}/**
|
2207
|
+
* Configuration options.
|
2208
|
+
*
|
2209
|
+
* @property {KDF} kdf
|
2210
|
+
* The key derivation function to use to generate a key and IV from a password.
|
2211
|
+
* Default: OpenSSL
|
2212
|
+
*/PasswordBasedCipher.cfg=ObjectAssign(SerializableCipher.cfg,{kdf:OpenSSLKdf});
|
2213
|
+
|
2214
|
+
const _SBOX=[];const INV_SBOX=[];const _SUB_MIX_0=[];const _SUB_MIX_1=[];const _SUB_MIX_2=[];const _SUB_MIX_3=[];const INV_SUB_MIX_0=[];const INV_SUB_MIX_1=[];const INV_SUB_MIX_2=[];const INV_SUB_MIX_3=[];// Compute lookup tables
|
2215
|
+
// Compute double table
|
2216
|
+
const d=[];for(let i=0;i<256;i+=1){if(i<128){d[i]=i<<1;}else {d[i]=i<<1^0x11b;}}// Walk GF(2^8)
|
2217
|
+
let x=0;let xi=0;for(let i=0;i<256;i+=1){// Compute sbox
|
2218
|
+
let sx=xi^xi<<1^xi<<2^xi<<3^xi<<4;sx=sx>>>8^sx&0xff^0x63;_SBOX[x]=sx;INV_SBOX[sx]=x;// Compute multiplication
|
2219
|
+
const x2=d[x];const x4=d[x2];const x8=d[x4];// Compute sub bytes, mix columns tables
|
2220
|
+
let t=d[sx]*0x101^sx*0x1010100;_SUB_MIX_0[x]=t<<24|t>>>8;_SUB_MIX_1[x]=t<<16|t>>>16;_SUB_MIX_2[x]=t<<8|t>>>24;_SUB_MIX_3[x]=t;// Compute inv sub bytes, inv mix columns tables
|
2221
|
+
t=x8*0x1010101^x4*0x10001^x2*0x101^x*0x1010100;INV_SUB_MIX_0[sx]=t<<24|t>>>8;INV_SUB_MIX_1[sx]=t<<16|t>>>16;INV_SUB_MIX_2[sx]=t<<8|t>>>24;INV_SUB_MIX_3[sx]=t;// Compute next counter
|
2222
|
+
if(!x){xi=1;x=xi;}else {x=x2^d[d[d[x8^x2]]];xi^=d[d[xi]];}}// Precomputed Rcon lookup
|
2223
|
+
const RCON=[0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x1b,0x36];/**
|
2224
|
+
* AES block cipher algorithm.
|
2225
|
+
*/class AESAlgo extends BlockCipher{_doReset(){let t;// Skip reset of nRounds has been set before and key did not change
|
2226
|
+
if(this._nRounds&&this._keyPriorReset===this._key){return;}// Shortcuts
|
2227
|
+
this._keyPriorReset=this._key;const key=this._keyPriorReset;const keyWords=key.words;const keySize=key.sigBytes/4;// Compute number of rounds
|
2228
|
+
this._nRounds=keySize+6;const nRounds=this._nRounds;// Compute number of key schedule rows
|
2229
|
+
const ksRows=(nRounds+1)*4;// Compute key schedule
|
2230
|
+
this._keySchedule=[];const keySchedule=this._keySchedule;for(let ksRow=0;ksRow<ksRows;ksRow+=1){if(ksRow<keySize){keySchedule[ksRow]=keyWords[ksRow];}else {t=keySchedule[ksRow-1];if(!(ksRow%keySize)){// Rot word
|
2231
|
+
t=t<<8|t>>>24;// Sub word
|
2232
|
+
t=_SBOX[t>>>24]<<24|_SBOX[t>>>16&0xff]<<16|_SBOX[t>>>8&0xff]<<8|_SBOX[t&0xff];// Mix Rcon
|
2233
|
+
t^=RCON[ksRow/keySize|0]<<24;}else if(keySize>6&&ksRow%keySize===4){// Sub word
|
2234
|
+
t=_SBOX[t>>>24]<<24|_SBOX[t>>>16&0xff]<<16|_SBOX[t>>>8&0xff]<<8|_SBOX[t&0xff];}keySchedule[ksRow]=keySchedule[ksRow-keySize]^t;}}// Compute inv key schedule
|
2235
|
+
this._invKeySchedule=[];const invKeySchedule=this._invKeySchedule;for(let invKsRow=0;invKsRow<ksRows;invKsRow+=1){const ksRow=ksRows-invKsRow;if(invKsRow%4){t=keySchedule[ksRow];}else {t=keySchedule[ksRow-4];}if(invKsRow<4||ksRow<=4){invKeySchedule[invKsRow]=t;}else {invKeySchedule[invKsRow]=INV_SUB_MIX_0[_SBOX[t>>>24]]^INV_SUB_MIX_1[_SBOX[t>>>16&0xff]]^INV_SUB_MIX_2[_SBOX[t>>>8&0xff]]^INV_SUB_MIX_3[_SBOX[t&0xff]];}}}encryptBlock(M,offset){this._doCryptBlock(M,offset,this._keySchedule,_SUB_MIX_0,_SUB_MIX_1,_SUB_MIX_2,_SUB_MIX_3,_SBOX);}decryptBlock(M,offset){const _M=M;// Swap 2nd and 4th rows
|
2236
|
+
let t=_M[offset+1];_M[offset+1]=_M[offset+3];_M[offset+3]=t;this._doCryptBlock(_M,offset,this._invKeySchedule,INV_SUB_MIX_0,INV_SUB_MIX_1,INV_SUB_MIX_2,INV_SUB_MIX_3,INV_SBOX);// Inv swap 2nd and 4th rows
|
2237
|
+
t=_M[offset+1];_M[offset+1]=_M[offset+3];_M[offset+3]=t;}_doCryptBlock(M,offset,keySchedule,SUB_MIX_0,SUB_MIX_1,SUB_MIX_2,SUB_MIX_3,SBOX){const _M=M;// Shortcut
|
2238
|
+
const nRounds=this._nRounds;// Get input, add round key
|
2239
|
+
let s0=_M[offset]^keySchedule[0];let s1=_M[offset+1]^keySchedule[1];let s2=_M[offset+2]^keySchedule[2];let s3=_M[offset+3]^keySchedule[3];// Key schedule row counter
|
2240
|
+
let ksRow=4;// Rounds
|
2241
|
+
for(let round=1;round<nRounds;round+=1){// Shift rows, sub bytes, mix columns, add round key
|
2242
|
+
const t0=SUB_MIX_0[s0>>>24]^SUB_MIX_1[s1>>>16&0xff]^SUB_MIX_2[s2>>>8&0xff]^SUB_MIX_3[s3&0xff]^keySchedule[ksRow];ksRow+=1;const t1=SUB_MIX_0[s1>>>24]^SUB_MIX_1[s2>>>16&0xff]^SUB_MIX_2[s3>>>8&0xff]^SUB_MIX_3[s0&0xff]^keySchedule[ksRow];ksRow+=1;const t2=SUB_MIX_0[s2>>>24]^SUB_MIX_1[s3>>>16&0xff]^SUB_MIX_2[s0>>>8&0xff]^SUB_MIX_3[s1&0xff]^keySchedule[ksRow];ksRow+=1;const t3=SUB_MIX_0[s3>>>24]^SUB_MIX_1[s0>>>16&0xff]^SUB_MIX_2[s1>>>8&0xff]^SUB_MIX_3[s2&0xff]^keySchedule[ksRow];ksRow+=1;// Update state
|
2243
|
+
s0=t0;s1=t1;s2=t2;s3=t3;}// Shift rows, sub bytes, add round key
|
2244
|
+
const t0=(SBOX[s0>>>24]<<24|SBOX[s1>>>16&0xff]<<16|SBOX[s2>>>8&0xff]<<8|SBOX[s3&0xff])^keySchedule[ksRow];ksRow+=1;const t1=(SBOX[s1>>>24]<<24|SBOX[s2>>>16&0xff]<<16|SBOX[s3>>>8&0xff]<<8|SBOX[s0&0xff])^keySchedule[ksRow];ksRow+=1;const t2=(SBOX[s2>>>24]<<24|SBOX[s3>>>16&0xff]<<16|SBOX[s0>>>8&0xff]<<8|SBOX[s1&0xff])^keySchedule[ksRow];ksRow+=1;const t3=(SBOX[s3>>>24]<<24|SBOX[s0>>>16&0xff]<<16|SBOX[s1>>>8&0xff]<<8|SBOX[s2&0xff])^keySchedule[ksRow];ksRow+=1;// Set output
|
2245
|
+
_M[offset]=t0;_M[offset+1]=t1;_M[offset+2]=t2;_M[offset+3]=t3;}}AESAlgo.keySize=256/32;/**
|
2246
|
+
* Shortcut functions to the cipher's object interface.
|
2247
|
+
*
|
2248
|
+
* @example
|
2249
|
+
*
|
2250
|
+
* var ciphertext = CryptoJS.AES.encrypt(message, key, cfg);
|
2251
|
+
* var plaintext = CryptoJS.AES.decrypt(ciphertext, key, cfg);
|
2252
|
+
*/const AES=BlockCipher._createHelper(AESAlgo);
|
2253
|
+
|
2254
|
+
const ENCRYPTION_PREFIX_V1='RudderEncrypt:';const ENCRYPTION_KEY_V1='Rudder';
|
2255
|
+
|
2256
|
+
const encrypt=value=>`${ENCRYPTION_PREFIX_V1}${AES.encrypt(value,ENCRYPTION_KEY_V1).toString()}`;const decrypt=value=>{if(value.startsWith(ENCRYPTION_PREFIX_V1)){return AES.decrypt(value.substring(ENCRYPTION_PREFIX_V1.length),ENCRYPTION_KEY_V1).toString(Utf8);}return value;};
|
2257
|
+
|
2258
|
+
const pluginName$2='StorageEncryptionLegacy';const StorageEncryptionLegacy=()=>({name:pluginName$2,initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$2];},storage:{encrypt(value){return encrypt(value);},decrypt(value){return decrypt(value);}}});
|
2259
|
+
|
2260
|
+
const STORAGE_MIGRATION_ERROR=key=>`Failed to retrieve or parse data for ${key} from storage.`;
|
2261
|
+
|
2262
|
+
const STORAGE_MIGRATOR_PLUGIN='StorageMigratorPlugin';
|
2263
|
+
|
2264
|
+
const pluginName$1='StorageMigrator';const StorageMigrator=()=>({name:pluginName$1,initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName$1];},storage:{migrate(key,storageEngine,errorHandler,logger){try{const storedVal=storageEngine.getItem(key);if(isNullOrUndefined(storedVal)){return null;}let decryptedVal=decrypt(storedVal);// The value is not encrypted using legacy encryption
|
2265
|
+
// Try latest
|
2266
|
+
if(decryptedVal===storedVal){decryptedVal=decrypt$1(storedVal);}if(isNullOrUndefined(decryptedVal)){return null;}// storejs that is used in localstorage engine already deserializes json strings but swallows errors
|
2267
|
+
return JSON.parse(decryptedVal);}catch(err){errorHandler?.onError(err,STORAGE_MIGRATOR_PLUGIN,STORAGE_MIGRATION_ERROR(key));return null;}}}});
|
2268
|
+
|
2269
|
+
const DEFAULT_RETRY_QUEUE_OPTIONS={maxRetryDelay:360000,minRetryDelay:1000,backoffFactor:2,maxAttempts:10,maxItems:100};const REQUEST_TIMEOUT_MS=30*1000;// 30 seconds
|
2270
|
+
const DATA_PLANE_API_VERSION='v1';const QUEUE_NAME='rudder';const XHR_QUEUE_PLUGIN='XhrQueuePlugin';
|
2271
|
+
|
2272
|
+
const EVENT_DELIVERY_FAILURE_ERROR_PREFIX=(context,url)=>`${context}${LOG_CONTEXT_SEPARATOR}Failed to deliver event(s) to ${url}.`;
|
2273
|
+
|
2274
|
+
const getBatchDeliveryPayload=(events,currentTime,logger)=>{const batchPayload={batch:events,sentAt:currentTime};return stringifyWithoutCircular(batchPayload,true,undefined,logger);};const getNormalizedQueueOptions=queueOpts=>mergeDeepRight(DEFAULT_RETRY_QUEUE_OPTIONS,queueOpts);const getDeliveryUrl=(dataplaneUrl,endpoint)=>{const dpUrl=new URL(dataplaneUrl);return new URL(removeDuplicateSlashes([dpUrl.pathname,'/',DATA_PLANE_API_VERSION,'/',endpoint].join('')),dpUrl).href;};const getBatchDeliveryUrl=dataplaneUrl=>getDeliveryUrl(dataplaneUrl,'batch');const logErrorOnFailure=(details,url,willBeRetried,attemptNumber,maxRetryAttempts,logger)=>{if(isUndefined(details?.error)||isUndefined(logger)){return;}const isRetryableFailure=isErrRetryable(details);let errMsg=EVENT_DELIVERY_FAILURE_ERROR_PREFIX(XHR_QUEUE_PLUGIN,url);const dropMsg=`The event(s) will be dropped.`;if(isRetryableFailure){if(willBeRetried){errMsg=`${errMsg} It/they will be retried.`;if(attemptNumber>0){errMsg=`${errMsg} Retry attempt ${attemptNumber} of ${maxRetryAttempts}.`;}}else {errMsg=`${errMsg} Retries exhausted (${maxRetryAttempts}). ${dropMsg}`;}}else {errMsg=`${errMsg} ${dropMsg}`;}logger?.error(errMsg);};const getRequestInfo=(itemData,state,logger)=>{let data;let headers;let url;const currentTime=getCurrentTimeFormatted();if(Array.isArray(itemData)){const finalEvents=itemData.map(queueItemData=>getFinalEventForDeliveryMutator(queueItemData.event,currentTime));data=getBatchDeliveryPayload(finalEvents,currentTime,logger);headers=itemData[0]?clone(itemData[0].headers):{};url=getBatchDeliveryUrl(state.lifecycle.activeDataplaneUrl.value);}else {const{url:eventUrl,event,headers:eventHeaders}=itemData;const finalEvent=getFinalEventForDeliveryMutator(event,currentTime);data=getDeliveryPayload(finalEvent,logger);headers=clone(eventHeaders);url=eventUrl;}return {data,headers,url};};
|
2275
|
+
|
2276
|
+
const pluginName='XhrQueue';const XhrQueue=()=>({name:pluginName,deps:[],initialize:state=>{state.plugins.loadedPlugins.value=[...state.plugins.loadedPlugins.value,pluginName];},dataplaneEventsQueue:{/**
|
2277
|
+
* Initialize the queue for delivery
|
2278
|
+
* @param state Application state
|
2279
|
+
* @param httpClient http client instance
|
2280
|
+
* @param storeManager Store Manager instance
|
2281
|
+
* @param errorHandler Error handler instance
|
2282
|
+
* @param logger Logger instance
|
2283
|
+
* @returns RetryQueue instance
|
2284
|
+
*/init(state,httpClient,storeManager,errorHandler,logger){const writeKey=state.lifecycle.writeKey.value;httpClient.setAuthHeader(writeKey);const finalQOpts=getNormalizedQueueOptions(state.loadOptions.value.queueOptions);const eventsQueue=new RetryQueue(// adding write key to the queue name to avoid conflicts
|
2285
|
+
`${QUEUE_NAME}_${writeKey}`,finalQOpts,(itemData,done,attemptNumber,maxRetryAttempts,willBeRetried)=>{const{data,url,headers}=getRequestInfo(itemData,state,logger);httpClient.getAsyncData({url,options:{method:'POST',headers,data:data,sendRawData:true},isRawResponse:true,timeout:REQUEST_TIMEOUT_MS,callback:(result,details)=>{// null means item will not be requeued
|
2286
|
+
const queueErrResp=isErrRetryable(details)?details:null;logErrorOnFailure(details,url,willBeRetried,attemptNumber,maxRetryAttempts,logger);done(queueErrResp,result);}});},storeManager,LOCAL_STORAGE,logger,itemData=>{const currentTime=getCurrentTimeFormatted();const events=itemData.map(queueItemData=>queueItemData.event);// type casting to string as we know that the event has already been validated prior to enqueue
|
2287
|
+
return getBatchDeliveryPayload(events,currentTime,logger)?.length;});return eventsQueue;},/**
|
2288
|
+
* Add event to the queue for delivery
|
2289
|
+
* @param state Application state
|
2290
|
+
* @param eventsQueue RetryQueue instance
|
2291
|
+
* @param event RudderEvent object
|
2292
|
+
* @param errorHandler Error handler instance
|
2293
|
+
* @param logger Logger instance
|
2294
|
+
* @returns none
|
2295
|
+
*/enqueue(state,eventsQueue,event,errorHandler,logger){// sentAt is only added here for the validation step
|
2296
|
+
// It'll be updated to the latest timestamp during actual delivery
|
2297
|
+
event.sentAt=getCurrentTimeFormatted();validateEventPayloadSize(event,logger);const dataplaneUrl=state.lifecycle.activeDataplaneUrl.value;const url=getDeliveryUrl(dataplaneUrl,event.type);// Other default headers are added by the HttpClient
|
2298
|
+
// Auth header is added during initialization
|
2299
|
+
const headers={// To maintain event ordering while using the HTTP API as per is documentation,
|
2300
|
+
// make sure to include anonymousId as a header
|
2301
|
+
AnonymousId:toBase64(event.anonymousId)};eventsQueue.addItem({url,headers,event});}}});
|
2302
|
+
|
2303
|
+
/**
|
2304
|
+
* Map plugin names to direct code imports from plugins package
|
2305
|
+
*/const getBundledBuildPluginImports=()=>({BeaconQueue,Bugsnag,CustomConsentManager,DeviceModeDestinations,DeviceModeTransformation,ErrorReporting,ExternalAnonymousId,GoogleLinker,KetchConsentManager,NativeDestinationQueue,OneTrustConsentManager,StorageEncryption,StorageEncryptionLegacy,StorageMigrator,XhrQueue});
|
2306
|
+
|
2307
|
+
/**
|
2308
|
+
* Map of mandatory plugin names and direct imports
|
2309
|
+
*/const getMandatoryPluginsMap=()=>({});/**
|
2310
|
+
* Map of optional plugin names and direct imports for legacy builds
|
2311
|
+
*/const getOptionalPluginsMap=()=>{return getBundledBuildPluginImports();};/**
|
2312
|
+
* Map of optional plugin names and dynamic imports for modern builds
|
2313
|
+
*/const getRemotePluginsMap=activePluginNames=>{{return {};}};const pluginsInventory={...getMandatoryPluginsMap(),...getOptionalPluginsMap()};const remotePluginsInventory=activePluginNames=>({...getRemotePluginsMap()});
|
2314
|
+
|
2315
|
+
// TODO: add retry mechanism for getting remote plugins
|
2316
|
+
// TODO: add timeout error mechanism for marking remote plugins that failed to load as failed in state
|
2317
|
+
class PluginsManager{constructor(engine,errorHandler,logger){this.engine=engine;this.errorHandler=errorHandler;this.logger=logger;this.onError=this.onError.bind(this);}/**
|
2318
|
+
* Orchestrate the plugin loading and registering
|
2319
|
+
*/init(){state.lifecycle.status.value='pluginsLoading';// Expose pluginsCDNPath to global object, so it can be used in the promise that determines
|
2320
|
+
this.setActivePlugins();this.registerLocalPlugins();this.registerRemotePlugins();this.attachEffects();}/**
|
2321
|
+
* Update state based on plugin loaded status
|
2322
|
+
*/ // eslint-disable-next-line class-methods-use-this
|
2323
|
+
attachEffects(){O(()=>{const isAllPluginsReady=state.plugins.activePlugins.value.length===0||state.plugins.loadedPlugins.value.length+state.plugins.failedPlugins.value.length===state.plugins.totalPluginsToLoad.value;if(isAllPluginsReady){n(()=>{state.plugins.ready.value=true;// TODO: decide what to do if a plugin fails to load for any reason.
|
2324
|
+
// Should we stop here or should we progress?
|
2325
|
+
state.lifecycle.status.value='pluginsReady';});}});}/**
|
2326
|
+
* Determine the list of plugins that should be loaded based on sourceConfig & load options
|
2327
|
+
*/ // eslint-disable-next-line class-methods-use-this
|
2328
|
+
getPluginsToLoadBasedOnConfig(){// This contains the default plugins if load option has been omitted by user
|
2329
|
+
let pluginsToLoadFromConfig=state.plugins.pluginsToLoadFromConfig.value;if(!pluginsToLoadFromConfig){return [];}// Error reporting related plugins
|
2330
|
+
const supportedErrReportingProviderPluginNames=Object.values(ErrorReportingProvidersToPluginNameMap);if(state.reporting.errorReportingProviderPluginName.value){pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(pluginName=>!(pluginName!==state.reporting.errorReportingProviderPluginName.value&&supportedErrReportingProviderPluginNames.includes(pluginName)));}else {pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(pluginName=>!(pluginName==='ErrorReporting'||supportedErrReportingProviderPluginNames.includes(pluginName)));}// Cloud mode (dataplane) events delivery plugins
|
2331
|
+
if(state.loadOptions.value.useBeacon===true&&state.capabilities.isBeaconAvailable.value){pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(pluginName=>pluginName!=='XhrQueue');}else {if(state.loadOptions.value.useBeacon===true){this.logger?.warn(UNSUPPORTED_BEACON_API_WARNING(PLUGINS_MANAGER));}pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(pluginName=>pluginName!=='BeaconQueue');}// Enforce default cloud mode event delivery queue plugin is none exists
|
2332
|
+
if(!pluginsToLoadFromConfig.includes('XhrQueue')&&!pluginsToLoadFromConfig.includes('BeaconQueue')){pluginsToLoadFromConfig.push('XhrQueue');}// Device mode destinations related plugins
|
2333
|
+
if(getNonCloudDestinations(state.nativeDestinations.configuredDestinations.value??[]).length===0){pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(pluginName=>!['DeviceModeDestinations','DeviceModeTransformation','NativeDestinationQueue'].includes(pluginName));}// Consent Management related plugins
|
2334
|
+
const supportedConsentManagerPlugins=Object.values(ConsentManagersToPluginNameMap);let filterCondition=pluginName=>!(pluginName!==state.consents.activeConsentManagerPluginName.value&&supportedConsentManagerPlugins.includes(pluginName));if(!state.consents.enabled.value){filterCondition=pluginName=>!supportedConsentManagerPlugins.includes(pluginName);}pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(filterCondition);// Storage encryption related plugins
|
2335
|
+
const supportedStorageEncryptionPlugins=Object.values(StorageEncryptionVersionsToPluginNameMap);pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(pluginName=>!(pluginName!==state.storage.encryptionPluginName.value&&supportedStorageEncryptionPlugins.includes(pluginName)));// Storage migrator related plugins
|
2336
|
+
if(!state.storage.migrate.value){pluginsToLoadFromConfig=pluginsToLoadFromConfig.filter(pluginName=>pluginName!=='StorageMigrator');}return [...Object.keys(getMandatoryPluginsMap()),...pluginsToLoadFromConfig];}/**
|
2337
|
+
* Determine the list of plugins that should be activated
|
2338
|
+
*/setActivePlugins(){const pluginsToLoad=this.getPluginsToLoadBasedOnConfig();// Merging available mandatory and optional plugin name list
|
2339
|
+
const availablePlugins=[...Object.keys(pluginsInventory),...pluginNamesList];const activePlugins=[];const failedPlugins=[];pluginsToLoad.forEach(pluginName=>{if(availablePlugins.includes(pluginName)){activePlugins.push(pluginName);}else {failedPlugins.push(pluginName);}});if(failedPlugins.length>0){this.onError(new Error(`Ignoring loading of unknown plugins: ${failedPlugins.join(',')}. Mandatory plugins: ${Object.keys(getMandatoryPluginsMap()).join(',')}. Load option plugins: ${state.plugins.pluginsToLoadFromConfig.value.join(',')}`));}n(()=>{state.plugins.totalPluginsToLoad.value=pluginsToLoad.length;state.plugins.activePlugins.value=activePlugins;state.plugins.failedPlugins.value=failedPlugins;});}/**
|
2340
|
+
* Register plugins that are direct imports to PluginEngine
|
2341
|
+
*/registerLocalPlugins(){Object.values(pluginsInventory).forEach(localPlugin=>{if(isFunction(localPlugin)&&state.plugins.activePlugins.value.includes(localPlugin().name)){this.register([localPlugin()]);}});}/**
|
2342
|
+
* Register plugins that are dynamic imports to PluginEngine
|
2343
|
+
*/registerRemotePlugins(){const remotePluginsList=remotePluginsInventory(state.plugins.activePlugins.value);Promise.all(Object.keys(remotePluginsList).map(async remotePluginKey=>{await remotePluginsList[remotePluginKey]().then(remotePluginModule=>this.register([remotePluginModule.default()])).catch(err=>{// TODO: add retry here if dynamic import fails
|
2344
|
+
state.plugins.failedPlugins.value=[...state.plugins.failedPlugins.value,remotePluginKey];this.onError(err,remotePluginKey);});})).catch(err=>{this.onError(err);});}/**
|
2345
|
+
* Extension point invoke that allows multiple plugins to be registered to it with error handling
|
2346
|
+
*/invokeMultiple(extPoint,...args){try{return this.engine.invokeMultiple(extPoint,...args);}catch(e){this.onError(e,extPoint);return [];}}/**
|
2347
|
+
* Extension point invoke that allows a single plugin to be registered to it with error handling
|
2348
|
+
*/invokeSingle(extPoint,...args){try{return this.engine.invokeSingle(extPoint,...args);}catch(e){this.onError(e,extPoint);return null;}}/**
|
2349
|
+
* Plugin engine register with error handling
|
2350
|
+
*/register(plugins){plugins.forEach(plugin=>{try{this.engine.register(plugin,state);}catch(e){state.plugins.failedPlugins.value=[...state.plugins.failedPlugins.value,plugin.name];this.onError(e);}});}// TODO: Implement reset API instead
|
2351
|
+
unregisterLocalPlugins(){Object.values(pluginsInventory).forEach(localPlugin=>{try{this.engine.unregister(localPlugin().name);}catch(e){this.onError(e);}});}/**
|
2352
|
+
* Handle errors
|
2353
|
+
*/onError(error,customMessage){if(this.errorHandler){this.errorHandler.onError(error,PLUGINS_MANAGER,customMessage);}else {throw error;}}}
|
2354
|
+
|
2355
|
+
/**
|
2356
|
+
* Utility to parse XHR JSON response
|
2357
|
+
*/const responseTextToJson=(responseText,onError)=>{try{return JSON.parse(responseText||'');}catch(err){const error=getMutatedError(err,'Failed to parse response data');if(isFunction(onError)){onError(error);}else {throw error;}}return undefined;};
|
2358
|
+
|
2359
|
+
const DEFAULT_XHR_REQUEST_OPTIONS={headers:{Accept:'application/json','Content-Type':'application/json;charset=UTF-8'},method:'GET'};/**
|
2360
|
+
* Utility to create request configuration based on default options
|
2361
|
+
*/const createXhrRequestOptions=(url,options,basicAuthHeader)=>{const requestOptions=mergeDeepRight(DEFAULT_XHR_REQUEST_OPTIONS,options||{});if(basicAuthHeader){requestOptions.headers=mergeDeepRight(requestOptions.headers,{Authorization:basicAuthHeader});}requestOptions.url=url;return requestOptions;};/**
|
2362
|
+
* Utility implementation of XHR, fetch cannot be used as it requires explicit
|
2363
|
+
* origin allowed values and not wildcard for CORS requests with credentials and
|
2364
|
+
* this is not supported by our sourceConfig API
|
2365
|
+
*/const xhrRequest=(options,timeout=DEFAULT_XHR_TIMEOUT_MS,logger)=>new Promise((resolve,reject)=>{let payload;if(options.sendRawData===true){payload=options.data;}else {payload=stringifyWithoutCircular(options.data,false,[],logger);if(isNull(payload)){reject({error:new Error(XHR_PAYLOAD_PREP_ERROR),undefined,options});// return and don't process further if the payload could not be stringified
|
2366
|
+
return;}}const xhr=new XMLHttpRequest();// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2367
|
+
const xhrReject=e=>{reject({error:new Error(XHR_DELIVERY_ERROR(FAILED_REQUEST_ERR_MSG_PREFIX,xhr.status,xhr.statusText,options.url)),xhr,options});};const xhrError=e=>{reject({error:new Error(XHR_REQUEST_ERROR(FAILED_REQUEST_ERR_MSG_PREFIX,e,options.url)),xhr,options});};xhr.ontimeout=xhrError;xhr.onerror=xhrError;xhr.onload=()=>{if(xhr.status>=200&&xhr.status<400){resolve({response:xhr.responseText,xhr,options});}else {xhrReject();}};xhr.open(options.method,options.url);// The timeout property may be set only in the time interval between a call to the open method
|
2368
|
+
// and the first call to the send method in legacy browsers
|
2369
|
+
xhr.timeout=timeout;Object.keys(options.headers).forEach(headerName=>{if(options.headers[headerName]){xhr.setRequestHeader(headerName,options.headers[headerName]);}});try{xhr.send(payload);}catch(err){reject({error:getMutatedError(err,XHR_SEND_ERROR(FAILED_REQUEST_ERR_MSG_PREFIX,options.url)),xhr,options});}});
|
2370
|
+
|
2371
|
+
/**
|
2372
|
+
* Service to handle data communication with APIs
|
2373
|
+
*/class HttpClient{hasErrorHandler=false;constructor(errorHandler,logger){this.errorHandler=errorHandler;this.logger=logger;this.hasErrorHandler=Boolean(this.errorHandler);this.onError=this.onError.bind(this);}/**
|
2374
|
+
* Implement requests in a blocking way
|
2375
|
+
*/async getData(config){const{url,options,timeout,isRawResponse}=config;try{const data=await xhrRequest(createXhrRequestOptions(url,options,this.basicAuthHeader),timeout,this.logger);return {data:isRawResponse?data.response:responseTextToJson(data.response,this.onError),details:data};}catch(reason){this.onError(reason.error??reason);return {data:undefined,details:reason};}}/**
|
2376
|
+
* Implement requests in a non-blocking way
|
2377
|
+
*/getAsyncData(config){const{callback,url,options,timeout,isRawResponse}=config;const isFireAndForget=!isFunction(callback);xhrRequest(createXhrRequestOptions(url,options,this.basicAuthHeader),timeout,this.logger).then(data=>{if(!isFireAndForget){callback(isRawResponse?data.response:responseTextToJson(data.response,this.onError),data);}}).catch(data=>{this.onError(data.error??data);if(!isFireAndForget){callback(undefined,data);}});}/**
|
2378
|
+
* Handle errors
|
2379
|
+
*/onError(error){if(this.hasErrorHandler){this.errorHandler?.onError(error,HTTP_CLIENT);}else {throw error;}}/**
|
2380
|
+
* Set basic authentication header (eg writekey)
|
2381
|
+
*/setAuthHeader(value,noBtoa=false){const authVal=noBtoa?value:toBase64(`${value}:`);this.basicAuthHeader=`Basic ${authVal}`;}/**
|
2382
|
+
* Clear basic authentication header
|
2383
|
+
*/resetAuthHeader(){this.basicAuthHeader=undefined;}}const defaultHttpClient=new HttpClient(defaultErrorHandler,defaultLogger);
|
2384
|
+
|
2385
|
+
const STORAGE_TEST_COOKIE='test_rudder_cookie';const STORAGE_TEST_LOCAL_STORAGE='test_rudder_ls';const STORAGE_TEST_SESSION_STORAGE='test_rudder_ss';const STORAGE_TEST_TOP_LEVEL_DOMAIN='__tld__';const CLIENT_DATA_STORE_COOKIE='clientDataInCookie';const CLIENT_DATA_STORE_LS='clientDataInLocalStorage';const CLIENT_DATA_STORE_MEMORY='clientDataInMemory';const CLIENT_DATA_STORE_SESSION='clientDataInSessionStorage';const USER_SESSION_KEYS=['userId','userTraits','anonymousId','groupId','groupTraits','initialReferrer','initialReferringDomain','sessionInfo','authToken'];
|
2386
|
+
|
2387
|
+
const storageClientDataStoreNameMap={[COOKIE_STORAGE]:CLIENT_DATA_STORE_COOKIE,[LOCAL_STORAGE]:CLIENT_DATA_STORE_LS,[MEMORY_STORAGE]:CLIENT_DATA_STORE_MEMORY,[SESSION_STORAGE]:CLIENT_DATA_STORE_SESSION};
|
2388
|
+
|
2389
|
+
const detectAdBlockers=(errorHandler,logger)=>{// Apparently, '?view=ad' is a query param that is blocked by majority of adblockers
|
2390
|
+
// Use source config URL here as it is very unlikely to be blocked by adblockers
|
2391
|
+
// Only the extra query param should make it vulnerable to adblockers
|
2392
|
+
// This will work even if the users proxies it.
|
2393
|
+
// The edge case where this doesn't work is when HEAD method is not allowed by the server (user's)
|
2394
|
+
const baseUrl=new URL(state.lifecycle.sourceConfigUrl.value);const url=`${baseUrl.origin}${baseUrl.pathname}?view=ad`;const httpClient=new HttpClient(errorHandler,logger);httpClient.setAuthHeader(state.lifecycle.writeKey.value);httpClient.getAsyncData({url,options:{// We actually don't need the response from the request, so we are using HEAD
|
2395
|
+
method:'HEAD',headers:{'Content-Type':undefined}},isRawResponse:true,callback:(result,details)=>{// not ad blocked if the request is successful or it is not internally redirected on the client side
|
2396
|
+
// Often adblockers instead of blocking the request, they redirect it to an internal URL
|
2397
|
+
state.capabilities.isAdBlocked.value=details?.error!==undefined||details?.xhr?.responseURL!==url;}});};
|
2398
|
+
|
2399
|
+
const hasCrypto=()=>!isNullOrUndefined(globalThis.crypto)&&isFunction(globalThis.crypto.getRandomValues);const hasUAClientHints=()=>!isNullOrUndefined(globalThis.navigator.userAgentData);const hasBeacon=()=>!isNullOrUndefined(globalThis.navigator.sendBeacon)&&isFunction(globalThis.navigator.sendBeacon);const isIE11=()=>Boolean(globalThis.navigator.userAgent.match(/Trident.*rv:11\./));
|
2400
|
+
|
2401
|
+
const getUserAgentClientHint=(callback,level='none')=>{if(level==='none'){callback(undefined);}if(level==='default'){callback(navigator.userAgentData);}if(level==='full'){navigator.userAgentData?.getHighEntropyValues(['architecture','bitness','brands','mobile','model','platform','platformVersion','uaFullVersion','fullVersionList','wow64']).then(ua=>{callback(ua);}).catch(()=>{callback();});}};
|
2402
|
+
|
2403
|
+
const isDatasetAvailable=()=>{const testElement=document.createElement('div');testElement.setAttribute('data-a-b','c');return testElement.dataset?testElement.dataset.aB==='c':false;};const legacyJSEngineRequiredPolyfills={URL:()=>!isFunction(globalThis.URL)||!globalThis.URLSearchParams,MutationObserver:()=>isUndefined(MutationObserver),Promise:()=>isUndefined(Promise),'Number.isNaN':()=>!Number.isNaN,'Number.isInteger':()=>!Number.isInteger,'Array.from':()=>!Array.from,'Array.prototype.find':()=>!Array.prototype.find,'Array.prototype.includes':()=>!Array.prototype.includes,'String.prototype.endsWith':()=>!String.prototype.endsWith,'String.prototype.startsWith':()=>!String.prototype.startsWith,'String.prototype.includes':()=>!String.prototype.includes,'Object.entries':()=>!Object.entries,'Object.values':()=>!Object.values,'Object.assign':()=>typeof Object.assign!=='function','Element.prototype.dataset':()=>!isDatasetAvailable(),'String.prototype.replaceAll':()=>!String.prototype.replaceAll,TextEncoder:()=>isUndefined(TextEncoder)||isUndefined(TextDecoder),'String.fromCodePoint':()=>!String.fromCodePoint,requestAnimationFrame:()=>!isFunction(globalThis.requestAnimationFrame)||!isFunction(globalThis.cancelAnimationFrame),CustomEvent:()=>!isFunction(globalThis.CustomEvent),/* eslint-disable-next-line */'navigator.sendBeacon':()=>!isFunction(navigator.sendBeacon),ArrayBuffer:()=>!isFunction(Uint8Array)};const isLegacyJSEngine=()=>{const requiredCapabilitiesList=Object.keys(legacyJSEngineRequiredPolyfills);let needsPolyfill=false;/* eslint-disable-next-line unicorn/no-for-loop */for(let i=0;i<requiredCapabilitiesList.length;i++){const isCapabilityMissing=legacyJSEngineRequiredPolyfills[requiredCapabilitiesList[i]];if(isFunction(isCapabilityMissing)&&isCapabilityMissing()){needsPolyfill=true;break;}}return needsPolyfill;};
|
2404
|
+
|
2405
|
+
const getScreenDetails=()=>{let screenDetails={density:0,width:0,height:0,innerWidth:0,innerHeight:0};screenDetails={width:globalThis.screen.width,height:globalThis.screen.height,density:globalThis.devicePixelRatio,innerWidth:globalThis.innerWidth,innerHeight:globalThis.innerHeight};return screenDetails;};
|
2406
|
+
|
2407
|
+
const isStorageQuotaExceeded=e=>{const matchingNames=['QuotaExceededError','NS_ERROR_DOM_QUOTA_REACHED'];// [everything except Firefox, Firefox]
|
2408
|
+
const matchingCodes=[22,1014];// [everything except Firefox, Firefox]
|
2409
|
+
const isQuotaExceededError=matchingNames.includes(e.name)||matchingCodes.includes(e.code);return e instanceof DOMException&&isQuotaExceededError;};// TODO: also check for SecurityErrors
|
2410
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage#exceptions
|
2411
|
+
const isStorageAvailable=(type=LOCAL_STORAGE,storageInstance,logger)=>{let storage;let testData;try{switch(type){case MEMORY_STORAGE:return true;case COOKIE_STORAGE:storage=storageInstance;testData=STORAGE_TEST_COOKIE;break;case LOCAL_STORAGE:storage=storageInstance??globalThis.localStorage;testData=STORAGE_TEST_LOCAL_STORAGE;// was STORAGE_TEST_LOCAL_STORAGE in ours and generateUUID() in segment retry one
|
2412
|
+
break;case SESSION_STORAGE:storage=storageInstance??globalThis.sessionStorage;testData=STORAGE_TEST_SESSION_STORAGE;break;default:return false;}if(!storage){return false;}storage.setItem(testData,'true');if(storage.getItem(testData)){storage.removeItem(testData);return true;}return false;}catch(err){const msgPrefix=STORAGE_UNAVAILABILITY_ERROR_PREFIX(CAPABILITIES_MANAGER,type);let reason='unavailable';if(isStorageQuotaExceeded(err)){reason='full';}logger?.error(`${msgPrefix}${reason}.`,err);return false;}};
|
2413
|
+
|
2414
|
+
/**
|
2415
|
+
* Encode.
|
2416
|
+
*/const encode=(value,logger)=>{try{return encodeURIComponent(value);}catch(err){logger?.error(COOKIE_DATA_ENCODING_ERROR,err);return undefined;}};/**
|
2417
|
+
* Decode
|
2418
|
+
*/const decode=value=>{try{return decodeURIComponent(value);}catch(err){// Do nothing as non-RS SDK cookies may not be URI encoded
|
2419
|
+
return undefined;}};/**
|
2420
|
+
* Parse cookie `str`
|
2421
|
+
*/const parse=str=>{const obj={};const pairs=str.split(/\s*;\s*/);let pair;if(!pairs[0]){return obj;}// TODO: Decode only the cookies that are needed by the SDK
|
2422
|
+
pairs.forEach(pairItem=>{pair=pairItem.split('=');const keyName=pair[0]?decode(pair[0]):undefined;if(keyName){obj[keyName]=pair[1]?decode(pair[1]):undefined;}});return obj;};/**
|
2423
|
+
* Set cookie `name` to `value`
|
2424
|
+
*/const set=(name,value,optionsConfig,logger)=>{const options={...optionsConfig}||{};let cookieString=`${encode(name,logger)}=${encode(value,logger)}`;if(isNull(value)){options.maxage=-1;}if(options.maxage){options.expires=new Date(+new Date()+options.maxage);}if(options.path){cookieString+=`; path=${options.path}`;}if(options.domain){cookieString+=`; domain=${options.domain}`;}if(options.expires){cookieString+=`; expires=${options.expires.toUTCString()}`;}if(options.samesite){cookieString+=`; samesite=${options.samesite}`;}if(options.secure){cookieString+=`; secure`;}globalThis.document.cookie=cookieString;};/**
|
2425
|
+
* Return all cookies
|
2426
|
+
*/const all=()=>{const cookieStringValue=globalThis.document.cookie;return parse(cookieStringValue);};/**
|
2427
|
+
* Get cookie `name`
|
2428
|
+
*/const get=name=>all()[name];/**
|
2429
|
+
* Set or get cookie `name` with `value` and `options` object
|
2430
|
+
*/ // eslint-disable-next-line func-names
|
2431
|
+
const cookie=function(name,value,options,logger){switch(arguments.length){case 4:case 3:case 2:return set(name,value,options,logger);case 1:if(name){return get(name);}return all();default:return all();}};
|
2432
|
+
|
2433
|
+
const legacyGetHostname=href=>{const l=document.createElement('a');l.href=href;return l.hostname;};/**
|
2434
|
+
* Levels returns all levels of the given url
|
2435
|
+
*
|
2436
|
+
* The method returns an empty array when the hostname is an ip.
|
2437
|
+
*/const levelsFunc=url=>{// This is called before the polyfills load thus new URL cannot be used
|
2438
|
+
const host=typeof globalThis.URL!=='function'?legacyGetHostname(url):new URL(url).hostname;const parts=host?.split('.')??[];const last=parts[parts.length-1];const levels=[];// Ip address.
|
2439
|
+
if(parts.length===4&&last&&last===parseInt(last,10).toString()){return levels;}// Localhost.
|
2440
|
+
if(parts.length<=1){// Fix to support localhost
|
2441
|
+
if(parts[0]&&parts[0].indexOf('localhost')!==-1){return ['localhost'];}return levels;}// Create levels.
|
2442
|
+
for(let i=parts.length-2;i>=0;i-=1){levels.push(parts.slice(i).join('.'));}return levels;};/**
|
2443
|
+
* Get the top domain.
|
2444
|
+
*
|
2445
|
+
* The function constructs the levels of domain and attempts to set a global
|
2446
|
+
* cookie on each one when it succeeds it returns the top level domain.
|
2447
|
+
*
|
2448
|
+
* The method returns an empty string when the hostname is an ip.
|
2449
|
+
*/const domain=url=>{const levels=levelsFunc(url);// Lookup the real top level one.
|
2450
|
+
// eslint-disable-next-line unicorn/no-for-loop
|
2451
|
+
for(let i=0;i<levels.length;i+=1){const domain=levels[i];const cname=STORAGE_TEST_TOP_LEVEL_DOMAIN;const opts={domain:`${domain.indexOf('localhost')!==-1?'':'.'}${domain}`};// Set cookie on domain
|
2452
|
+
cookie(cname,1,opts);// If successful
|
2453
|
+
if(cookie(cname)){// Remove cookie from domain
|
2454
|
+
cookie(cname,null,opts);return domain;}}return '';};
|
2455
|
+
|
2456
|
+
const getDefaultCookieOptions=()=>{const topDomain=domain(globalThis.location.href);return {maxage:DEFAULT_COOKIE_MAX_AGE_MS,path:'/',domain:!topDomain||topDomain==='.'?undefined:topDomain,samesite:'Lax',enabled:true};};const getDefaultLocalStorageOptions=()=>({enabled:true});const getDefaultSessionStorageOptions=()=>({enabled:true});const getDefaultInMemoryStorageOptions=()=>({enabled:true});
|
2457
|
+
|
2458
|
+
/**
|
2459
|
+
* A storage utility to persist values in cookies via Storage interface
|
2460
|
+
*/class CookieStorage{static globalSingleton=null;isSupportAvailable=true;isEnabled=true;length=0;constructor(options={},logger){if(CookieStorage.globalSingleton){// eslint-disable-next-line no-constructor-return
|
2461
|
+
return CookieStorage.globalSingleton;}this.options=getDefaultCookieOptions();this.logger=logger;this.configure(options);CookieStorage.globalSingleton=this;}configure(options){this.options=mergeDeepRight(this.options??{},options);if(options.sameDomainCookiesOnly){delete this.options.domain;}this.isSupportAvailable=isStorageAvailable(COOKIE_STORAGE,this,this.logger);this.isEnabled=Boolean(this.options.enabled&&this.isSupportAvailable);return this.options;}setItem(key,value){cookie(key,value,this.options,this.logger);this.length=Object.keys(cookie()).length;return true;}// eslint-disable-next-line class-methods-use-this
|
2462
|
+
getItem(key){const value=cookie(key);return isUndefined(value)?null:value;}removeItem(key){const result=this.setItem(key,null);this.length=Object.keys(cookie()).length;return result;}// eslint-disable-next-line class-methods-use-this
|
2463
|
+
clear(){// Not implemented
|
2464
|
+
// getting a list of all cookie storage keys and remove all values
|
2465
|
+
// sounds risky to do as it will take on all top domain cookies
|
2466
|
+
// better to explicitly clear specific ones if needed
|
2467
|
+
}// This cannot be implemented for cookies
|
2468
|
+
// eslint-disable-next-line class-methods-use-this
|
2469
|
+
key(index){const cookies=cookie();const cookieNames=Object.keys(cookies);return isUndefined(cookieNames[index])?null:cookieNames[index];}}
|
2470
|
+
|
2471
|
+
/**
|
2472
|
+
* A storage utility to retain values in memory via Storage interface
|
2473
|
+
*/class InMemoryStorage{isEnabled=true;length=0;data={};constructor(options,logger){this.options=getDefaultInMemoryStorageOptions();this.logger=logger;this.configure(options??{});}configure(options){this.options=mergeDeepRight(this.options,options);this.isEnabled=Boolean(this.options.enabled);return this.options;}setItem(key,value){this.data[key]=value;this.length=Object.keys(this.data).length;return value;}getItem(key){if(key in this.data){return this.data[key];}return null;}removeItem(key){if(key in this.data){delete this.data[key];}this.length=Object.keys(this.data).length;return null;}clear(){this.data={};this.length=0;}key(index){return Object.keys(this.data)[index]?Object.keys(this.data)[index]:null;}}const defaultInMemoryStorage=new InMemoryStorage({},defaultLogger);
|
2474
|
+
|
2475
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
2476
|
+
|
2477
|
+
function getDefaultExportFromCjs (x) {
|
2478
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
2479
|
+
}
|
2480
|
+
|
2481
|
+
var store$1 = {exports: {}};
|
2482
|
+
|
2483
|
+
(function(module,exports){(function(global,factory){module.exports=factory();})(commonjsGlobal,function(){function isJSON(obj){obj=JSON.stringify(obj);if(!/^\{[\s\S]*\}$/.test(obj)){return false;}return true;}function stringify(val){return val===undefined||typeof val==="function"?val+'':JSON.stringify(val);}function deserialize(value){if(typeof value!=='string'){return undefined;}try{return JSON.parse(value);}catch(e){return value;}}function isFunction(value){return {}.toString.call(value)==="[object Function]";}function isArray(value){return Object.prototype.toString.call(value)==="[object Array]";}// https://github.com/jaywcjlove/store.js/pull/8
|
2484
|
+
// Error: QuotaExceededError
|
2485
|
+
function dealIncognito(storage){var _KEY='_Is_Incognit',_VALUE='yes';try{// NOTE: set default storage when not passed in
|
2486
|
+
if(!storage){storage=window.localStorage;}storage.setItem(_KEY,_VALUE);storage.removeItem(_KEY);}catch(e){var inMemoryStorage={};inMemoryStorage._data={};inMemoryStorage.setItem=function(id,val){return inMemoryStorage._data[id]=String(val);};inMemoryStorage.getItem=function(id){return inMemoryStorage._data.hasOwnProperty(id)?inMemoryStorage._data[id]:undefined;};inMemoryStorage.removeItem=function(id){return delete inMemoryStorage._data[id];};inMemoryStorage.clear=function(){return inMemoryStorage._data={};};storage=inMemoryStorage;}finally{if(storage.getItem(_KEY)===_VALUE)storage.removeItem(_KEY);}return storage;}// deal QuotaExceededError if user use incognito mode in browser
|
2487
|
+
var storage=dealIncognito();function Store(){if(!(this instanceof Store)){return new Store();}}Store.prototype={set:function set(key,val){if(key&&!isJSON(key)){storage.setItem(key,stringify(val));}else if(isJSON(key)){for(var a in key)this.set(a,key[a]);}return this;},get:function get(key){// Return all entries if no key
|
2488
|
+
if(key===undefined){var ret={};this.forEach(function(key,val){return ret[key]=val;});return ret;}if(key.charAt(0)==='?'){return this.has(key.substr(1));}var args=arguments;if(args.length>1){var dt={};for(var i=0,len=args.length;i<len;i++){var value=deserialize(storage.getItem(args[i]));if(this.has(args[i])){dt[args[i]]=value;}}return dt;}return deserialize(storage.getItem(key));},clear:function clear(){storage.clear();return this;},remove:function remove(key){var val=this.get(key);storage.removeItem(key);return val;},has:function has(key){return {}.hasOwnProperty.call(this.get(),key);},keys:function keys(){var d=[];this.forEach(function(k){d.push(k);});return d;},forEach:function forEach(callback){for(var i=0,len=storage.length;i<len;i++){var key=storage.key(i);callback(key,this.get(key));}return this;},search:function search(str){var arr=this.keys(),dt={};for(var i=0,len=arr.length;i<len;i++){if(arr[i].indexOf(str)>-1)dt[arr[i]]=this.get(arr[i]);}return dt;}};var _Store=null;function store(key,data){var argm=arguments;var dt=null;if(!_Store)_Store=Store();if(argm.length===0)return _Store.get();if(argm.length===1){if(typeof key==="string")return _Store.get(key);if(isJSON(key))return _Store.set(key);}if(argm.length===2&&typeof key==="string"){if(!data)return _Store.remove(key);if(data&&typeof data==="string")return _Store.set(key,data);if(data&&isFunction(data)){dt=null;dt=data(key,_Store.get(key));store.set(key,dt);}}if(argm.length===2&&isArray(key)&&isFunction(data)){for(var i=0,len=key.length;i<len;i++){dt=data(key[i],_Store.get(key[i]));store.set(key[i],dt);}}return store;}for(var a in Store.prototype)store[a]=Store.prototype[a];return store;});})(store$1);var storeExports=store$1.exports;const store = /*@__PURE__*/getDefaultExportFromCjs(storeExports);
|
2489
|
+
|
2490
|
+
// check if the get, set overloads and search methods are used at all
|
2491
|
+
// if we do, ensure we provide types to support overloads as per storejs docs
|
2492
|
+
// https://www.npmjs.com/package/storejs
|
2493
|
+
/**
|
2494
|
+
* A storage utility to persist values in localstorage via Storage interface
|
2495
|
+
*/class LocalStorage{isSupportAvailable=true;isEnabled=true;length=0;constructor(options={},logger){this.options=getDefaultLocalStorageOptions();this.logger=logger;this.configure(options);}configure(options){this.options=mergeDeepRight(this.options,options);this.isSupportAvailable=isStorageAvailable(LOCAL_STORAGE,this,this.logger);this.isEnabled=Boolean(this.options.enabled&&this.isSupportAvailable);return this.options;}setItem(key,value){store.set(key,value);this.length=store.keys().length;}// eslint-disable-next-line class-methods-use-this
|
2496
|
+
getItem(key){const value=store.get(key);return isUndefined(value)?null:value;}removeItem(key){store.remove(key);this.length=store.keys().length;}clear(){store.clear();this.length=0;}// eslint-disable-next-line class-methods-use-this
|
2497
|
+
key(index){return store.keys()[index]?store.keys()[index]:null;}}const defaultLocalStorage=new LocalStorage({},defaultLogger);
|
2498
|
+
|
2499
|
+
/**
|
2500
|
+
* A storage utility to persist values in SessionStorage via Storage interface
|
2501
|
+
*/class SessionStorage{isSupportAvailable=true;isEnabled=true;length=0;store=globalThis.sessionStorage;constructor(options={},logger){this.options=getDefaultSessionStorageOptions();this.logger=logger;this.configure(options);}configure(options){this.options=mergeDeepRight(this.options,options);this.isSupportAvailable=isStorageAvailable(SESSION_STORAGE,this,this.logger);this.isEnabled=Boolean(this.options.enabled&&this.isSupportAvailable);return this.options;}setItem(key,value){this.store.setItem(key,value);this.length=this.store.length;}getItem(key){const value=this.store.getItem(key);return isUndefined(value)?null:value;}removeItem(key){this.store.removeItem(key);this.length=this.store.length;}clear(){this.store.clear();this.length=0;}key(index){return this.store.key(index);}}const defaultSessionStorage=new SessionStorage({},defaultLogger);
|
2502
|
+
|
2503
|
+
/**
|
2504
|
+
* A utility to retrieve the storage singleton instance by type
|
2505
|
+
*/const getStorageEngine=type=>{switch(type){case LOCAL_STORAGE:return defaultLocalStorage;case SESSION_STORAGE:return defaultSessionStorage;case MEMORY_STORAGE:return defaultInMemoryStorage;case COOKIE_STORAGE:return new CookieStorage({},defaultLogger);default:return defaultInMemoryStorage;}};/**
|
2506
|
+
* Configure cookie storage singleton
|
2507
|
+
*/const configureCookieStorageEngine=options=>{new CookieStorage({},defaultLogger).configure(options);};/**
|
2508
|
+
* Configure local storage singleton
|
2509
|
+
*/const configureLocalStorageEngine=options=>{defaultLocalStorage.configure(options);};/**
|
2510
|
+
* Configure in memory storage singleton
|
2511
|
+
*/const configureInMemoryStorageEngine=options=>{defaultInMemoryStorage.configure(options);};/**
|
2512
|
+
* Configure session storage singleton
|
2513
|
+
*/const configureSessionStorageEngine=options=>{defaultSessionStorage.configure(options);};/**
|
2514
|
+
* Configure all storage singleton instances
|
2515
|
+
*/const configureStorageEngines=(cookieStorageOptions={},localStorageOptions={},inMemoryStorageOptions={},sessionStorageOptions={})=>{configureCookieStorageEngine(cookieStorageOptions);configureLocalStorageEngine(localStorageOptions);configureInMemoryStorageEngine(inMemoryStorageOptions);configureSessionStorageEngine(sessionStorageOptions);};
|
2516
|
+
|
2517
|
+
/**
|
2518
|
+
* Store Implementation with dedicated storage
|
2519
|
+
*/class Store{hasErrorHandler=false;constructor(config,engine,pluginsManager){this.id=config.id;this.name=config.name;this.isEncrypted=config.isEncrypted??false;this.validKeys=config.validKeys??{};this.engine=engine??getStorageEngine(LOCAL_STORAGE);this.noKeyValidation=Object.keys(this.validKeys).length===0;this.noCompoundKey=config.noCompoundKey;this.originalEngine=this.engine;this.errorHandler=config.errorHandler??defaultErrorHandler;this.hasErrorHandler=Boolean(this.errorHandler);this.logger=config.logger??defaultLogger;this.pluginsManager=pluginsManager;}/**
|
2520
|
+
* Ensure the key is valid and with correct format
|
2521
|
+
*/createValidKey(key){const{name,id,validKeys,noKeyValidation,noCompoundKey}=this;if(noKeyValidation){return noCompoundKey?key:[name,id,key].join('.');}// validate and return undefined if invalid key
|
2522
|
+
let compoundKey;Object.values(validKeys).forEach(validKeyName=>{if(validKeyName===key){compoundKey=noCompoundKey?key:[name,id,key].join('.');}});return compoundKey;}/**
|
2523
|
+
* Switch to inMemoryEngine, bringing any existing data with.
|
2524
|
+
*/swapQueueStoreToInMemoryEngine(){const{name,id,validKeys,noCompoundKey}=this;const inMemoryStorage=getStorageEngine(MEMORY_STORAGE);// grab existing data, but only for this page's queue instance, not all
|
2525
|
+
// better to keep other queues in localstorage to be flushed later
|
2526
|
+
// than to pull them into memory and remove them from durable storage
|
2527
|
+
Object.keys(validKeys).forEach(key=>{const value=this.get(validKeys[key]);const validKey=noCompoundKey?key:[name,id,key].join('.');inMemoryStorage.setItem(validKey,value);// TODO: are we sure we want to drop clientData
|
2528
|
+
// if cookies are not available and localstorage is full?
|
2529
|
+
this.remove(key);});this.engine=inMemoryStorage;}/**
|
2530
|
+
* Set value by key.
|
2531
|
+
*/set(key,value){const validKey=this.createValidKey(key);if(!validKey){return;}try{// storejs that is used in localstorage engine already stringifies json
|
2532
|
+
this.engine.setItem(validKey,this.encrypt(stringifyWithoutCircular(value,false,[],this.logger)));}catch(err){if(isStorageQuotaExceeded(err)){this.logger?.warn(STORAGE_QUOTA_EXCEEDED_WARNING(`Store ${this.id}`));// switch to inMemory engine
|
2533
|
+
this.swapQueueStoreToInMemoryEngine();// and save it there
|
2534
|
+
this.set(key,value);}else {this.onError(getMutatedError(err,STORE_DATA_SAVE_ERROR(key)));}}}/**
|
2535
|
+
* Get by Key.
|
2536
|
+
*/get(key){const validKey=this.createValidKey(key);try{if(!validKey){return null;}const str=this.decrypt(this.engine.getItem(validKey));if(isNullOrUndefined(str)){return null;}// storejs that is used in localstorage engine already deserializes json strings but swallows errors
|
2537
|
+
return JSON.parse(str);}catch(err){this.onError(new Error(`${STORE_DATA_FETCH_ERROR(key)}: ${err.message}`));return null;}}/**
|
2538
|
+
* Remove by Key.
|
2539
|
+
*/remove(key){const validKey=this.createValidKey(key);if(validKey){this.engine.removeItem(validKey);}}/**
|
2540
|
+
* Get original engine
|
2541
|
+
*/getOriginalEngine(){return this.originalEngine;}/**
|
2542
|
+
* Decrypt values
|
2543
|
+
*/decrypt(value){if(isNullOrUndefined(value)){return null;}return this.crypto(value,'decrypt');}/**
|
2544
|
+
* Encrypt value
|
2545
|
+
*/encrypt(value){return this.crypto(value,'encrypt');}/**
|
2546
|
+
* Extension point to use with encryption plugins
|
2547
|
+
*/crypto(value,mode){const noEncryption=!this.isEncrypted||!value||typeof value!=='string'||trim(value)==='';if(noEncryption){return value;}const extensionPointName=`storage.${mode}`;const formattedValue=this.pluginsManager?this.pluginsManager.invokeSingle(extensionPointName,value):value;return typeof formattedValue==='undefined'?value:formattedValue??'';}/**
|
2548
|
+
* Handle errors
|
2549
|
+
*/onError(error){if(this.hasErrorHandler){this.errorHandler?.onError(error,`Store ${this.id}`);}else {throw error;}}}
|
2550
|
+
|
2551
|
+
const getStorageTypeFromPreConsentIfApplicable=(state,sessionKey)=>{let overriddenStorageType;if(state.consents.preConsent.value.enabled){switch(state.consents.preConsent.value.storage?.strategy){case'none':overriddenStorageType=NO_STORAGE;break;case'session':if(sessionKey!=='sessionInfo'){overriddenStorageType=NO_STORAGE;}break;case'anonymousId':if(sessionKey!=='anonymousId'){overriddenStorageType=NO_STORAGE;}break;}}return overriddenStorageType;};
|
2552
|
+
|
2553
|
+
/**
|
2554
|
+
* A service to manage stores & available storage client configurations
|
2555
|
+
*/class StoreManager{stores={};isInitialized=false;hasErrorHandler=false;constructor(pluginsManager,errorHandler,logger){this.errorHandler=errorHandler;this.logger=logger;this.hasErrorHandler=Boolean(this.errorHandler);this.pluginsManager=pluginsManager;this.onError=this.onError.bind(this);}/**
|
2556
|
+
* Configure available storage client instances
|
2557
|
+
*/init(){if(this.isInitialized){return;}const loadOptions=state.loadOptions.value;const config={cookieStorageOptions:{samesite:loadOptions.sameSiteCookie,secure:loadOptions.secureCookie,domain:loadOptions.setCookieDomain,sameDomainCookiesOnly:loadOptions.sameDomainCookiesOnly,enabled:true},localStorageOptions:{enabled:true},inMemoryStorageOptions:{enabled:true},sessionStorageOptions:{enabled:true}};configureStorageEngines(removeUndefinedValues(mergeDeepRight(config.cookieStorageOptions??{},state.storage.cookie?.value??{})),removeUndefinedValues(config.localStorageOptions),removeUndefinedValues(config.inMemoryStorageOptions),removeUndefinedValues(config.sessionStorageOptions));this.initClientDataStores();this.isInitialized=true;}/**
|
2558
|
+
* Create store to persist data used by the SDK like session, used details etc
|
2559
|
+
*/initClientDataStores(){this.initializeStorageState();// TODO: fill in extra config values and bring them in from StoreManagerOptions if needed
|
2560
|
+
// TODO: should we pass the keys for all in order to validate or leave free as v1.1?
|
2561
|
+
// Initializing all the enabled store because previous user data might be in different storage
|
2562
|
+
// that needs auto migration
|
2563
|
+
const storageTypes=[MEMORY_STORAGE,LOCAL_STORAGE,COOKIE_STORAGE,SESSION_STORAGE];storageTypes.forEach(storageType=>{if(getStorageEngine(storageType)?.isEnabled){this.setStore({id:storageClientDataStoreNameMap[storageType],name:storageClientDataStoreNameMap[storageType],isEncrypted:true,noCompoundKey:true,type:storageType});}});}initializeStorageState(){let globalStorageType=state.storage.type.value;let entriesOptions=state.loadOptions.value.storage?.entries;// Use the storage options from post consent if anything is defined
|
2564
|
+
const postConsentStorageOpts=state.consents.postConsent.value.storage;if(isDefined(postConsentStorageOpts?.type)||isDefined(postConsentStorageOpts?.entries)){globalStorageType=postConsentStorageOpts?.type;entriesOptions=postConsentStorageOpts?.entries;}let trulyAnonymousTracking=true;let storageEntries={};USER_SESSION_KEYS.forEach(sessionKey=>{const key=sessionKey;const storageKey=sessionKey;const configuredStorageType=entriesOptions?.[key]?.type;const preConsentStorageType=getStorageTypeFromPreConsentIfApplicable(state,sessionKey);// Storage type precedence order: pre-consent strategy > entry type > global type > default
|
2565
|
+
const storageType=preConsentStorageType??configuredStorageType??globalStorageType??DEFAULT_STORAGE_TYPE;const finalStorageType=this.getResolvedStorageTypeForEntry(storageType,sessionKey);if(finalStorageType!==NO_STORAGE){trulyAnonymousTracking=false;}storageEntries={...storageEntries,[sessionKey]:{type:finalStorageType,key:USER_SESSION_STORAGE_KEYS[storageKey]}};});n(()=>{state.storage.type.value=globalStorageType;state.storage.entries.value=storageEntries;state.storage.trulyAnonymousTracking.value=trulyAnonymousTracking;});}getResolvedStorageTypeForEntry(storageType,sessionKey){let finalStorageType=storageType;switch(storageType){case LOCAL_STORAGE:if(!getStorageEngine(LOCAL_STORAGE)?.isEnabled){finalStorageType=MEMORY_STORAGE;}break;case SESSION_STORAGE:if(!getStorageEngine(SESSION_STORAGE)?.isEnabled){finalStorageType=MEMORY_STORAGE;}break;case MEMORY_STORAGE:case NO_STORAGE:break;case COOKIE_STORAGE:default:// First try setting the storage to cookie else to local storage
|
2566
|
+
if(getStorageEngine(COOKIE_STORAGE)?.isEnabled){finalStorageType=COOKIE_STORAGE;}else if(getStorageEngine(LOCAL_STORAGE)?.isEnabled){finalStorageType=LOCAL_STORAGE;}else if(getStorageEngine(SESSION_STORAGE)?.isEnabled){finalStorageType=SESSION_STORAGE;}else {finalStorageType=MEMORY_STORAGE;}break;}if(finalStorageType!==storageType){this.logger?.warn(STORAGE_UNAVAILABLE_WARNING(STORE_MANAGER,sessionKey,storageType,finalStorageType));}return finalStorageType;}/**
|
2567
|
+
* Create a new store
|
2568
|
+
*/setStore(storeConfig){const storageEngine=getStorageEngine(storeConfig.type);this.stores[storeConfig.id]=new Store(storeConfig,storageEngine,this.pluginsManager);return this.stores[storeConfig.id];}/**
|
2569
|
+
* Retrieve a store
|
2570
|
+
*/getStore(id){return this.stores[id];}/**
|
2571
|
+
* Handle errors
|
2572
|
+
*/onError(error){if(this.hasErrorHandler){this.errorHandler?.onError(error,STORE_MANAGER);}else {throw error;}}}
|
2573
|
+
|
2574
|
+
/**
|
2575
|
+
* Removes trailing slash from url
|
2576
|
+
* @param url
|
2577
|
+
* @returns url
|
2578
|
+
*/const removeTrailingSlashes=url=>url&&url.endsWith('/')?removeTrailingSlashes(url.substring(0,url.length-1)):url;/**
|
2579
|
+
* Checks if provided url is valid or not
|
2580
|
+
* @param url
|
2581
|
+
* @returns true if `url` is valid and false otherwise
|
2582
|
+
*/const isValidUrl=url=>{try{const validUrl=new URL(url);return Boolean(validUrl);}catch(err){return false;}};/**
|
2583
|
+
* Get the referring domain from the referrer URL
|
2584
|
+
* @param referrer Page referrer
|
2585
|
+
* @returns Page referring domain
|
2586
|
+
*/const getReferringDomain=referrer=>{let referringDomain='';try{const url=new URL(referrer);referringDomain=url.host;}catch(error){// Do nothing
|
2587
|
+
}return referringDomain;};/**
|
2588
|
+
* Extracts UTM parameters from the URL
|
2589
|
+
* @param url Page URL
|
2590
|
+
* @returns UTM parameters
|
2591
|
+
*/const extractUTMParameters=url=>{const result={};try{const urlObj=new URL(url);const UTM_PREFIX='utm_';urlObj.searchParams.forEach((value,sParam)=>{if(sParam.startsWith(UTM_PREFIX)){let utmParam=sParam.substring(UTM_PREFIX.length);// Not sure why we're doing this
|
2592
|
+
if(utmParam==='campaign'){utmParam='name';}result[utmParam]=value;}});}catch(error){// Do nothing
|
2593
|
+
}return result;};/**
|
2594
|
+
* To get the URL until the hash
|
2595
|
+
* @param url The input URL
|
2596
|
+
* @returns URL until the hash
|
2597
|
+
*/const getUrlWithoutHash=url=>{let urlWithoutHash=url;try{const urlObj=new URL(url);urlWithoutHash=urlObj.origin+urlObj.pathname+urlObj.search;}catch(error){// Do nothing
|
2598
|
+
}return urlWithoutHash;};
|
2599
|
+
|
2600
|
+
const validateWriteKey=writeKey=>{if(!isString(writeKey)||writeKey.trim().length===0){throw new Error(WRITE_KEY_VALIDATION_ERROR(writeKey));}};const validateDataPlaneUrl=dataPlaneUrl=>{if(dataPlaneUrl&&!isValidUrl(dataPlaneUrl)){throw new Error(DATA_PLANE_URL_VALIDATION_ERROR(dataPlaneUrl));}};const validateLoadArgs=(writeKey,dataPlaneUrl)=>{validateWriteKey(writeKey);validateDataPlaneUrl(dataPlaneUrl);};const isValidSourceConfig=res=>isObjectLiteralAndNotNull(res)&&isObjectLiteralAndNotNull(res.source)&&!isNullOrUndefined(res.source.id)&&isObjectLiteralAndNotNull(res.source.config)&&Array.isArray(res.source.destinations);const isValidStorageType=storageType=>typeof storageType==='string'&&SUPPORTED_STORAGE_TYPES.includes(storageType);
|
2601
|
+
|
2602
|
+
/**
|
2603
|
+
* Plugins to be loaded in the plugins loadOption is not defined
|
2604
|
+
*/const defaultOptionalPluginsList=['BeaconQueue','Bugsnag','CustomConsentManager','DeviceModeDestinations','DeviceModeTransformation','ErrorReporting','ExternalAnonymousId','GoogleLinker','KetchConsentManager','NativeDestinationQueue','OneTrustConsentManager','StorageEncryption','StorageEncryptionLegacy','StorageMigrator','XhrQueue'];
|
2605
|
+
|
2606
|
+
/**
|
2607
|
+
* A function to check given value is a number or not
|
2608
|
+
* @param num input value
|
2609
|
+
* @returns boolean
|
2610
|
+
*/const isNumber=num=>typeof num==='number'&&!Number.isNaN(num);/**
|
2611
|
+
* A function to check given number has minimum length or not
|
2612
|
+
* @param minimumLength minimum length
|
2613
|
+
* @param num input number
|
2614
|
+
* @returns boolean
|
2615
|
+
*/const hasMinLength=(minimumLength,num)=>num.toString().length>=minimumLength;/**
|
2616
|
+
* A function to check given value is a positive integer or not
|
2617
|
+
* @param num input value
|
2618
|
+
* @returns boolean
|
2619
|
+
*/const isPositiveInteger=num=>isNumber(num)&&num>=0&&Number.isInteger(num);
|
2620
|
+
|
2621
|
+
const normalizeLoadOptions=(loadOptionsFromState,loadOptions)=>{// TODO: Maybe add warnings for invalid values
|
2622
|
+
const normalizedLoadOpts=clone(loadOptions);if(!isString(normalizedLoadOpts.setCookieDomain)){delete normalizedLoadOpts.setCookieDomain;}const cookieSameSiteValues=['Strict','Lax','None'];if(!cookieSameSiteValues.includes(normalizedLoadOpts.sameSiteCookie)){delete normalizedLoadOpts.sameSiteCookie;}normalizedLoadOpts.secureCookie=normalizedLoadOpts.secureCookie===true;const uaChTrackLevels=['none','default','full'];if(!uaChTrackLevels.includes(normalizedLoadOpts.uaChTrackLevel)){delete normalizedLoadOpts.uaChTrackLevel;}if(!isObjectLiteralAndNotNull(normalizedLoadOpts.integrations)){delete normalizedLoadOpts.integrations;}normalizedLoadOpts.plugins=normalizedLoadOpts.plugins??defaultOptionalPluginsList;normalizedLoadOpts.useGlobalIntegrationsConfigInEvents=normalizedLoadOpts.useGlobalIntegrationsConfigInEvents===true;normalizedLoadOpts.bufferDataPlaneEventsUntilReady=normalizedLoadOpts.bufferDataPlaneEventsUntilReady===true;normalizedLoadOpts.sendAdblockPage=normalizedLoadOpts.sendAdblockPage===true;if(!isObjectLiteralAndNotNull(normalizedLoadOpts.sendAdblockPageOptions)){delete normalizedLoadOpts.sendAdblockPageOptions;}if(!isDefined(normalizedLoadOpts.loadIntegration)){delete normalizedLoadOpts.loadIntegration;}else {normalizedLoadOpts.loadIntegration=normalizedLoadOpts.loadIntegration===true;}if(!isObjectLiteralAndNotNull(normalizedLoadOpts.storage)){delete normalizedLoadOpts.storage;}else {normalizedLoadOpts.storage=removeUndefinedAndNullValues(normalizedLoadOpts.storage);normalizedLoadOpts.storage.migrate=normalizedLoadOpts.storage?.migrate===true;}if(!isObjectLiteralAndNotNull(normalizedLoadOpts.beaconQueueOptions)){delete normalizedLoadOpts.beaconQueueOptions;}else {normalizedLoadOpts.beaconQueueOptions=removeUndefinedAndNullValues(normalizedLoadOpts.beaconQueueOptions);}if(!isObjectLiteralAndNotNull(normalizedLoadOpts.destinationsQueueOptions)){delete normalizedLoadOpts.destinationsQueueOptions;}else {normalizedLoadOpts.destinationsQueueOptions=removeUndefinedAndNullValues(normalizedLoadOpts.destinationsQueueOptions);}if(!isObjectLiteralAndNotNull(normalizedLoadOpts.queueOptions)){delete normalizedLoadOpts.queueOptions;}else {normalizedLoadOpts.queueOptions=removeUndefinedAndNullValues(normalizedLoadOpts.queueOptions);}normalizedLoadOpts.lockIntegrationsVersion=normalizedLoadOpts.lockIntegrationsVersion===true;if(!isNumber(normalizedLoadOpts.dataPlaneEventsBufferTimeout)){delete normalizedLoadOpts.dataPlaneEventsBufferTimeout;}if(!isObjectLiteralAndNotNull(normalizedLoadOpts.storage?.cookie)){delete normalizedLoadOpts.storage?.cookie;}else {normalizedLoadOpts.storage.cookie=removeUndefinedAndNullValues(normalizedLoadOpts.storage?.cookie);}if(!isObjectLiteralAndNotNull(normalizedLoadOpts.preConsent)){delete normalizedLoadOpts.preConsent;}else {normalizedLoadOpts.preConsent=removeUndefinedAndNullValues(normalizedLoadOpts.preConsent);}const mergedLoadOptions=mergeDeepRight(loadOptionsFromState,normalizedLoadOpts);return mergedLoadOptions;};const getSourceConfigURL=(configUrl,writeKey,lockIntegrationsVersion,logger)=>{const defSearchParams=new URLSearchParams({p:MODULE_TYPE,v:APP_VERSION,build:BUILD_TYPE,writeKey,lockIntegrationsVersion:lockIntegrationsVersion.toString()});let origin=DEFAULT_CONFIG_BE_URL;let searchParams=defSearchParams;let pathname='/sourceConfig/';let hash='';// Ideally, this check is not required but URL polyfill
|
2623
|
+
// doesn't seem to throw errors for empty URLs
|
2624
|
+
// TODO: Need to improve this check to find out if the URL is valid or not
|
2625
|
+
if(configUrl){try{const configUrlInstance=new URL(configUrl);if(!removeTrailingSlashes(configUrlInstance.pathname).endsWith('/sourceConfig')){configUrlInstance.pathname=`${removeTrailingSlashes(configUrlInstance.pathname)}/sourceConfig/`;}configUrlInstance.pathname=removeDuplicateSlashes(configUrlInstance.pathname);defSearchParams.forEach((value,key)=>{if(configUrlInstance.searchParams.get(key)===null){configUrlInstance.searchParams.set(key,value);}});origin=configUrlInstance.origin;pathname=configUrlInstance.pathname;searchParams=configUrlInstance.searchParams;hash=configUrlInstance.hash;}catch(err){logger?.warn(INVALID_CONFIG_URL_WARNING(CONFIG_MANAGER,configUrl));}}return `${origin}${pathname}?${searchParams}${hash}`;};
|
2626
|
+
|
2627
|
+
/**
|
2628
|
+
* A function to filter enabled destinations and map to required properties only
|
2629
|
+
* @param destinations
|
2630
|
+
*
|
2631
|
+
* @returns Destination[]
|
2632
|
+
*/const filterEnabledDestination=destinations=>{const nativeDestinations=[];destinations.forEach(destination=>{if(destination.enabled&&!destination.deleted){nativeDestinations.push({id:destination.id,displayName:destination.destinationDefinition.displayName,config:destination.config,shouldApplyDeviceModeTransformation:destination.shouldApplyDeviceModeTransformation||false,propagateEventsUntransformedOnError:destination.propagateEventsUntransformedOnError||false,userFriendlyId:`${destination.destinationDefinition.displayName.replaceAll(' ','-')}___${destination.id}`});}});return nativeDestinations;};
|
2633
|
+
|
2634
|
+
const DEFAULT_REGION='US';/**
|
2635
|
+
* A function to get url from source config response
|
2636
|
+
* @param {array} urls An array of objects containing urls
|
2637
|
+
* @returns
|
2638
|
+
*/const getDefaultUrlOfRegion=urls=>{let url;if(Array.isArray(urls)&&urls.length>0){const obj=urls.find(elem=>elem.default===true);if(obj&&isValidUrl(obj.url)){return obj.url;}}return url;};const validateResidencyServerRegion=(residencyServerRegion,logger)=>{const residencyServerRegions=['US','EU'];if(residencyServerRegion&&!residencyServerRegions.includes(residencyServerRegion)){logger?.warn(UNSUPPORTED_RESIDENCY_SERVER_REGION_WARNING(CONFIG_MANAGER,residencyServerRegion,DEFAULT_REGION));return undefined;}return residencyServerRegion;};/**
|
2639
|
+
* A function to determine the dataPlaneUrl
|
2640
|
+
* @param {Object} dataplanes An object containing dataPlaneUrl for different region
|
2641
|
+
* @param {String} serverUrl dataPlaneUrl provided in the load call
|
2642
|
+
* @param {String} residencyServerRegion User provided residency server region
|
2643
|
+
* @param {Logger} logger logger instance
|
2644
|
+
* @returns The data plane URL string to use
|
2645
|
+
*/const resolveDataPlaneUrl=(dataplanes,serverUrl,residencyServerRegion,logger)=>{// Check if dataPlanes object is present in source config
|
2646
|
+
if(dataplanes&&Object.keys(dataplanes).length>0){const region=validateResidencyServerRegion(residencyServerRegion,logger)??DEFAULT_REGION;const regionUrlArr=dataplanes[region]||dataplanes[DEFAULT_REGION];const defaultUrl=getDefaultUrlOfRegion(regionUrlArr);if(defaultUrl){return defaultUrl;}}// return the dataPlaneUrl provided in load API(if available)
|
2647
|
+
if(serverUrl){return serverUrl;}// return undefined if data plane url can not be determined
|
2648
|
+
return undefined;};
|
2649
|
+
|
2650
|
+
/**
|
2651
|
+
* Determines if the SDK is running inside a chrome extension
|
2652
|
+
* @returns boolean
|
2653
|
+
*/const isSDKRunningInChromeExtension=()=>!!(window.chrome&&window.chrome.runtime&&window.chrome.runtime.id);
|
2654
|
+
|
2655
|
+
const DEFAULT_PRE_CONSENT_STORAGE_STRATEGY='none';const DEFAULT_PRE_CONSENT_EVENTS_DELIVERY_TYPE='immediate';
|
2656
|
+
|
2657
|
+
const isErrorReportingEnabled=sourceConfig=>sourceConfig?.statsCollection?.errors?.enabled===true;const getErrorReportingProviderNameFromConfig=sourceConfig=>sourceConfig?.statsCollection?.errors?.provider;const isMetricsReportingEnabled=sourceConfig=>sourceConfig?.statsCollection?.metrics?.enabled===true;
|
2658
|
+
|
2659
|
+
/**
|
2660
|
+
* Validates and normalizes the consent options provided by the user
|
2661
|
+
* @param options Consent options provided by the user
|
2662
|
+
* @returns Validated and normalized consent options
|
2663
|
+
*/const getValidPostConsentOptions=options=>{const validOptions={sendPageEvent:false,trackConsent:false,discardPreConsentEvents:false};if(isObjectLiteralAndNotNull(options)){const clonedOptions=clone(options);validOptions.storage=clonedOptions.storage;if(isDefined(clonedOptions.integrations)){validOptions.integrations=isObjectLiteralAndNotNull(clonedOptions.integrations)?clonedOptions.integrations:DEFAULT_INTEGRATIONS_CONFIG;}validOptions.discardPreConsentEvents=clonedOptions.discardPreConsentEvents===true;validOptions.sendPageEvent=clonedOptions.sendPageEvent===true;validOptions.trackConsent=clonedOptions.trackConsent===true;if(isNonEmptyObject(clonedOptions.consentManagement)){// Override enabled value with the current state value
|
2664
|
+
validOptions.consentManagement=mergeDeepRight(clonedOptions.consentManagement,{enabled:state.consents.enabled.value});}}return validOptions;};/**
|
2665
|
+
* Validates if the input is a valid consents data
|
2666
|
+
* @param value Input consents data
|
2667
|
+
* @returns true if the input is a valid consents data else false
|
2668
|
+
*/const isValidConsentsData=value=>isNonEmptyObject(value)||Array.isArray(value);/**
|
2669
|
+
* Retrieves the corresponding provider and plugin name of the selected consent manager from the supported consent managers
|
2670
|
+
* @param consentManagementOpts consent management options
|
2671
|
+
* @param logger logger instance
|
2672
|
+
* @returns Corresponding provider and plugin name of the selected consent manager from the supported consent managers
|
2673
|
+
*/const getConsentManagerInfo=(consentManagementOpts,logger)=>{let{provider}=consentManagementOpts;const consentManagerPluginName=ConsentManagersToPluginNameMap[provider];if(provider&&!consentManagerPluginName){logger?.error(UNSUPPORTED_CONSENT_MANAGER_ERROR(CONFIG_MANAGER,provider,ConsentManagersToPluginNameMap));// Reset the provider value
|
2674
|
+
provider=undefined;}return {provider,consentManagerPluginName};};/**
|
2675
|
+
* Validates and converts the consent management options into a normalized format
|
2676
|
+
* @param consentManagementOpts Consent management options provided by the user
|
2677
|
+
* @param logger logger instance
|
2678
|
+
* @returns An object containing the consent manager plugin name, initialized, enabled and consents data
|
2679
|
+
*/const getConsentManagementData=(consentManagementOpts,logger)=>{let consentManagerPluginName;let allowedConsentIds=[];let deniedConsentIds=[];let initialized=false;let provider;let enabled=consentManagementOpts?.enabled===true;if(isNonEmptyObject(consentManagementOpts)&&enabled){// Get the corresponding plugin name of the selected consent manager from the supported consent managers
|
2680
|
+
({provider,consentManagerPluginName}=getConsentManagerInfo(consentManagementOpts,logger));if(isValidConsentsData(consentManagementOpts.allowedConsentIds)){allowedConsentIds=consentManagementOpts.allowedConsentIds;initialized=true;}if(isValidConsentsData(consentManagementOpts.deniedConsentIds)){deniedConsentIds=consentManagementOpts.deniedConsentIds;initialized=true;}}const consentsData={allowedConsentIds,deniedConsentIds};// Enable consent management only if consent manager is supported
|
2681
|
+
enabled=enabled&&Boolean(consentManagerPluginName);return {provider,consentManagerPluginName,initialized,enabled,consentsData};};
|
2682
|
+
|
2683
|
+
/**
|
2684
|
+
* Determines the SDK url
|
2685
|
+
* @returns sdkURL
|
2686
|
+
*/const getSDKUrl=()=>{const scripts=document.getElementsByTagName('script');let sdkURL;const scriptList=Array.prototype.slice.call(scripts);scriptList.some(script=>{const curScriptSrc=removeTrailingSlashes(script.getAttribute('src'));if(curScriptSrc){const urlMatches=curScriptSrc.match(/^.*rsa?(\.min)?\.js$/);if(urlMatches){sdkURL=curScriptSrc;return true;}}return false;});return sdkURL;};/**
|
2687
|
+
* Updates the reporting state variables from the source config data
|
2688
|
+
* @param res Source config
|
2689
|
+
* @param logger Logger instance
|
2690
|
+
*/const updateReportingState=(res,logger)=>{state.reporting.isErrorReportingEnabled.value=isErrorReportingEnabled(res.source.config)&&!isSDKRunningInChromeExtension();state.reporting.isMetricsReportingEnabled.value=isMetricsReportingEnabled(res.source.config);if(state.reporting.isErrorReportingEnabled.value){const errReportingProvider=getErrorReportingProviderNameFromConfig(res.source.config);// Get the corresponding plugin name of the selected error reporting provider from the supported error reporting providers
|
2691
|
+
const errReportingProviderPlugin=errReportingProvider?ErrorReportingProvidersToPluginNameMap[errReportingProvider]:undefined;if(!isUndefined(errReportingProvider)&&!errReportingProviderPlugin){// set the default error reporting provider
|
2692
|
+
logger?.warn(UNSUPPORTED_ERROR_REPORTING_PROVIDER_WARNING(CONFIG_MANAGER,errReportingProvider,ErrorReportingProvidersToPluginNameMap,DEFAULT_ERROR_REPORTING_PROVIDER));}state.reporting.errorReportingProviderPluginName.value=errReportingProviderPlugin??ErrorReportingProvidersToPluginNameMap[DEFAULT_ERROR_REPORTING_PROVIDER];}};const updateStorageStateFromLoadOptions=logger=>{const storageOptsFromLoad=state.loadOptions.value.storage;let storageType=storageOptsFromLoad?.type;if(isDefined(storageType)&&!isValidStorageType(storageType)){logger?.warn(STORAGE_TYPE_VALIDATION_WARNING(CONFIG_MANAGER,storageType,DEFAULT_STORAGE_TYPE));storageType=DEFAULT_STORAGE_TYPE;}let storageEncryptionVersion=storageOptsFromLoad?.encryption?.version;const encryptionPluginName=storageEncryptionVersion&&StorageEncryptionVersionsToPluginNameMap[storageEncryptionVersion];if(!isUndefined(storageEncryptionVersion)&&isUndefined(encryptionPluginName)){// set the default encryption plugin
|
2693
|
+
logger?.warn(UNSUPPORTED_STORAGE_ENCRYPTION_VERSION_WARNING(CONFIG_MANAGER,storageEncryptionVersion,StorageEncryptionVersionsToPluginNameMap,DEFAULT_STORAGE_ENCRYPTION_VERSION));storageEncryptionVersion=DEFAULT_STORAGE_ENCRYPTION_VERSION;}else if(isUndefined(storageEncryptionVersion)){storageEncryptionVersion=DEFAULT_STORAGE_ENCRYPTION_VERSION;}// Allow migration only if the configured encryption version is the default encryption version
|
2694
|
+
const configuredMigrationValue=storageOptsFromLoad?.migrate;const finalMigrationVal=configuredMigrationValue&&storageEncryptionVersion===DEFAULT_STORAGE_ENCRYPTION_VERSION;if(configuredMigrationValue===true&&finalMigrationVal!==configuredMigrationValue){logger?.warn(STORAGE_DATA_MIGRATION_OVERRIDE_WARNING(CONFIG_MANAGER,storageEncryptionVersion,DEFAULT_STORAGE_ENCRYPTION_VERSION));}n(()=>{state.storage.type.value=storageType;state.storage.cookie.value=storageOptsFromLoad?.cookie;state.storage.encryptionPluginName.value=StorageEncryptionVersionsToPluginNameMap[storageEncryptionVersion];state.storage.migrate.value=finalMigrationVal;});};const updateConsentsStateFromLoadOptions=logger=>{const{provider,consentManagerPluginName,initialized,enabled,consentsData}=getConsentManagementData(state.loadOptions.value.consentManagement,logger);// Pre-consent
|
2695
|
+
const preConsentOpts=state.loadOptions.value.preConsent;let storageStrategy=preConsentOpts?.storage?.strategy??DEFAULT_PRE_CONSENT_STORAGE_STRATEGY;const StorageStrategies=['none','session','anonymousId'];if(isDefined(storageStrategy)&&!StorageStrategies.includes(storageStrategy)){storageStrategy=DEFAULT_PRE_CONSENT_STORAGE_STRATEGY;logger?.warn(UNSUPPORTED_PRE_CONSENT_STORAGE_STRATEGY(CONFIG_MANAGER,preConsentOpts?.storage?.strategy,DEFAULT_PRE_CONSENT_STORAGE_STRATEGY));}let eventsDeliveryType=preConsentOpts?.events?.delivery??DEFAULT_PRE_CONSENT_EVENTS_DELIVERY_TYPE;const deliveryTypes=['immediate','buffer'];if(isDefined(eventsDeliveryType)&&!deliveryTypes.includes(eventsDeliveryType)){eventsDeliveryType=DEFAULT_PRE_CONSENT_EVENTS_DELIVERY_TYPE;logger?.warn(UNSUPPORTED_PRE_CONSENT_EVENTS_DELIVERY_TYPE(CONFIG_MANAGER,preConsentOpts?.events?.delivery,DEFAULT_PRE_CONSENT_EVENTS_DELIVERY_TYPE));}n(()=>{state.consents.activeConsentManagerPluginName.value=consentManagerPluginName;state.consents.initialized.value=initialized;state.consents.enabled.value=enabled;state.consents.data.value=consentsData;state.consents.provider.value=provider;state.consents.preConsent.value={// Only enable pre-consent if it is explicitly enabled and
|
2696
|
+
// if it is not already initialized and
|
2697
|
+
// if consent management is enabled
|
2698
|
+
enabled:state.loadOptions.value.preConsent?.enabled===true&&initialized===false&&enabled===true,storage:{strategy:storageStrategy},events:{delivery:eventsDeliveryType}};});};/**
|
2699
|
+
* Determines the consent management state variables from the source config data
|
2700
|
+
* @param resp Source config response
|
2701
|
+
* @param logger Logger instance
|
2702
|
+
*/const updateConsentsState=resp=>{let resolutionStrategy=state.consents.resolutionStrategy.value;let cmpMetadata;if(isObjectLiteralAndNotNull(resp.consentManagementMetadata)){if(state.consents.provider.value){resolutionStrategy=resp.consentManagementMetadata.providers.find(p=>p.provider===state.consents.provider.value)?.resolutionStrategy??state.consents.resolutionStrategy.value;}cmpMetadata=resp.consentManagementMetadata;}// If the provider is custom, then the resolution strategy is not applicable
|
2703
|
+
if(state.consents.provider.value==='custom'){resolutionStrategy=undefined;}n(()=>{state.consents.metadata.value=clone(cmpMetadata);state.consents.resolutionStrategy.value=resolutionStrategy;});};
|
2704
|
+
|
2705
|
+
/**
|
2706
|
+
* A function that determines integration SDK loading path
|
2707
|
+
* @param requiredVersion
|
2708
|
+
* @param lockIntegrationsVersion
|
2709
|
+
* @param customIntegrationsCDNPath
|
2710
|
+
* @returns
|
2711
|
+
*/const getIntegrationsCDNPath=(requiredVersion,lockIntegrationsVersion,customIntegrationsCDNPath)=>{let integrationsCDNPath='';// Get the CDN base URL from the user provided URL if any
|
2712
|
+
if(customIntegrationsCDNPath){integrationsCDNPath=removeTrailingSlashes(customIntegrationsCDNPath);if(!integrationsCDNPath||integrationsCDNPath&&!isValidUrl(integrationsCDNPath)){throw new Error(INTG_CDN_BASE_URL_ERROR);}return integrationsCDNPath;}// Get the base path from the SDK script tag src attribute or use the default path
|
2713
|
+
const sdkURL=getSDKUrl();integrationsCDNPath=sdkURL&&isString(sdkURL)?sdkURL.split('/').slice(0,-1).concat(CDN_INT_DIR).join('/'):DEST_SDK_BASE_URL;// If version is not locked it will always get the latest version of the integrations
|
2714
|
+
if(lockIntegrationsVersion){integrationsCDNPath=integrationsCDNPath.replace(CDN_ARCH_VERSION_DIR,requiredVersion);}return integrationsCDNPath;};/**
|
2715
|
+
* A function that determines plugins SDK loading path
|
2716
|
+
* @param customPluginsCDNPath
|
2717
|
+
* @returns
|
2718
|
+
*/const getPluginsCDNPath=customPluginsCDNPath=>{let pluginsCDNPath='';// Get the CDN base URL from the user provided URL if any
|
2719
|
+
if(customPluginsCDNPath){pluginsCDNPath=removeTrailingSlashes(customPluginsCDNPath);if(!pluginsCDNPath||pluginsCDNPath&&!isValidUrl(pluginsCDNPath)){throw new Error(PLUGINS_CDN_BASE_URL_ERROR);}return pluginsCDNPath;}// Get the base path from the SDK script tag src attribute or use the default path
|
2720
|
+
const sdkURL=getSDKUrl();pluginsCDNPath=sdkURL&&isString(sdkURL)?sdkURL.split('/').slice(0,-1).concat(CDN_PLUGINS_DIR).join('/'):PLUGINS_BASE_URL;return pluginsCDNPath;};
|
2721
|
+
|
2722
|
+
class ConfigManager{hasErrorHandler=false;constructor(httpClient,errorHandler,logger){this.errorHandler=errorHandler;this.logger=logger;this.httpClient=httpClient;this.hasErrorHandler=Boolean(this.errorHandler);this.onError=this.onError.bind(this);this.processConfig=this.processConfig.bind(this);}attachEffects(){O(()=>{this.logger?.setMinLogLevel(state.lifecycle.logLevel.value);});}/**
|
2723
|
+
* A function to validate, construct and store loadOption, lifecycle, source and destination
|
2724
|
+
* config related information in global state
|
2725
|
+
*/init(){this.attachEffects();validateLoadArgs(state.lifecycle.writeKey.value,state.lifecycle.dataPlaneUrl.value);const lockIntegrationsVersion=state.loadOptions.value.lockIntegrationsVersion;// determine the path to fetch integration SDK from
|
2726
|
+
const intgCdnUrl=getIntegrationsCDNPath(APP_VERSION,lockIntegrationsVersion,state.loadOptions.value.destSDKBaseURL);// determine the path to fetch remote plugins from
|
2727
|
+
const pluginsCDNPath=getPluginsCDNPath(state.loadOptions.value.pluginsSDKBaseURL);updateStorageStateFromLoadOptions(this.logger);updateConsentsStateFromLoadOptions(this.logger);// set application lifecycle state in global state
|
2728
|
+
n(()=>{state.lifecycle.integrationsCDNPath.value=intgCdnUrl;state.lifecycle.pluginsCDNPath.value=pluginsCDNPath;if(state.loadOptions.value.logLevel){state.lifecycle.logLevel.value=state.loadOptions.value.logLevel;}state.lifecycle.sourceConfigUrl.value=getSourceConfigURL(state.loadOptions.value.configUrl,state.lifecycle.writeKey.value,lockIntegrationsVersion,this.logger);});this.getConfig();}/**
|
2729
|
+
* Handle errors
|
2730
|
+
*/onError(error,customMessage,shouldAlwaysThrow){if(this.hasErrorHandler){this.errorHandler?.onError(error,CONFIG_MANAGER,customMessage,shouldAlwaysThrow);}else {throw error;}}/**
|
2731
|
+
* A callback function that is executed once we fetch the source config response.
|
2732
|
+
* Use to construct and store information that are dependent on the sourceConfig.
|
2733
|
+
*/processConfig(response,details){// TODO: add retry logic with backoff based on rejectionDetails.xhr.status
|
2734
|
+
// We can use isErrRetryable utility method
|
2735
|
+
if(!response){this.onError(SOURCE_CONFIG_FETCH_ERROR(details?.error));return;}let res;try{if(isString(response)){res=JSON.parse(response);}else {res=response;}}catch(err){this.onError(err,SOURCE_CONFIG_RESOLUTION_ERROR,true);return;}if(!isValidSourceConfig(res)){this.onError(new Error(SOURCE_CONFIG_RESOLUTION_ERROR),undefined,true);return;}// set the values in state for reporting slice
|
2736
|
+
updateReportingState(res,this.logger);// determine the dataPlane url
|
2737
|
+
const dataPlaneUrl=resolveDataPlaneUrl(res.source.dataplanes,state.lifecycle.dataPlaneUrl.value,state.loadOptions.value.residencyServer,this.logger);if(!dataPlaneUrl){this.onError(new Error(DATA_PLANE_URL_ERROR),undefined,true);return;}const nativeDestinations=res.source.destinations.length>0?filterEnabledDestination(res.source.destinations):[];// set in the state --> source, destination, lifecycle, reporting
|
2738
|
+
n(()=>{// set source related information in state
|
2739
|
+
state.source.value={config:res.source.config,id:res.source.id};// set device mode destination related information in state
|
2740
|
+
state.nativeDestinations.configuredDestinations.value=nativeDestinations;// set the desired optional plugins
|
2741
|
+
state.plugins.pluginsToLoadFromConfig.value=state.loadOptions.value.plugins??[];updateConsentsState(res);// set application lifecycle state
|
2742
|
+
// Cast to string as we are sure that the value is not undefined
|
2743
|
+
state.lifecycle.activeDataplaneUrl.value=removeTrailingSlashes(dataPlaneUrl);state.lifecycle.status.value='configured';});}/**
|
2744
|
+
* A function to fetch source config either from /sourceConfig endpoint
|
2745
|
+
* or from getSourceConfig load option
|
2746
|
+
* @returns
|
2747
|
+
*/getConfig(){const sourceConfigFunc=state.loadOptions.value.getSourceConfig;if(sourceConfigFunc){if(!isFunction(sourceConfigFunc)){throw new Error(SOURCE_CONFIG_OPTION_ERROR);}// fetch source config from the function
|
2748
|
+
const res=sourceConfigFunc();if(res instanceof Promise){res.then(pRes=>this.processConfig(pRes)).catch(err=>{this.onError(err,'SourceConfig');});}else {this.processConfig(res);}}else {// fetch source config from config url API
|
2749
|
+
this.httpClient.getAsyncData({url:state.lifecycle.sourceConfigUrl.value,options:{headers:{'Content-Type':undefined}},callback:this.processConfig});}}}
|
2750
|
+
|
2751
|
+
/**
|
2752
|
+
* To get the timezone of the user
|
2753
|
+
*
|
2754
|
+
* @returns string
|
2755
|
+
*/const getTimezone=()=>{const timezone=new Date().toString().match(/([A-Z]+[+-]\d+)/);return timezone&&timezone[1]?timezone[1]:'NA';};
|
2756
|
+
|
2757
|
+
/**
|
2758
|
+
* Get the referrer URL
|
2759
|
+
* @returns The referrer URL
|
2760
|
+
*/const getReferrer=()=>document?.referrer||'$direct';/**
|
2761
|
+
* To get the canonical URL of the page
|
2762
|
+
* @returns canonical URL
|
2763
|
+
*/const getCanonicalUrl=()=>{const tags=document.getElementsByTagName('link');let canonicalUrl='';for(let i=0;tags[i];i+=1){const tag=tags[i];if(tag.getAttribute('rel')==='canonical'&&!canonicalUrl){canonicalUrl=tag.getAttribute('href')??'';break;}}return canonicalUrl;};const getUserAgent=()=>{if(isUndefined(globalThis.navigator)){return null;}let{userAgent}=globalThis.navigator;const{brave}=globalThis.navigator;// For supporting Brave browser detection,
|
2764
|
+
// add "Brave/<version>" to the user agent with the version value from the Chrome component
|
2765
|
+
if(brave&&Object.getPrototypeOf(brave).isBrave){// Example:
|
2766
|
+
// Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36
|
2767
|
+
const matchedArr=userAgent.match(/(chrome)\/([\w.]+)/i);if(matchedArr){userAgent=`${userAgent} Brave/${matchedArr[2]}`;}}return userAgent;};const getLanguage=()=>{if(isUndefined(globalThis.navigator)){return null;}return globalThis.navigator.language??globalThis.navigator.browserLanguage;};/**
|
2768
|
+
* Default page properties
|
2769
|
+
* @returns Default page properties
|
2770
|
+
*/const getDefaultPageProperties=()=>{const canonicalUrl=getCanonicalUrl();let path=globalThis.location.pathname;const{href:tabUrl}=globalThis.location;let pageUrl=tabUrl;const{search}=globalThis.location;// If valid canonical url is provided use this as page url.
|
2771
|
+
if(canonicalUrl){try{const urlObj=new URL(canonicalUrl);// If existing, query params of canonical url will be used instead of the location.search ones
|
2772
|
+
if(urlObj.search===''){pageUrl=canonicalUrl+search;}else {pageUrl=canonicalUrl;}path=urlObj.pathname;}catch(err){// Do nothing
|
2773
|
+
}}const url=getUrlWithoutHash(pageUrl);const{title}=document;const referrer=getReferrer();return {path,referrer,referring_domain:getReferringDomain(referrer),search,title,url,tab_url:tabUrl};};
|
2774
|
+
|
2775
|
+
const POLYFILL_URL='';const POLYFILL_LOAD_TIMEOUT=10*1000;// 10 seconds
|
2776
|
+
const POLYFILL_SCRIPT_ID='rudderstackPolyfill';
|
2777
|
+
|
2778
|
+
class CapabilitiesManager{constructor(errorHandler,logger){this.logger=logger;this.errorHandler=errorHandler;this.externalSrcLoader=new ExternalSrcLoader(this.errorHandler,this.logger);this.onError=this.onError.bind(this);this.onReady=this.onReady.bind(this);}init(){try{this.prepareBrowserCapabilities();this.attachWindowListeners();}catch(err){this.onError(err);}}/**
|
2779
|
+
* Detect supported capabilities and set values in state
|
2780
|
+
*/ // eslint-disable-next-line class-methods-use-this
|
2781
|
+
detectBrowserCapabilities(){n(()=>{// Storage related details
|
2782
|
+
state.capabilities.storage.isCookieStorageAvailable.value=isStorageAvailable(COOKIE_STORAGE,getStorageEngine(COOKIE_STORAGE),this.logger);state.capabilities.storage.isLocalStorageAvailable.value=isStorageAvailable(LOCAL_STORAGE,undefined,this.logger);state.capabilities.storage.isSessionStorageAvailable.value=isStorageAvailable(SESSION_STORAGE,undefined,this.logger);// Browser feature detection details
|
2783
|
+
state.capabilities.isBeaconAvailable.value=hasBeacon();state.capabilities.isUaCHAvailable.value=hasUAClientHints();state.capabilities.isCryptoAvailable.value=hasCrypto();state.capabilities.isIE11.value=isIE11();state.capabilities.isOnline.value=globalThis.navigator.onLine;// Get page context details
|
2784
|
+
state.context.userAgent.value=getUserAgent();state.context.locale.value=getLanguage();state.context.screen.value=getScreenDetails();state.context.timezone.value=getTimezone();if(hasUAClientHints()){getUserAgentClientHint(uach=>{state.context['ua-ch'].value=uach;},state.loadOptions.value.uaChTrackLevel);}});// Ad blocker detection
|
2785
|
+
O(()=>{if(state.loadOptions.value.sendAdblockPage===true&&state.lifecycle.sourceConfigUrl.value!==undefined){detectAdBlockers(this.errorHandler,this.logger);}});}/**
|
2786
|
+
* Detect if polyfills are required and then load script from polyfill URL
|
2787
|
+
*/prepareBrowserCapabilities(){state.capabilities.isLegacyDOM.value=isLegacyJSEngine();let polyfillUrl=state.loadOptions.value.polyfillURL??POLYFILL_URL;const shouldLoadPolyfill=state.loadOptions.value.polyfillIfRequired&&state.capabilities.isLegacyDOM.value&&Boolean(polyfillUrl);if(shouldLoadPolyfill){const isDefaultPolyfillService=polyfillUrl!==state.loadOptions.value.polyfillURL;if(isDefaultPolyfillService){// write key specific callback
|
2788
|
+
// NOTE: we're not putting this into RudderStackGlobals as providing the property path to the callback function in the polyfill URL is not possible
|
2789
|
+
const polyfillCallbackName=`RS_polyfillCallback_${state.lifecycle.writeKey.value}`;const polyfillCallback=()=>{this.onReady();// Remove the entry from window so we don't leave room for calling it again
|
2790
|
+
delete globalThis[polyfillCallbackName];};globalThis[polyfillCallbackName]=polyfillCallback;polyfillUrl=`${polyfillUrl}&callback=${polyfillCallbackName}`;}this.externalSrcLoader?.loadJSFile({url:polyfillUrl,id:POLYFILL_SCRIPT_ID,async:true,timeout:POLYFILL_LOAD_TIMEOUT,callback:scriptId=>{if(!scriptId){this.onError(new Error(POLYFILL_SCRIPT_LOAD_ERROR(POLYFILL_SCRIPT_ID,polyfillUrl)));}else if(!isDefaultPolyfillService){this.onReady();}}});}else {this.onReady();}}/**
|
2791
|
+
* Attach listeners to window to observe event that update capabilities state values
|
2792
|
+
*/attachWindowListeners(){globalThis.addEventListener('offline',()=>{state.capabilities.isOnline.value=false;});globalThis.addEventListener('online',()=>{state.capabilities.isOnline.value=true;});globalThis.addEventListener('resize',debounce(()=>{state.context.screen.value=getScreenDetails();},this));}/**
|
2793
|
+
* Set the lifecycle status to next phase
|
2794
|
+
*/ // eslint-disable-next-line class-methods-use-this
|
2795
|
+
onReady(){this.detectBrowserCapabilities();state.lifecycle.status.value='browserCapabilitiesReady';}/**
|
2796
|
+
* Handles error
|
2797
|
+
* @param error The error object
|
2798
|
+
*/onError(error){if(this.errorHandler){this.errorHandler.onError(error,CAPABILITIES_MANAGER);}else {throw error;}}}
|
2799
|
+
|
2800
|
+
const CHANNEL='web';// These are the top-level elements in the standard RudderStack event spec
|
2801
|
+
const TOP_LEVEL_ELEMENTS=['integrations','anonymousId','originalTimestamp'];// Reserved elements in the context of standard RudderStack event spec
|
2802
|
+
// Typically, these elements are not allowed to be overridden by the user
|
2803
|
+
const CONTEXT_RESERVED_ELEMENTS=['library','consentManagement','userAgent','ua-ch','screen'];// Reserved elements in the standard RudderStack event spec
|
2804
|
+
const RESERVED_ELEMENTS=['anonymousId','sentAt','receivedAt','timestamp','originalTimestamp','event','messageId','channel'];
|
2805
|
+
|
2806
|
+
const MIN_SESSION_ID_LENGTH=10;/**
|
2807
|
+
* A function to validate current session and return true/false depending on that
|
2808
|
+
* @returns boolean
|
2809
|
+
*/const hasSessionExpired=expiresAt=>{const timestamp=Date.now();return Boolean(!expiresAt||timestamp>expiresAt);};/**
|
2810
|
+
* A function to generate session id
|
2811
|
+
* @returns number
|
2812
|
+
*/const generateSessionId=()=>Date.now();/**
|
2813
|
+
* Function to validate user provided sessionId
|
2814
|
+
* @param {number} sessionId
|
2815
|
+
* @param logger logger
|
2816
|
+
* @returns
|
2817
|
+
*/const isManualSessionIdValid=(sessionId,logger)=>{if(!sessionId||!isPositiveInteger(sessionId)||!hasMinLength(MIN_SESSION_ID_LENGTH,sessionId)){logger?.warn(INVALID_SESSION_ID_WARNING(USER_SESSION_MANAGER,sessionId,MIN_SESSION_ID_LENGTH));return false;}return true;};/**
|
2818
|
+
* A function to generate new auto tracking session
|
2819
|
+
* @param sessionTimeout current timestamp
|
2820
|
+
* @returns SessionInfo
|
2821
|
+
*/const generateAutoTrackingSession=sessionTimeout=>{const timestamp=Date.now();const timeout=sessionTimeout||DEFAULT_SESSION_TIMEOUT_MS;return {id:timestamp,// set the current timestamp
|
2822
|
+
expiresAt:timestamp+timeout,// set the expiry time of the session
|
2823
|
+
timeout,sessionStart:undefined,autoTrack:true};};/**
|
2824
|
+
* A function to generate new manual tracking session
|
2825
|
+
* @param id Provided sessionId
|
2826
|
+
* @param logger Logger module
|
2827
|
+
* @returns SessionInfo
|
2828
|
+
*/const generateManualTrackingSession=(id,logger)=>{const sessionId=isManualSessionIdValid(id,logger)?id:generateSessionId();return {id:sessionId,sessionStart:undefined,manualTrack:true};};const isStorageTypeValidForStoringData=storageType=>Boolean(storageType===COOKIE_STORAGE||storageType===LOCAL_STORAGE||storageType===SESSION_STORAGE||storageType===MEMORY_STORAGE);/**
|
2829
|
+
* Generate a new anonymousId
|
2830
|
+
* @returns string anonymousID
|
2831
|
+
*/const generateAnonymousId=()=>generateUUID();
|
2832
|
+
|
2833
|
+
/**
|
2834
|
+
* To get the page properties for context object
|
2835
|
+
* @param pageProps Page properties
|
2836
|
+
* @returns page properties object for context
|
2837
|
+
*/const getContextPageProperties=pageProps=>{// Need to get updated page details on each event as an event to notify on SPA url changes does not seem to exist
|
2838
|
+
const curPageProps=getDefaultPageProperties();const ctxPageProps={};Object.keys(curPageProps).forEach(key=>{ctxPageProps[key]=pageProps?.[key]||curPageProps[key];});ctxPageProps.initial_referrer=pageProps?.initial_referrer||state.session.initialReferrer.value;ctxPageProps.initial_referring_domain=pageProps?.initial_referring_domain||state.session.initialReferringDomain.value;return ctxPageProps;};/**
|
2839
|
+
* Add any missing default page properties using values from options and defaults
|
2840
|
+
* @param properties Input page properties
|
2841
|
+
* @param options API options
|
2842
|
+
*/const getUpdatedPageProperties=(properties,options)=>{const optionsPageProps=options?.page||{};const pageProps=properties;// Need to get updated page details on each event as an event to notify on SPA url changes does not seem to exist
|
2843
|
+
const curPageProps=getDefaultPageProperties();Object.keys(curPageProps).forEach(key=>{if(isUndefined(pageProps[key])){pageProps[key]=optionsPageProps[key]||curPageProps[key];}});if(isUndefined(pageProps.initial_referrer)){pageProps.initial_referrer=optionsPageProps.initial_referrer||state.session.initialReferrer.value;}if(isUndefined(pageProps.initial_referring_domain)){pageProps.initial_referring_domain=optionsPageProps.initial_referring_domain||state.session.initialReferringDomain.value;}return pageProps;};/**
|
2844
|
+
* Utility to check for reserved keys in the input object
|
2845
|
+
* @param obj Generic object
|
2846
|
+
* @param parentKeyPath Object's parent key path
|
2847
|
+
* @param logger Logger instance
|
2848
|
+
*/const checkForReservedElementsInObject=(obj,parentKeyPath,logger)=>{if(isObjectLiteralAndNotNull(obj)){Object.keys(obj).forEach(property=>{if(RESERVED_ELEMENTS.includes(property)||RESERVED_ELEMENTS.includes(property.toLowerCase())){logger?.warn(RESERVED_KEYWORD_WARNING(EVENT_MANAGER,property,parentKeyPath,RESERVED_ELEMENTS));}});}};/**
|
2849
|
+
* Checks for reserved keys in traits, properties, and contextual traits
|
2850
|
+
* @param rudderEvent Generated rudder event
|
2851
|
+
* @param logger Logger instance
|
2852
|
+
*/const checkForReservedElements=(rudderEvent,logger)=>{// properties, traits, contextualTraits are either undefined or object
|
2853
|
+
const{properties,traits,context}=rudderEvent;const{traits:contextualTraits}=context;checkForReservedElementsInObject(properties,'properties',logger);checkForReservedElementsInObject(traits,'traits',logger);checkForReservedElementsInObject(contextualTraits,'context.traits',logger);};/**
|
2854
|
+
* Overrides the top-level event properties with data from API options
|
2855
|
+
* @param rudderEvent Generated rudder event
|
2856
|
+
* @param options API options
|
2857
|
+
*/const updateTopLevelEventElements=(rudderEvent,options)=>{if(options.anonymousId&&isString(options.anonymousId)){// eslint-disable-next-line no-param-reassign
|
2858
|
+
rudderEvent.anonymousId=options.anonymousId;}if(isObjectLiteralAndNotNull(options.integrations)){// eslint-disable-next-line no-param-reassign
|
2859
|
+
rudderEvent.integrations=options.integrations;}if(options.originalTimestamp&&isString(options.originalTimestamp)){// eslint-disable-next-line no-param-reassign
|
2860
|
+
rudderEvent.originalTimestamp=options.originalTimestamp;}};/**
|
2861
|
+
* To merge the contextual information in API options with existing data
|
2862
|
+
* @param rudderContext Generated rudder event
|
2863
|
+
* @param options API options
|
2864
|
+
* @param logger Logger instance
|
2865
|
+
*/const getMergedContext=(rudderContext,options,logger)=>{let context=rudderContext;Object.keys(options).forEach(key=>{if(!TOP_LEVEL_ELEMENTS.includes(key)&&!CONTEXT_RESERVED_ELEMENTS.includes(key)){if(key!=='context'){context=mergeDeepRight(context,{[key]:options[key]});}else if(!isUndefined(options[key])&&isObjectLiteralAndNotNull(options[key])){const tempContext={};Object.keys(options[key]).forEach(e=>{if(!CONTEXT_RESERVED_ELEMENTS.includes(e)){tempContext[e]=options[key][e];}});context=mergeDeepRight(context,{...tempContext});}else {logger?.warn(INVALID_CONTEXT_OBJECT_WARNING(EVENT_MANAGER));}}});return context;};/**
|
2866
|
+
* A function to determine whether SDK should use the integration option provided in load call
|
2867
|
+
* @returns boolean
|
2868
|
+
*/const shouldUseGlobalIntegrationsConfigInEvents=()=>state.loadOptions.value.useGlobalIntegrationsConfigInEvents&&(isObjectLiteralAndNotNull(state.consents.postConsent.value?.integrations)||isObjectLiteralAndNotNull(state.nativeDestinations.loadOnlyIntegrations.value));/**
|
2869
|
+
* Updates rudder event object with data from the API options
|
2870
|
+
* @param rudderEvent Generated rudder event
|
2871
|
+
* @param options API options
|
2872
|
+
*/const processOptions=(rudderEvent,options)=>{// Only allow object type for options
|
2873
|
+
if(isObjectLiteralAndNotNull(options)){updateTopLevelEventElements(rudderEvent,options);// eslint-disable-next-line no-param-reassign
|
2874
|
+
rudderEvent.context=getMergedContext(rudderEvent.context,options);}};/**
|
2875
|
+
* Returns the final integrations config for the event based on the global config and event's config
|
2876
|
+
* @param integrationsConfig Event's integrations config
|
2877
|
+
* @returns Final integrations config
|
2878
|
+
*/const getEventIntegrationsConfig=integrationsConfig=>{let finalIntgConfig;if(shouldUseGlobalIntegrationsConfigInEvents()){finalIntgConfig=clone(state.consents.postConsent.value?.integrations??state.nativeDestinations.loadOnlyIntegrations.value);}else if(isObjectLiteralAndNotNull(integrationsConfig)){finalIntgConfig=integrationsConfig;}else {finalIntgConfig=DEFAULT_INTEGRATIONS_CONFIG;}return finalIntgConfig;};/**
|
2879
|
+
* Enrich the base event object with data from state and the API options
|
2880
|
+
* @param rudderEvent RudderEvent object
|
2881
|
+
* @param options API options
|
2882
|
+
* @param pageProps Page properties
|
2883
|
+
* @param logger logger
|
2884
|
+
* @returns Enriched RudderEvent object
|
2885
|
+
*/const getEnrichedEvent=(rudderEvent,options,pageProps,logger)=>{const commonEventData={channel:CHANNEL,context:{traits:clone(state.session.userTraits.value),sessionId:state.session.sessionInfo.value.id||undefined,sessionStart:state.session.sessionInfo.value.sessionStart||undefined,// Add 'consentManagement' only if consent management is enabled
|
2886
|
+
...(state.consents.enabled.value&&{consentManagement:{deniedConsentIds:clone(state.consents.data.value.deniedConsentIds),allowedConsentIds:clone(state.consents.data.value.allowedConsentIds),provider:state.consents.provider.value,resolutionStrategy:state.consents.resolutionStrategy.value}}),'ua-ch':state.context['ua-ch'].value,app:state.context.app.value,library:state.context.library.value,userAgent:state.context.userAgent.value,os:state.context.os.value,locale:state.context.locale.value,screen:state.context.screen.value,campaign:extractUTMParameters(globalThis.location.href),page:getContextPageProperties(pageProps),timezone:state.context.timezone.value},originalTimestamp:getCurrentTimeFormatted(),integrations:DEFAULT_INTEGRATIONS_CONFIG,messageId:generateUUID(),userId:rudderEvent.userId||state.session.userId.value};if(!isStorageTypeValidForStoringData(state.storage.entries.value.anonymousId?.type)){// Generate new anonymous id for each request
|
2887
|
+
commonEventData.anonymousId=generateAnonymousId();}else {// Type casting to string as the user session manager will take care of initializing the value
|
2888
|
+
commonEventData.anonymousId=state.session.anonymousId.value;}// set truly anonymous tracking flag
|
2889
|
+
if(state.storage.trulyAnonymousTracking.value){commonEventData.context.trulyAnonymousTracking=true;}if(rudderEvent.type==='identify'){commonEventData.context.traits=state.storage.entries.value.userTraits?.type!==NO_STORAGE?clone(state.session.userTraits.value):rudderEvent.context.traits;}if(rudderEvent.type==='group'){if(rudderEvent.groupId||state.session.groupId.value){commonEventData.groupId=rudderEvent.groupId||state.session.groupId.value;}if(rudderEvent.traits||state.session.groupTraits.value){commonEventData.traits=state.storage.entries.value.groupTraits?.type!==NO_STORAGE?clone(state.session.groupTraits.value):rudderEvent.traits;}}const processedEvent=mergeDeepRight(rudderEvent,commonEventData);// Set the default values for the event properties
|
2890
|
+
// matching with v1.1 payload
|
2891
|
+
if(processedEvent.event===undefined){processedEvent.event=null;}if(processedEvent.properties===undefined){processedEvent.properties=null;}processOptions(processedEvent,options);checkForReservedElements(processedEvent,logger);// Update the integrations config for the event
|
2892
|
+
processedEvent.integrations=getEventIntegrationsConfig(processedEvent.integrations);return processedEvent;};
|
2893
|
+
|
2894
|
+
class RudderEventFactory{constructor(logger){this.logger=logger;}/**
|
2895
|
+
* Generate a 'page' event based on the user-input fields
|
2896
|
+
* @param category Page's category
|
2897
|
+
* @param name Page name
|
2898
|
+
* @param properties Page properties
|
2899
|
+
* @param options API options
|
2900
|
+
*/generatePageEvent(category,name,properties,options){let props=properties??{};props.name=name;props.category=category;props=getUpdatedPageProperties(props,options);const pageEvent={properties:props,name,category,type:'page'};return getEnrichedEvent(pageEvent,options,props,this.logger);}/**
|
2901
|
+
* Generate a 'track' event based on the user-input fields
|
2902
|
+
* @param event The event name
|
2903
|
+
* @param properties Event properties
|
2904
|
+
* @param options API options
|
2905
|
+
*/generateTrackEvent(event,properties,options){const trackEvent={properties,event,type:'track'};return getEnrichedEvent(trackEvent,options,undefined,this.logger);}/**
|
2906
|
+
* Generate an 'identify' event based on the user-input fields
|
2907
|
+
* @param userId New user ID
|
2908
|
+
* @param traits new traits
|
2909
|
+
* @param options API options
|
2910
|
+
*/generateIdentifyEvent(userId,traits,options){const identifyEvent={userId,type:'identify',context:{traits}};return getEnrichedEvent(identifyEvent,options,undefined,this.logger);}/**
|
2911
|
+
* Generate an 'alias' event based on the user-input fields
|
2912
|
+
* @param to New user ID
|
2913
|
+
* @param from Old user ID
|
2914
|
+
* @param options API options
|
2915
|
+
*/generateAliasEvent(to,from,options){const aliasEvent={previousId:from,type:'alias'};const enrichedEvent=getEnrichedEvent(aliasEvent,options,undefined,this.logger);// override the User ID from the API inputs
|
2916
|
+
enrichedEvent.userId=to??enrichedEvent.userId;return enrichedEvent;}/**
|
2917
|
+
* Generate a 'group' event based on the user-input fields
|
2918
|
+
* @param groupId New group ID
|
2919
|
+
* @param traits new group traits
|
2920
|
+
* @param options API options
|
2921
|
+
*/generateGroupEvent(groupId,traits,options){const groupEvent={type:'group'};if(groupId){groupEvent.groupId=groupId;}if(traits){groupEvent.traits=traits;}return getEnrichedEvent(groupEvent,options,undefined,this.logger);}/**
|
2922
|
+
* Generates a new RudderEvent object based on the user-input fields
|
2923
|
+
* @param event API event parameters object
|
2924
|
+
* @returns A RudderEvent object
|
2925
|
+
*/create(event){let eventObj;switch(event.type){case'page':eventObj=this.generatePageEvent(event.category,event.name,event.properties,event.options);break;case'track':eventObj=this.generateTrackEvent(event.name,event.properties,event.options);break;case'identify':eventObj=this.generateIdentifyEvent(event.userId,event.traits,event.options);break;case'alias':eventObj=this.generateAliasEvent(event.to,event.from,event.options);break;case'group':eventObj=this.generateGroupEvent(event.groupId,event.traits,event.options);break;}return eventObj;}}
|
2926
|
+
|
2927
|
+
/**
|
2928
|
+
* A service to generate valid event payloads and queue them for processing
|
2929
|
+
*/class EventManager{/**
|
2930
|
+
*
|
2931
|
+
* @param eventRepository Event repository instance
|
2932
|
+
* @param userSessionManager UserSession Manager instance
|
2933
|
+
* @param errorHandler Error handler object
|
2934
|
+
* @param logger Logger object
|
2935
|
+
*/constructor(eventRepository,userSessionManager,errorHandler,logger){this.eventRepository=eventRepository;this.userSessionManager=userSessionManager;this.errorHandler=errorHandler;this.logger=logger;this.eventFactory=new RudderEventFactory(this.logger);this.onError=this.onError.bind(this);}/**
|
2936
|
+
* Initializes the event manager
|
2937
|
+
*/init(){this.eventRepository.init();}resume(){this.eventRepository.resume();}/**
|
2938
|
+
* Consumes a new incoming event
|
2939
|
+
* @param event Incoming event data
|
2940
|
+
*/addEvent(event){this.userSessionManager.refreshSession();const rudderEvent=this.eventFactory.create(event);if(rudderEvent){this.eventRepository.enqueue(rudderEvent,event.callback);}else {this.onError(new Error(EVENT_OBJECT_GENERATION_ERROR));}}/**
|
2941
|
+
* Handles error
|
2942
|
+
* @param error The error object
|
2943
|
+
*/onError(error,customMessage,shouldAlwaysThrow){if(this.errorHandler){this.errorHandler.onError(error,EVENT_MANAGER,customMessage,shouldAlwaysThrow);}else {throw error;}}}
|
2944
|
+
|
2945
|
+
class UserSessionManager{constructor(errorHandler,logger,pluginsManager,storeManager){this.storeManager=storeManager;this.pluginsManager=pluginsManager;this.logger=logger;this.errorHandler=errorHandler;this.onError=this.onError.bind(this);}/**
|
2946
|
+
* Initialize User session with values from storage
|
2947
|
+
*/init(){this.syncStorageDataToState();// Register the effect to sync with storage
|
2948
|
+
this.registerEffects();}syncStorageDataToState(){this.migrateStorageIfNeeded();this.migrateDataFromPreviousStorage();// get the values from storage and set it again
|
2949
|
+
this.setUserId(this.getUserId());this.setUserTraits(this.getUserTraits());this.setGroupId(this.getGroupId());this.setGroupTraits(this.getGroupTraits());this.setAnonymousId(this.getAnonymousId(state.loadOptions.value.anonymousIdOptions));this.setAuthToken(this.getAuthToken());this.setInitialReferrerInfo();this.configureSessionTracking();}configureSessionTracking(){let sessionInfo=this.getSessionInfo();if(this.isPersistenceEnabledForStorageEntry('sessionInfo')){const configuredSessionTrackingInfo=this.getConfiguredSessionTrackingInfo();const persistedSessionInfo=this.getSessionInfo()??defaultSessionInfo;sessionInfo={...persistedSessionInfo,...configuredSessionTrackingInfo,autoTrack:configuredSessionTrackingInfo.autoTrack&&persistedSessionInfo.manualTrack!==true};}this.setSessionInfo(sessionInfo);}setInitialReferrerInfo(){const persistedInitialReferrer=this.getInitialReferrer();const persistedInitialReferringDomain=this.getInitialReferringDomain();if(persistedInitialReferrer&&persistedInitialReferringDomain){this.setInitialReferrer(persistedInitialReferrer);this.setInitialReferringDomain(persistedInitialReferringDomain);}else {const initialReferrer=persistedInitialReferrer||getReferrer();this.setInitialReferrer(initialReferrer);this.setInitialReferringDomain(getReferringDomain(initialReferrer));}}isPersistenceEnabledForStorageEntry(entryName){return isStorageTypeValidForStoringData(state.storage.entries.value[entryName]?.type);}migrateDataFromPreviousStorage(){const entries=state.storage.entries.value;const storageTypesForMigration=[COOKIE_STORAGE,LOCAL_STORAGE,SESSION_STORAGE];Object.keys(entries).forEach(entry=>{const key=entry;const currentStorage=entries[key]?.type;const curStore=this.storeManager?.getStore(storageClientDataStoreNameMap[currentStorage]);if(curStore){storageTypesForMigration.forEach(storage=>{const store=this.storeManager?.getStore(storageClientDataStoreNameMap[storage]);if(store&&storage!==currentStorage){const value=store.get(USER_SESSION_STORAGE_KEYS[key]);if(isDefinedNotNullAndNotEmptyString(value)){curStore.set(USER_SESSION_STORAGE_KEYS[key],value);}store.remove(USER_SESSION_STORAGE_KEYS[key]);}});}});}migrateStorageIfNeeded(){if(!state.storage.migrate.value){return;}const persistentStoreNames=[CLIENT_DATA_STORE_COOKIE,CLIENT_DATA_STORE_LS,CLIENT_DATA_STORE_SESSION];const stores=[];persistentStoreNames.forEach(storeName=>{const store=this.storeManager?.getStore(storeName);if(store){stores.push(store);}});Object.keys(USER_SESSION_STORAGE_KEYS).forEach(storageKey=>{const storageEntry=USER_SESSION_STORAGE_KEYS[storageKey];stores.forEach(store=>{const migratedVal=this.pluginsManager?.invokeSingle('storage.migrate',storageEntry,store.engine,this.errorHandler,this.logger);// Skip setting the value if it is null or undefined
|
2950
|
+
// as those values indicate there is no need for migration or
|
2951
|
+
// migration failed
|
2952
|
+
if(!isNullOrUndefined(migratedVal)){store.set(storageEntry,migratedVal);}});});}getConfiguredSessionTrackingInfo(){let autoTrack=state.loadOptions.value.sessions?.autoTrack!==false;// Do not validate any further if autoTrack is disabled
|
2953
|
+
if(!autoTrack){return {autoTrack};}let timeout;const configuredSessionTimeout=state.loadOptions.value.sessions?.timeout;if(!isPositiveInteger(configuredSessionTimeout)){this.logger?.warn(TIMEOUT_NOT_NUMBER_WARNING(USER_SESSION_MANAGER,configuredSessionTimeout,DEFAULT_SESSION_TIMEOUT_MS));timeout=DEFAULT_SESSION_TIMEOUT_MS;}else {timeout=configuredSessionTimeout;}if(timeout===0){this.logger?.warn(TIMEOUT_ZERO_WARNING(USER_SESSION_MANAGER));autoTrack=false;}// In case user provides a timeout value greater than 0 but less than 10 seconds SDK will show a warning
|
2954
|
+
// and will proceed with it
|
2955
|
+
if(timeout>0&&timeout<MIN_SESSION_TIMEOUT_MS){this.logger?.warn(TIMEOUT_NOT_RECOMMENDED_WARNING(USER_SESSION_MANAGER,timeout,MIN_SESSION_TIMEOUT_MS));}return {timeout,autoTrack};}/**
|
2956
|
+
* Handles error
|
2957
|
+
* @param error The error object
|
2958
|
+
*/onError(error){if(this.errorHandler){this.errorHandler.onError(error,USER_SESSION_MANAGER);}else {throw error;}}/**
|
2959
|
+
* A function to sync values in storage
|
2960
|
+
* @param sessionKey
|
2961
|
+
* @param value
|
2962
|
+
*/syncValueToStorage(sessionKey,value){const entries=state.storage.entries.value;const storage=entries[sessionKey]?.type;const key=entries[sessionKey]?.key;if(isStorageTypeValidForStoringData(storage)){const curStore=this.storeManager?.getStore(storageClientDataStoreNameMap[storage]);if(value&&isString(value)||isNonEmptyObject(value)){curStore?.set(key,value);}else {curStore?.remove(key);}}}/**
|
2963
|
+
* Function to update storage whenever state value changes
|
2964
|
+
*/registerEffects(){// This will work as long as the user session entry key names are same as the state keys
|
2965
|
+
USER_SESSION_KEYS.forEach(sessionKey=>{O(()=>{this.syncValueToStorage(sessionKey,state.session[sessionKey].value);});});}/**
|
2966
|
+
* Sets anonymous id in the following precedence:
|
2967
|
+
*
|
2968
|
+
* 1. anonymousId: Id directly provided to the function.
|
2969
|
+
* 2. rudderAmpLinkerParam: value generated from linker query parm (rudderstack)
|
2970
|
+
* using parseLinker util.
|
2971
|
+
* 3. generateUUID: A new unique id is generated and assigned.
|
2972
|
+
*/setAnonymousId(anonymousId,rudderAmpLinkerParam){let finalAnonymousId=anonymousId;if(this.isPersistenceEnabledForStorageEntry('anonymousId')){if(!finalAnonymousId&&rudderAmpLinkerParam){const linkerPluginsResult=this.pluginsManager?.invokeSingle('userSession.anonymousIdGoogleLinker',rudderAmpLinkerParam);finalAnonymousId=linkerPluginsResult;}finalAnonymousId=finalAnonymousId||generateAnonymousId();}else {finalAnonymousId=DEFAULT_USER_SESSION_VALUES.anonymousId;}state.session.anonymousId.value=finalAnonymousId;}/**
|
2973
|
+
* Fetches anonymousId
|
2974
|
+
* @param options option to fetch it from external source
|
2975
|
+
* @returns anonymousId
|
2976
|
+
*/getAnonymousId(options){const storage=state.storage.entries.value.anonymousId?.type;// fetch the anonymousId from storage
|
2977
|
+
if(isStorageTypeValidForStoringData(storage)){let persistedAnonymousId=this.getEntryValue('anonymousId');if(!persistedAnonymousId&&options){// fetch anonymousId from external source
|
2978
|
+
const autoCapturedAnonymousId=this.pluginsManager?.invokeSingle('storage.getAnonymousId',getStorageEngine,options);persistedAnonymousId=autoCapturedAnonymousId;}state.session.anonymousId.value=persistedAnonymousId||generateAnonymousId();}return state.session.anonymousId.value;}getEntryValue(sessionKey){const entries=state.storage.entries.value;const storageType=entries[sessionKey]?.type;if(isStorageTypeValidForStoringData(storageType)){const store=this.storeManager?.getStore(storageClientDataStoreNameMap[storageType]);const storageKey=entries[sessionKey]?.key;return store?.get(storageKey)??null;}return null;}/**
|
2979
|
+
* Fetches User Id
|
2980
|
+
* @returns
|
2981
|
+
*/getUserId(){return this.getEntryValue('userId');}/**
|
2982
|
+
* Fetches User Traits
|
2983
|
+
* @returns
|
2984
|
+
*/getUserTraits(){return this.getEntryValue('userTraits');}/**
|
2985
|
+
* Fetches Group Id
|
2986
|
+
* @returns
|
2987
|
+
*/getGroupId(){return this.getEntryValue('groupId');}/**
|
2988
|
+
* Fetches Group Traits
|
2989
|
+
* @returns
|
2990
|
+
*/getGroupTraits(){return this.getEntryValue('groupTraits');}/**
|
2991
|
+
* Fetches Initial Referrer
|
2992
|
+
* @returns
|
2993
|
+
*/getInitialReferrer(){return this.getEntryValue('initialReferrer');}/**
|
2994
|
+
* Fetches Initial Referring domain
|
2995
|
+
* @returns
|
2996
|
+
*/getInitialReferringDomain(){return this.getEntryValue('initialReferringDomain');}/**
|
2997
|
+
* Fetches session tracking information from storage
|
2998
|
+
* @returns
|
2999
|
+
*/getSessionInfo(){return this.getEntryValue('sessionInfo');}/**
|
3000
|
+
* Fetches auth token from storage
|
3001
|
+
* @returns
|
3002
|
+
*/getAuthToken(){return this.getEntryValue('authToken');}/**
|
3003
|
+
* If session is active it returns the sessionId
|
3004
|
+
* @returns
|
3005
|
+
*/getSessionId(){const sessionInfo=state.session.sessionInfo.value;if(sessionInfo.autoTrack&&!hasSessionExpired(sessionInfo.expiresAt)||sessionInfo.manualTrack){return sessionInfo.id??null;}return null;}/**
|
3006
|
+
* A function to update current session info after each event call
|
3007
|
+
*/refreshSession(){let sessionInfo=state.session.sessionInfo.value;if(sessionInfo.autoTrack||sessionInfo.manualTrack){if(sessionInfo.autoTrack){this.startOrRenewAutoTracking();}// Re-assigning the variable with the same value intentionally as
|
3008
|
+
// startOrRenewAutoTracking() will update the sessionInfo value
|
3009
|
+
sessionInfo=state.session.sessionInfo.value;if(sessionInfo.sessionStart===undefined){state.session.sessionInfo.value={...sessionInfo,sessionStart:true};}else if(sessionInfo.sessionStart){state.session.sessionInfo.value={...sessionInfo,sessionStart:false};}}}/**
|
3010
|
+
* Reset state values
|
3011
|
+
* @param resetAnonymousId
|
3012
|
+
* @param noNewSessionStart
|
3013
|
+
* @returns
|
3014
|
+
*/reset(resetAnonymousId,noNewSessionStart){const{session}=state;const{manualTrack,autoTrack}=session.sessionInfo.value;n(()=>{session.userId.value=DEFAULT_USER_SESSION_VALUES.userId;session.userTraits.value=DEFAULT_USER_SESSION_VALUES.userTraits;session.groupId.value=DEFAULT_USER_SESSION_VALUES.groupId;session.groupTraits.value=DEFAULT_USER_SESSION_VALUES.groupTraits;session.authToken.value=DEFAULT_USER_SESSION_VALUES.authToken;if(resetAnonymousId){// This will generate a new anonymous ID
|
3015
|
+
this.setAnonymousId();}if(noNewSessionStart){return;}if(autoTrack){session.sessionInfo.value=DEFAULT_USER_SESSION_VALUES.sessionInfo;this.startOrRenewAutoTracking();}else if(manualTrack){this.startManualTrackingInternal();}});}setSessionInfo(sessionInfo){state.session.sessionInfo.value=this.isPersistenceEnabledForStorageEntry('sessionInfo')?sessionInfo:DEFAULT_USER_SESSION_VALUES.sessionInfo;// If auto session tracking is enabled start the session tracking
|
3016
|
+
if(state.session.sessionInfo.value.autoTrack){this.startOrRenewAutoTracking();}}/**
|
3017
|
+
* Set user Id
|
3018
|
+
* @param userId
|
3019
|
+
*/setUserId(userId){state.session.userId.value=this.isPersistenceEnabledForStorageEntry('userId')&&userId?userId:DEFAULT_USER_SESSION_VALUES.userId;}/**
|
3020
|
+
* Set user traits
|
3021
|
+
* @param traits
|
3022
|
+
*/setUserTraits(traits){state.session.userTraits.value=this.isPersistenceEnabledForStorageEntry('userTraits')&&traits?mergeDeepRight(state.session.userTraits.value??{},traits):DEFAULT_USER_SESSION_VALUES.userTraits;}/**
|
3023
|
+
* Set group Id
|
3024
|
+
* @param groupId
|
3025
|
+
*/setGroupId(groupId){state.session.groupId.value=this.isPersistenceEnabledForStorageEntry('groupId')&&groupId?groupId:DEFAULT_USER_SESSION_VALUES.groupId;}/**
|
3026
|
+
* Set group traits
|
3027
|
+
* @param traits
|
3028
|
+
*/setGroupTraits(traits){state.session.groupTraits.value=this.isPersistenceEnabledForStorageEntry('groupTraits')&&traits?mergeDeepRight(state.session.groupTraits.value??{},traits):DEFAULT_USER_SESSION_VALUES.groupTraits;}/**
|
3029
|
+
* Set initial referrer
|
3030
|
+
* @param referrer
|
3031
|
+
*/setInitialReferrer(referrer){state.session.initialReferrer.value=this.isPersistenceEnabledForStorageEntry('initialReferrer')&&referrer?referrer:DEFAULT_USER_SESSION_VALUES.initialReferrer;}/**
|
3032
|
+
* Set initial referring domain
|
3033
|
+
* @param {String} referringDomain
|
3034
|
+
*/setInitialReferringDomain(referringDomain){state.session.initialReferringDomain.value=this.isPersistenceEnabledForStorageEntry('initialReferringDomain')&&referringDomain?referringDomain:DEFAULT_USER_SESSION_VALUES.initialReferringDomain;}/**
|
3035
|
+
* A function to check for existing session details and depending on that create a new session
|
3036
|
+
*/startOrRenewAutoTracking(){const sessionInfo=state.session.sessionInfo.value;if(hasSessionExpired(sessionInfo.expiresAt)){state.session.sessionInfo.value=generateAutoTrackingSession(sessionInfo.timeout);}else {const timestamp=Date.now();const timeout=sessionInfo.timeout;state.session.sessionInfo.value=mergeDeepRight(sessionInfo,{expiresAt:timestamp+timeout// set the expiry time of the session
|
3037
|
+
});}}/**
|
3038
|
+
* A function method to start a manual session
|
3039
|
+
* @param {number} id session identifier
|
3040
|
+
* @returns
|
3041
|
+
*/start(id){state.session.sessionInfo.value=generateManualTrackingSession(id,this.logger);}/**
|
3042
|
+
* An internal function to start manual session
|
3043
|
+
*/startManualTrackingInternal(){this.start(Date.now());}/**
|
3044
|
+
* A public method to end an ongoing session.
|
3045
|
+
*/end(){state.session.sessionInfo.value={};}/**
|
3046
|
+
* Set auth token
|
3047
|
+
* @param userId
|
3048
|
+
*/setAuthToken(token){state.session.authToken.value=this.isPersistenceEnabledForStorageEntry('authToken')&&token?token:DEFAULT_USER_SESSION_VALUES.authToken;}}
|
3049
|
+
|
3050
|
+
const DATA_PLANE_QUEUE_EXT_POINT_PREFIX='dataplaneEventsQueue';const DESTINATIONS_QUEUE_EXT_POINT_PREFIX='destinationsEventsQueue';const DMT_EXT_POINT_PREFIX='transformEvent';
|
3051
|
+
|
3052
|
+
/**
|
3053
|
+
* Filters and returns the user supplied integrations config that should take preference over the destination specific integrations config
|
3054
|
+
* @param eventIntgConfig User supplied integrations config at event level
|
3055
|
+
* @param destinationsIntgConfig Cumulative integrations config from all destinations
|
3056
|
+
* @returns Filtered user supplied integrations config
|
3057
|
+
*/const getOverriddenIntegrationOptions=(eventIntgConfig,destinationsIntgConfig)=>Object.keys(eventIntgConfig).filter(intgName=>eventIntgConfig[intgName]!==true||!destinationsIntgConfig[intgName]).reduce((obj,key)=>{const retVal=clone(obj);retVal[key]=eventIntgConfig[key];return retVal;},{});/**
|
3058
|
+
* Returns the event object with final integrations config
|
3059
|
+
* @param event RudderEvent object
|
3060
|
+
* @param state Application state
|
3061
|
+
* @returns Mutated event with final integrations config
|
3062
|
+
*/const getFinalEvent=(event,state)=>{const finalEvent=clone(event);// Merge the destination specific integrations config with the event's integrations config
|
3063
|
+
// In general, the preference is given to the event's integrations config
|
3064
|
+
const eventIntgConfig=event.integrations??DEFAULT_INTEGRATIONS_CONFIG;const destinationsIntgConfig=state.nativeDestinations.integrationsConfig.value;const overriddenIntgOpts=getOverriddenIntegrationOptions(eventIntgConfig,destinationsIntgConfig);finalEvent.integrations=mergeDeepRight(destinationsIntgConfig,overriddenIntgOpts);return finalEvent;};const shouldBufferEventsForPreConsent=state=>state.consents.preConsent.value.enabled&&state.consents.preConsent.value.events?.delivery==='buffer'&&(state.consents.preConsent.value.storage?.strategy==='session'||state.consents.preConsent.value.storage?.strategy==='none');
|
3065
|
+
|
3066
|
+
/**
|
3067
|
+
* Event repository class responsible for queuing events for further processing and delivery
|
3068
|
+
*/class EventRepository{/**
|
3069
|
+
*
|
3070
|
+
* @param pluginsManager Plugins manager instance
|
3071
|
+
* @param storeManager Store Manager instance
|
3072
|
+
* @param errorHandler Error handler object
|
3073
|
+
* @param logger Logger object
|
3074
|
+
*/constructor(pluginsManager,storeManager,errorHandler,logger){this.pluginsManager=pluginsManager;this.errorHandler=errorHandler;this.logger=logger;this.httpClient=new HttpClient(errorHandler,logger);this.storeManager=storeManager;this.onError=this.onError.bind(this);}/**
|
3075
|
+
* Initializes the event repository
|
3076
|
+
*/init(){try{this.dataplaneEventsQueue=this.pluginsManager.invokeSingle(`${DATA_PLANE_QUEUE_EXT_POINT_PREFIX}.init`,state,this.httpClient,this.storeManager,this.errorHandler,this.logger);}catch(e){this.onError(e,DATAPLANE_PLUGIN_INITIALIZE_ERROR);}try{this.dmtEventsQueue=this.pluginsManager.invokeSingle(`${DMT_EXT_POINT_PREFIX}.init`,state,this.pluginsManager,this.httpClient,this.storeManager,this.errorHandler,this.logger);}catch(e){this.onError(e,DMT_PLUGIN_INITIALIZE_ERROR);}try{this.destinationsEventsQueue=this.pluginsManager.invokeSingle(`${DESTINATIONS_QUEUE_EXT_POINT_PREFIX}.init`,state,this.pluginsManager,this.storeManager,this.dmtEventsQueue,this.errorHandler,this.logger);}catch(e){this.onError(e,NATIVE_DEST_PLUGIN_INITIALIZE_ERROR);}// Start the queue once the client destinations are ready
|
3077
|
+
O(()=>{if(state.nativeDestinations.clientDestinationsReady.value===true){this.destinationsEventsQueue?.start();this.dmtEventsQueue?.start();}});const bufferEventsBeforeConsent=shouldBufferEventsForPreConsent(state);// Start the queue processing only when the destinations are ready or hybrid mode destinations exist
|
3078
|
+
// However, events will be enqueued for now.
|
3079
|
+
// At the time of processing the events, the integrations config data from destinations
|
3080
|
+
// is merged into the event object
|
3081
|
+
let timeoutId;O(()=>{const shouldBufferDpEvents=state.loadOptions.value.bufferDataPlaneEventsUntilReady===true&&state.nativeDestinations.clientDestinationsReady.value===false;const hybridDestExist=state.nativeDestinations.activeDestinations.value.some(dest=>isHybridModeDestination(dest));if((hybridDestExist===false||shouldBufferDpEvents===false)&&!bufferEventsBeforeConsent&&this.dataplaneEventsQueue?.scheduleTimeoutActive!==true){globalThis.clearTimeout(timeoutId);this.dataplaneEventsQueue?.start();}});// Force start the data plane events queue processing after a timeout
|
3082
|
+
if(state.loadOptions.value.bufferDataPlaneEventsUntilReady===true){timeoutId=globalThis.setTimeout(()=>{if(this.dataplaneEventsQueue?.scheduleTimeoutActive!==true){this.dataplaneEventsQueue?.start();}},state.loadOptions.value.dataPlaneEventsBufferTimeout);}}resume(){if(this.dataplaneEventsQueue?.scheduleTimeoutActive!==true){if(state.consents.postConsent.value.discardPreConsentEvents){this.dataplaneEventsQueue?.clear();this.destinationsEventsQueue?.clear();}this.dataplaneEventsQueue?.start();}}/**
|
3083
|
+
* Enqueues the event for processing
|
3084
|
+
* @param event RudderEvent object
|
3085
|
+
* @param callback API callback function
|
3086
|
+
*/enqueue(event,callback){let dpQEvent;try{dpQEvent=getFinalEvent(event,state);this.pluginsManager.invokeSingle(`${DATA_PLANE_QUEUE_EXT_POINT_PREFIX}.enqueue`,state,this.dataplaneEventsQueue,dpQEvent,this.errorHandler,this.logger);}catch(e){this.onError(e,DATAPLANE_PLUGIN_ENQUEUE_ERROR);}try{const dQEvent=clone(event);this.pluginsManager.invokeSingle(`${DESTINATIONS_QUEUE_EXT_POINT_PREFIX}.enqueue`,state,this.destinationsEventsQueue,dQEvent,this.errorHandler,this.logger);}catch(e){this.onError(e,NATIVE_DEST_PLUGIN_ENQUEUE_ERROR);}// Invoke the callback if it exists
|
3087
|
+
try{// Using the event sent to the data plane queue here
|
3088
|
+
// to ensure the mutated (if any) event is sent to the callback
|
3089
|
+
callback?.(dpQEvent);}catch(error){this.onError(error,API_CALLBACK_INVOKE_ERROR);}}/**
|
3090
|
+
* Handles error
|
3091
|
+
* @param error The error object
|
3092
|
+
* @param customMessage a message
|
3093
|
+
* @param shouldAlwaysThrow if it should throw or use logger
|
3094
|
+
*/onError(error,customMessage,shouldAlwaysThrow){if(this.errorHandler){this.errorHandler.onError(error,EVENT_REPOSITORY,customMessage,shouldAlwaysThrow);}else {throw error;}}}
|
3095
|
+
|
3096
|
+
const dispatchSDKEvent=event=>{const customEvent=new CustomEvent(event,{detail:{analyticsInstance:globalThis.rudderanalytics},bubbles:true,cancelable:true,composed:true});globalThis.document.dispatchEvent(customEvent);};
|
3097
|
+
|
3098
|
+
/*
|
3099
|
+
* Analytics class with lifecycle based on state ad user triggered events
|
3100
|
+
*/class Analytics{/**
|
3101
|
+
* Initialize services and components or use default ones if singletons
|
3102
|
+
*/constructor(){this.preloadBuffer=new BufferQueue();this.initialized=false;this.errorHandler=defaultErrorHandler;this.logger=defaultLogger;this.externalSrcLoader=new ExternalSrcLoader(this.errorHandler,this.logger);this.capabilitiesManager=new CapabilitiesManager(this.errorHandler,this.logger);this.httpClient=defaultHttpClient;}/**
|
3103
|
+
* Start application lifecycle if not already started
|
3104
|
+
*/load(writeKey,dataPlaneUrl,loadOptions={}){if(state.lifecycle.status.value){return;}let clonedDataPlaneUrl=clone(dataPlaneUrl);let clonedLoadOptions=clone(loadOptions);// dataPlaneUrl is not provided
|
3105
|
+
if(isObjectAndNotNull(dataPlaneUrl)){clonedLoadOptions=dataPlaneUrl;clonedDataPlaneUrl=undefined;}// Set initial state values
|
3106
|
+
n(()=>{state.lifecycle.writeKey.value=writeKey;state.lifecycle.dataPlaneUrl.value=clonedDataPlaneUrl;state.loadOptions.value=normalizeLoadOptions(state.loadOptions.value,clonedLoadOptions);state.lifecycle.status.value='mounted';});// set log level as early as possible
|
3107
|
+
if(state.loadOptions.value.logLevel){this.logger?.setMinLogLevel(state.loadOptions.value.logLevel);}// Expose state to global objects
|
3108
|
+
setExposedGlobal('state',state,writeKey);// Configure initial config of any services or components here
|
3109
|
+
// State application lifecycle
|
3110
|
+
this.startLifecycle();}// Start lifecycle methods
|
3111
|
+
/**
|
3112
|
+
* Orchestrate the lifecycle of the application phases/status
|
3113
|
+
*/startLifecycle(){O(()=>{try{switch(state.lifecycle.status.value){case'mounted':this.onMounted();break;case'browserCapabilitiesReady':this.onBrowserCapabilitiesReady();break;case'configured':this.onConfigured();break;case'pluginsLoading':break;case'pluginsReady':this.onPluginsReady();break;case'initialized':this.onInitialized();break;case'loaded':this.onLoaded();break;case'destinationsLoading':break;case'destinationsReady':this.onDestinationsReady();break;case'ready':this.onReady();break;case'readyExecuted':default:break;}}catch(err){const issue='Failed to load the SDK';this.errorHandler.onError(getMutatedError(err,issue),ANALYTICS_CORE);}});}onBrowserCapabilitiesReady(){// initialize the preloaded events enqueuing
|
3114
|
+
retrievePreloadBufferEvents(this);this.prepareInternalServices();this.loadConfig();}onLoaded(){this.processBufferedEvents();// Short-circuit the life cycle and move to the ready state if pre-consent behavior is enabled
|
3115
|
+
if(state.consents.preConsent.value.enabled===true){state.lifecycle.status.value='ready';}else {this.loadDestinations();}}/**
|
3116
|
+
* Load browser polyfill if required
|
3117
|
+
*/onMounted(){this.capabilitiesManager.init();}/**
|
3118
|
+
* Enqueue in SDK preload buffer events, used from preloadBuffer component
|
3119
|
+
*/enqueuePreloadBufferEvents(bufferedEvents){if(Array.isArray(bufferedEvents)){bufferedEvents.forEach(bufferedEvent=>this.preloadBuffer.enqueue(clone(bufferedEvent)));}}/**
|
3120
|
+
* Process the buffer preloaded events by passing their arguments to the respective facade methods
|
3121
|
+
*/processDataInPreloadBuffer(){while(this.preloadBuffer.size()>0){const eventToProcess=this.preloadBuffer.dequeue();if(eventToProcess){consumePreloadBufferedEvent([...eventToProcess],this);}}}prepareInternalServices(){this.pluginsManager=new PluginsManager(defaultPluginEngine,this.errorHandler,this.logger);this.storeManager=new StoreManager(this.pluginsManager,this.errorHandler,this.logger);this.configManager=new ConfigManager(this.httpClient,this.errorHandler,this.logger);this.userSessionManager=new UserSessionManager(this.errorHandler,this.logger,this.pluginsManager,this.storeManager);this.eventRepository=new EventRepository(this.pluginsManager,this.storeManager,this.errorHandler,this.logger);this.eventManager=new EventManager(this.eventRepository,this.userSessionManager,this.errorHandler,this.logger);}/**
|
3122
|
+
* Load configuration
|
3123
|
+
*/loadConfig(){if(state.lifecycle.writeKey.value){this.httpClient.setAuthHeader(state.lifecycle.writeKey.value);}this.configManager?.init();}/**
|
3124
|
+
* Initialize the storage and event queue
|
3125
|
+
*/onPluginsReady(){this.errorHandler.init(this.externalSrcLoader);// Initialize storage
|
3126
|
+
this.storeManager?.init();this.userSessionManager?.init();// Initialize the appropriate consent manager plugin
|
3127
|
+
if(state.consents.enabled.value&&!state.consents.initialized.value){this.pluginsManager?.invokeSingle(`consentManager.init`,state,this.logger);if(state.consents.preConsent.value.enabled===false){this.pluginsManager?.invokeSingle(`consentManager.updateConsentsInfo`,state,this.storeManager,this.logger);}}// Initialize event manager
|
3128
|
+
this.eventManager?.init();// Mark the SDK as initialized
|
3129
|
+
state.lifecycle.status.value='initialized';}/**
|
3130
|
+
* Load plugins
|
3131
|
+
*/onConfigured(){this.pluginsManager?.init();// TODO: are we going to enable custom plugins to be passed as load options?
|
3132
|
+
// registerCustomPlugins(state.loadOptions.value.customPlugins);
|
3133
|
+
}/**
|
3134
|
+
* Trigger onLoaded callback if any is provided in config & emit initialised event
|
3135
|
+
*/onInitialized(){// Process any preloaded events
|
3136
|
+
this.processDataInPreloadBuffer();// TODO: we need to avoid passing the window object to the callback function
|
3137
|
+
// as this will prevent us from supporting multiple SDK instances in the same page
|
3138
|
+
// Execute onLoaded callback if provided in load options
|
3139
|
+
if(isFunction(state.loadOptions.value.onLoaded)){state.loadOptions.value.onLoaded(globalThis.rudderanalytics);}// Set lifecycle state
|
3140
|
+
n(()=>{state.lifecycle.loaded.value=true;state.lifecycle.status.value='loaded';});this.initialized=true;// Emit an event to use as substitute to the onLoaded callback
|
3141
|
+
dispatchSDKEvent('RSA_Initialised');}/**
|
3142
|
+
* Emit ready event
|
3143
|
+
*/ // eslint-disable-next-line class-methods-use-this
|
3144
|
+
onReady(){state.lifecycle.status.value='readyExecuted';state.eventBuffer.readyCallbacksArray.value.forEach(callback=>{try{callback();}catch(err){this.errorHandler.onError(err,ANALYTICS_CORE,READY_CALLBACK_INVOKE_ERROR);}});// Emit an event to use as substitute to the ready callback
|
3145
|
+
dispatchSDKEvent('RSA_Ready');}/**
|
3146
|
+
* Consume preloaded events buffer
|
3147
|
+
*/processBufferedEvents(){// This logic has been intentionally implemented without a simple
|
3148
|
+
// for-loop as the individual events that are processed may
|
3149
|
+
// add more events to the buffer (this is needed for the consent API)
|
3150
|
+
let bufferedEvents=state.eventBuffer.toBeProcessedArray.value;while(bufferedEvents.length>0){const bufferedEvent=bufferedEvents.shift();state.eventBuffer.toBeProcessedArray.value=bufferedEvents;if(bufferedEvent){const methodName=bufferedEvent[0];if(isFunction(this[methodName])){// Send additional arg 'true' to indicate that this is a buffered invocation
|
3151
|
+
this[methodName](...bufferedEvent.slice(1),true);}}bufferedEvents=state.eventBuffer.toBeProcessedArray.value;}}/**
|
3152
|
+
* Load device mode destinations
|
3153
|
+
*/loadDestinations(){if(state.nativeDestinations.clientDestinationsReady.value){return;}// Set in state the desired activeDestinations to inject in DOM
|
3154
|
+
this.pluginsManager?.invokeSingle('nativeDestinations.setActiveDestinations',state,this.pluginsManager,this.errorHandler,this.logger);const totalDestinationsToLoad=state.nativeDestinations.activeDestinations.value.length;if(totalDestinationsToLoad===0){state.lifecycle.status.value='destinationsReady';return;}// Start loading native integration scripts and create instances
|
3155
|
+
state.lifecycle.status.value='destinationsLoading';this.pluginsManager?.invokeSingle('nativeDestinations.load',state,this.externalSrcLoader,this.errorHandler,this.logger);// Progress to next lifecycle phase if all native destinations are initialized or failed
|
3156
|
+
O(()=>{const areAllDestinationsReady=totalDestinationsToLoad===0||state.nativeDestinations.initializedDestinations.value.length+state.nativeDestinations.failedDestinations.value.length===totalDestinationsToLoad;if(areAllDestinationsReady){n(()=>{state.lifecycle.status.value='destinationsReady';state.nativeDestinations.clientDestinationsReady.value=true;});}});}/**
|
3157
|
+
* Move to the ready state
|
3158
|
+
*/ // eslint-disable-next-line class-methods-use-this
|
3159
|
+
onDestinationsReady(){// May be do any destination specific actions here
|
3160
|
+
// Mark the ready status if not already done
|
3161
|
+
if(state.lifecycle.status.value!=='ready'){state.lifecycle.status.value='ready';}}// End lifecycle methods
|
3162
|
+
// Start consumer exposed methods
|
3163
|
+
ready(callback,isBufferedInvocation=false){const type='ready';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,callback]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} invocation`);if(!isFunction(callback)){this.logger.error(READY_API_CALLBACK_ERROR(READY_API));return;}/**
|
3164
|
+
* If destinations are loaded or no integration is available for loading
|
3165
|
+
* execute the callback immediately else push the callbacks to a queue that
|
3166
|
+
* will be executed after loading completes
|
3167
|
+
*/if(state.lifecycle.status.value==='readyExecuted'){try{callback();}catch(err){this.errorHandler.onError(err,ANALYTICS_CORE,READY_CALLBACK_INVOKE_ERROR);}}else {state.eventBuffer.readyCallbacksArray.value=[...state.eventBuffer.readyCallbacksArray.value,callback];}}page(payload,isBufferedInvocation=false){const type='page';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,payload]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} event`);state.metrics.triggered.value+=1;this.eventManager?.addEvent({type:'page',category:payload.category,name:payload.name,properties:payload.properties,options:payload.options,callback:payload.callback});// TODO: Maybe we should alter the behavior to send the ad-block page event even if the SDK is still loaded. It'll be pushed into the to be processed queue.
|
3168
|
+
// Send automatic ad blocked page event if ad-blockers are detected on the page
|
3169
|
+
// Check page category to avoid infinite loop
|
3170
|
+
if(state.capabilities.isAdBlocked.value===true&&payload.category!==ADBLOCK_PAGE_CATEGORY){this.page(pageArgumentsToCallOptions(ADBLOCK_PAGE_CATEGORY,ADBLOCK_PAGE_NAME,{// 'title' is intentionally omitted as it does not make sense
|
3171
|
+
// in v3 implementation
|
3172
|
+
path:ADBLOCK_PAGE_PATH},state.loadOptions.value.sendAdblockPageOptions));}}track(payload,isBufferedInvocation=false){const type='track';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,payload]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} event`);state.metrics.triggered.value+=1;this.eventManager?.addEvent({type,name:payload.name||undefined,properties:payload.properties,options:payload.options,callback:payload.callback});}identify(payload,isBufferedInvocation=false){const type='identify';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,payload]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} event`);state.metrics.triggered.value+=1;const shouldResetSession=Boolean(payload.userId&&state.session.userId.value&&payload.userId!==state.session.userId.value);if(shouldResetSession){this.reset();}// `null` value indicates that previous user ID needs to be retained
|
3173
|
+
if(!isNull(payload.userId)){this.userSessionManager?.setUserId(payload.userId);}this.userSessionManager?.setUserTraits(payload.traits);this.eventManager?.addEvent({type,userId:payload.userId,traits:payload.traits,options:payload.options,callback:payload.callback});}alias(payload,isBufferedInvocation=false){const type='alias';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,payload]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} event`);state.metrics.triggered.value+=1;const previousId=payload.from??this.userSessionManager?.getUserId()??this.userSessionManager?.getAnonymousId();this.eventManager?.addEvent({type,to:payload.to,from:previousId,options:payload.options,callback:payload.callback});}group(payload,isBufferedInvocation=false){const type='group';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,payload]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} event`);state.metrics.triggered.value+=1;// `null` value indicates that previous group ID needs to be retained
|
3174
|
+
if(!isNull(payload.groupId)){this.userSessionManager?.setGroupId(payload.groupId);}this.userSessionManager?.setGroupTraits(payload.traits);this.eventManager?.addEvent({type,groupId:payload.groupId,traits:payload.traits,options:payload.options,callback:payload.callback});}reset(resetAnonymousId,isBufferedInvocation=false){const type='reset';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,resetAnonymousId]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} invocation, resetAnonymousId: ${resetAnonymousId}`);this.userSessionManager?.reset(resetAnonymousId);}getAnonymousId(options){return this.userSessionManager?.getAnonymousId(options);}setAnonymousId(anonymousId,rudderAmpLinkerParam,isBufferedInvocation=false){const type='setAnonymousId';// Buffering is needed as setting the anonymous ID may require invoking the GoogleLinker plugin
|
3175
|
+
if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,anonymousId,rudderAmpLinkerParam]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} invocation`);this.userSessionManager?.setAnonymousId(anonymousId,rudderAmpLinkerParam);}// eslint-disable-next-line class-methods-use-this
|
3176
|
+
getUserId(){return state.session.userId.value;}// eslint-disable-next-line class-methods-use-this
|
3177
|
+
getUserTraits(){return state.session.userTraits.value;}// eslint-disable-next-line class-methods-use-this
|
3178
|
+
getGroupId(){return state.session.groupId.value;}// eslint-disable-next-line class-methods-use-this
|
3179
|
+
getGroupTraits(){return state.session.groupTraits.value;}startSession(sessionId,isBufferedInvocation=false){const type='startSession';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,sessionId]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} invocation`);this.userSessionManager?.start(sessionId);}endSession(isBufferedInvocation=false){const type='endSession';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type]];return;}this.errorHandler.leaveBreadcrumb(`New ${type} invocation`);this.userSessionManager?.end();}// eslint-disable-next-line class-methods-use-this
|
3180
|
+
getSessionId(){const sessionId=this.userSessionManager?.getSessionId();return sessionId??null;}consent(options,isBufferedInvocation=false){const type='consent';if(!state.lifecycle.loaded.value){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,[type,options]];return;}this.errorHandler.leaveBreadcrumb(`New consent invocation`);n(()=>{state.consents.preConsent.value={...state.consents.preConsent.value,enabled:false};state.consents.postConsent.value=getValidPostConsentOptions(options);const{initialized,consentsData}=getConsentManagementData(state.consents.postConsent.value.consentManagement,this.logger);state.consents.initialized.value=initialized||state.consents.initialized.value;state.consents.data.value=consentsData;});// Update consents data in state
|
3181
|
+
if(state.consents.enabled.value&&!state.consents.initialized.value){this.pluginsManager?.invokeSingle(`consentManager.updateConsentsInfo`,state,this.storeManager,this.logger);}// Re-init store manager
|
3182
|
+
this.storeManager?.initializeStorageState();// Re-init user session manager
|
3183
|
+
this.userSessionManager?.syncStorageDataToState();// Resume event manager to process the events to destinations
|
3184
|
+
this.eventManager?.resume();this.loadDestinations();this.sendTrackingEvents(isBufferedInvocation);}sendTrackingEvents(isBufferedInvocation){// If isBufferedInvocation is true, then the tracking events will be added to the end of the
|
3185
|
+
// events buffer array so that any other preload events (mainly from query string API) will be processed first.
|
3186
|
+
if(state.consents.postConsent.value.trackConsent){const trackOptions=trackArgumentsToCallOptions(CONSENT_TRACK_EVENT_NAME);if(isBufferedInvocation){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,['track',trackOptions]];}else {this.track(trackOptions);}}if(state.consents.postConsent.value.sendPageEvent){const pageOptions=pageArgumentsToCallOptions();if(isBufferedInvocation){state.eventBuffer.toBeProcessedArray.value=[...state.eventBuffer.toBeProcessedArray.value,['page',pageOptions]];}else {this.page(pageOptions);}}}setAuthToken(token){this.userSessionManager?.setAuthToken(token);}// End consumer exposed methods
|
3187
|
+
}
|
3188
|
+
|
3189
|
+
/*
|
3190
|
+
* RudderAnalytics facade singleton that is exposed as global object and will:
|
3191
|
+
* expose overloaded methods
|
3192
|
+
* handle multiple Analytics instances
|
3193
|
+
* consume SDK preload event buffer
|
3194
|
+
*/class RudderAnalytics{static globalSingleton=null;analyticsInstances={};defaultAnalyticsKey='';logger=defaultLogger;// Singleton with constructor bind methods
|
3195
|
+
constructor(){if(RudderAnalytics.globalSingleton){// START-NO-SONAR-SCAN
|
3196
|
+
// eslint-disable-next-line no-constructor-return
|
3197
|
+
return RudderAnalytics.globalSingleton;// END-NO-SONAR-SCAN
|
3198
|
+
}defaultErrorHandler.attachErrorListeners();this.setDefaultInstanceKey=this.setDefaultInstanceKey.bind(this);this.getAnalyticsInstance=this.getAnalyticsInstance.bind(this);this.load=this.load.bind(this);this.ready=this.ready.bind(this);this.triggerBufferedLoadEvent=this.triggerBufferedLoadEvent.bind(this);this.page=this.page.bind(this);this.track=this.track.bind(this);this.identify=this.identify.bind(this);this.alias=this.alias.bind(this);this.group=this.group.bind(this);this.reset=this.reset.bind(this);this.getAnonymousId=this.getAnonymousId.bind(this);this.setAnonymousId=this.setAnonymousId.bind(this);this.getUserId=this.getUserId.bind(this);this.getUserTraits=this.getUserTraits.bind(this);this.getGroupId=this.getGroupId.bind(this);this.getGroupTraits=this.getGroupTraits.bind(this);this.startSession=this.startSession.bind(this);this.endSession=this.endSession.bind(this);this.getSessionId=this.getSessionId.bind(this);this.setAuthToken=this.setAuthToken.bind(this);this.consent=this.consent.bind(this);RudderAnalytics.globalSingleton=this;// start loading if a load event was buffered or wait for explicit load call
|
3199
|
+
this.triggerBufferedLoadEvent();}/**
|
3200
|
+
* Set instance to use if no specific writeKey is provided in methods
|
3201
|
+
* automatically for the first created instance
|
3202
|
+
* TODO: to support multiple analytics instances in the near future
|
3203
|
+
*/setDefaultInstanceKey(writeKey){if(writeKey){this.defaultAnalyticsKey=writeKey;}}/**
|
3204
|
+
* Retrieve an existing analytics instance
|
3205
|
+
*/getAnalyticsInstance(writeKey){const instanceId=writeKey??this.defaultAnalyticsKey;const analyticsInstanceExists=Boolean(this.analyticsInstances[instanceId]);if(!analyticsInstanceExists){this.analyticsInstances[instanceId]=new Analytics();}return this.analyticsInstances[instanceId];}/**
|
3206
|
+
* Create new analytics instance and trigger application lifecycle start
|
3207
|
+
*/load(writeKey,dataPlaneUrl,loadOptions){if(!isString(writeKey)){this.logger.error(WRITE_KEY_NOT_A_STRING_ERROR(RS_APP,writeKey));return;}if(this.analyticsInstances[writeKey]){return;}this.setDefaultInstanceKey(writeKey);this.analyticsInstances[writeKey]=new Analytics();this.getAnalyticsInstance(writeKey).load(writeKey,dataPlaneUrl,loadOptions);}/**
|
3208
|
+
* Trigger load event in buffer queue if exists and stores the
|
3209
|
+
* remaining preloaded events array in global object
|
3210
|
+
*/triggerBufferedLoadEvent(){const preloadedEventsArray=Array.isArray(globalThis.rudderanalytics)?globalThis.rudderanalytics:[];// The array will be mutated in the below method
|
3211
|
+
promotePreloadedConsentEventsToTop(preloadedEventsArray);// Get any load method call that is buffered if any
|
3212
|
+
// BTW, load method is also removed from the array
|
3213
|
+
// So, the Analytics object can directly consume the remaining events
|
3214
|
+
const loadEvent=getPreloadedLoadEvent(preloadedEventsArray);// Set the final preloaded events array in global object
|
3215
|
+
setExposedGlobal(GLOBAL_PRELOAD_BUFFER,clone(preloadedEventsArray));// Process load method if present in the buffered requests
|
3216
|
+
if(loadEvent.length>0){// Remove the event name from the Buffered Event array and keep only arguments
|
3217
|
+
loadEvent.shift();// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
3218
|
+
// @ts-ignore
|
3219
|
+
this.load.apply(null,loadEvent);}}/**
|
3220
|
+
* Get ready callback arguments and forward to ready call
|
3221
|
+
*/ready(callback){this.getAnalyticsInstance().ready(callback);}/**
|
3222
|
+
* Process page arguments and forward to page call
|
3223
|
+
*/page(category,name,properties,options,callback){this.getAnalyticsInstance().page(pageArgumentsToCallOptions(category,name,properties,options,callback));}/**
|
3224
|
+
* Process track arguments and forward to page call
|
3225
|
+
*/track(event,properties,options,callback){this.getAnalyticsInstance().track(trackArgumentsToCallOptions(event,properties,options,callback));}/**
|
3226
|
+
* Process identify arguments and forward to page call
|
3227
|
+
*/identify(userId,traits,options,callback){this.getAnalyticsInstance().identify(identifyArgumentsToCallOptions(userId,traits,options,callback));}/**
|
3228
|
+
* Process alias arguments and forward to page call
|
3229
|
+
*/alias(to,from,options,callback){this.getAnalyticsInstance().alias(aliasArgumentsToCallOptions(to,from,options,callback));}/**
|
3230
|
+
* Process group arguments and forward to page call
|
3231
|
+
*/group(groupId,traits,options,callback){if(arguments.length===0){this.logger.error(EMPTY_GROUP_CALL_ERROR(RS_APP));return;}this.getAnalyticsInstance().group(groupArgumentsToCallOptions(groupId,traits,options,callback));}reset(resetAnonymousId){this.getAnalyticsInstance().reset(resetAnonymousId);}getAnonymousId(options){return this.getAnalyticsInstance().getAnonymousId(options);}setAnonymousId(anonymousId,rudderAmpLinkerParam){this.getAnalyticsInstance().setAnonymousId(anonymousId,rudderAmpLinkerParam);}getUserId(){return this.getAnalyticsInstance().getUserId();}getUserTraits(){return this.getAnalyticsInstance().getUserTraits();}getGroupId(){return this.getAnalyticsInstance().getGroupId();}getGroupTraits(){return this.getAnalyticsInstance().getGroupTraits();}startSession(sessionId){return this.getAnalyticsInstance().startSession(sessionId);}endSession(){return this.getAnalyticsInstance().endSession();}getSessionId(){return this.getAnalyticsInstance().getSessionId();}setAuthToken(token){return this.getAnalyticsInstance().setAuthToken(token);}consent(options){return this.getAnalyticsInstance().consent(options);}}
|
3232
|
+
|
3233
|
+
exports.RudderAnalytics = RudderAnalytics;
|