@salla.sa/twilight-components 2.11.85 → 2.11.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/_commonjsHelpers-f57e29ee.js +256 -0
- package/dist/cjs/{app-globals-08c1c2af.js → app-globals-bf20263f.js} +2007 -40
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/salla-button_37.cjs.entry.js +7 -3
- package/dist/cjs/twilight.cjs.js +2 -2
- package/dist/collection/components/salla-localization-modal/salla-localization-modal.js +5 -1
- package/dist/components/index.js +2006 -38
- package/dist/components/salla-localization-modal.js +5 -1
- package/dist/components/salla-quick-buy2.js +228 -2
- package/dist/esm/_commonjsHelpers-a7c4abac.js +250 -0
- package/dist/esm/{app-globals-3e9f7127.js → app-globals-30874674.js} +2006 -39
- package/dist/esm/loader.js +2 -2
- package/dist/esm/salla-button_37.entry.js +7 -3
- package/dist/esm/twilight.js +2 -2
- package/dist/esm-es5/_commonjsHelpers-a7c4abac.js +4 -0
- package/dist/esm-es5/app-globals-30874674.js +30 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/salla-button_37.entry.js +2 -2
- package/dist/esm-es5/twilight.js +1 -1
- package/dist/twilight/{p-20bef15d.system.entry.js → p-0d221d45.system.entry.js} +9 -9
- package/dist/twilight/p-71b1ddca.js +24 -0
- package/dist/twilight/{p-7ea02f41.system.js → p-7f520307.system.js} +1 -1
- package/dist/twilight/p-854e2c89.system.js +30 -0
- package/dist/twilight/p-99ed8fff.system.js +4 -0
- package/dist/twilight/p-ce54db8d.js +4 -0
- package/dist/twilight/p-df0e0ea8.entry.js +36 -0
- package/dist/twilight/twilight.esm.js +1 -1
- package/dist/twilight/twilight.js +1 -1
- package/package.json +5 -5
- package/dist/cjs/_commonjsHelpers-691dd63b.js +0 -28
- package/dist/esm/_commonjsHelpers-1415ffd3.js +0 -24
- package/dist/esm-es5/_commonjsHelpers-1415ffd3.js +0 -4
- package/dist/esm-es5/app-globals-3e9f7127.js +0 -24
- package/dist/twilight/p-45b4a309.entry.js +0 -36
- package/dist/twilight/p-63b59f65.js +0 -24
- package/dist/twilight/p-9beb6b7b.system.js +0 -4
- package/dist/twilight/p-b87e4299.system.js +0 -24
- package/dist/twilight/p-f84bae34.js +0 -4
package/dist/components/index.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Crafted with ❤ by Salla
|
|
3
3
|
*/
|
|
4
4
|
export { setAssetPath, setPlatformOptions } from '@stencil/core/internal/client';
|
|
5
|
+
import { b as browser$1, g as global } from './salla-quick-buy2.js';
|
|
5
6
|
import { c as commonjsGlobal, a as createCommonjsModule } from './_commonjsHelpers.js';
|
|
6
7
|
export { SallaAddProductButton, defineCustomElement as defineCustomElementSallaAddProductButton } from './salla-add-product-button.js';
|
|
7
8
|
export { SallaButton, defineCustomElement as defineCustomElementSallaButton } from './salla-button.js';
|
|
@@ -71,9 +72,9 @@ export { SallaVerify, defineCustomElement as defineCustomElementSallaVerify } fr
|
|
|
71
72
|
* _.isArray(_.noop);
|
|
72
73
|
* // => false
|
|
73
74
|
*/
|
|
74
|
-
var isArray$
|
|
75
|
+
var isArray$2 = Array.isArray;
|
|
75
76
|
|
|
76
|
-
var isArray_1 = isArray$
|
|
77
|
+
var isArray_1 = isArray$2;
|
|
77
78
|
|
|
78
79
|
/** Detect free variable `global` from Node.js. */
|
|
79
80
|
var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
|
|
@@ -1138,11 +1139,11 @@ var _baseToString = baseToString;
|
|
|
1138
1139
|
* _.toString([1, 2, 3]);
|
|
1139
1140
|
* // => '1,2,3'
|
|
1140
1141
|
*/
|
|
1141
|
-
function toString$
|
|
1142
|
+
function toString$2(value) {
|
|
1142
1143
|
return value == null ? '' : _baseToString(value);
|
|
1143
1144
|
}
|
|
1144
1145
|
|
|
1145
|
-
var toString_1 = toString$
|
|
1146
|
+
var toString_1 = toString$2;
|
|
1146
1147
|
|
|
1147
1148
|
/**
|
|
1148
1149
|
* Casts `value` to a path array if it's not one.
|
|
@@ -1242,7 +1243,7 @@ var eventemitter2 = createCommonjsModule(function (module, exports) {
|
|
|
1242
1243
|
return Object.prototype.toString.call(obj) === "[object Array]";
|
|
1243
1244
|
};
|
|
1244
1245
|
var defaultMaxListeners = 10;
|
|
1245
|
-
var nextTickSupported= typeof
|
|
1246
|
+
var nextTickSupported= typeof browser$1=='object' && typeof browser$1.nextTick=='function';
|
|
1246
1247
|
var symbolsSupported= typeof Symbol==='function';
|
|
1247
1248
|
var reflectSupported= typeof Reflect === 'object';
|
|
1248
1249
|
var setImmediateSupported= typeof setImmediate === 'function';
|
|
@@ -1291,12 +1292,12 @@ var eventemitter2 = createCommonjsModule(function (module, exports) {
|
|
|
1291
1292
|
errorMsg += ' Event name: ' + eventName + '.';
|
|
1292
1293
|
}
|
|
1293
1294
|
|
|
1294
|
-
if(typeof
|
|
1295
|
+
if(typeof browser$1 !== 'undefined' && browser$1.emitWarning){
|
|
1295
1296
|
var e = new Error(errorMsg);
|
|
1296
1297
|
e.name = 'MaxListenersExceededWarning';
|
|
1297
1298
|
e.emitter = this;
|
|
1298
1299
|
e.count = count;
|
|
1299
|
-
|
|
1300
|
+
browser$1.emitWarning(e);
|
|
1300
1301
|
} else {
|
|
1301
1302
|
console.error(errorMsg);
|
|
1302
1303
|
|
|
@@ -2002,7 +2003,7 @@ var eventemitter2 = createCommonjsModule(function (module, exports) {
|
|
|
2002
2003
|
}).then(function () {
|
|
2003
2004
|
context.event = event;
|
|
2004
2005
|
return _listener.apply(context, args)
|
|
2005
|
-
})) : (nextTick ?
|
|
2006
|
+
})) : (nextTick ? browser$1.nextTick : _setImmediate)(function () {
|
|
2006
2007
|
context.event = event;
|
|
2007
2008
|
_listener.apply(context, args);
|
|
2008
2009
|
});
|
|
@@ -3215,8 +3216,8 @@ var Global$2 = util.Global;
|
|
|
3215
3216
|
|
|
3216
3217
|
var localStorage_1 = {
|
|
3217
3218
|
name: 'localStorage',
|
|
3218
|
-
read: read$
|
|
3219
|
-
write: write$
|
|
3219
|
+
read: read$4,
|
|
3220
|
+
write: write$4,
|
|
3220
3221
|
each: each$3,
|
|
3221
3222
|
remove: remove$3,
|
|
3222
3223
|
clearAll: clearAll$3,
|
|
@@ -3226,18 +3227,18 @@ function localStorage() {
|
|
|
3226
3227
|
return Global$2.localStorage
|
|
3227
3228
|
}
|
|
3228
3229
|
|
|
3229
|
-
function read$
|
|
3230
|
+
function read$4(key) {
|
|
3230
3231
|
return localStorage().getItem(key)
|
|
3231
3232
|
}
|
|
3232
3233
|
|
|
3233
|
-
function write$
|
|
3234
|
+
function write$4(key, data) {
|
|
3234
3235
|
return localStorage().setItem(key, data)
|
|
3235
3236
|
}
|
|
3236
3237
|
|
|
3237
3238
|
function each$3(fn) {
|
|
3238
3239
|
for (var i = localStorage().length - 1; i >= 0; i--) {
|
|
3239
3240
|
var key = localStorage().key(i);
|
|
3240
|
-
fn(read$
|
|
3241
|
+
fn(read$4(key), key);
|
|
3241
3242
|
}
|
|
3242
3243
|
}
|
|
3243
3244
|
|
|
@@ -3253,8 +3254,8 @@ var Global$1 = util.Global;
|
|
|
3253
3254
|
|
|
3254
3255
|
var sessionStorage_1 = {
|
|
3255
3256
|
name: 'sessionStorage',
|
|
3256
|
-
read: read$
|
|
3257
|
-
write: write$
|
|
3257
|
+
read: read$3,
|
|
3258
|
+
write: write$3,
|
|
3258
3259
|
each: each$2,
|
|
3259
3260
|
remove: remove$2,
|
|
3260
3261
|
clearAll: clearAll$2
|
|
@@ -3264,18 +3265,18 @@ function sessionStorage() {
|
|
|
3264
3265
|
return Global$1.sessionStorage
|
|
3265
3266
|
}
|
|
3266
3267
|
|
|
3267
|
-
function read$
|
|
3268
|
+
function read$3(key) {
|
|
3268
3269
|
return sessionStorage().getItem(key)
|
|
3269
3270
|
}
|
|
3270
3271
|
|
|
3271
|
-
function write$
|
|
3272
|
+
function write$3(key, data) {
|
|
3272
3273
|
return sessionStorage().setItem(key, data)
|
|
3273
3274
|
}
|
|
3274
3275
|
|
|
3275
3276
|
function each$2(fn) {
|
|
3276
3277
|
for (var i = sessionStorage().length - 1; i >= 0; i--) {
|
|
3277
3278
|
var key = sessionStorage().key(i);
|
|
3278
|
-
fn(read$
|
|
3279
|
+
fn(read$3(key), key);
|
|
3279
3280
|
}
|
|
3280
3281
|
}
|
|
3281
3282
|
|
|
@@ -3297,8 +3298,8 @@ var trim$1 = util.trim;
|
|
|
3297
3298
|
|
|
3298
3299
|
var cookieStorage = {
|
|
3299
3300
|
name: 'cookieStorage',
|
|
3300
|
-
read: read$
|
|
3301
|
-
write: write$
|
|
3301
|
+
read: read$2,
|
|
3302
|
+
write: write$2,
|
|
3302
3303
|
each: each$1,
|
|
3303
3304
|
remove: remove$1,
|
|
3304
3305
|
clearAll: clearAll$1,
|
|
@@ -3306,7 +3307,7 @@ var cookieStorage = {
|
|
|
3306
3307
|
|
|
3307
3308
|
var doc = Global.document;
|
|
3308
3309
|
|
|
3309
|
-
function read$
|
|
3310
|
+
function read$2(key) {
|
|
3310
3311
|
if (!key || !_has(key)) { return null }
|
|
3311
3312
|
var regexpStr = "(?:^|.*;\\s*)" +
|
|
3312
3313
|
escape(key).replace(/[\-\.\+\*]/g, "\\$&") +
|
|
@@ -3327,7 +3328,7 @@ function each$1(callback) {
|
|
|
3327
3328
|
}
|
|
3328
3329
|
}
|
|
3329
3330
|
|
|
3330
|
-
function write$
|
|
3331
|
+
function write$2(key, data) {
|
|
3331
3332
|
if(!key) { return }
|
|
3332
3333
|
doc.cookie = escape(key) + "=" + escape(data) + "; expires=Tue, 19 Jan 2038 03:14:07 GMT; path=/";
|
|
3333
3334
|
}
|
|
@@ -3356,8 +3357,8 @@ function _has(key) {
|
|
|
3356
3357
|
|
|
3357
3358
|
var memoryStorage_1 = {
|
|
3358
3359
|
name: 'memoryStorage',
|
|
3359
|
-
read: read,
|
|
3360
|
-
write: write,
|
|
3360
|
+
read: read$1,
|
|
3361
|
+
write: write$1,
|
|
3361
3362
|
each: each,
|
|
3362
3363
|
remove: remove,
|
|
3363
3364
|
clearAll: clearAll,
|
|
@@ -3365,11 +3366,11 @@ var memoryStorage_1 = {
|
|
|
3365
3366
|
|
|
3366
3367
|
var memoryStorage = {};
|
|
3367
3368
|
|
|
3368
|
-
function read(key) {
|
|
3369
|
+
function read$1(key) {
|
|
3369
3370
|
return memoryStorage[key]
|
|
3370
3371
|
}
|
|
3371
3372
|
|
|
3372
|
-
function write(key, data) {
|
|
3373
|
+
function write$1(key, data) {
|
|
3373
3374
|
memoryStorage[key] = data;
|
|
3374
3375
|
}
|
|
3375
3376
|
|
|
@@ -5550,13 +5551,13 @@ var bind = function bind(fn, thisArg) {
|
|
|
5550
5551
|
|
|
5551
5552
|
// utils is a library of generic helper functions non-specific to axios
|
|
5552
5553
|
|
|
5553
|
-
var toString = Object.prototype.toString;
|
|
5554
|
+
var toString$1 = Object.prototype.toString;
|
|
5554
5555
|
|
|
5555
5556
|
// eslint-disable-next-line func-names
|
|
5556
5557
|
var kindOf = (function(cache) {
|
|
5557
5558
|
// eslint-disable-next-line func-names
|
|
5558
5559
|
return function(thing) {
|
|
5559
|
-
var str = toString.call(thing);
|
|
5560
|
+
var str = toString$1.call(thing);
|
|
5560
5561
|
return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
|
|
5561
5562
|
};
|
|
5562
5563
|
})(Object.create(null));
|
|
@@ -5574,7 +5575,7 @@ function kindOfTest(type) {
|
|
|
5574
5575
|
* @param {Object} val The value to test
|
|
5575
5576
|
* @returns {boolean} True if value is an Array, otherwise false
|
|
5576
5577
|
*/
|
|
5577
|
-
function isArray(val) {
|
|
5578
|
+
function isArray$1(val) {
|
|
5578
5579
|
return Array.isArray(val);
|
|
5579
5580
|
}
|
|
5580
5581
|
|
|
@@ -5594,7 +5595,7 @@ function isUndefined(val) {
|
|
|
5594
5595
|
* @param {Object} val The value to test
|
|
5595
5596
|
* @returns {boolean} True if value is a Buffer, otherwise false
|
|
5596
5597
|
*/
|
|
5597
|
-
function isBuffer(val) {
|
|
5598
|
+
function isBuffer$1(val) {
|
|
5598
5599
|
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
|
|
5599
5600
|
&& typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);
|
|
5600
5601
|
}
|
|
@@ -5713,7 +5714,7 @@ var isFileList = kindOfTest('FileList');
|
|
|
5713
5714
|
* @returns {boolean} True if value is a Function, otherwise false
|
|
5714
5715
|
*/
|
|
5715
5716
|
function isFunction(val) {
|
|
5716
|
-
return toString.call(val) === '[object Function]';
|
|
5717
|
+
return toString$1.call(val) === '[object Function]';
|
|
5717
5718
|
}
|
|
5718
5719
|
|
|
5719
5720
|
/**
|
|
@@ -5736,7 +5737,7 @@ function isFormData(thing) {
|
|
|
5736
5737
|
var pattern = '[object FormData]';
|
|
5737
5738
|
return thing && (
|
|
5738
5739
|
(typeof FormData === 'function' && thing instanceof FormData) ||
|
|
5739
|
-
toString.call(thing) === pattern ||
|
|
5740
|
+
toString$1.call(thing) === pattern ||
|
|
5740
5741
|
(isFunction(thing.toString) && thing.toString() === pattern)
|
|
5741
5742
|
);
|
|
5742
5743
|
}
|
|
@@ -5810,7 +5811,7 @@ function forEach(obj, fn) {
|
|
|
5810
5811
|
obj = [obj];
|
|
5811
5812
|
}
|
|
5812
5813
|
|
|
5813
|
-
if (isArray(obj)) {
|
|
5814
|
+
if (isArray$1(obj)) {
|
|
5814
5815
|
// Iterate over array values
|
|
5815
5816
|
for (var i = 0, l = obj.length; i < l; i++) {
|
|
5816
5817
|
fn.call(null, obj[i], i, obj);
|
|
@@ -5849,7 +5850,7 @@ function merge(/* obj1, obj2, obj3, ... */) {
|
|
|
5849
5850
|
result[key] = merge(result[key], val);
|
|
5850
5851
|
} else if (isPlainObject(val)) {
|
|
5851
5852
|
result[key] = merge({}, val);
|
|
5852
|
-
} else if (isArray(val)) {
|
|
5853
|
+
} else if (isArray$1(val)) {
|
|
5853
5854
|
result[key] = val.slice();
|
|
5854
5855
|
} else {
|
|
5855
5856
|
result[key] = val;
|
|
@@ -5983,9 +5984,9 @@ var isTypedArray = (function(TypedArray) {
|
|
|
5983
5984
|
})(typeof Uint8Array !== 'undefined' && Object.getPrototypeOf(Uint8Array));
|
|
5984
5985
|
|
|
5985
5986
|
var utils = {
|
|
5986
|
-
isArray: isArray,
|
|
5987
|
+
isArray: isArray$1,
|
|
5987
5988
|
isArrayBuffer: isArrayBuffer,
|
|
5988
|
-
isBuffer: isBuffer,
|
|
5989
|
+
isBuffer: isBuffer$1,
|
|
5989
5990
|
isFormData: isFormData,
|
|
5990
5991
|
isArrayBufferView: isArrayBufferView,
|
|
5991
5992
|
isString: isString,
|
|
@@ -6231,6 +6232,1973 @@ var transitional = {
|
|
|
6231
6232
|
clarifyTimeoutError: false
|
|
6232
6233
|
};
|
|
6233
6234
|
|
|
6235
|
+
var lookup = [];
|
|
6236
|
+
var revLookup = [];
|
|
6237
|
+
var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array;
|
|
6238
|
+
var inited = false;
|
|
6239
|
+
function init () {
|
|
6240
|
+
inited = true;
|
|
6241
|
+
var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
|
|
6242
|
+
for (var i = 0, len = code.length; i < len; ++i) {
|
|
6243
|
+
lookup[i] = code[i];
|
|
6244
|
+
revLookup[code.charCodeAt(i)] = i;
|
|
6245
|
+
}
|
|
6246
|
+
|
|
6247
|
+
revLookup['-'.charCodeAt(0)] = 62;
|
|
6248
|
+
revLookup['_'.charCodeAt(0)] = 63;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
function toByteArray (b64) {
|
|
6252
|
+
if (!inited) {
|
|
6253
|
+
init();
|
|
6254
|
+
}
|
|
6255
|
+
var i, j, l, tmp, placeHolders, arr;
|
|
6256
|
+
var len = b64.length;
|
|
6257
|
+
|
|
6258
|
+
if (len % 4 > 0) {
|
|
6259
|
+
throw new Error('Invalid string. Length must be a multiple of 4')
|
|
6260
|
+
}
|
|
6261
|
+
|
|
6262
|
+
// the number of equal signs (place holders)
|
|
6263
|
+
// if there are two placeholders, than the two characters before it
|
|
6264
|
+
// represent one byte
|
|
6265
|
+
// if there is only one, then the three characters before it represent 2 bytes
|
|
6266
|
+
// this is just a cheap hack to not do indexOf twice
|
|
6267
|
+
placeHolders = b64[len - 2] === '=' ? 2 : b64[len - 1] === '=' ? 1 : 0;
|
|
6268
|
+
|
|
6269
|
+
// base64 is 4/3 + up to two characters of the original data
|
|
6270
|
+
arr = new Arr(len * 3 / 4 - placeHolders);
|
|
6271
|
+
|
|
6272
|
+
// if there are placeholders, only get up to the last complete 4 chars
|
|
6273
|
+
l = placeHolders > 0 ? len - 4 : len;
|
|
6274
|
+
|
|
6275
|
+
var L = 0;
|
|
6276
|
+
|
|
6277
|
+
for (i = 0, j = 0; i < l; i += 4, j += 3) {
|
|
6278
|
+
tmp = (revLookup[b64.charCodeAt(i)] << 18) | (revLookup[b64.charCodeAt(i + 1)] << 12) | (revLookup[b64.charCodeAt(i + 2)] << 6) | revLookup[b64.charCodeAt(i + 3)];
|
|
6279
|
+
arr[L++] = (tmp >> 16) & 0xFF;
|
|
6280
|
+
arr[L++] = (tmp >> 8) & 0xFF;
|
|
6281
|
+
arr[L++] = tmp & 0xFF;
|
|
6282
|
+
}
|
|
6283
|
+
|
|
6284
|
+
if (placeHolders === 2) {
|
|
6285
|
+
tmp = (revLookup[b64.charCodeAt(i)] << 2) | (revLookup[b64.charCodeAt(i + 1)] >> 4);
|
|
6286
|
+
arr[L++] = tmp & 0xFF;
|
|
6287
|
+
} else if (placeHolders === 1) {
|
|
6288
|
+
tmp = (revLookup[b64.charCodeAt(i)] << 10) | (revLookup[b64.charCodeAt(i + 1)] << 4) | (revLookup[b64.charCodeAt(i + 2)] >> 2);
|
|
6289
|
+
arr[L++] = (tmp >> 8) & 0xFF;
|
|
6290
|
+
arr[L++] = tmp & 0xFF;
|
|
6291
|
+
}
|
|
6292
|
+
|
|
6293
|
+
return arr
|
|
6294
|
+
}
|
|
6295
|
+
|
|
6296
|
+
function tripletToBase64 (num) {
|
|
6297
|
+
return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F]
|
|
6298
|
+
}
|
|
6299
|
+
|
|
6300
|
+
function encodeChunk (uint8, start, end) {
|
|
6301
|
+
var tmp;
|
|
6302
|
+
var output = [];
|
|
6303
|
+
for (var i = start; i < end; i += 3) {
|
|
6304
|
+
tmp = (uint8[i] << 16) + (uint8[i + 1] << 8) + (uint8[i + 2]);
|
|
6305
|
+
output.push(tripletToBase64(tmp));
|
|
6306
|
+
}
|
|
6307
|
+
return output.join('')
|
|
6308
|
+
}
|
|
6309
|
+
|
|
6310
|
+
function fromByteArray (uint8) {
|
|
6311
|
+
if (!inited) {
|
|
6312
|
+
init();
|
|
6313
|
+
}
|
|
6314
|
+
var tmp;
|
|
6315
|
+
var len = uint8.length;
|
|
6316
|
+
var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes
|
|
6317
|
+
var output = '';
|
|
6318
|
+
var parts = [];
|
|
6319
|
+
var maxChunkLength = 16383; // must be multiple of 3
|
|
6320
|
+
|
|
6321
|
+
// go through the array every three bytes, we'll deal with trailing stuff later
|
|
6322
|
+
for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {
|
|
6323
|
+
parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)));
|
|
6324
|
+
}
|
|
6325
|
+
|
|
6326
|
+
// pad the end with zeros, but make sure to not forget the extra bytes
|
|
6327
|
+
if (extraBytes === 1) {
|
|
6328
|
+
tmp = uint8[len - 1];
|
|
6329
|
+
output += lookup[tmp >> 2];
|
|
6330
|
+
output += lookup[(tmp << 4) & 0x3F];
|
|
6331
|
+
output += '==';
|
|
6332
|
+
} else if (extraBytes === 2) {
|
|
6333
|
+
tmp = (uint8[len - 2] << 8) + (uint8[len - 1]);
|
|
6334
|
+
output += lookup[tmp >> 10];
|
|
6335
|
+
output += lookup[(tmp >> 4) & 0x3F];
|
|
6336
|
+
output += lookup[(tmp << 2) & 0x3F];
|
|
6337
|
+
output += '=';
|
|
6338
|
+
}
|
|
6339
|
+
|
|
6340
|
+
parts.push(output);
|
|
6341
|
+
|
|
6342
|
+
return parts.join('')
|
|
6343
|
+
}
|
|
6344
|
+
|
|
6345
|
+
function read (buffer, offset, isLE, mLen, nBytes) {
|
|
6346
|
+
var e, m;
|
|
6347
|
+
var eLen = nBytes * 8 - mLen - 1;
|
|
6348
|
+
var eMax = (1 << eLen) - 1;
|
|
6349
|
+
var eBias = eMax >> 1;
|
|
6350
|
+
var nBits = -7;
|
|
6351
|
+
var i = isLE ? (nBytes - 1) : 0;
|
|
6352
|
+
var d = isLE ? -1 : 1;
|
|
6353
|
+
var s = buffer[offset + i];
|
|
6354
|
+
|
|
6355
|
+
i += d;
|
|
6356
|
+
|
|
6357
|
+
e = s & ((1 << (-nBits)) - 1);
|
|
6358
|
+
s >>= (-nBits);
|
|
6359
|
+
nBits += eLen;
|
|
6360
|
+
for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {}
|
|
6361
|
+
|
|
6362
|
+
m = e & ((1 << (-nBits)) - 1);
|
|
6363
|
+
e >>= (-nBits);
|
|
6364
|
+
nBits += mLen;
|
|
6365
|
+
for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {}
|
|
6366
|
+
|
|
6367
|
+
if (e === 0) {
|
|
6368
|
+
e = 1 - eBias;
|
|
6369
|
+
} else if (e === eMax) {
|
|
6370
|
+
return m ? NaN : ((s ? -1 : 1) * Infinity)
|
|
6371
|
+
} else {
|
|
6372
|
+
m = m + Math.pow(2, mLen);
|
|
6373
|
+
e = e - eBias;
|
|
6374
|
+
}
|
|
6375
|
+
return (s ? -1 : 1) * m * Math.pow(2, e - mLen)
|
|
6376
|
+
}
|
|
6377
|
+
|
|
6378
|
+
function write (buffer, value, offset, isLE, mLen, nBytes) {
|
|
6379
|
+
var e, m, c;
|
|
6380
|
+
var eLen = nBytes * 8 - mLen - 1;
|
|
6381
|
+
var eMax = (1 << eLen) - 1;
|
|
6382
|
+
var eBias = eMax >> 1;
|
|
6383
|
+
var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0);
|
|
6384
|
+
var i = isLE ? 0 : (nBytes - 1);
|
|
6385
|
+
var d = isLE ? 1 : -1;
|
|
6386
|
+
var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0;
|
|
6387
|
+
|
|
6388
|
+
value = Math.abs(value);
|
|
6389
|
+
|
|
6390
|
+
if (isNaN(value) || value === Infinity) {
|
|
6391
|
+
m = isNaN(value) ? 1 : 0;
|
|
6392
|
+
e = eMax;
|
|
6393
|
+
} else {
|
|
6394
|
+
e = Math.floor(Math.log(value) / Math.LN2);
|
|
6395
|
+
if (value * (c = Math.pow(2, -e)) < 1) {
|
|
6396
|
+
e--;
|
|
6397
|
+
c *= 2;
|
|
6398
|
+
}
|
|
6399
|
+
if (e + eBias >= 1) {
|
|
6400
|
+
value += rt / c;
|
|
6401
|
+
} else {
|
|
6402
|
+
value += rt * Math.pow(2, 1 - eBias);
|
|
6403
|
+
}
|
|
6404
|
+
if (value * c >= 2) {
|
|
6405
|
+
e++;
|
|
6406
|
+
c /= 2;
|
|
6407
|
+
}
|
|
6408
|
+
|
|
6409
|
+
if (e + eBias >= eMax) {
|
|
6410
|
+
m = 0;
|
|
6411
|
+
e = eMax;
|
|
6412
|
+
} else if (e + eBias >= 1) {
|
|
6413
|
+
m = (value * c - 1) * Math.pow(2, mLen);
|
|
6414
|
+
e = e + eBias;
|
|
6415
|
+
} else {
|
|
6416
|
+
m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen);
|
|
6417
|
+
e = 0;
|
|
6418
|
+
}
|
|
6419
|
+
}
|
|
6420
|
+
|
|
6421
|
+
for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}
|
|
6422
|
+
|
|
6423
|
+
e = (e << mLen) | m;
|
|
6424
|
+
eLen += mLen;
|
|
6425
|
+
for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}
|
|
6426
|
+
|
|
6427
|
+
buffer[offset + i - d] |= s * 128;
|
|
6428
|
+
}
|
|
6429
|
+
|
|
6430
|
+
var toString = {}.toString;
|
|
6431
|
+
|
|
6432
|
+
var isArray = Array.isArray || function (arr) {
|
|
6433
|
+
return toString.call(arr) == '[object Array]';
|
|
6434
|
+
};
|
|
6435
|
+
|
|
6436
|
+
/*!
|
|
6437
|
+
* The buffer module from node.js, for the browser.
|
|
6438
|
+
*
|
|
6439
|
+
* @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
|
|
6440
|
+
* @license MIT
|
|
6441
|
+
*/
|
|
6442
|
+
|
|
6443
|
+
var INSPECT_MAX_BYTES = 50;
|
|
6444
|
+
|
|
6445
|
+
/**
|
|
6446
|
+
* If `Buffer.TYPED_ARRAY_SUPPORT`:
|
|
6447
|
+
* === true Use Uint8Array implementation (fastest)
|
|
6448
|
+
* === false Use Object implementation (most compatible, even IE6)
|
|
6449
|
+
*
|
|
6450
|
+
* Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,
|
|
6451
|
+
* Opera 11.6+, iOS 4.2+.
|
|
6452
|
+
*
|
|
6453
|
+
* Due to various browser bugs, sometimes the Object implementation will be used even
|
|
6454
|
+
* when the browser supports typed arrays.
|
|
6455
|
+
*
|
|
6456
|
+
* Note:
|
|
6457
|
+
*
|
|
6458
|
+
* - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances,
|
|
6459
|
+
* See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438.
|
|
6460
|
+
*
|
|
6461
|
+
* - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function.
|
|
6462
|
+
*
|
|
6463
|
+
* - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of
|
|
6464
|
+
* incorrect length in some situations.
|
|
6465
|
+
|
|
6466
|
+
* We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they
|
|
6467
|
+
* get the Object implementation, which is slower but behaves correctly.
|
|
6468
|
+
*/
|
|
6469
|
+
Buffer.TYPED_ARRAY_SUPPORT = global.TYPED_ARRAY_SUPPORT !== undefined
|
|
6470
|
+
? global.TYPED_ARRAY_SUPPORT
|
|
6471
|
+
: true;
|
|
6472
|
+
|
|
6473
|
+
function kMaxLength () {
|
|
6474
|
+
return Buffer.TYPED_ARRAY_SUPPORT
|
|
6475
|
+
? 0x7fffffff
|
|
6476
|
+
: 0x3fffffff
|
|
6477
|
+
}
|
|
6478
|
+
|
|
6479
|
+
function createBuffer (that, length) {
|
|
6480
|
+
if (kMaxLength() < length) {
|
|
6481
|
+
throw new RangeError('Invalid typed array length')
|
|
6482
|
+
}
|
|
6483
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
6484
|
+
// Return an augmented `Uint8Array` instance, for best performance
|
|
6485
|
+
that = new Uint8Array(length);
|
|
6486
|
+
that.__proto__ = Buffer.prototype;
|
|
6487
|
+
} else {
|
|
6488
|
+
// Fallback: Return an object instance of the Buffer class
|
|
6489
|
+
if (that === null) {
|
|
6490
|
+
that = new Buffer(length);
|
|
6491
|
+
}
|
|
6492
|
+
that.length = length;
|
|
6493
|
+
}
|
|
6494
|
+
|
|
6495
|
+
return that
|
|
6496
|
+
}
|
|
6497
|
+
|
|
6498
|
+
/**
|
|
6499
|
+
* The Buffer constructor returns instances of `Uint8Array` that have their
|
|
6500
|
+
* prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of
|
|
6501
|
+
* `Uint8Array`, so the returned instances will have all the node `Buffer` methods
|
|
6502
|
+
* and the `Uint8Array` methods. Square bracket notation works as expected -- it
|
|
6503
|
+
* returns a single octet.
|
|
6504
|
+
*
|
|
6505
|
+
* The `Uint8Array` prototype remains unmodified.
|
|
6506
|
+
*/
|
|
6507
|
+
|
|
6508
|
+
function Buffer (arg, encodingOrOffset, length) {
|
|
6509
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT && !(this instanceof Buffer)) {
|
|
6510
|
+
return new Buffer(arg, encodingOrOffset, length)
|
|
6511
|
+
}
|
|
6512
|
+
|
|
6513
|
+
// Common case.
|
|
6514
|
+
if (typeof arg === 'number') {
|
|
6515
|
+
if (typeof encodingOrOffset === 'string') {
|
|
6516
|
+
throw new Error(
|
|
6517
|
+
'If encoding is specified then the first argument must be a string'
|
|
6518
|
+
)
|
|
6519
|
+
}
|
|
6520
|
+
return allocUnsafe(this, arg)
|
|
6521
|
+
}
|
|
6522
|
+
return from(this, arg, encodingOrOffset, length)
|
|
6523
|
+
}
|
|
6524
|
+
|
|
6525
|
+
Buffer.poolSize = 8192; // not used by this implementation
|
|
6526
|
+
|
|
6527
|
+
// TODO: Legacy, not needed anymore. Remove in next major version.
|
|
6528
|
+
Buffer._augment = function (arr) {
|
|
6529
|
+
arr.__proto__ = Buffer.prototype;
|
|
6530
|
+
return arr
|
|
6531
|
+
};
|
|
6532
|
+
|
|
6533
|
+
function from (that, value, encodingOrOffset, length) {
|
|
6534
|
+
if (typeof value === 'number') {
|
|
6535
|
+
throw new TypeError('"value" argument must not be a number')
|
|
6536
|
+
}
|
|
6537
|
+
|
|
6538
|
+
if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) {
|
|
6539
|
+
return fromArrayBuffer(that, value, encodingOrOffset, length)
|
|
6540
|
+
}
|
|
6541
|
+
|
|
6542
|
+
if (typeof value === 'string') {
|
|
6543
|
+
return fromString(that, value, encodingOrOffset)
|
|
6544
|
+
}
|
|
6545
|
+
|
|
6546
|
+
return fromObject(that, value)
|
|
6547
|
+
}
|
|
6548
|
+
|
|
6549
|
+
/**
|
|
6550
|
+
* Functionally equivalent to Buffer(arg, encoding) but throws a TypeError
|
|
6551
|
+
* if value is a number.
|
|
6552
|
+
* Buffer.from(str[, encoding])
|
|
6553
|
+
* Buffer.from(array)
|
|
6554
|
+
* Buffer.from(buffer)
|
|
6555
|
+
* Buffer.from(arrayBuffer[, byteOffset[, length]])
|
|
6556
|
+
**/
|
|
6557
|
+
Buffer.from = function (value, encodingOrOffset, length) {
|
|
6558
|
+
return from(null, value, encodingOrOffset, length)
|
|
6559
|
+
};
|
|
6560
|
+
|
|
6561
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
6562
|
+
Buffer.prototype.__proto__ = Uint8Array.prototype;
|
|
6563
|
+
Buffer.__proto__ = Uint8Array;
|
|
6564
|
+
}
|
|
6565
|
+
|
|
6566
|
+
function assertSize (size) {
|
|
6567
|
+
if (typeof size !== 'number') {
|
|
6568
|
+
throw new TypeError('"size" argument must be a number')
|
|
6569
|
+
} else if (size < 0) {
|
|
6570
|
+
throw new RangeError('"size" argument must not be negative')
|
|
6571
|
+
}
|
|
6572
|
+
}
|
|
6573
|
+
|
|
6574
|
+
function alloc (that, size, fill, encoding) {
|
|
6575
|
+
assertSize(size);
|
|
6576
|
+
if (size <= 0) {
|
|
6577
|
+
return createBuffer(that, size)
|
|
6578
|
+
}
|
|
6579
|
+
if (fill !== undefined) {
|
|
6580
|
+
// Only pay attention to encoding if it's a string. This
|
|
6581
|
+
// prevents accidentally sending in a number that would
|
|
6582
|
+
// be interpretted as a start offset.
|
|
6583
|
+
return typeof encoding === 'string'
|
|
6584
|
+
? createBuffer(that, size).fill(fill, encoding)
|
|
6585
|
+
: createBuffer(that, size).fill(fill)
|
|
6586
|
+
}
|
|
6587
|
+
return createBuffer(that, size)
|
|
6588
|
+
}
|
|
6589
|
+
|
|
6590
|
+
/**
|
|
6591
|
+
* Creates a new filled Buffer instance.
|
|
6592
|
+
* alloc(size[, fill[, encoding]])
|
|
6593
|
+
**/
|
|
6594
|
+
Buffer.alloc = function (size, fill, encoding) {
|
|
6595
|
+
return alloc(null, size, fill, encoding)
|
|
6596
|
+
};
|
|
6597
|
+
|
|
6598
|
+
function allocUnsafe (that, size) {
|
|
6599
|
+
assertSize(size);
|
|
6600
|
+
that = createBuffer(that, size < 0 ? 0 : checked(size) | 0);
|
|
6601
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT) {
|
|
6602
|
+
for (var i = 0; i < size; ++i) {
|
|
6603
|
+
that[i] = 0;
|
|
6604
|
+
}
|
|
6605
|
+
}
|
|
6606
|
+
return that
|
|
6607
|
+
}
|
|
6608
|
+
|
|
6609
|
+
/**
|
|
6610
|
+
* Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.
|
|
6611
|
+
* */
|
|
6612
|
+
Buffer.allocUnsafe = function (size) {
|
|
6613
|
+
return allocUnsafe(null, size)
|
|
6614
|
+
};
|
|
6615
|
+
/**
|
|
6616
|
+
* Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.
|
|
6617
|
+
*/
|
|
6618
|
+
Buffer.allocUnsafeSlow = function (size) {
|
|
6619
|
+
return allocUnsafe(null, size)
|
|
6620
|
+
};
|
|
6621
|
+
|
|
6622
|
+
function fromString (that, string, encoding) {
|
|
6623
|
+
if (typeof encoding !== 'string' || encoding === '') {
|
|
6624
|
+
encoding = 'utf8';
|
|
6625
|
+
}
|
|
6626
|
+
|
|
6627
|
+
if (!Buffer.isEncoding(encoding)) {
|
|
6628
|
+
throw new TypeError('"encoding" must be a valid string encoding')
|
|
6629
|
+
}
|
|
6630
|
+
|
|
6631
|
+
var length = byteLength(string, encoding) | 0;
|
|
6632
|
+
that = createBuffer(that, length);
|
|
6633
|
+
|
|
6634
|
+
var actual = that.write(string, encoding);
|
|
6635
|
+
|
|
6636
|
+
if (actual !== length) {
|
|
6637
|
+
// Writing a hex string, for example, that contains invalid characters will
|
|
6638
|
+
// cause everything after the first invalid character to be ignored. (e.g.
|
|
6639
|
+
// 'abxxcd' will be treated as 'ab')
|
|
6640
|
+
that = that.slice(0, actual);
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6643
|
+
return that
|
|
6644
|
+
}
|
|
6645
|
+
|
|
6646
|
+
function fromArrayLike (that, array) {
|
|
6647
|
+
var length = array.length < 0 ? 0 : checked(array.length) | 0;
|
|
6648
|
+
that = createBuffer(that, length);
|
|
6649
|
+
for (var i = 0; i < length; i += 1) {
|
|
6650
|
+
that[i] = array[i] & 255;
|
|
6651
|
+
}
|
|
6652
|
+
return that
|
|
6653
|
+
}
|
|
6654
|
+
|
|
6655
|
+
function fromArrayBuffer (that, array, byteOffset, length) {
|
|
6656
|
+
|
|
6657
|
+
if (byteOffset < 0 || array.byteLength < byteOffset) {
|
|
6658
|
+
throw new RangeError('\'offset\' is out of bounds')
|
|
6659
|
+
}
|
|
6660
|
+
|
|
6661
|
+
if (array.byteLength < byteOffset + (length || 0)) {
|
|
6662
|
+
throw new RangeError('\'length\' is out of bounds')
|
|
6663
|
+
}
|
|
6664
|
+
|
|
6665
|
+
if (byteOffset === undefined && length === undefined) {
|
|
6666
|
+
array = new Uint8Array(array);
|
|
6667
|
+
} else if (length === undefined) {
|
|
6668
|
+
array = new Uint8Array(array, byteOffset);
|
|
6669
|
+
} else {
|
|
6670
|
+
array = new Uint8Array(array, byteOffset, length);
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6673
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
6674
|
+
// Return an augmented `Uint8Array` instance, for best performance
|
|
6675
|
+
that = array;
|
|
6676
|
+
that.__proto__ = Buffer.prototype;
|
|
6677
|
+
} else {
|
|
6678
|
+
// Fallback: Return an object instance of the Buffer class
|
|
6679
|
+
that = fromArrayLike(that, array);
|
|
6680
|
+
}
|
|
6681
|
+
return that
|
|
6682
|
+
}
|
|
6683
|
+
|
|
6684
|
+
function fromObject (that, obj) {
|
|
6685
|
+
if (internalIsBuffer(obj)) {
|
|
6686
|
+
var len = checked(obj.length) | 0;
|
|
6687
|
+
that = createBuffer(that, len);
|
|
6688
|
+
|
|
6689
|
+
if (that.length === 0) {
|
|
6690
|
+
return that
|
|
6691
|
+
}
|
|
6692
|
+
|
|
6693
|
+
obj.copy(that, 0, 0, len);
|
|
6694
|
+
return that
|
|
6695
|
+
}
|
|
6696
|
+
|
|
6697
|
+
if (obj) {
|
|
6698
|
+
if ((typeof ArrayBuffer !== 'undefined' &&
|
|
6699
|
+
obj.buffer instanceof ArrayBuffer) || 'length' in obj) {
|
|
6700
|
+
if (typeof obj.length !== 'number' || isnan(obj.length)) {
|
|
6701
|
+
return createBuffer(that, 0)
|
|
6702
|
+
}
|
|
6703
|
+
return fromArrayLike(that, obj)
|
|
6704
|
+
}
|
|
6705
|
+
|
|
6706
|
+
if (obj.type === 'Buffer' && isArray(obj.data)) {
|
|
6707
|
+
return fromArrayLike(that, obj.data)
|
|
6708
|
+
}
|
|
6709
|
+
}
|
|
6710
|
+
|
|
6711
|
+
throw new TypeError('First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.')
|
|
6712
|
+
}
|
|
6713
|
+
|
|
6714
|
+
function checked (length) {
|
|
6715
|
+
// Note: cannot use `length < kMaxLength()` here because that fails when
|
|
6716
|
+
// length is NaN (which is otherwise coerced to zero.)
|
|
6717
|
+
if (length >= kMaxLength()) {
|
|
6718
|
+
throw new RangeError('Attempt to allocate Buffer larger than maximum ' +
|
|
6719
|
+
'size: 0x' + kMaxLength().toString(16) + ' bytes')
|
|
6720
|
+
}
|
|
6721
|
+
return length | 0
|
|
6722
|
+
}
|
|
6723
|
+
Buffer.isBuffer = isBuffer;
|
|
6724
|
+
function internalIsBuffer (b) {
|
|
6725
|
+
return !!(b != null && b._isBuffer)
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
Buffer.compare = function compare (a, b) {
|
|
6729
|
+
if (!internalIsBuffer(a) || !internalIsBuffer(b)) {
|
|
6730
|
+
throw new TypeError('Arguments must be Buffers')
|
|
6731
|
+
}
|
|
6732
|
+
|
|
6733
|
+
if (a === b) return 0
|
|
6734
|
+
|
|
6735
|
+
var x = a.length;
|
|
6736
|
+
var y = b.length;
|
|
6737
|
+
|
|
6738
|
+
for (var i = 0, len = Math.min(x, y); i < len; ++i) {
|
|
6739
|
+
if (a[i] !== b[i]) {
|
|
6740
|
+
x = a[i];
|
|
6741
|
+
y = b[i];
|
|
6742
|
+
break
|
|
6743
|
+
}
|
|
6744
|
+
}
|
|
6745
|
+
|
|
6746
|
+
if (x < y) return -1
|
|
6747
|
+
if (y < x) return 1
|
|
6748
|
+
return 0
|
|
6749
|
+
};
|
|
6750
|
+
|
|
6751
|
+
Buffer.isEncoding = function isEncoding (encoding) {
|
|
6752
|
+
switch (String(encoding).toLowerCase()) {
|
|
6753
|
+
case 'hex':
|
|
6754
|
+
case 'utf8':
|
|
6755
|
+
case 'utf-8':
|
|
6756
|
+
case 'ascii':
|
|
6757
|
+
case 'latin1':
|
|
6758
|
+
case 'binary':
|
|
6759
|
+
case 'base64':
|
|
6760
|
+
case 'ucs2':
|
|
6761
|
+
case 'ucs-2':
|
|
6762
|
+
case 'utf16le':
|
|
6763
|
+
case 'utf-16le':
|
|
6764
|
+
return true
|
|
6765
|
+
default:
|
|
6766
|
+
return false
|
|
6767
|
+
}
|
|
6768
|
+
};
|
|
6769
|
+
|
|
6770
|
+
Buffer.concat = function concat (list, length) {
|
|
6771
|
+
if (!isArray(list)) {
|
|
6772
|
+
throw new TypeError('"list" argument must be an Array of Buffers')
|
|
6773
|
+
}
|
|
6774
|
+
|
|
6775
|
+
if (list.length === 0) {
|
|
6776
|
+
return Buffer.alloc(0)
|
|
6777
|
+
}
|
|
6778
|
+
|
|
6779
|
+
var i;
|
|
6780
|
+
if (length === undefined) {
|
|
6781
|
+
length = 0;
|
|
6782
|
+
for (i = 0; i < list.length; ++i) {
|
|
6783
|
+
length += list[i].length;
|
|
6784
|
+
}
|
|
6785
|
+
}
|
|
6786
|
+
|
|
6787
|
+
var buffer = Buffer.allocUnsafe(length);
|
|
6788
|
+
var pos = 0;
|
|
6789
|
+
for (i = 0; i < list.length; ++i) {
|
|
6790
|
+
var buf = list[i];
|
|
6791
|
+
if (!internalIsBuffer(buf)) {
|
|
6792
|
+
throw new TypeError('"list" argument must be an Array of Buffers')
|
|
6793
|
+
}
|
|
6794
|
+
buf.copy(buffer, pos);
|
|
6795
|
+
pos += buf.length;
|
|
6796
|
+
}
|
|
6797
|
+
return buffer
|
|
6798
|
+
};
|
|
6799
|
+
|
|
6800
|
+
function byteLength (string, encoding) {
|
|
6801
|
+
if (internalIsBuffer(string)) {
|
|
6802
|
+
return string.length
|
|
6803
|
+
}
|
|
6804
|
+
if (typeof ArrayBuffer !== 'undefined' && typeof ArrayBuffer.isView === 'function' &&
|
|
6805
|
+
(ArrayBuffer.isView(string) || string instanceof ArrayBuffer)) {
|
|
6806
|
+
return string.byteLength
|
|
6807
|
+
}
|
|
6808
|
+
if (typeof string !== 'string') {
|
|
6809
|
+
string = '' + string;
|
|
6810
|
+
}
|
|
6811
|
+
|
|
6812
|
+
var len = string.length;
|
|
6813
|
+
if (len === 0) return 0
|
|
6814
|
+
|
|
6815
|
+
// Use a for loop to avoid recursion
|
|
6816
|
+
var loweredCase = false;
|
|
6817
|
+
for (;;) {
|
|
6818
|
+
switch (encoding) {
|
|
6819
|
+
case 'ascii':
|
|
6820
|
+
case 'latin1':
|
|
6821
|
+
case 'binary':
|
|
6822
|
+
return len
|
|
6823
|
+
case 'utf8':
|
|
6824
|
+
case 'utf-8':
|
|
6825
|
+
case undefined:
|
|
6826
|
+
return utf8ToBytes(string).length
|
|
6827
|
+
case 'ucs2':
|
|
6828
|
+
case 'ucs-2':
|
|
6829
|
+
case 'utf16le':
|
|
6830
|
+
case 'utf-16le':
|
|
6831
|
+
return len * 2
|
|
6832
|
+
case 'hex':
|
|
6833
|
+
return len >>> 1
|
|
6834
|
+
case 'base64':
|
|
6835
|
+
return base64ToBytes(string).length
|
|
6836
|
+
default:
|
|
6837
|
+
if (loweredCase) return utf8ToBytes(string).length // assume utf8
|
|
6838
|
+
encoding = ('' + encoding).toLowerCase();
|
|
6839
|
+
loweredCase = true;
|
|
6840
|
+
}
|
|
6841
|
+
}
|
|
6842
|
+
}
|
|
6843
|
+
Buffer.byteLength = byteLength;
|
|
6844
|
+
|
|
6845
|
+
function slowToString (encoding, start, end) {
|
|
6846
|
+
var loweredCase = false;
|
|
6847
|
+
|
|
6848
|
+
// No need to verify that "this.length <= MAX_UINT32" since it's a read-only
|
|
6849
|
+
// property of a typed array.
|
|
6850
|
+
|
|
6851
|
+
// This behaves neither like String nor Uint8Array in that we set start/end
|
|
6852
|
+
// to their upper/lower bounds if the value passed is out of range.
|
|
6853
|
+
// undefined is handled specially as per ECMA-262 6th Edition,
|
|
6854
|
+
// Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.
|
|
6855
|
+
if (start === undefined || start < 0) {
|
|
6856
|
+
start = 0;
|
|
6857
|
+
}
|
|
6858
|
+
// Return early if start > this.length. Done here to prevent potential uint32
|
|
6859
|
+
// coercion fail below.
|
|
6860
|
+
if (start > this.length) {
|
|
6861
|
+
return ''
|
|
6862
|
+
}
|
|
6863
|
+
|
|
6864
|
+
if (end === undefined || end > this.length) {
|
|
6865
|
+
end = this.length;
|
|
6866
|
+
}
|
|
6867
|
+
|
|
6868
|
+
if (end <= 0) {
|
|
6869
|
+
return ''
|
|
6870
|
+
}
|
|
6871
|
+
|
|
6872
|
+
// Force coersion to uint32. This will also coerce falsey/NaN values to 0.
|
|
6873
|
+
end >>>= 0;
|
|
6874
|
+
start >>>= 0;
|
|
6875
|
+
|
|
6876
|
+
if (end <= start) {
|
|
6877
|
+
return ''
|
|
6878
|
+
}
|
|
6879
|
+
|
|
6880
|
+
if (!encoding) encoding = 'utf8';
|
|
6881
|
+
|
|
6882
|
+
while (true) {
|
|
6883
|
+
switch (encoding) {
|
|
6884
|
+
case 'hex':
|
|
6885
|
+
return hexSlice(this, start, end)
|
|
6886
|
+
|
|
6887
|
+
case 'utf8':
|
|
6888
|
+
case 'utf-8':
|
|
6889
|
+
return utf8Slice(this, start, end)
|
|
6890
|
+
|
|
6891
|
+
case 'ascii':
|
|
6892
|
+
return asciiSlice(this, start, end)
|
|
6893
|
+
|
|
6894
|
+
case 'latin1':
|
|
6895
|
+
case 'binary':
|
|
6896
|
+
return latin1Slice(this, start, end)
|
|
6897
|
+
|
|
6898
|
+
case 'base64':
|
|
6899
|
+
return base64Slice(this, start, end)
|
|
6900
|
+
|
|
6901
|
+
case 'ucs2':
|
|
6902
|
+
case 'ucs-2':
|
|
6903
|
+
case 'utf16le':
|
|
6904
|
+
case 'utf-16le':
|
|
6905
|
+
return utf16leSlice(this, start, end)
|
|
6906
|
+
|
|
6907
|
+
default:
|
|
6908
|
+
if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)
|
|
6909
|
+
encoding = (encoding + '').toLowerCase();
|
|
6910
|
+
loweredCase = true;
|
|
6911
|
+
}
|
|
6912
|
+
}
|
|
6913
|
+
}
|
|
6914
|
+
|
|
6915
|
+
// The property is used by `Buffer.isBuffer` and `is-buffer` (in Safari 5-7) to detect
|
|
6916
|
+
// Buffer instances.
|
|
6917
|
+
Buffer.prototype._isBuffer = true;
|
|
6918
|
+
|
|
6919
|
+
function swap (b, n, m) {
|
|
6920
|
+
var i = b[n];
|
|
6921
|
+
b[n] = b[m];
|
|
6922
|
+
b[m] = i;
|
|
6923
|
+
}
|
|
6924
|
+
|
|
6925
|
+
Buffer.prototype.swap16 = function swap16 () {
|
|
6926
|
+
var len = this.length;
|
|
6927
|
+
if (len % 2 !== 0) {
|
|
6928
|
+
throw new RangeError('Buffer size must be a multiple of 16-bits')
|
|
6929
|
+
}
|
|
6930
|
+
for (var i = 0; i < len; i += 2) {
|
|
6931
|
+
swap(this, i, i + 1);
|
|
6932
|
+
}
|
|
6933
|
+
return this
|
|
6934
|
+
};
|
|
6935
|
+
|
|
6936
|
+
Buffer.prototype.swap32 = function swap32 () {
|
|
6937
|
+
var len = this.length;
|
|
6938
|
+
if (len % 4 !== 0) {
|
|
6939
|
+
throw new RangeError('Buffer size must be a multiple of 32-bits')
|
|
6940
|
+
}
|
|
6941
|
+
for (var i = 0; i < len; i += 4) {
|
|
6942
|
+
swap(this, i, i + 3);
|
|
6943
|
+
swap(this, i + 1, i + 2);
|
|
6944
|
+
}
|
|
6945
|
+
return this
|
|
6946
|
+
};
|
|
6947
|
+
|
|
6948
|
+
Buffer.prototype.swap64 = function swap64 () {
|
|
6949
|
+
var len = this.length;
|
|
6950
|
+
if (len % 8 !== 0) {
|
|
6951
|
+
throw new RangeError('Buffer size must be a multiple of 64-bits')
|
|
6952
|
+
}
|
|
6953
|
+
for (var i = 0; i < len; i += 8) {
|
|
6954
|
+
swap(this, i, i + 7);
|
|
6955
|
+
swap(this, i + 1, i + 6);
|
|
6956
|
+
swap(this, i + 2, i + 5);
|
|
6957
|
+
swap(this, i + 3, i + 4);
|
|
6958
|
+
}
|
|
6959
|
+
return this
|
|
6960
|
+
};
|
|
6961
|
+
|
|
6962
|
+
Buffer.prototype.toString = function toString () {
|
|
6963
|
+
var length = this.length | 0;
|
|
6964
|
+
if (length === 0) return ''
|
|
6965
|
+
if (arguments.length === 0) return utf8Slice(this, 0, length)
|
|
6966
|
+
return slowToString.apply(this, arguments)
|
|
6967
|
+
};
|
|
6968
|
+
|
|
6969
|
+
Buffer.prototype.equals = function equals (b) {
|
|
6970
|
+
if (!internalIsBuffer(b)) throw new TypeError('Argument must be a Buffer')
|
|
6971
|
+
if (this === b) return true
|
|
6972
|
+
return Buffer.compare(this, b) === 0
|
|
6973
|
+
};
|
|
6974
|
+
|
|
6975
|
+
Buffer.prototype.inspect = function inspect () {
|
|
6976
|
+
var str = '';
|
|
6977
|
+
var max = INSPECT_MAX_BYTES;
|
|
6978
|
+
if (this.length > 0) {
|
|
6979
|
+
str = this.toString('hex', 0, max).match(/.{2}/g).join(' ');
|
|
6980
|
+
if (this.length > max) str += ' ... ';
|
|
6981
|
+
}
|
|
6982
|
+
return '<Buffer ' + str + '>'
|
|
6983
|
+
};
|
|
6984
|
+
|
|
6985
|
+
Buffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {
|
|
6986
|
+
if (!internalIsBuffer(target)) {
|
|
6987
|
+
throw new TypeError('Argument must be a Buffer')
|
|
6988
|
+
}
|
|
6989
|
+
|
|
6990
|
+
if (start === undefined) {
|
|
6991
|
+
start = 0;
|
|
6992
|
+
}
|
|
6993
|
+
if (end === undefined) {
|
|
6994
|
+
end = target ? target.length : 0;
|
|
6995
|
+
}
|
|
6996
|
+
if (thisStart === undefined) {
|
|
6997
|
+
thisStart = 0;
|
|
6998
|
+
}
|
|
6999
|
+
if (thisEnd === undefined) {
|
|
7000
|
+
thisEnd = this.length;
|
|
7001
|
+
}
|
|
7002
|
+
|
|
7003
|
+
if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {
|
|
7004
|
+
throw new RangeError('out of range index')
|
|
7005
|
+
}
|
|
7006
|
+
|
|
7007
|
+
if (thisStart >= thisEnd && start >= end) {
|
|
7008
|
+
return 0
|
|
7009
|
+
}
|
|
7010
|
+
if (thisStart >= thisEnd) {
|
|
7011
|
+
return -1
|
|
7012
|
+
}
|
|
7013
|
+
if (start >= end) {
|
|
7014
|
+
return 1
|
|
7015
|
+
}
|
|
7016
|
+
|
|
7017
|
+
start >>>= 0;
|
|
7018
|
+
end >>>= 0;
|
|
7019
|
+
thisStart >>>= 0;
|
|
7020
|
+
thisEnd >>>= 0;
|
|
7021
|
+
|
|
7022
|
+
if (this === target) return 0
|
|
7023
|
+
|
|
7024
|
+
var x = thisEnd - thisStart;
|
|
7025
|
+
var y = end - start;
|
|
7026
|
+
var len = Math.min(x, y);
|
|
7027
|
+
|
|
7028
|
+
var thisCopy = this.slice(thisStart, thisEnd);
|
|
7029
|
+
var targetCopy = target.slice(start, end);
|
|
7030
|
+
|
|
7031
|
+
for (var i = 0; i < len; ++i) {
|
|
7032
|
+
if (thisCopy[i] !== targetCopy[i]) {
|
|
7033
|
+
x = thisCopy[i];
|
|
7034
|
+
y = targetCopy[i];
|
|
7035
|
+
break
|
|
7036
|
+
}
|
|
7037
|
+
}
|
|
7038
|
+
|
|
7039
|
+
if (x < y) return -1
|
|
7040
|
+
if (y < x) return 1
|
|
7041
|
+
return 0
|
|
7042
|
+
};
|
|
7043
|
+
|
|
7044
|
+
// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,
|
|
7045
|
+
// OR the last index of `val` in `buffer` at offset <= `byteOffset`.
|
|
7046
|
+
//
|
|
7047
|
+
// Arguments:
|
|
7048
|
+
// - buffer - a Buffer to search
|
|
7049
|
+
// - val - a string, Buffer, or number
|
|
7050
|
+
// - byteOffset - an index into `buffer`; will be clamped to an int32
|
|
7051
|
+
// - encoding - an optional encoding, relevant is val is a string
|
|
7052
|
+
// - dir - true for indexOf, false for lastIndexOf
|
|
7053
|
+
function bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {
|
|
7054
|
+
// Empty buffer means no match
|
|
7055
|
+
if (buffer.length === 0) return -1
|
|
7056
|
+
|
|
7057
|
+
// Normalize byteOffset
|
|
7058
|
+
if (typeof byteOffset === 'string') {
|
|
7059
|
+
encoding = byteOffset;
|
|
7060
|
+
byteOffset = 0;
|
|
7061
|
+
} else if (byteOffset > 0x7fffffff) {
|
|
7062
|
+
byteOffset = 0x7fffffff;
|
|
7063
|
+
} else if (byteOffset < -0x80000000) {
|
|
7064
|
+
byteOffset = -0x80000000;
|
|
7065
|
+
}
|
|
7066
|
+
byteOffset = +byteOffset; // Coerce to Number.
|
|
7067
|
+
if (isNaN(byteOffset)) {
|
|
7068
|
+
// byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer
|
|
7069
|
+
byteOffset = dir ? 0 : (buffer.length - 1);
|
|
7070
|
+
}
|
|
7071
|
+
|
|
7072
|
+
// Normalize byteOffset: negative offsets start from the end of the buffer
|
|
7073
|
+
if (byteOffset < 0) byteOffset = buffer.length + byteOffset;
|
|
7074
|
+
if (byteOffset >= buffer.length) {
|
|
7075
|
+
if (dir) return -1
|
|
7076
|
+
else byteOffset = buffer.length - 1;
|
|
7077
|
+
} else if (byteOffset < 0) {
|
|
7078
|
+
if (dir) byteOffset = 0;
|
|
7079
|
+
else return -1
|
|
7080
|
+
}
|
|
7081
|
+
|
|
7082
|
+
// Normalize val
|
|
7083
|
+
if (typeof val === 'string') {
|
|
7084
|
+
val = Buffer.from(val, encoding);
|
|
7085
|
+
}
|
|
7086
|
+
|
|
7087
|
+
// Finally, search either indexOf (if dir is true) or lastIndexOf
|
|
7088
|
+
if (internalIsBuffer(val)) {
|
|
7089
|
+
// Special case: looking for empty string/buffer always fails
|
|
7090
|
+
if (val.length === 0) {
|
|
7091
|
+
return -1
|
|
7092
|
+
}
|
|
7093
|
+
return arrayIndexOf(buffer, val, byteOffset, encoding, dir)
|
|
7094
|
+
} else if (typeof val === 'number') {
|
|
7095
|
+
val = val & 0xFF; // Search for a byte value [0-255]
|
|
7096
|
+
if (Buffer.TYPED_ARRAY_SUPPORT &&
|
|
7097
|
+
typeof Uint8Array.prototype.indexOf === 'function') {
|
|
7098
|
+
if (dir) {
|
|
7099
|
+
return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)
|
|
7100
|
+
} else {
|
|
7101
|
+
return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)
|
|
7102
|
+
}
|
|
7103
|
+
}
|
|
7104
|
+
return arrayIndexOf(buffer, [ val ], byteOffset, encoding, dir)
|
|
7105
|
+
}
|
|
7106
|
+
|
|
7107
|
+
throw new TypeError('val must be string, number or Buffer')
|
|
7108
|
+
}
|
|
7109
|
+
|
|
7110
|
+
function arrayIndexOf (arr, val, byteOffset, encoding, dir) {
|
|
7111
|
+
var indexSize = 1;
|
|
7112
|
+
var arrLength = arr.length;
|
|
7113
|
+
var valLength = val.length;
|
|
7114
|
+
|
|
7115
|
+
if (encoding !== undefined) {
|
|
7116
|
+
encoding = String(encoding).toLowerCase();
|
|
7117
|
+
if (encoding === 'ucs2' || encoding === 'ucs-2' ||
|
|
7118
|
+
encoding === 'utf16le' || encoding === 'utf-16le') {
|
|
7119
|
+
if (arr.length < 2 || val.length < 2) {
|
|
7120
|
+
return -1
|
|
7121
|
+
}
|
|
7122
|
+
indexSize = 2;
|
|
7123
|
+
arrLength /= 2;
|
|
7124
|
+
valLength /= 2;
|
|
7125
|
+
byteOffset /= 2;
|
|
7126
|
+
}
|
|
7127
|
+
}
|
|
7128
|
+
|
|
7129
|
+
function read (buf, i) {
|
|
7130
|
+
if (indexSize === 1) {
|
|
7131
|
+
return buf[i]
|
|
7132
|
+
} else {
|
|
7133
|
+
return buf.readUInt16BE(i * indexSize)
|
|
7134
|
+
}
|
|
7135
|
+
}
|
|
7136
|
+
|
|
7137
|
+
var i;
|
|
7138
|
+
if (dir) {
|
|
7139
|
+
var foundIndex = -1;
|
|
7140
|
+
for (i = byteOffset; i < arrLength; i++) {
|
|
7141
|
+
if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {
|
|
7142
|
+
if (foundIndex === -1) foundIndex = i;
|
|
7143
|
+
if (i - foundIndex + 1 === valLength) return foundIndex * indexSize
|
|
7144
|
+
} else {
|
|
7145
|
+
if (foundIndex !== -1) i -= i - foundIndex;
|
|
7146
|
+
foundIndex = -1;
|
|
7147
|
+
}
|
|
7148
|
+
}
|
|
7149
|
+
} else {
|
|
7150
|
+
if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength;
|
|
7151
|
+
for (i = byteOffset; i >= 0; i--) {
|
|
7152
|
+
var found = true;
|
|
7153
|
+
for (var j = 0; j < valLength; j++) {
|
|
7154
|
+
if (read(arr, i + j) !== read(val, j)) {
|
|
7155
|
+
found = false;
|
|
7156
|
+
break
|
|
7157
|
+
}
|
|
7158
|
+
}
|
|
7159
|
+
if (found) return i
|
|
7160
|
+
}
|
|
7161
|
+
}
|
|
7162
|
+
|
|
7163
|
+
return -1
|
|
7164
|
+
}
|
|
7165
|
+
|
|
7166
|
+
Buffer.prototype.includes = function includes (val, byteOffset, encoding) {
|
|
7167
|
+
return this.indexOf(val, byteOffset, encoding) !== -1
|
|
7168
|
+
};
|
|
7169
|
+
|
|
7170
|
+
Buffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {
|
|
7171
|
+
return bidirectionalIndexOf(this, val, byteOffset, encoding, true)
|
|
7172
|
+
};
|
|
7173
|
+
|
|
7174
|
+
Buffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {
|
|
7175
|
+
return bidirectionalIndexOf(this, val, byteOffset, encoding, false)
|
|
7176
|
+
};
|
|
7177
|
+
|
|
7178
|
+
function hexWrite (buf, string, offset, length) {
|
|
7179
|
+
offset = Number(offset) || 0;
|
|
7180
|
+
var remaining = buf.length - offset;
|
|
7181
|
+
if (!length) {
|
|
7182
|
+
length = remaining;
|
|
7183
|
+
} else {
|
|
7184
|
+
length = Number(length);
|
|
7185
|
+
if (length > remaining) {
|
|
7186
|
+
length = remaining;
|
|
7187
|
+
}
|
|
7188
|
+
}
|
|
7189
|
+
|
|
7190
|
+
// must be an even number of digits
|
|
7191
|
+
var strLen = string.length;
|
|
7192
|
+
if (strLen % 2 !== 0) throw new TypeError('Invalid hex string')
|
|
7193
|
+
|
|
7194
|
+
if (length > strLen / 2) {
|
|
7195
|
+
length = strLen / 2;
|
|
7196
|
+
}
|
|
7197
|
+
for (var i = 0; i < length; ++i) {
|
|
7198
|
+
var parsed = parseInt(string.substr(i * 2, 2), 16);
|
|
7199
|
+
if (isNaN(parsed)) return i
|
|
7200
|
+
buf[offset + i] = parsed;
|
|
7201
|
+
}
|
|
7202
|
+
return i
|
|
7203
|
+
}
|
|
7204
|
+
|
|
7205
|
+
function utf8Write (buf, string, offset, length) {
|
|
7206
|
+
return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length)
|
|
7207
|
+
}
|
|
7208
|
+
|
|
7209
|
+
function asciiWrite (buf, string, offset, length) {
|
|
7210
|
+
return blitBuffer(asciiToBytes(string), buf, offset, length)
|
|
7211
|
+
}
|
|
7212
|
+
|
|
7213
|
+
function latin1Write (buf, string, offset, length) {
|
|
7214
|
+
return asciiWrite(buf, string, offset, length)
|
|
7215
|
+
}
|
|
7216
|
+
|
|
7217
|
+
function base64Write (buf, string, offset, length) {
|
|
7218
|
+
return blitBuffer(base64ToBytes(string), buf, offset, length)
|
|
7219
|
+
}
|
|
7220
|
+
|
|
7221
|
+
function ucs2Write (buf, string, offset, length) {
|
|
7222
|
+
return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)
|
|
7223
|
+
}
|
|
7224
|
+
|
|
7225
|
+
Buffer.prototype.write = function write (string, offset, length, encoding) {
|
|
7226
|
+
// Buffer#write(string)
|
|
7227
|
+
if (offset === undefined) {
|
|
7228
|
+
encoding = 'utf8';
|
|
7229
|
+
length = this.length;
|
|
7230
|
+
offset = 0;
|
|
7231
|
+
// Buffer#write(string, encoding)
|
|
7232
|
+
} else if (length === undefined && typeof offset === 'string') {
|
|
7233
|
+
encoding = offset;
|
|
7234
|
+
length = this.length;
|
|
7235
|
+
offset = 0;
|
|
7236
|
+
// Buffer#write(string, offset[, length][, encoding])
|
|
7237
|
+
} else if (isFinite(offset)) {
|
|
7238
|
+
offset = offset | 0;
|
|
7239
|
+
if (isFinite(length)) {
|
|
7240
|
+
length = length | 0;
|
|
7241
|
+
if (encoding === undefined) encoding = 'utf8';
|
|
7242
|
+
} else {
|
|
7243
|
+
encoding = length;
|
|
7244
|
+
length = undefined;
|
|
7245
|
+
}
|
|
7246
|
+
// legacy write(string, encoding, offset, length) - remove in v0.13
|
|
7247
|
+
} else {
|
|
7248
|
+
throw new Error(
|
|
7249
|
+
'Buffer.write(string, encoding, offset[, length]) is no longer supported'
|
|
7250
|
+
)
|
|
7251
|
+
}
|
|
7252
|
+
|
|
7253
|
+
var remaining = this.length - offset;
|
|
7254
|
+
if (length === undefined || length > remaining) length = remaining;
|
|
7255
|
+
|
|
7256
|
+
if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) {
|
|
7257
|
+
throw new RangeError('Attempt to write outside buffer bounds')
|
|
7258
|
+
}
|
|
7259
|
+
|
|
7260
|
+
if (!encoding) encoding = 'utf8';
|
|
7261
|
+
|
|
7262
|
+
var loweredCase = false;
|
|
7263
|
+
for (;;) {
|
|
7264
|
+
switch (encoding) {
|
|
7265
|
+
case 'hex':
|
|
7266
|
+
return hexWrite(this, string, offset, length)
|
|
7267
|
+
|
|
7268
|
+
case 'utf8':
|
|
7269
|
+
case 'utf-8':
|
|
7270
|
+
return utf8Write(this, string, offset, length)
|
|
7271
|
+
|
|
7272
|
+
case 'ascii':
|
|
7273
|
+
return asciiWrite(this, string, offset, length)
|
|
7274
|
+
|
|
7275
|
+
case 'latin1':
|
|
7276
|
+
case 'binary':
|
|
7277
|
+
return latin1Write(this, string, offset, length)
|
|
7278
|
+
|
|
7279
|
+
case 'base64':
|
|
7280
|
+
// Warning: maxLength not taken into account in base64Write
|
|
7281
|
+
return base64Write(this, string, offset, length)
|
|
7282
|
+
|
|
7283
|
+
case 'ucs2':
|
|
7284
|
+
case 'ucs-2':
|
|
7285
|
+
case 'utf16le':
|
|
7286
|
+
case 'utf-16le':
|
|
7287
|
+
return ucs2Write(this, string, offset, length)
|
|
7288
|
+
|
|
7289
|
+
default:
|
|
7290
|
+
if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)
|
|
7291
|
+
encoding = ('' + encoding).toLowerCase();
|
|
7292
|
+
loweredCase = true;
|
|
7293
|
+
}
|
|
7294
|
+
}
|
|
7295
|
+
};
|
|
7296
|
+
|
|
7297
|
+
Buffer.prototype.toJSON = function toJSON () {
|
|
7298
|
+
return {
|
|
7299
|
+
type: 'Buffer',
|
|
7300
|
+
data: Array.prototype.slice.call(this._arr || this, 0)
|
|
7301
|
+
}
|
|
7302
|
+
};
|
|
7303
|
+
|
|
7304
|
+
function base64Slice (buf, start, end) {
|
|
7305
|
+
if (start === 0 && end === buf.length) {
|
|
7306
|
+
return fromByteArray(buf)
|
|
7307
|
+
} else {
|
|
7308
|
+
return fromByteArray(buf.slice(start, end))
|
|
7309
|
+
}
|
|
7310
|
+
}
|
|
7311
|
+
|
|
7312
|
+
function utf8Slice (buf, start, end) {
|
|
7313
|
+
end = Math.min(buf.length, end);
|
|
7314
|
+
var res = [];
|
|
7315
|
+
|
|
7316
|
+
var i = start;
|
|
7317
|
+
while (i < end) {
|
|
7318
|
+
var firstByte = buf[i];
|
|
7319
|
+
var codePoint = null;
|
|
7320
|
+
var bytesPerSequence = (firstByte > 0xEF) ? 4
|
|
7321
|
+
: (firstByte > 0xDF) ? 3
|
|
7322
|
+
: (firstByte > 0xBF) ? 2
|
|
7323
|
+
: 1;
|
|
7324
|
+
|
|
7325
|
+
if (i + bytesPerSequence <= end) {
|
|
7326
|
+
var secondByte, thirdByte, fourthByte, tempCodePoint;
|
|
7327
|
+
|
|
7328
|
+
switch (bytesPerSequence) {
|
|
7329
|
+
case 1:
|
|
7330
|
+
if (firstByte < 0x80) {
|
|
7331
|
+
codePoint = firstByte;
|
|
7332
|
+
}
|
|
7333
|
+
break
|
|
7334
|
+
case 2:
|
|
7335
|
+
secondByte = buf[i + 1];
|
|
7336
|
+
if ((secondByte & 0xC0) === 0x80) {
|
|
7337
|
+
tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F);
|
|
7338
|
+
if (tempCodePoint > 0x7F) {
|
|
7339
|
+
codePoint = tempCodePoint;
|
|
7340
|
+
}
|
|
7341
|
+
}
|
|
7342
|
+
break
|
|
7343
|
+
case 3:
|
|
7344
|
+
secondByte = buf[i + 1];
|
|
7345
|
+
thirdByte = buf[i + 2];
|
|
7346
|
+
if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {
|
|
7347
|
+
tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F);
|
|
7348
|
+
if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {
|
|
7349
|
+
codePoint = tempCodePoint;
|
|
7350
|
+
}
|
|
7351
|
+
}
|
|
7352
|
+
break
|
|
7353
|
+
case 4:
|
|
7354
|
+
secondByte = buf[i + 1];
|
|
7355
|
+
thirdByte = buf[i + 2];
|
|
7356
|
+
fourthByte = buf[i + 3];
|
|
7357
|
+
if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {
|
|
7358
|
+
tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F);
|
|
7359
|
+
if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {
|
|
7360
|
+
codePoint = tempCodePoint;
|
|
7361
|
+
}
|
|
7362
|
+
}
|
|
7363
|
+
}
|
|
7364
|
+
}
|
|
7365
|
+
|
|
7366
|
+
if (codePoint === null) {
|
|
7367
|
+
// we did not generate a valid codePoint so insert a
|
|
7368
|
+
// replacement char (U+FFFD) and advance only 1 byte
|
|
7369
|
+
codePoint = 0xFFFD;
|
|
7370
|
+
bytesPerSequence = 1;
|
|
7371
|
+
} else if (codePoint > 0xFFFF) {
|
|
7372
|
+
// encode to utf16 (surrogate pair dance)
|
|
7373
|
+
codePoint -= 0x10000;
|
|
7374
|
+
res.push(codePoint >>> 10 & 0x3FF | 0xD800);
|
|
7375
|
+
codePoint = 0xDC00 | codePoint & 0x3FF;
|
|
7376
|
+
}
|
|
7377
|
+
|
|
7378
|
+
res.push(codePoint);
|
|
7379
|
+
i += bytesPerSequence;
|
|
7380
|
+
}
|
|
7381
|
+
|
|
7382
|
+
return decodeCodePointsArray(res)
|
|
7383
|
+
}
|
|
7384
|
+
|
|
7385
|
+
// Based on http://stackoverflow.com/a/22747272/680742, the browser with
|
|
7386
|
+
// the lowest limit is Chrome, with 0x10000 args.
|
|
7387
|
+
// We go 1 magnitude less, for safety
|
|
7388
|
+
var MAX_ARGUMENTS_LENGTH = 0x1000;
|
|
7389
|
+
|
|
7390
|
+
function decodeCodePointsArray (codePoints) {
|
|
7391
|
+
var len = codePoints.length;
|
|
7392
|
+
if (len <= MAX_ARGUMENTS_LENGTH) {
|
|
7393
|
+
return String.fromCharCode.apply(String, codePoints) // avoid extra slice()
|
|
7394
|
+
}
|
|
7395
|
+
|
|
7396
|
+
// Decode in chunks to avoid "call stack size exceeded".
|
|
7397
|
+
var res = '';
|
|
7398
|
+
var i = 0;
|
|
7399
|
+
while (i < len) {
|
|
7400
|
+
res += String.fromCharCode.apply(
|
|
7401
|
+
String,
|
|
7402
|
+
codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)
|
|
7403
|
+
);
|
|
7404
|
+
}
|
|
7405
|
+
return res
|
|
7406
|
+
}
|
|
7407
|
+
|
|
7408
|
+
function asciiSlice (buf, start, end) {
|
|
7409
|
+
var ret = '';
|
|
7410
|
+
end = Math.min(buf.length, end);
|
|
7411
|
+
|
|
7412
|
+
for (var i = start; i < end; ++i) {
|
|
7413
|
+
ret += String.fromCharCode(buf[i] & 0x7F);
|
|
7414
|
+
}
|
|
7415
|
+
return ret
|
|
7416
|
+
}
|
|
7417
|
+
|
|
7418
|
+
function latin1Slice (buf, start, end) {
|
|
7419
|
+
var ret = '';
|
|
7420
|
+
end = Math.min(buf.length, end);
|
|
7421
|
+
|
|
7422
|
+
for (var i = start; i < end; ++i) {
|
|
7423
|
+
ret += String.fromCharCode(buf[i]);
|
|
7424
|
+
}
|
|
7425
|
+
return ret
|
|
7426
|
+
}
|
|
7427
|
+
|
|
7428
|
+
function hexSlice (buf, start, end) {
|
|
7429
|
+
var len = buf.length;
|
|
7430
|
+
|
|
7431
|
+
if (!start || start < 0) start = 0;
|
|
7432
|
+
if (!end || end < 0 || end > len) end = len;
|
|
7433
|
+
|
|
7434
|
+
var out = '';
|
|
7435
|
+
for (var i = start; i < end; ++i) {
|
|
7436
|
+
out += toHex(buf[i]);
|
|
7437
|
+
}
|
|
7438
|
+
return out
|
|
7439
|
+
}
|
|
7440
|
+
|
|
7441
|
+
function utf16leSlice (buf, start, end) {
|
|
7442
|
+
var bytes = buf.slice(start, end);
|
|
7443
|
+
var res = '';
|
|
7444
|
+
for (var i = 0; i < bytes.length; i += 2) {
|
|
7445
|
+
res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256);
|
|
7446
|
+
}
|
|
7447
|
+
return res
|
|
7448
|
+
}
|
|
7449
|
+
|
|
7450
|
+
Buffer.prototype.slice = function slice (start, end) {
|
|
7451
|
+
var len = this.length;
|
|
7452
|
+
start = ~~start;
|
|
7453
|
+
end = end === undefined ? len : ~~end;
|
|
7454
|
+
|
|
7455
|
+
if (start < 0) {
|
|
7456
|
+
start += len;
|
|
7457
|
+
if (start < 0) start = 0;
|
|
7458
|
+
} else if (start > len) {
|
|
7459
|
+
start = len;
|
|
7460
|
+
}
|
|
7461
|
+
|
|
7462
|
+
if (end < 0) {
|
|
7463
|
+
end += len;
|
|
7464
|
+
if (end < 0) end = 0;
|
|
7465
|
+
} else if (end > len) {
|
|
7466
|
+
end = len;
|
|
7467
|
+
}
|
|
7468
|
+
|
|
7469
|
+
if (end < start) end = start;
|
|
7470
|
+
|
|
7471
|
+
var newBuf;
|
|
7472
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7473
|
+
newBuf = this.subarray(start, end);
|
|
7474
|
+
newBuf.__proto__ = Buffer.prototype;
|
|
7475
|
+
} else {
|
|
7476
|
+
var sliceLen = end - start;
|
|
7477
|
+
newBuf = new Buffer(sliceLen, undefined);
|
|
7478
|
+
for (var i = 0; i < sliceLen; ++i) {
|
|
7479
|
+
newBuf[i] = this[i + start];
|
|
7480
|
+
}
|
|
7481
|
+
}
|
|
7482
|
+
|
|
7483
|
+
return newBuf
|
|
7484
|
+
};
|
|
7485
|
+
|
|
7486
|
+
/*
|
|
7487
|
+
* Need to make sure that buffer isn't trying to write out of bounds.
|
|
7488
|
+
*/
|
|
7489
|
+
function checkOffset (offset, ext, length) {
|
|
7490
|
+
if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint')
|
|
7491
|
+
if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')
|
|
7492
|
+
}
|
|
7493
|
+
|
|
7494
|
+
Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {
|
|
7495
|
+
offset = offset | 0;
|
|
7496
|
+
byteLength = byteLength | 0;
|
|
7497
|
+
if (!noAssert) checkOffset(offset, byteLength, this.length);
|
|
7498
|
+
|
|
7499
|
+
var val = this[offset];
|
|
7500
|
+
var mul = 1;
|
|
7501
|
+
var i = 0;
|
|
7502
|
+
while (++i < byteLength && (mul *= 0x100)) {
|
|
7503
|
+
val += this[offset + i] * mul;
|
|
7504
|
+
}
|
|
7505
|
+
|
|
7506
|
+
return val
|
|
7507
|
+
};
|
|
7508
|
+
|
|
7509
|
+
Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {
|
|
7510
|
+
offset = offset | 0;
|
|
7511
|
+
byteLength = byteLength | 0;
|
|
7512
|
+
if (!noAssert) {
|
|
7513
|
+
checkOffset(offset, byteLength, this.length);
|
|
7514
|
+
}
|
|
7515
|
+
|
|
7516
|
+
var val = this[offset + --byteLength];
|
|
7517
|
+
var mul = 1;
|
|
7518
|
+
while (byteLength > 0 && (mul *= 0x100)) {
|
|
7519
|
+
val += this[offset + --byteLength] * mul;
|
|
7520
|
+
}
|
|
7521
|
+
|
|
7522
|
+
return val
|
|
7523
|
+
};
|
|
7524
|
+
|
|
7525
|
+
Buffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {
|
|
7526
|
+
if (!noAssert) checkOffset(offset, 1, this.length);
|
|
7527
|
+
return this[offset]
|
|
7528
|
+
};
|
|
7529
|
+
|
|
7530
|
+
Buffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {
|
|
7531
|
+
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
7532
|
+
return this[offset] | (this[offset + 1] << 8)
|
|
7533
|
+
};
|
|
7534
|
+
|
|
7535
|
+
Buffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {
|
|
7536
|
+
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
7537
|
+
return (this[offset] << 8) | this[offset + 1]
|
|
7538
|
+
};
|
|
7539
|
+
|
|
7540
|
+
Buffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {
|
|
7541
|
+
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
7542
|
+
|
|
7543
|
+
return ((this[offset]) |
|
|
7544
|
+
(this[offset + 1] << 8) |
|
|
7545
|
+
(this[offset + 2] << 16)) +
|
|
7546
|
+
(this[offset + 3] * 0x1000000)
|
|
7547
|
+
};
|
|
7548
|
+
|
|
7549
|
+
Buffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {
|
|
7550
|
+
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
7551
|
+
|
|
7552
|
+
return (this[offset] * 0x1000000) +
|
|
7553
|
+
((this[offset + 1] << 16) |
|
|
7554
|
+
(this[offset + 2] << 8) |
|
|
7555
|
+
this[offset + 3])
|
|
7556
|
+
};
|
|
7557
|
+
|
|
7558
|
+
Buffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {
|
|
7559
|
+
offset = offset | 0;
|
|
7560
|
+
byteLength = byteLength | 0;
|
|
7561
|
+
if (!noAssert) checkOffset(offset, byteLength, this.length);
|
|
7562
|
+
|
|
7563
|
+
var val = this[offset];
|
|
7564
|
+
var mul = 1;
|
|
7565
|
+
var i = 0;
|
|
7566
|
+
while (++i < byteLength && (mul *= 0x100)) {
|
|
7567
|
+
val += this[offset + i] * mul;
|
|
7568
|
+
}
|
|
7569
|
+
mul *= 0x80;
|
|
7570
|
+
|
|
7571
|
+
if (val >= mul) val -= Math.pow(2, 8 * byteLength);
|
|
7572
|
+
|
|
7573
|
+
return val
|
|
7574
|
+
};
|
|
7575
|
+
|
|
7576
|
+
Buffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {
|
|
7577
|
+
offset = offset | 0;
|
|
7578
|
+
byteLength = byteLength | 0;
|
|
7579
|
+
if (!noAssert) checkOffset(offset, byteLength, this.length);
|
|
7580
|
+
|
|
7581
|
+
var i = byteLength;
|
|
7582
|
+
var mul = 1;
|
|
7583
|
+
var val = this[offset + --i];
|
|
7584
|
+
while (i > 0 && (mul *= 0x100)) {
|
|
7585
|
+
val += this[offset + --i] * mul;
|
|
7586
|
+
}
|
|
7587
|
+
mul *= 0x80;
|
|
7588
|
+
|
|
7589
|
+
if (val >= mul) val -= Math.pow(2, 8 * byteLength);
|
|
7590
|
+
|
|
7591
|
+
return val
|
|
7592
|
+
};
|
|
7593
|
+
|
|
7594
|
+
Buffer.prototype.readInt8 = function readInt8 (offset, noAssert) {
|
|
7595
|
+
if (!noAssert) checkOffset(offset, 1, this.length);
|
|
7596
|
+
if (!(this[offset] & 0x80)) return (this[offset])
|
|
7597
|
+
return ((0xff - this[offset] + 1) * -1)
|
|
7598
|
+
};
|
|
7599
|
+
|
|
7600
|
+
Buffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {
|
|
7601
|
+
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
7602
|
+
var val = this[offset] | (this[offset + 1] << 8);
|
|
7603
|
+
return (val & 0x8000) ? val | 0xFFFF0000 : val
|
|
7604
|
+
};
|
|
7605
|
+
|
|
7606
|
+
Buffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {
|
|
7607
|
+
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
7608
|
+
var val = this[offset + 1] | (this[offset] << 8);
|
|
7609
|
+
return (val & 0x8000) ? val | 0xFFFF0000 : val
|
|
7610
|
+
};
|
|
7611
|
+
|
|
7612
|
+
Buffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {
|
|
7613
|
+
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
7614
|
+
|
|
7615
|
+
return (this[offset]) |
|
|
7616
|
+
(this[offset + 1] << 8) |
|
|
7617
|
+
(this[offset + 2] << 16) |
|
|
7618
|
+
(this[offset + 3] << 24)
|
|
7619
|
+
};
|
|
7620
|
+
|
|
7621
|
+
Buffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {
|
|
7622
|
+
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
7623
|
+
|
|
7624
|
+
return (this[offset] << 24) |
|
|
7625
|
+
(this[offset + 1] << 16) |
|
|
7626
|
+
(this[offset + 2] << 8) |
|
|
7627
|
+
(this[offset + 3])
|
|
7628
|
+
};
|
|
7629
|
+
|
|
7630
|
+
Buffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {
|
|
7631
|
+
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
7632
|
+
return read(this, offset, true, 23, 4)
|
|
7633
|
+
};
|
|
7634
|
+
|
|
7635
|
+
Buffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {
|
|
7636
|
+
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
7637
|
+
return read(this, offset, false, 23, 4)
|
|
7638
|
+
};
|
|
7639
|
+
|
|
7640
|
+
Buffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {
|
|
7641
|
+
if (!noAssert) checkOffset(offset, 8, this.length);
|
|
7642
|
+
return read(this, offset, true, 52, 8)
|
|
7643
|
+
};
|
|
7644
|
+
|
|
7645
|
+
Buffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {
|
|
7646
|
+
if (!noAssert) checkOffset(offset, 8, this.length);
|
|
7647
|
+
return read(this, offset, false, 52, 8)
|
|
7648
|
+
};
|
|
7649
|
+
|
|
7650
|
+
function checkInt (buf, value, offset, ext, max, min) {
|
|
7651
|
+
if (!internalIsBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance')
|
|
7652
|
+
if (value > max || value < min) throw new RangeError('"value" argument is out of bounds')
|
|
7653
|
+
if (offset + ext > buf.length) throw new RangeError('Index out of range')
|
|
7654
|
+
}
|
|
7655
|
+
|
|
7656
|
+
Buffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {
|
|
7657
|
+
value = +value;
|
|
7658
|
+
offset = offset | 0;
|
|
7659
|
+
byteLength = byteLength | 0;
|
|
7660
|
+
if (!noAssert) {
|
|
7661
|
+
var maxBytes = Math.pow(2, 8 * byteLength) - 1;
|
|
7662
|
+
checkInt(this, value, offset, byteLength, maxBytes, 0);
|
|
7663
|
+
}
|
|
7664
|
+
|
|
7665
|
+
var mul = 1;
|
|
7666
|
+
var i = 0;
|
|
7667
|
+
this[offset] = value & 0xFF;
|
|
7668
|
+
while (++i < byteLength && (mul *= 0x100)) {
|
|
7669
|
+
this[offset + i] = (value / mul) & 0xFF;
|
|
7670
|
+
}
|
|
7671
|
+
|
|
7672
|
+
return offset + byteLength
|
|
7673
|
+
};
|
|
7674
|
+
|
|
7675
|
+
Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {
|
|
7676
|
+
value = +value;
|
|
7677
|
+
offset = offset | 0;
|
|
7678
|
+
byteLength = byteLength | 0;
|
|
7679
|
+
if (!noAssert) {
|
|
7680
|
+
var maxBytes = Math.pow(2, 8 * byteLength) - 1;
|
|
7681
|
+
checkInt(this, value, offset, byteLength, maxBytes, 0);
|
|
7682
|
+
}
|
|
7683
|
+
|
|
7684
|
+
var i = byteLength - 1;
|
|
7685
|
+
var mul = 1;
|
|
7686
|
+
this[offset + i] = value & 0xFF;
|
|
7687
|
+
while (--i >= 0 && (mul *= 0x100)) {
|
|
7688
|
+
this[offset + i] = (value / mul) & 0xFF;
|
|
7689
|
+
}
|
|
7690
|
+
|
|
7691
|
+
return offset + byteLength
|
|
7692
|
+
};
|
|
7693
|
+
|
|
7694
|
+
Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {
|
|
7695
|
+
value = +value;
|
|
7696
|
+
offset = offset | 0;
|
|
7697
|
+
if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0);
|
|
7698
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);
|
|
7699
|
+
this[offset] = (value & 0xff);
|
|
7700
|
+
return offset + 1
|
|
7701
|
+
};
|
|
7702
|
+
|
|
7703
|
+
function objectWriteUInt16 (buf, value, offset, littleEndian) {
|
|
7704
|
+
if (value < 0) value = 0xffff + value + 1;
|
|
7705
|
+
for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) {
|
|
7706
|
+
buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>>
|
|
7707
|
+
(littleEndian ? i : 1 - i) * 8;
|
|
7708
|
+
}
|
|
7709
|
+
}
|
|
7710
|
+
|
|
7711
|
+
Buffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {
|
|
7712
|
+
value = +value;
|
|
7713
|
+
offset = offset | 0;
|
|
7714
|
+
if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);
|
|
7715
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7716
|
+
this[offset] = (value & 0xff);
|
|
7717
|
+
this[offset + 1] = (value >>> 8);
|
|
7718
|
+
} else {
|
|
7719
|
+
objectWriteUInt16(this, value, offset, true);
|
|
7720
|
+
}
|
|
7721
|
+
return offset + 2
|
|
7722
|
+
};
|
|
7723
|
+
|
|
7724
|
+
Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {
|
|
7725
|
+
value = +value;
|
|
7726
|
+
offset = offset | 0;
|
|
7727
|
+
if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);
|
|
7728
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7729
|
+
this[offset] = (value >>> 8);
|
|
7730
|
+
this[offset + 1] = (value & 0xff);
|
|
7731
|
+
} else {
|
|
7732
|
+
objectWriteUInt16(this, value, offset, false);
|
|
7733
|
+
}
|
|
7734
|
+
return offset + 2
|
|
7735
|
+
};
|
|
7736
|
+
|
|
7737
|
+
function objectWriteUInt32 (buf, value, offset, littleEndian) {
|
|
7738
|
+
if (value < 0) value = 0xffffffff + value + 1;
|
|
7739
|
+
for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) {
|
|
7740
|
+
buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff;
|
|
7741
|
+
}
|
|
7742
|
+
}
|
|
7743
|
+
|
|
7744
|
+
Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {
|
|
7745
|
+
value = +value;
|
|
7746
|
+
offset = offset | 0;
|
|
7747
|
+
if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);
|
|
7748
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7749
|
+
this[offset + 3] = (value >>> 24);
|
|
7750
|
+
this[offset + 2] = (value >>> 16);
|
|
7751
|
+
this[offset + 1] = (value >>> 8);
|
|
7752
|
+
this[offset] = (value & 0xff);
|
|
7753
|
+
} else {
|
|
7754
|
+
objectWriteUInt32(this, value, offset, true);
|
|
7755
|
+
}
|
|
7756
|
+
return offset + 4
|
|
7757
|
+
};
|
|
7758
|
+
|
|
7759
|
+
Buffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {
|
|
7760
|
+
value = +value;
|
|
7761
|
+
offset = offset | 0;
|
|
7762
|
+
if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);
|
|
7763
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7764
|
+
this[offset] = (value >>> 24);
|
|
7765
|
+
this[offset + 1] = (value >>> 16);
|
|
7766
|
+
this[offset + 2] = (value >>> 8);
|
|
7767
|
+
this[offset + 3] = (value & 0xff);
|
|
7768
|
+
} else {
|
|
7769
|
+
objectWriteUInt32(this, value, offset, false);
|
|
7770
|
+
}
|
|
7771
|
+
return offset + 4
|
|
7772
|
+
};
|
|
7773
|
+
|
|
7774
|
+
Buffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {
|
|
7775
|
+
value = +value;
|
|
7776
|
+
offset = offset | 0;
|
|
7777
|
+
if (!noAssert) {
|
|
7778
|
+
var limit = Math.pow(2, 8 * byteLength - 1);
|
|
7779
|
+
|
|
7780
|
+
checkInt(this, value, offset, byteLength, limit - 1, -limit);
|
|
7781
|
+
}
|
|
7782
|
+
|
|
7783
|
+
var i = 0;
|
|
7784
|
+
var mul = 1;
|
|
7785
|
+
var sub = 0;
|
|
7786
|
+
this[offset] = value & 0xFF;
|
|
7787
|
+
while (++i < byteLength && (mul *= 0x100)) {
|
|
7788
|
+
if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {
|
|
7789
|
+
sub = 1;
|
|
7790
|
+
}
|
|
7791
|
+
this[offset + i] = ((value / mul) >> 0) - sub & 0xFF;
|
|
7792
|
+
}
|
|
7793
|
+
|
|
7794
|
+
return offset + byteLength
|
|
7795
|
+
};
|
|
7796
|
+
|
|
7797
|
+
Buffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {
|
|
7798
|
+
value = +value;
|
|
7799
|
+
offset = offset | 0;
|
|
7800
|
+
if (!noAssert) {
|
|
7801
|
+
var limit = Math.pow(2, 8 * byteLength - 1);
|
|
7802
|
+
|
|
7803
|
+
checkInt(this, value, offset, byteLength, limit - 1, -limit);
|
|
7804
|
+
}
|
|
7805
|
+
|
|
7806
|
+
var i = byteLength - 1;
|
|
7807
|
+
var mul = 1;
|
|
7808
|
+
var sub = 0;
|
|
7809
|
+
this[offset + i] = value & 0xFF;
|
|
7810
|
+
while (--i >= 0 && (mul *= 0x100)) {
|
|
7811
|
+
if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {
|
|
7812
|
+
sub = 1;
|
|
7813
|
+
}
|
|
7814
|
+
this[offset + i] = ((value / mul) >> 0) - sub & 0xFF;
|
|
7815
|
+
}
|
|
7816
|
+
|
|
7817
|
+
return offset + byteLength
|
|
7818
|
+
};
|
|
7819
|
+
|
|
7820
|
+
Buffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {
|
|
7821
|
+
value = +value;
|
|
7822
|
+
offset = offset | 0;
|
|
7823
|
+
if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80);
|
|
7824
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);
|
|
7825
|
+
if (value < 0) value = 0xff + value + 1;
|
|
7826
|
+
this[offset] = (value & 0xff);
|
|
7827
|
+
return offset + 1
|
|
7828
|
+
};
|
|
7829
|
+
|
|
7830
|
+
Buffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {
|
|
7831
|
+
value = +value;
|
|
7832
|
+
offset = offset | 0;
|
|
7833
|
+
if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);
|
|
7834
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7835
|
+
this[offset] = (value & 0xff);
|
|
7836
|
+
this[offset + 1] = (value >>> 8);
|
|
7837
|
+
} else {
|
|
7838
|
+
objectWriteUInt16(this, value, offset, true);
|
|
7839
|
+
}
|
|
7840
|
+
return offset + 2
|
|
7841
|
+
};
|
|
7842
|
+
|
|
7843
|
+
Buffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {
|
|
7844
|
+
value = +value;
|
|
7845
|
+
offset = offset | 0;
|
|
7846
|
+
if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);
|
|
7847
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7848
|
+
this[offset] = (value >>> 8);
|
|
7849
|
+
this[offset + 1] = (value & 0xff);
|
|
7850
|
+
} else {
|
|
7851
|
+
objectWriteUInt16(this, value, offset, false);
|
|
7852
|
+
}
|
|
7853
|
+
return offset + 2
|
|
7854
|
+
};
|
|
7855
|
+
|
|
7856
|
+
Buffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {
|
|
7857
|
+
value = +value;
|
|
7858
|
+
offset = offset | 0;
|
|
7859
|
+
if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);
|
|
7860
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7861
|
+
this[offset] = (value & 0xff);
|
|
7862
|
+
this[offset + 1] = (value >>> 8);
|
|
7863
|
+
this[offset + 2] = (value >>> 16);
|
|
7864
|
+
this[offset + 3] = (value >>> 24);
|
|
7865
|
+
} else {
|
|
7866
|
+
objectWriteUInt32(this, value, offset, true);
|
|
7867
|
+
}
|
|
7868
|
+
return offset + 4
|
|
7869
|
+
};
|
|
7870
|
+
|
|
7871
|
+
Buffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {
|
|
7872
|
+
value = +value;
|
|
7873
|
+
offset = offset | 0;
|
|
7874
|
+
if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);
|
|
7875
|
+
if (value < 0) value = 0xffffffff + value + 1;
|
|
7876
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7877
|
+
this[offset] = (value >>> 24);
|
|
7878
|
+
this[offset + 1] = (value >>> 16);
|
|
7879
|
+
this[offset + 2] = (value >>> 8);
|
|
7880
|
+
this[offset + 3] = (value & 0xff);
|
|
7881
|
+
} else {
|
|
7882
|
+
objectWriteUInt32(this, value, offset, false);
|
|
7883
|
+
}
|
|
7884
|
+
return offset + 4
|
|
7885
|
+
};
|
|
7886
|
+
|
|
7887
|
+
function checkIEEE754 (buf, value, offset, ext, max, min) {
|
|
7888
|
+
if (offset + ext > buf.length) throw new RangeError('Index out of range')
|
|
7889
|
+
if (offset < 0) throw new RangeError('Index out of range')
|
|
7890
|
+
}
|
|
7891
|
+
|
|
7892
|
+
function writeFloat (buf, value, offset, littleEndian, noAssert) {
|
|
7893
|
+
if (!noAssert) {
|
|
7894
|
+
checkIEEE754(buf, value, offset, 4);
|
|
7895
|
+
}
|
|
7896
|
+
write(buf, value, offset, littleEndian, 23, 4);
|
|
7897
|
+
return offset + 4
|
|
7898
|
+
}
|
|
7899
|
+
|
|
7900
|
+
Buffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {
|
|
7901
|
+
return writeFloat(this, value, offset, true, noAssert)
|
|
7902
|
+
};
|
|
7903
|
+
|
|
7904
|
+
Buffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {
|
|
7905
|
+
return writeFloat(this, value, offset, false, noAssert)
|
|
7906
|
+
};
|
|
7907
|
+
|
|
7908
|
+
function writeDouble (buf, value, offset, littleEndian, noAssert) {
|
|
7909
|
+
if (!noAssert) {
|
|
7910
|
+
checkIEEE754(buf, value, offset, 8);
|
|
7911
|
+
}
|
|
7912
|
+
write(buf, value, offset, littleEndian, 52, 8);
|
|
7913
|
+
return offset + 8
|
|
7914
|
+
}
|
|
7915
|
+
|
|
7916
|
+
Buffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {
|
|
7917
|
+
return writeDouble(this, value, offset, true, noAssert)
|
|
7918
|
+
};
|
|
7919
|
+
|
|
7920
|
+
Buffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {
|
|
7921
|
+
return writeDouble(this, value, offset, false, noAssert)
|
|
7922
|
+
};
|
|
7923
|
+
|
|
7924
|
+
// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)
|
|
7925
|
+
Buffer.prototype.copy = function copy (target, targetStart, start, end) {
|
|
7926
|
+
if (!start) start = 0;
|
|
7927
|
+
if (!end && end !== 0) end = this.length;
|
|
7928
|
+
if (targetStart >= target.length) targetStart = target.length;
|
|
7929
|
+
if (!targetStart) targetStart = 0;
|
|
7930
|
+
if (end > 0 && end < start) end = start;
|
|
7931
|
+
|
|
7932
|
+
// Copy 0 bytes; we're done
|
|
7933
|
+
if (end === start) return 0
|
|
7934
|
+
if (target.length === 0 || this.length === 0) return 0
|
|
7935
|
+
|
|
7936
|
+
// Fatal error conditions
|
|
7937
|
+
if (targetStart < 0) {
|
|
7938
|
+
throw new RangeError('targetStart out of bounds')
|
|
7939
|
+
}
|
|
7940
|
+
if (start < 0 || start >= this.length) throw new RangeError('sourceStart out of bounds')
|
|
7941
|
+
if (end < 0) throw new RangeError('sourceEnd out of bounds')
|
|
7942
|
+
|
|
7943
|
+
// Are we oob?
|
|
7944
|
+
if (end > this.length) end = this.length;
|
|
7945
|
+
if (target.length - targetStart < end - start) {
|
|
7946
|
+
end = target.length - targetStart + start;
|
|
7947
|
+
}
|
|
7948
|
+
|
|
7949
|
+
var len = end - start;
|
|
7950
|
+
var i;
|
|
7951
|
+
|
|
7952
|
+
if (this === target && start < targetStart && targetStart < end) {
|
|
7953
|
+
// descending copy from end
|
|
7954
|
+
for (i = len - 1; i >= 0; --i) {
|
|
7955
|
+
target[i + targetStart] = this[i + start];
|
|
7956
|
+
}
|
|
7957
|
+
} else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) {
|
|
7958
|
+
// ascending copy from start
|
|
7959
|
+
for (i = 0; i < len; ++i) {
|
|
7960
|
+
target[i + targetStart] = this[i + start];
|
|
7961
|
+
}
|
|
7962
|
+
} else {
|
|
7963
|
+
Uint8Array.prototype.set.call(
|
|
7964
|
+
target,
|
|
7965
|
+
this.subarray(start, start + len),
|
|
7966
|
+
targetStart
|
|
7967
|
+
);
|
|
7968
|
+
}
|
|
7969
|
+
|
|
7970
|
+
return len
|
|
7971
|
+
};
|
|
7972
|
+
|
|
7973
|
+
// Usage:
|
|
7974
|
+
// buffer.fill(number[, offset[, end]])
|
|
7975
|
+
// buffer.fill(buffer[, offset[, end]])
|
|
7976
|
+
// buffer.fill(string[, offset[, end]][, encoding])
|
|
7977
|
+
Buffer.prototype.fill = function fill (val, start, end, encoding) {
|
|
7978
|
+
// Handle string cases:
|
|
7979
|
+
if (typeof val === 'string') {
|
|
7980
|
+
if (typeof start === 'string') {
|
|
7981
|
+
encoding = start;
|
|
7982
|
+
start = 0;
|
|
7983
|
+
end = this.length;
|
|
7984
|
+
} else if (typeof end === 'string') {
|
|
7985
|
+
encoding = end;
|
|
7986
|
+
end = this.length;
|
|
7987
|
+
}
|
|
7988
|
+
if (val.length === 1) {
|
|
7989
|
+
var code = val.charCodeAt(0);
|
|
7990
|
+
if (code < 256) {
|
|
7991
|
+
val = code;
|
|
7992
|
+
}
|
|
7993
|
+
}
|
|
7994
|
+
if (encoding !== undefined && typeof encoding !== 'string') {
|
|
7995
|
+
throw new TypeError('encoding must be a string')
|
|
7996
|
+
}
|
|
7997
|
+
if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {
|
|
7998
|
+
throw new TypeError('Unknown encoding: ' + encoding)
|
|
7999
|
+
}
|
|
8000
|
+
} else if (typeof val === 'number') {
|
|
8001
|
+
val = val & 255;
|
|
8002
|
+
}
|
|
8003
|
+
|
|
8004
|
+
// Invalid ranges are not set to a default, so can range check early.
|
|
8005
|
+
if (start < 0 || this.length < start || this.length < end) {
|
|
8006
|
+
throw new RangeError('Out of range index')
|
|
8007
|
+
}
|
|
8008
|
+
|
|
8009
|
+
if (end <= start) {
|
|
8010
|
+
return this
|
|
8011
|
+
}
|
|
8012
|
+
|
|
8013
|
+
start = start >>> 0;
|
|
8014
|
+
end = end === undefined ? this.length : end >>> 0;
|
|
8015
|
+
|
|
8016
|
+
if (!val) val = 0;
|
|
8017
|
+
|
|
8018
|
+
var i;
|
|
8019
|
+
if (typeof val === 'number') {
|
|
8020
|
+
for (i = start; i < end; ++i) {
|
|
8021
|
+
this[i] = val;
|
|
8022
|
+
}
|
|
8023
|
+
} else {
|
|
8024
|
+
var bytes = internalIsBuffer(val)
|
|
8025
|
+
? val
|
|
8026
|
+
: utf8ToBytes(new Buffer(val, encoding).toString());
|
|
8027
|
+
var len = bytes.length;
|
|
8028
|
+
for (i = 0; i < end - start; ++i) {
|
|
8029
|
+
this[i + start] = bytes[i % len];
|
|
8030
|
+
}
|
|
8031
|
+
}
|
|
8032
|
+
|
|
8033
|
+
return this
|
|
8034
|
+
};
|
|
8035
|
+
|
|
8036
|
+
// HELPER FUNCTIONS
|
|
8037
|
+
// ================
|
|
8038
|
+
|
|
8039
|
+
var INVALID_BASE64_RE = /[^+\/0-9A-Za-z-_]/g;
|
|
8040
|
+
|
|
8041
|
+
function base64clean (str) {
|
|
8042
|
+
// Node strips out invalid characters like \n and \t from the string, base64-js does not
|
|
8043
|
+
str = stringtrim(str).replace(INVALID_BASE64_RE, '');
|
|
8044
|
+
// Node converts strings with length < 2 to ''
|
|
8045
|
+
if (str.length < 2) return ''
|
|
8046
|
+
// Node allows for non-padded base64 strings (missing trailing ===), base64-js does not
|
|
8047
|
+
while (str.length % 4 !== 0) {
|
|
8048
|
+
str = str + '=';
|
|
8049
|
+
}
|
|
8050
|
+
return str
|
|
8051
|
+
}
|
|
8052
|
+
|
|
8053
|
+
function stringtrim (str) {
|
|
8054
|
+
if (str.trim) return str.trim()
|
|
8055
|
+
return str.replace(/^\s+|\s+$/g, '')
|
|
8056
|
+
}
|
|
8057
|
+
|
|
8058
|
+
function toHex (n) {
|
|
8059
|
+
if (n < 16) return '0' + n.toString(16)
|
|
8060
|
+
return n.toString(16)
|
|
8061
|
+
}
|
|
8062
|
+
|
|
8063
|
+
function utf8ToBytes (string, units) {
|
|
8064
|
+
units = units || Infinity;
|
|
8065
|
+
var codePoint;
|
|
8066
|
+
var length = string.length;
|
|
8067
|
+
var leadSurrogate = null;
|
|
8068
|
+
var bytes = [];
|
|
8069
|
+
|
|
8070
|
+
for (var i = 0; i < length; ++i) {
|
|
8071
|
+
codePoint = string.charCodeAt(i);
|
|
8072
|
+
|
|
8073
|
+
// is surrogate component
|
|
8074
|
+
if (codePoint > 0xD7FF && codePoint < 0xE000) {
|
|
8075
|
+
// last char was a lead
|
|
8076
|
+
if (!leadSurrogate) {
|
|
8077
|
+
// no lead yet
|
|
8078
|
+
if (codePoint > 0xDBFF) {
|
|
8079
|
+
// unexpected trail
|
|
8080
|
+
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
|
|
8081
|
+
continue
|
|
8082
|
+
} else if (i + 1 === length) {
|
|
8083
|
+
// unpaired lead
|
|
8084
|
+
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
|
|
8085
|
+
continue
|
|
8086
|
+
}
|
|
8087
|
+
|
|
8088
|
+
// valid lead
|
|
8089
|
+
leadSurrogate = codePoint;
|
|
8090
|
+
|
|
8091
|
+
continue
|
|
8092
|
+
}
|
|
8093
|
+
|
|
8094
|
+
// 2 leads in a row
|
|
8095
|
+
if (codePoint < 0xDC00) {
|
|
8096
|
+
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
|
|
8097
|
+
leadSurrogate = codePoint;
|
|
8098
|
+
continue
|
|
8099
|
+
}
|
|
8100
|
+
|
|
8101
|
+
// valid surrogate pair
|
|
8102
|
+
codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;
|
|
8103
|
+
} else if (leadSurrogate) {
|
|
8104
|
+
// valid bmp char, but last char was a lead
|
|
8105
|
+
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);
|
|
8106
|
+
}
|
|
8107
|
+
|
|
8108
|
+
leadSurrogate = null;
|
|
8109
|
+
|
|
8110
|
+
// encode utf8
|
|
8111
|
+
if (codePoint < 0x80) {
|
|
8112
|
+
if ((units -= 1) < 0) break
|
|
8113
|
+
bytes.push(codePoint);
|
|
8114
|
+
} else if (codePoint < 0x800) {
|
|
8115
|
+
if ((units -= 2) < 0) break
|
|
8116
|
+
bytes.push(
|
|
8117
|
+
codePoint >> 0x6 | 0xC0,
|
|
8118
|
+
codePoint & 0x3F | 0x80
|
|
8119
|
+
);
|
|
8120
|
+
} else if (codePoint < 0x10000) {
|
|
8121
|
+
if ((units -= 3) < 0) break
|
|
8122
|
+
bytes.push(
|
|
8123
|
+
codePoint >> 0xC | 0xE0,
|
|
8124
|
+
codePoint >> 0x6 & 0x3F | 0x80,
|
|
8125
|
+
codePoint & 0x3F | 0x80
|
|
8126
|
+
);
|
|
8127
|
+
} else if (codePoint < 0x110000) {
|
|
8128
|
+
if ((units -= 4) < 0) break
|
|
8129
|
+
bytes.push(
|
|
8130
|
+
codePoint >> 0x12 | 0xF0,
|
|
8131
|
+
codePoint >> 0xC & 0x3F | 0x80,
|
|
8132
|
+
codePoint >> 0x6 & 0x3F | 0x80,
|
|
8133
|
+
codePoint & 0x3F | 0x80
|
|
8134
|
+
);
|
|
8135
|
+
} else {
|
|
8136
|
+
throw new Error('Invalid code point')
|
|
8137
|
+
}
|
|
8138
|
+
}
|
|
8139
|
+
|
|
8140
|
+
return bytes
|
|
8141
|
+
}
|
|
8142
|
+
|
|
8143
|
+
function asciiToBytes (str) {
|
|
8144
|
+
var byteArray = [];
|
|
8145
|
+
for (var i = 0; i < str.length; ++i) {
|
|
8146
|
+
// Node's code seems to be doing this and not & 0x7F..
|
|
8147
|
+
byteArray.push(str.charCodeAt(i) & 0xFF);
|
|
8148
|
+
}
|
|
8149
|
+
return byteArray
|
|
8150
|
+
}
|
|
8151
|
+
|
|
8152
|
+
function utf16leToBytes (str, units) {
|
|
8153
|
+
var c, hi, lo;
|
|
8154
|
+
var byteArray = [];
|
|
8155
|
+
for (var i = 0; i < str.length; ++i) {
|
|
8156
|
+
if ((units -= 2) < 0) break
|
|
8157
|
+
|
|
8158
|
+
c = str.charCodeAt(i);
|
|
8159
|
+
hi = c >> 8;
|
|
8160
|
+
lo = c % 256;
|
|
8161
|
+
byteArray.push(lo);
|
|
8162
|
+
byteArray.push(hi);
|
|
8163
|
+
}
|
|
8164
|
+
|
|
8165
|
+
return byteArray
|
|
8166
|
+
}
|
|
8167
|
+
|
|
8168
|
+
|
|
8169
|
+
function base64ToBytes (str) {
|
|
8170
|
+
return toByteArray(base64clean(str))
|
|
8171
|
+
}
|
|
8172
|
+
|
|
8173
|
+
function blitBuffer (src, dst, offset, length) {
|
|
8174
|
+
for (var i = 0; i < length; ++i) {
|
|
8175
|
+
if ((i + offset >= dst.length) || (i >= src.length)) break
|
|
8176
|
+
dst[i + offset] = src[i];
|
|
8177
|
+
}
|
|
8178
|
+
return i
|
|
8179
|
+
}
|
|
8180
|
+
|
|
8181
|
+
function isnan (val) {
|
|
8182
|
+
return val !== val // eslint-disable-line no-self-compare
|
|
8183
|
+
}
|
|
8184
|
+
|
|
8185
|
+
|
|
8186
|
+
// the following is from is-buffer, also by Feross Aboukhadijeh and with same lisence
|
|
8187
|
+
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
|
8188
|
+
// Object.prototype.constructor. Remove this eventually
|
|
8189
|
+
function isBuffer(obj) {
|
|
8190
|
+
return obj != null && (!!obj._isBuffer || isFastBuffer(obj) || isSlowBuffer(obj))
|
|
8191
|
+
}
|
|
8192
|
+
|
|
8193
|
+
function isFastBuffer (obj) {
|
|
8194
|
+
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
8195
|
+
}
|
|
8196
|
+
|
|
8197
|
+
// For Node v0.10 support. Remove this eventually.
|
|
8198
|
+
function isSlowBuffer (obj) {
|
|
8199
|
+
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isFastBuffer(obj.slice(0, 0))
|
|
8200
|
+
}
|
|
8201
|
+
|
|
6234
8202
|
/**
|
|
6235
8203
|
* Convert a data object to FormData
|
|
6236
8204
|
* @param {Object} obj
|
|
@@ -6779,7 +8747,7 @@ function getDefaultAdapter() {
|
|
|
6779
8747
|
if (typeof XMLHttpRequest !== 'undefined') {
|
|
6780
8748
|
// For browsers use XHR adapter
|
|
6781
8749
|
adapter = xhr;
|
|
6782
|
-
} else if (typeof
|
|
8750
|
+
} else if (typeof browser$1 !== 'undefined' && Object.prototype.toString.call(browser$1) === '[object process]') {
|
|
6783
8751
|
// For node use HTTP adapter
|
|
6784
8752
|
adapter = xhr;
|
|
6785
8753
|
}
|
|
@@ -7556,7 +9524,7 @@ var axios = axios_1;
|
|
|
7556
9524
|
|
|
7557
9525
|
function e(e){this.message=e;}e.prototype=new Error,e.prototype.name="InvalidCharacterError";var r$1="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(r){var t=String(r).replace(/=+$/,"");if(t.length%4==1)throw new e("'atob' failed: The string to be decoded is not correctly encoded.");for(var n,o,a=0,i=0,c="";o=t.charAt(i++);~o&&(n=a%4?64*n+o:o,a++%4)?c+=String.fromCharCode(255&n>>(-2*a&6)):0)o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(o);return c};function t(e){var t=e.replace(/-/g,"+").replace(/_/g,"/");switch(t.length%4){case 0:break;case 2:t+="==";break;case 3:t+="=";break;default:throw "Illegal base64url string!"}try{return function(e){return decodeURIComponent(r$1(e).replace(/(.)/g,(function(e,r){var t=r.charCodeAt(0).toString(16).toUpperCase();return t.length<2&&(t="0"+t),"%"+t})))}(t)}catch(e){return r$1(t)}}function n$1(e){this.message=e;}function o$1(e,r){if("string"!=typeof e)throw new n$1("Invalid token specified");var o=!0===(r=r||{}).header?0:1;try{return JSON.parse(t(e.split(".")[o]))}catch(e){throw new n$1("Invalid token specified: "+e.message)}}n$1.prototype=new Error,n$1.prototype.name="InvalidTokenError";
|
|
7558
9526
|
|
|
7559
|
-
let r=function(e,t,a){return alert(e)},n=function(e,t){return r(e,l.error,t)},l={error:"error",success:"success",info:"info"};var o={fire:function(e,t,a){return r(e,t,a)},setNotifier:function(e){r=e,salla.event.emit("twilight::notifier.changed");},error:n,success:function(e,t){return r(e,l.success,t)},info:function(e,t){return r(e,l.info,t)},sallaInitiated:function(){let e=window.location.href.match(/([\?\&]danger=)[^&]+/g);e&&(window.history.replaceState(null,document.title,window.location.pathname),salla.event.once("twilight::notifier.changed",(()=>{e.forEach((e=>{n(decodeURI(e.replace("?danger=","").replace("&danger=","")));}));})));},types:l};class d{constructor(e,t){return this.api=e,this.event=t,new Proxy(this,{get:function(a,s){return "event"===s?t:"api"===s?e:e&&e[s]||a[s]}})}}Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector),Element.prototype.closest||(Element.prototype.closest=function(e){for(var t=this;t;){if(t.matches(e))return t;t=t.parentElement;}}),Element.prototype.getElementSallaData=function(e,...t){if(!this.getAttribute)return;if(this.hasAttribute("data-json"))try{return JSON.parse(this.getAttribute("data-json"))}catch(e){}let a=this.getAttribute("data-function");if(a&&window[a])return "function"==typeof window[a]?this.getFilteredData(window[a].call(this,...t)):this.getFilteredData(window[a]);let s=this.hasAttribute("data-form-selector")?document.querySelector(this.dataset.formSelector):void 0;if(s="FORM"===this.tagName?this:s||this.closest("form")||this.closest("[salla-form-data]")||this,s&&"FORM"===s.tagName)return this.getFilteredData(new FormData(s),null,s);let i=s.querySelectorAll("[name]");if(!i.length)return this.getFilteredData();let r=Object.assign({},this.dataset);return i.forEach((e=>{if(!["checkbox","radio"].includes(e.type)||e.checked)try{let t=Salla.helpers.inputData(e.name,e.value,r);r[t.name]=t.value;}catch(t){Salla.log(e.name+" can't be send");}})),this.getFilteredData(r)},Element.prototype.canEventFireHook=function(e){return !!this.hasAttribute&&this.hasAttribute(Salla.api.hooksPrefix+e.type)},Element.prototype.hasAttributeStartsWith=function(e,t){e=e.toLowerCase();for(var a=0;a<this.attributes.length;a++){let s=this.attributes[a].name.toLowerCase();if(0===s.indexOf(e))return !t||s}return !1},HTMLFormElement.prototype.getAjaxFormData=function(e){var t=this.querySelectorAll('input[type="file"]');t.forEach((e=>{e.files.length||e.setAttribute("disabled","");}));var a=new FormData(this);return t.forEach((e=>{e.files.length||e.removeAttribute("disabled");})),{formData:this.getFilteredData(a,e),url:this.getAttribute("action"),method:this.getAttribute("method")||"post",events:{success:this.dataset.onSuccess,fail:this.dataset.onFail}}},Element.prototype.getFilteredData=function(e=null,t=null,a=null){return e=e||a?.dataset||this.dataset,a&&this.name&&void 0!==this.value&&(e=function(e,t,a){e instanceof FormData?e.append(t,a):e[t]=a;return e}(e,this.name,this.value)),["filterBeforeSubmit","filterBeforeSend"].forEach((s=>{let i=a?.dataset[s]||this.dataset[s];if(i){var r=window[i];if("function"==typeof r){if(!r(e,a||this,t)&&e)throw `Data failed to be pass verify function window.${i}(formData, element, event)!`;return r(e,a||this,t)}Salla.log("window."+i+"() not found!");}})),e},HTMLAnchorElement.prototype.getAjaxFormData=function(e){return {formData:this.getFilteredData(null,e),url:this.getAttribute("href"),method:this.dataset.type||"get",events:{success:this.dataset.onSuccess,fail:this.dataset.onFail}}};class c{constructor(){this.events={},this.namespace="";let e=/function (.{1,})\(/.exec(this.constructor.toString());this.className=(e&&e.length>1?e[1]:"").toLowerCase();}after_init(){this.createDynamicFunctions();}createDynamicFunctions(){Object.keys(this.events).forEach((e=>{this.createDynamicEventFuns(e),this.createDynamicListenerFuns(e);}));}createDynamicEventFuns(e){if(this[e])return;let t=this;this[e]=function(...a){return t.dispatch(e,...a)};}createDynamicListenerFuns(e){let t="on"+e.charAt(0).toUpperCase()+e.slice(1);if(this[t])return;let a=this;this[t]=function(t){return a.on(e,(async(...e)=>t(...e)))};}getEventName(e){return e=this.events[e]||e,!this.namespace||e.includes("::")?e:this.namespace+Salla.event.delimiter+e}dispatch(e,...t){return Salla.event.emitAsync(this.getEventName(e),...t)}on(e,t){return Salla.event.addListener(this.getEventName(e),t)}once(e,t){return Salla.event.once(this.getEventName(e),t)}}function u(e){e&&e.sallaInitiated&&!e.initiated&&(e.sallaInitiated(),e.initiated=!0);}Salla.event.auth=new class extends c{constructor(){super(),this.namespace="auth",this.events={login:"login",logout:"logout",codeSent:"code.sent",codeNotSent:"code.not-sent",verified:"verified",verificationFailed:"verification.failed",loggedIn:"logged.in",registered:"registered",registrationFailed:"registration.failed",loggedOut:"logged.out",failedLogout:"failed.logout",refreshFailed:"refresh.failed",tokenFetched:"token.fetched"},this.after_init();}login(e){return e?(e.type&&this.setTypeActionOnVerified(e.type),this.next_event=e.next_event||null,this.dispatch("login",...arguments)):(this.next_event=null,this.dispatch("login",...arguments))}loggedIn(e){return Salla.profile.info().finally((()=>this.dispatch("loggedIn",e)))}setTypeActionOnVerified(e){this.type_action_on_verified=e;}getTypeActionOnVerified(){return this.type_action_on_verified||"redirect"}},Salla.event.cart=new class extends c{constructor(){super(),this.namespace="cart",this.events={latestFetched:"latest.fetched",latestFailed:"latest.failed",updated:"updated",itemUpdated:"item.updated",itemUpdatedFailed:"item.updated.failed",itemAdded:"item.added",itemAddedFailed:"item.added.failed",itemDeleted:"item.deleted",itemDeletedFailed:"item.deleted.failed",submitted:"submitted",submitFailed:"submit.failed",imageDeleted:"image.deleted",imageNotDeleted:"image.not.deleted",detailsFetched:"details.fetched",detailsNotFetched:"details.not.fetched",successReset:"success.reset",priceQuoteSucceeded:"price-quote.succeeded",priceQuoteFailed:"price-quote.failed",couponAdded:"coupon.added",couponDeleted:"coupon.deleted",couponAdditionFailed:"coupon.addition.failed",couponDeletionFailed:"coupon.deletion.failed",quickOrderSettingFetched:"quick-order.fetched",quickOrderSettingFailed:"quick-order.failed",quickOrderSucceeded:"quick-order.succeeded",quickOrderFailed:"quick-order.failed"},this.after_init();}updated(e){return Salla.cookie.set("fresh_summary",1),e&&"object"==typeof e?(e.offer&&salla.product.event.offerExisted(e.offer),e.redirect&&(salla.log("The current cart is purchased!"),salla.cart.api.reset()),e.cart?(salla.storage.set("cart.summary",{total:e.cart.total,sub_total:e.cart.sub_total,discount:e.cart.discount,real_shipping_cost:e.cart.real_shipping_cost,count:e.cart.count,shipping_cost:e.cart.free_shipping_bar?.has_free_shipping?0:e.cart.real_shipping_cost}),this.dispatch("updated",e.cart)):void salla.log("Failed to get the cart summary!")):(Salla.logger.info("Cart summary not an object!",e),this.dispatch("updated"))}latestFetched(e){return this.updated(e.data),this.dispatch("latestFetched",e)}itemAdded(e,t){return this.updated(e.data),this.dispatch("itemAdded",e,t)}itemDeleted(e,t){return this.updated(e.data),this.dispatch("itemDeleted",e,t)}itemUpdated(e,t){return this.updated(e.data),this.dispatch("itemUpdated",e,t)}couponAdded(e,t){return this.updated(e.data),this.dispatch("couponAdded",e,t)}couponDeleted(e,t){return this.updated(e.data),this.dispatch("couponDeleted",e,t)}},Salla.event.order=new class extends c{constructor(){super(),this.namespace="order",this.events={canceled:"canceled",notCanceled:"not.canceled",orderCreated:"order.created",orderCreationFailed:"order.creation.failed",invoiceSent:"invoice.sent",invoiceNotSent:"invoice.not.sent"},this.after_init();}},Salla.event.scope=new class extends c{constructor(){super(),this.namespace="scope",this.events={fetched:"fetched",notFetched:"not.fetched",productAvailabilityFetched:"product-availability.fetched",productAvailabilityNotFetched:"product-availability.not.fetched",changeSucceeded:"changed",changeFailed:"not.changed"},this.after_init();}},Salla.event.rating=new class extends c{constructor(){super(),this.namespace="rating",this.events={orderNotFetched:"order.not.fetched",orderFetched:"order.fetched",storeRated:"store.rated",storeFailed:"store.failed",productsRated:"products.rated",productsFailed:"products.failed",shippingRated:"shipping.rated",shippingFailed:"shipping.failed"},this.after_init();}},Salla.event.booking=new class extends c{constructor(){super(),this.namespace="booking",this.events={added:"added",additionFailed:"addition.failed"},this.after_init();}},Salla.event.comment=new class extends c{constructor(){super(),this.namespace="comment",this.events={added:"added",additionFailed:"addition.failed"},this.after_init();}},Salla.event.landing=new class extends c{constructor(){super(),this.namespace="landing",this.events={detailsFetched:"order.fetched",getDetailsFailed:"get.details.failed",orderCreated:"order.created",orderCreationFailed:"order.creation.failed"},this.after_init();}},Salla.event.loyalty=new class extends c{constructor(){super(),this.namespace="loyalty",this.events={exchangeSucceeded:"exchange.succeeded",exchangeFailed:"exchange.failed",programFetched:"program.fetched",programNotFetched:"program.not.fetched",resetSucceeded:"exchange-reset.succeeded",resetFailed:"exchange-reset.failed"},this.after_init();}exchangeSucceeded(e,t){return salla.cart.event.updated(e.data),this.dispatch("exchangeSucceeded",e,t)}resetSucceeded(e){return salla.cart.event.updated(e.data),this.dispatch("resetSucceeded",e)}},Salla.event.product=new class extends c{constructor(){super(),this.namespace="product",this.events={priceUpdated:"price.updated",priceUpdateFailed:"price.updated.failed",availabilitySubscribed:"availability.subscribed",availabilitySubscribeFailed:"availability.subscribe.failed",categoriesFetched:"categories.fetched",categoriesFailed:"categories.failed",searchFailed:"search.failed",searchResults:"search.results",offerExisted:"offer.existed",fetchOffersFailed:"fetch.offers.failed",offersFetched:"offers.fetched",sizeGuideFetched:"size-guide.fetched",SizeGuideFetchFailed:"size-guide.failed",giftFetched:"gift.fetched",giftFetchFailed:"gift.failed",detailFetched:"detail.fetched",detailFetchFailed:"detail.failed",addGiftToCartSucceeded:"gift.add-to-cart.succeeded",addGiftToCartFailed:"gift.add-to-cart.failed",giftImageUploadSucceeded:"gift.image-upload.succeeded",giftImageUploadFailed:"gift.image-upload.failed"},this.after_init();}},Salla.event.profile=new class extends c{constructor(){super(),this.namespace="profile",this.events={updated:"updated",updateFailed:"update.failed",verificationCodeSent:"verification.code.sent",updateContactsFailed:"update.contacts.failed",verified:"verified",unverified:"unverified",infoFetched:"info.fetched",infoNotFetched:"info.not.fetched",settingsUpdated:"settings.updated",updateSettingsFailed:"update.settings.failed",deleted:"deleted",notDeleted:"not.deleted"},this.after_init();}},Salla.event.currency=new class extends c{constructor(){super(),this.namespace="currency",this.events={changed:"changed",failed:"failed",fetched:"fetched",failedToFetch:"failed.to.fetch"},this.after_init();}},Salla.event.document=new class extends c{constructor(){super(),this.namespace="document",this.events={click:"click",change:"change",submit:"submit",keyup:"keyup",leaving:"leaving",request:"request",requestFailed:"request.failed"},this.after_init();}onClick(e,t){this.fireCallableFuns("click",e,t);}onChange(e,t){this.fireCallableFuns("change",e,t);}onSubmit(e,t){this.fireCallableFuns("submit",e,t);}onKeyup(e,t){this.fireCallableFuns("keyup",e,t);}fireCallableFuns(e,t,a){this.on(e,(e=>{"function"!=typeof t?"function"==typeof a&&e.target.matches(t)&&a(e):t(e);}));}fireEvent(e,t,...a){return this.fireEventForElements(e,t,!1,...a)}fireEventForAll(e,t,...a){return this.fireEventForElements(e,t,!0,...a)}fireEventForElements(e,t,a,...s){if("string"==typeof e){if(a)return document.querySelectorAll(e).forEach((e=>this.fireEventForElements(e,t,!1,...s)));e=document.querySelector(e);}if(!e)return void salla.log("Failed To get element to fire event: "+t);const i=new CustomEvent(t,...s);return e.dispatchEvent(i)}},Salla.event.wishlist=new class extends c{constructor(){super(),this.namespace="wishlist",this.events={added:"added",removed:"removed",additionFailed:"addition.failed",removingFailed:"removing.failed"},this.after_init();}},Salla.event.infiniteScroll=new class extends c{constructor(){super(),this.namespace="infiniteScroll",this.events={scrollThreshold:"scroll.threshold",request:"request",load:"load",append:"append",error:"error",last:"last",history:"history"},this.after_init();}},Salla.event.on("twilight::initiated",(()=>{Object.keys(Salla).forEach((e=>{"object"==typeof(e=Salla[e])&&(u(e),Object.keys(e).forEach((t=>{u(e[t]);})));}));})),Salla.config.default_properties={debug:"undefined"!=typeof process&&"development"==="production",token:null,fastRequests:!0,canLeave:!0,store:{api:"https://api.salla.dev/store/v1/"},currencies:{SAR:{code:"SAR",name:"ريال سعودي",symbol:"ر.س",amount:1,country_code:"sa"}}},Salla.config.merge(Salla.config.default_properties),Salla.config.triedToGetCurrencies_=!1,Salla.config.triedToGetLanguages_=!1,Salla.config.isUser=()=>"user"===Salla.config.get("user.type"),Salla.config.isGuest=()=>!Salla.config.isUser(),Salla.config.languages=async()=>{if(Salla.config.triedToGetLanguages_)return Salla.config.get("languages");Salla.config.triedToGetLanguages_=!0;let e=!0,t=[];return (await salla.document.api.request("languages",null,"get"))?.data?.map((a=>{e&&(t=[],e=!1),a.code=a.code||a.iso_code,a.url=salla.url.get(a.code),a.is_rtl=a.is_rtl||a.rtl,t.push(a);})),Salla.config.set("languages",t),t},Salla.config.currencies=async()=>{if(Salla.config.triedToGetCurrencies_)return Salla.config.get("currencies");Salla.config.triedToGetCurrencies_=!0;let e=!0,t={};return (await salla.currency.api.list())?.data?.map((a=>{e&&(t={},e=!1),a.country_code=a.code.substr(0,2).toLowerCase(),t[a.code]=a;})),Salla.config.set("currencies",t),t};class h{constructor(){this.endpoints={},this.webEndpoints=[],this.namespace="BaseApi",this.endpointsMethods={},this.endpointsHeaders={};let e=/function (.{1,})\(/.exec(this.constructor.toString());this.className=(e&&e.length>1?e[1]:"").toLowerCase(),this.debounce={request:void 0,time:300,enabled:!0,exclude:[]};}after_init(){}normalRequest(e,t,a=null){let s=Array.isArray(e),i=s?this.getUrl(...e):this.getUrl(e);e=s?e[0]:e,a=a||this.endpointsMethods[e]||"post";let r=this.endpointsHeaders[e];if("get"===a&&t instanceof FormData){let e={};Array.from(t.entries()).forEach((function(t){e[t[0]]=t[1];})),t={params:e};}return r&&"get"===a&&(t=t?Object.assign(t,r):r),this.webEndpoints.includes(e)?i=salla.url.get(i):"http"!==i.substring(0,4)&&(i=salla.url.api(i)),Salla.api.request(i,t,a,{headers:r})}request(e,t,a=null){return !salla.api.isFastRequestsAllowed()&&this.debounce.enabled?(this.debounce.request||(this.debounce.request=salla.helpers.debounce(this.normalRequest.bind(this),this.debounce.time)),this.debounce.request(e,t,a)):this.normalRequest(e,t,a)}getUrl(e){let t=this.endpoints[e]||e;const a=/{[^{}]+}/i;for(let e=1;e<arguments.length;e++)t=t.replace(a,arguments[e]);return t}event(){return salla.event[this.className]}}class p extends h{constructor(){super(),this.namespace="cart",this.endpoints={latest:"cart/latest",details:"cart/{cart}",quickAdd:"cart/{cart}/item/{product}/quick-add",addItem:"cart/{cart}/item/{product}/add",deleteItem:"cart/{cart}/item/{item}",updateItem:"cart/{cart}/item/{item}",deleteImage:"cart/{cart}/image/{image}",uploadImage:"cart/{cart}/image",status:"cart/{cart}/status",addCoupon:"cart/{id}/coupon",deleteCoupon:"cart/{id}/coupon",getQuickOrderSettings:"checkout/quick-order",createQuickOrder:"checkout/quick-order",priceQuote:"cart/{cartId}/price-quote"},this.endpointsMethods={latest:"get",details:"get",status:"get",updateItem:"post",deleteItem:"delete",deleteImage:"delete",deleteCoupon:"put",getQuickOrderSettings:"get"},this.webEndpoints=["latest"],this.latestCart=null,this.after_init(),salla.event.on("api::initiated",(()=>this.getCurrentCartId()));}async getCurrentCartId(){if(salla.cart.api.latestCart)return salla.cart.api.latestCart.cart.id;let e=salla.storage.get("cart.id");if(e)return e;let t=await this.latest();return salla.cart.api.latestCart=t.data,salla.cart.api.latestCart.cart.id}getUploadImageEndpoint(e){return salla.url.api(this.getUrl("uploadImage",e||salla.storage.get("cart.id")))}latest(){return this.request("latest",{params:{source:""}}).then((e=>(salla.storage.set("cart",e.data.cart),salla.event.cart.latestFetched(e),e))).catch((e=>{throw salla.storage.set("cart",""),salla.event.cart.latestFailed(e),e}))}async details(e,t=[]){return e=e||await this.getCurrentCartId(),this.request(["details",e],{params:{with:t}}).then((function(e){return salla.cart.event.detailsFetched(e),e})).catch((function(e){throw salla.cart.event.detailsNotFetched(e),e}))}async quickAdd(e,t){return this.addItem({id:e,quantity:t,endpoint:"quickAdd"})}async addItem(e){let t=this.getCartPayload(e);if(!t.id){let e='There is no product "id"!';return salla.cart.event.itemAddedFailed(e),salla.api.errorPromise(e)}let a=salla.form.getPossibleValue(t.payload,["endpoint"]);a&&["addItem","quickAdd"].includes(a)||(a=salla.form.getPossibleValue(t.payload,["quantity","donating_amount"])?"addItem":"quickAdd");let s=await this.getCurrentCartId();return this.request([a,s,t.id],t.payload).then((function(e){return salla.cart.event.itemAdded(e,t.id),e})).catch((function(e){throw salla.cart.event.itemAddedFailed(e,t.id),e}))}async deleteItem(e){let t=this.getCartPayload(e);if(!t.id){let e='There is no "id"!';return salla.cart.event.itemDeletedFailed(e),salla.api.errorPromise(e)}let a=await this.getCurrentCartId();return this.request(["deleteItem",a,t.id]).then((function(e){return salla.cart.event.itemDeleted(e,t.id),e})).catch((function(e){throw salla.cart.event.itemDeletedFailed(e,t.id),e}))}async updateItem(e){let t=this.getCartPayload(e);if(!t.id){let e='There is no "id"!';return salla.cart.event.itemUpdatedFailed(e),salla.api.errorPromise(e)}let a=await this.getCurrentCartId();return "Object"===t.payload.constructor?.name?t.payload._method="PUT":t.payload.append("_method","PUT"),this.request(["updateItem",a,t.id],t.payload).then((function(e){return salla.cart.event.itemUpdated(e,t.id),e})).catch((function(e){throw salla.cart.event.itemUpdatedFailed(e,t.id),e}))}async deleteImage(e){if(!(e=salla.form.getPossibleValue(e,["id","image_id","photo_id"]))){let e='There is no "id"!';return salla.cart.event.imageNotDeleted(e),salla.api.errorPromise(e)}let t=await this.getCurrentCartId();return this.request(["deleteImage",t,e]).then((function(t){return salla.cart.event.imageDeleted(t,e),t})).catch((function(t){throw salla.cart.event.imageNotDeleted(t,e),t}))}async status(e){return this.request(["status",e||await this.getCurrentCartId()],{params:{has_apple_pay:!!window.ApplePaySession}})}async submit(){this.status(await this.getCurrentCartId()).then((e=>{let t=e.data.next_step.to;if(!["checkout","refresh","login"].includes(t)){let e="Can't find next_step );";throw salla.cart.event.submitFailed(e),e}if(salla.cart.event.submitted(e),"login"===t)return salla.auth.setCanRedirect(!1),salla.event.dispatch("login::open"),void salla.auth.event.onLoggedIn((e=>{salla.event.dispatch("login::close"),this.submit();}));"checkout"===t?window.location.href=e.data.next_step.url+(window.ApplePaySession?"?has_apple_pay=true":""):window.location.reload();})).catch((function(e){throw salla.cart.event.submitFailed(e),e}));}getCartPayload(e){let t=e?.data||("object"==typeof e?e:void 0);return e=t?salla.form.getPossibleValue(t,["prod_id","product_id","item_id","id"]):e,t="object"==typeof t?t:void 0,{id:e,payload:t}}normalRequest(e,t,a=null){return super.normalRequest(e,t,a).catch((e=>{throw 403===e?.response?.status&&(salla.cart.api.reset(),salla.error(salla.lang.get("pages.checkout.try_again"))),e}))}reset(){salla.api.cart.latestCart=null,salla.storage.remove("cart"),salla.cart.event.successReset();}async addCoupon(e){if(e=e.data||e,!(e=salla.form.getPossibleValue(e,["coupon"]))){let e=new Error('There is no "Coupon Code"!');return e.name="EmptyCoupon",salla.event.cart.couponAdditionFailed(e),salla.api.errorPromise(e)}let t=await salla.cart.api.getCurrentCartId();return this.request(["addCoupon",t],{coupon:e}).then((function(e){return salla.event.cart.couponAdded(e,t),e})).catch((function(e){throw salla.event.cart.couponAdditionFailed(e,t),e}))}async deleteCoupon(){let e=await salla.cart.api.getCurrentCartId();return this.request(["deleteCoupon",e],{}).then((function(t){return salla.event.cart.couponDeleted(t,e),t})).catch((function(t){throw salla.event.cart.couponDeletionFailed(t,e),t}))}getQuickOrderSettings(){return this.request("getQuickOrderSettings").then((e=>(salla.event.cart.quickOrderSettingFetched(e),e))).catch((e=>{throw salla.event.cart.quickOrderSettingFailed(e),e}))}createQuickOrder(e){return this.request("createQuickOrder",e).then((e=>(salla.event.cart.quickOrderSucceeded(e),e))).catch((e=>{throw salla.event.cart.quickOrderFailed(e),e}))}async priceQuote(e){return salla.config.isGuest()?(salla.auth.api.setAfterLoginEvent("cart::priceQuote",e),void salla.event.dispatch("login::open")):this.request(["priceQuote",e||await this.getCurrentCartId()]).then((e=>(salla.cart.api.reset(),salla.event.cart.priceQuoteSucceeded(e).then((()=>(setTimeout((()=>window.location.href=salla.url.get("/")),1e3),e)))))).catch((e=>salla.event.cart.priceQuoteFailed(e).then((()=>{throw 404===e.error?.code&&window.location.reload(),e}))))}}class g extends h{constructor(){super(),this.namespace="loyalty",this.endpoints={getProgram:"loyalty",exchange:"loyalty/exchange",reset:"loyalty/exchange"},this.endpointsMethods={getProgram:"get",reset:"put"},this.after_init();}getProgram(){return this.request("getProgram").then((e=>(salla.loyalty.event.programFetched(e),e))).catch((e=>{throw salla.loyalty.event.programNotFetched(e),e}))}async exchange(e,t=null){if(!(e=salla.form.getPossibleValue(e,["id","loyalty_prize_id","prize_id"]))){let e="Unable to find cart id. Please provide one.";return salla.loyalty.event.exchangeFailed(e),salla.api.errorPromise(e)}if(!(t=t||await salla.cart.getCurrentCartId())){let e="Unable to find cart id. Please provide one.";return salla.loyalty.event.exchangeFailed(e),salla.api.errorPromise(e)}return this.request("exchange",{loyalty_prize_id:e,cart_id:t}).then((function(t){return salla.loyalty.event.exchangeSucceeded(t,e),t})).catch((function(t){throw salla.loyalty.event.exchangeFailed(t,e),t}))}async reset(e=null){if(!(e=e||await salla.cart.getCurrentCartId())){let e="Unable to find cart id. Please provide one.";return salla.loyalty.event.resetFailed(e),salla.api.errorPromise(e)}return this.request("reset",{cart_id:e}).then((e=>(salla.loyalty.event.resetSucceeded(e),e))).catch((e=>{throw salla.loyalty.event.resetFailed(e),e}))}}class f extends h{constructor(){super(),this.namespace="auth",this.canRedirect_=!0,this.afterLoginEvent={event:null,payload:null},this.endpoints={login:"auth/{type}/send_verification",resend:"auth/resend_verification",verify:"auth/{type}/verify",register:"auth/register",logout:"logout",refresh:"auth/refresh"},this.webEndpoints=["logout","auth/jwt","refresh"],this.endpointsMethods={logout:"get"},this.after_init();}setAfterLoginEvent(e,t){salla.api.auth.afterLoginEvent={event:e,payload:t};}setCanRedirect(e){salla.api.auth.canRedirect_=e;}canRedirect(){return salla.api.auth.canRedirect_&&!salla.api.auth.afterLoginEvent.event}login(e){e?.data&&(e=e.data);let t=salla.form.getPossibleValue(e,["type"]);if(!["email","mobile"].includes(t)){let e="Login type should be in: [email, mobile]";return salla.auth.event.codeNotSent(e),salla.api.errorPromise(e)}return this.request(["login",t],e).then((function(e){return salla.auth.event.codeSent(e,t),e})).catch((function(e){throw salla.auth.event.codeNotSent(e,t),e}))}async verify(e,t=!0){let a=salla.form.getPossibleValue(e,["type"]);if(!a){let e="Failed to know what's login type!";return salla.auth.event.verificationFailed(e),salla.api.errorPromise(e)}t=!1!==salla.form.getPossibleValue(e,["supportWebAuth"])&&t,salla.auth.event.next_event&&(e.next_event=salla.auth.event.next_event);let s=await salla.auth.api.request(["verify",a],e);if(200!==s?.status)return salla.auth.event.verificationFailed(s,a),salla.api.errorPromise(s);let i="authenticated"===s.data?.case;return i&&salla.auth.event.tokenFetched(s.data.token),t&&await salla.auth.api.request("auth/jwt"),i&&salla.auth.event.loggedIn(s).then((()=>salla.auth.api.afterUserLogin())),salla.auth.event.verified(s,a),salla.api.successPromise(s)}resend(e){let t;return (e=e.data||e).type=e.type||"mobile","mobile"!==e.type||e.phone&&e.country_code?"email"!==e.type||e.email?this.request("resend",e).then((function(t){return salla.auth.event.codeSent(t,e),t})).catch((function(t){throw salla.auth.event.codeNotSent(t,e),t})):(salla.auth.event.codeNotSent(t="There is no email!",e),salla.api.errorPromise(t)):(salla.auth.event.codeNotSent(t="There is no phone or country_code!",e),salla.api.errorPromise(t))}register(e){let t;return e.data&&(t=e.element,e=e.data),salla.auth.event.next_event&&(e.next_event=salla.auth.event.next_event),this.request("register",e).then((async function(e){return salla.auth.event.registered.call(t,e),"authenticated"===e.data?.case&&(salla.auth.event.tokenFetched(e.data.token),await salla.auth.request("auth/jwt"),salla.auth.event.loggedIn(e),salla.auth.api.afterUserLogin()),e})).catch((function(e){throw salla.auth.event.registrationFailed.call(t,e),e}))}logout(){return salla.storage.clearAll(),salla.cookie.clearAll(),salla.auth.event.loggedOut().then((()=>{let e=salla.url.get("logout");console.log(`Going to ${e}, to do any thing before this action use: salla.auth.even.onLoggedOut(()=>{...})`);try{location.href=e;}catch(e){salla.log(e);}}))}refresh(){return this.request("refresh").then((function(e){return salla.auth.event.tokenFetched(e.data.token),e})).catch((function(e){throw salla.auth.event.refreshFailed(e),e}))}afterUserLogin(){this.afterLoginEvent.event&&salla.event.emit(this.afterLoginEvent.event,this.afterLoginEvent.payload);}}class m extends h{constructor(){super(),this.namespace="order",this.endpoints={cancel:"orders/cancel/{id}",createCartFromOrder:"reorder/{id}",sendInvoice:"orders/send/{id}"},this.endpointsMethods={createCartFromOrder:"get"},this.after_init();}show(e){let t=salla.form.getPossibleValue(e?.data||e,["id","order_id"]);salla.event.dispatch("mobile::order.placed",{order_id:t}),location.href=salla.form.getPossibleValue(e?.data||e,["url"]);}cancel(e){return e=e||Salla.config.get("page.id"),this.request(["cancel",e],{params:{has_apple_pay:!!window.ApplePaySession}}).then((function(t){return salla.event.order.canceled(t,e),t})).catch((function(t){throw salla.event.order.notCanceled(t,e),t}))}createCartFromOrder(e){return e=e||salla.config.get("page.id"),this.request(["createCartFromOrder",e]).then((function(t){return salla.cart.reset(),salla.event.order.orderCreated(t,e),window.location.href=t.data.url,t})).catch((function(t){throw salla.event.order.orderCreationFailed(t,e),t}))}sendInvoice(e){let t=salla.form.getPossibleValue(e,["id"])||salla.config.get("page.id");if(!t||isNaN(t)){let e="There is no id!";return salla.order.event.invoiceNotSent(e),salla.api.errorPromise(e)}return this.request(["sendInvoice",t],e).then((e=>(salla.event.order.invoiceSent(e,t),e))).catch((e=>{throw salla.event.order.invoiceNotSent(e,t),e}))}}class v extends h{constructor(){super(),this.namespace="product",this.previousQuery="",this.endpoints={getPrice:"products/{id}/price",availabilitySubscribe:"products/{id}/availability-notify",search:"products/search",details:"products/{product_id}/details",categories:"products/categories/{?id}",offers:"products/{product_id}/specialoffer",getSizeGuides:"products/{prod_id}/size-guides",giftDetail:"products/{product_id}/buy-as-gift",giftToCart:"products/{product_id}/buy-as-gift",giftImage:"products/buy-as-gift/image",buyNow:"products/{product_id}/buy-now"},this.endpointsMethods={details:"get",giftDetail:"get"},this.after_init();}getPrice(e){let t=e.data||e,a=salla.form.getPossibleValue(t,["id","prod_id","product_id"]);return this.request(["getPrice",a],"object"==typeof t?t:void 0).then((function(e){return salla.product.event.priceUpdated(e,a),e})).catch((function(e){throw salla.product.event.priceUpdateFailed(e,a),e}))}categories(e){return this.request(["categories",e||""],null,"get").then((function(e){return salla.product.event.categoriesFetched(e),e})).catch((function(e){throw salla.product.event.categoriesFailed(e),e}))}availabilitySubscribe(e){let t=e.data||e;return e=salla.form.getPossibleValue(t,["id","prod_id"]),this.request(["availabilitySubscribe",e],"object"==typeof t?t:void 0).then((function(t){return salla.product.event.availabilitySubscribed(t,e),t})).catch((function(t){throw salla.product.event.availabilitySubscribedFailed(t,e),t}))}search(e){let t=e.data;if(t||(t={params:"string"==typeof e?{query:e}:e}),!(e=t instanceof FormData?t.get("query"):t.query||t.params?.query)){let e='There is no "query"!';return salla.product.event.searchFailed(e),salla.api.errorPromise(e)}if(e===salla.api.product.previousQuery){let e="Query is same as previous one!";return salla.product.event.searchFailed(e),salla.api.product.previousQuery=null,salla.api.errorPromise(e)}return salla.api.product.previousQuery=e,this.request("search",t,"get").then((function(t){return salla.product.event.searchResults(t,e),t})).catch((function(t){throw salla.product.event.searchFailed(t,e),t}))}offers(e){if(!(e=salla.form.getPossibleValue(e?.data|e,["product_id","id"]))){let e='There is no "product_id"!';return salla.product.event.fetchOffersFailed(e),salla.api.errorPromise(e)}return this.request(["offers",e]).then((function(t){return salla.product.event.offersFetched(t,e),t})).catch((function(t){throw salla.product.event.fetchOffersFailed(t,e),t}))}getSizeGuides(e){return this.request(`products/${e}/size-guides`,null,"get").then((t=>(salla.product.event.sizeGuideFetched(t,e),t))).catch((t=>{throw salla.product.event.sizeGuideFetchFailed(t,e),t}))}getGiftDetails(e){return this.request(["giftDetail",e]).then((t=>(salla.product.event.giftFetched(t,e),t))).catch((t=>{throw salla.product.event.giftFetchFailed(t,e),t}))}getDetails(e,t=[]){if(!Array.isArray(t)){let e="withItems should be array.";return salla.product.event.detailFetchFailed(e),salla.api.errorPromise(e)}if(!e){let e="productId is not passed.";return salla.product.event.detailFetchFailed(e),salla.api.errorPromise(e)}return this.request(["details",e],{params:{with:t}}).then((function(t){return salla.product.event.detailFetched(t,e),t})).catch((function(t){throw salla.product.event.availabilitySubscribeFailed(t,e),t}))}addGiftToCart(e,t,a=!1){return this.request(["giftToCart",e],t).then((t=>(salla.product.event.addGiftToCartSucceeded(t,e),a&&(window.location.href=t.redirect),t))).catch((t=>{throw salla.product.event.addGiftToCartFailed(t,e),t}))}uploadGiftImage(e){return this.request("giftImage",e).then((e=>(salla.product.event.giftImageUploadSucceeded(e),e))).catch((e=>{throw salla.product.event.giftImageUploadFailed(e),e}))}}class y extends h{constructor(){super(),this.namespace="profile",this.endpoints={info:"auth/user",update:"profile/update",updateContacts:"profile/contacts/update",updateSettings:"profile/settings",verify:"profile/verify",delete:"profile"},this.endpointsMethods={delete:"delete"},this.after_init();}info(){return this.request("info",null,"get").then((e=>{let t={id:e.data.id,type:"user",email:e.data.email,mobile:e.data.phone.code+e.data.phone.number,country_code:e.data.phone.country,language_code:e.data.language,currency_code:e.data.currency,notifications:e.data.notifications,pending_orders:e.data.pending_orders,avatar:e.data.avatar,first_name:e.data.first_name,last_name:e.data.last_name,fetched_at:Date.now()};return salla.config.set("user",t),salla.storage.set("user",t),salla.profile.event.infoFetched(e),e})).catch((e=>{throw salla.profile.event.infoNotFetched(e),e}))}update(e){return this.request("update",e).then((e=>(salla.profile.event.updated(e),e))).catch((e=>{throw salla.event.profile.updateFailed(e),e}))}updateContacts(e){return this.request("updateContacts",e).then((e=>(salla.profile.event.verificationCodeSent(e),e))).catch((e=>{throw salla.event.profile.updateContactsFailed(e),e}))}verify(e){return this.request("verify",e).then((e=>(salla.profile.event.verified(e),e))).catch((e=>{throw salla.event.profile.unverified(e),e}))}updateSettings(e){return this.request("updateSettings",e).then((e=>(salla.event.profile.settingsUpdated(e),e))).catch((e=>{throw salla.event.profile.updateSettingsFailed(e),e}))}delete(){return this.request("delete").then((e=>(salla.storage.clearAll(),salla.cookie.clearAll(),salla.event.profile.deleted(e),window.location.href=salla.url.get("logout"),e))).catch((e=>{throw salla.event.profile.notDeleted(e),e}))}}class w extends h{constructor(){super(),this.namespace="comment",this.endpoints={add:"{type}/{id}/comments"},this.after_init();}add(e){e?.data&&(e=e.data);let t,a=salla.form.getPossibleValue(e,["id"]),s=salla.form.getPossibleValue(e,["type"]),i=salla.form.getPossibleValue(e,["comment"]);return a?s&&["products","pages","product","page"].includes(s)?i?(s+=["product","page"].includes(s)?"s":"",this.request(["add",s,a],{comment:i}).then((function(e){return salla.event.comment.added(e,a),e})).catch((function(e){throw salla.event.comment.additionFailed(e,a),e}))):(salla.event.comment.additionFailed(t="can't find comment content!"),salla.api.errorPromise(t)):(salla.event.comment.additionFailed(t="Failed to get type one of:(products, product, page, pages)!"),salla.api.errorPromise(t)):(salla.event.comment.additionFailed(t="Failed to get id!"),salla.api.errorPromise(t))}}class F extends h{constructor(){super(),this.namespace="currency",this.endpoints={change:"/",list:"currencies"},this.endpointsMethods={change:"get",list:"get"},this.webEndpoints=["change"],this.after_init();}change(e){if(!(e=salla.form.getPossibleValue(e.data||e,["currency","code"]))){let e="Can't find currency code!";return salla.currency.event.failed(e),salla.api.errorPromise(e)}return this.request("change",{params:{change_currency:"",currency:e}}).then((function(t){return salla.cookie.set("fresh_summary",1),salla.storage.set("cart",""),salla.currency.event.changed(t,e),t})).catch((function(t){throw salla.currency.event.failed(t,e),t}))}list(){return this.request("list").then((function(e){return salla.currency.event.fetched(e),e})).catch((function(e){throw salla.currency.event.failedToFetch(e),e}))}}class b extends h{constructor(){super(),this.namespace="document";}}class S extends h{constructor(){super(),this.namespace="rating",this.endpoints={store:"rating/store",products:"rating/products",shipping:"rating/shipping",order:"rating/{order_id}"},this.endpointsMethods={order:"get"},this.after_init();}order(e){let t="object"==typeof e?e:{},a=salla.form.getPossibleValue(e?.data||e,["order_id","id"]);if(!a){let e='There is no "order_id"!';return salla.event.rating.orderNotFetched(e),salla.api.errorPromise(e)}return this.request(["order",a],t).then((function(e){return salla.event.rating.orderFetched(e,a),e})).catch((function(e){throw salla.event.rating.orderNotFetched(e,a),e}))}store(e){if(!(e=e.data||e)){let e='There is no "data"!';return salla.event.rating.storeFailed(e),salla.api.errorPromise(e)}return this.request("store",e).then((function(t){return salla.event.rating.storeRated(t,e),t})).catch((function(t){throw salla.event.rating.storeFailed(t,e),t}))}products(e){if(!(e=e.data||e)){let e='There is no "data"!';return salla.event.rating.productsFailed(e),salla.api.errorPromise(e)}return this.request("products",e).then((function(t){return salla.event.rating.productsRated(t,e),t})).catch((function(t){throw salla.event.rating.productsFailed(t,e),t}))}shipping(e){if(!(e=e.data||e)){let e='There is no "data"!';return salla.event.rating.shippingFailed(e),salla.api.errorPromise(e)}return this.request("shipping",e).then((function(t){return salla.event.rating.shippingRated(t,e),t})).catch((function(t){throw salla.event.rating.shippingFailed(t,e),t}))}}class _ extends h{constructor(){super(),this.namespace="wishlist",this.endpoints={add:"products/favorites/{id}",remove:"products/favorites/{id}"},this.endpointsMethods={remove:"delete"},this.after_init();}toggle(e){return salla.storage.get("salla::wishlist",[]).includes(e)?this.remove(e):this.add(e)}add(e){let t;return salla.config.isGuest()?(salla.wishlist.event.additionFailed(t=salla.lang.get("common.messages.must_login")),salla.error(t),salla.api.errorPromise(t)):(e=salla.form.getPossibleValue(e?.data||e,["product_id","id"]))?this.request(["add",e]).then((t=>(this.updateWishlistStorage(e),salla.wishlist.event.added(t,e),t))).catch((function(t){throw salla.wishlist.event.additionFailed(t,e),t})):(salla.wishlist.event.additionFailed(t="Failed to get product id!"),salla.api.errorPromise(t))}remove(e){let t;return salla.config.isGuest()?(salla.wishlist.event.additionFailed(t=salla.lang.get("common.messages.must_login")),salla.error(t),salla.api.errorPromise(t)):(e=salla.form.getPossibleValue(e?.data||e,["product_id","id"]))?this.request(["remove",e]).then((t=>(this.updateWishlistStorage(e,!1),salla.wishlist.event.removed(t,e),t))).catch((function(t){throw salla.wishlist.event.removingFailed(t,e),t})):(salla.wishlist.event.removingFailed(t="Failed to get id!"),salla.api.errorPromise(t))}updateWishlistStorage(e,t=!0){let a=salla.storage.get("salla::wishlist",[]);t?a.push(e):a.splice(a.indexOf(e),1),salla.storage.set("salla::wishlist",a);}}class q extends h{constructor(){super(),this.namespace="scopes",this.endpoints={get:"scopes",change:"scopes",getProductAvailability:"scopes/availability?product_id={id}"},this.after_init();}get(){return this.request("scopes",null,"get").then((e=>(salla.scope.event.fetched(e),e))).catch((e=>{throw salla.scope.event.notFetched(e),e}))}change(e){return this.request("scopes",e).then((e=>(salla.scope.event.changeSucceeded(e),e))).catch((e=>{throw salla.scope.event.changeFailed(e),e}))}getProductAvailability(e=null){return this.request(`scopes/availability?product_id=${e}`,null,"get").then((t=>(salla.scope.event.productAvailabilityFetched(t,e),t))).catch((e=>{throw salla.scope.event.productAvailabilityNotFetched(e),e}))}}class A extends h{constructor(){super(),this.namespace="booking",this.endpoints={add:"cart/booking/product/{id}"},this.endpointsMethods={add:"get"};}async add(e,t=!0){if(!e){let e="Please provide product id.";return salla.booking.event.additionFailed(e),salla.api.errorPromise(e)}return this.request(["add",e]).then((function(e){return salla.booking.event.added(e),t&&"booking"===e.data.redirect.to&&(window.location.href=e.data.redirect.url),e})).catch((function(e){throw salla.booking.event.additionFailed(e),e}))}}class C extends h{constructor(){super(),this.namespace="landing",this.endpoints={getDetails:"landing/{landing_page_id}",createCartFromPage:"landing/{landing_page_id}"},this.endpointsMethods={getDetails:"get"},this.after_init();}getDetails(e){if(!e){let e="page landing id not passed";return salla.event.landing.getDetailsFailed(e),salla.api.errorPromise(e)}return this.request(["getDetails",e]).then((function(t){return salla.event.landing.detailsFetched(t,e),t})).catch((function(t){throw salla.event.landing.getDetailsFailed(t,e),t}))}createCartFromPage(e){if(!e){let e="page landing id not passed";return salla.event.landing.orderCreationFailed(e),salla.api.errorPromise(e)}return salla.config.isGuest()?(salla.auth.api.setAfterLoginEvent("landing::createCartFromPage",e),salla.event.dispatch("login::open"),salla.api.successPromise("")):this.request(["createCartFromPage",e]).then((function(t){return salla.event.landing.orderCreated(t,e).then((()=>location.href=t.data.url)),t})).catch((function(t){throw salla.event.landing.orderCreationFailed(t,e),t}))}}class x{constructor(){salla.event.on("twilight::initiated",(e=>this.initiateRequest(e))),salla.event.on("profile::info.fetched",(e=>this.setCurrencyAndLanguage(e))),salla.event.on("auth::token.fetched",(e=>{salla.storage.set("token",e),this.setToken(e),salla.cart.api.reset();})),this.notifier_handler_disabled=!1,this.axios=axios.create({headers:{common:{"X-Requested-With":"XMLHttpRequest","S-SOURCE":"twilight","S-APP-VERSION":"v2.0.0","S-APP-OS":"browser"}}});}getHeaders(){return this.axios.defaults.headers.common}setHeaders(e){return Object.entries(e).forEach((e=>this.setHeader(e[0],e[1]))),this}setHeader(e,t){return salla.infiniteScroll.fetchOptions.headers[e]=this.axios.defaults.headers.common[e]=t,this}async withoutNotifier(e){return this.notifier_handler_disabled=!0,await e().finally((()=>{this.notifier_handler_disabled=!1;}))}initiateRequest(e){this.axios.defaults.baseURL=Salla.config.get("store.api",Salla.config.get("store.url")),this.setHeaders({"Store-Identifier":Salla.config.get("store.id"),currency:e.user?.currency_code||"SAR","accept-language":salla.lang.getLocale(),"s-user-id":e.user?.id});let t=salla.storage.get("scope");t&&this.setHeaders({"s-scope-type":t.type,"s-scope-id":t.id}),this.injectTokenToTheRequests(e),salla.storage.get("affiliate_code")&&this.setHeader("s-affiliate-code",salla.storage.get("affiliate_code"));}injectTokenToTheRequests(e){let t=salla.storage.get("token"),a="guest"===e.user.type,s=salla.storage.get("cart"),r=e.user?.id,n=salla.storage.get("user.id");if(n&&n!==r&&(salla.log("Api:: case1 = >user in localStorage is not same as user in the config"),salla.storage.remove("user")),s&&(s.user_id!==r||s.store_id!==e.store?.id))return salla.log("cart",{user_id:s.user_id,store_id:s.store_id}),salla.log("current",{user_id:r,store_id:e.store?.id}),salla.log("Api:: case2 => The cart is not belong to current "+(s.user_id!==r?"user":"store")+"!"),void salla.cart.api.reset();if(a&&!t)return void salla.log("Api:: case3 => current user is a guest and there is no token");if(a&&t)return salla.log("Api:: case4 => there is a token and current user is guest"),salla.log("Auth:: Token without user!"),salla.storage.remove("token"),void salla.cart.api.reset();if(!t)return salla.log("Api:: case5 => current user is logged-in but there is no token"),salla.cart.api.reset(),void salla.auth.api.refresh();let l=o$1(t);return Date.now()/1e3>l.exp?(salla.log("Api:: case6 => current user is logged-in and there is a token, but it's expired"),salla.storage.remove("token"),salla.cart.api.reset(),void salla.auth.api.refresh()):l.sub!==r?(salla.log("Api:: case7 => The user id is not match the token details"),salla.storage.remove("token"),salla.cart.api.reset(),void salla.auth.api.refresh()):(this.setToken(t),salla.log("Api:: case8 => current user is logged-in and there is a token, and it's not expired"),void salla.event.emit("api::initiated"))}setToken(e){return this.setHeader("Authorization","Bearer "+e),salla.event.emit("api::token.injected",e),this.token=e,this}setCurrencyAndLanguage(e){return this.setHeaders({currency:e.data.currency,"accept-language":e.data.language})}request(e,t,a="get",s={}){let i={endPoint:e,payload:t,method:a,options:s},r="undefined"!=typeof event?event.currentTarget:null,n=!1;return "SALLA-BUTTON"===r?.tagName&&(n=!0),n&&r?.load(),this.axios[i.method](i.endPoint,i.payload,i.options).then((e=>(n&&r?.stop(),e.data&&e.request&&(e=e.data),this.handleAfterResponseActions(e),e))).catch((e=>{throw n&&r?.stop(),salla.event.document.requestFailed(i,e),this.handleErrorResponse(e),e}))}handleAfterResponseActions(e){if(!e)return;let{data:t,googleTags:a=null}=e,s=t&&t.googleTags?t.googleTags:a;dataLayer&&s&&dataLayer.push(s),this.fireEventsForResponse(e),this.showAlert(e);}fireEventsForResponse(e){let t=e?.events||e.data?.events||e.error?.events;"string"==typeof t&&(t=JSON.parse(t)),t&&Object.keys(t).forEach((e=>salla.event.dispatch(e,t[e])));}handleErrorResponse(e){if(e.response&&e.response.data)return e.response.data.error&&e.response.data.error.fields&&!this.notifier_handler_disabled?this.handleInvalidFields(e):this.handleAfterResponseActions(e.response.data)}showAlert(e){if(e&&!this.notifier_handler_disabled)return e.case&&e.msg?salla.notify.fire(e.msg,e.case,e):e.hasOwnProperty("success")&&e.data?.message?salla.notify.fire(e.data?.message,e.success?salla.notify.types.success:salla.notify.types.error,e):e.error&&e.error.message&&"FORBIDDEN"!==e.error.message?salla.error(e.error.message,e):void 0}handleInvalidFields(e){let t=e.response.data.error.fields,a=[];Object.keys(t).forEach((e=>{let s=t[e];Array.isArray(s)?s.forEach((e=>a.push(e))):a.push(s);}));let s=(a.length>1?"* ":"")+a.join("\n* ");salla.error(s,e);}isFastRequestsAllowed(){return Salla.config.get("fastRequests")}promise(e,t=!0){return new Promise(((a,s)=>t?a(e):s(e)))}errorPromise(e){return this.promise(e,!1)}successPromise(e){return this.promise(e,!0)}}class k{constructor(t){"ready"!==y$1.status?t?(y$1.config.merge(t),t?.events&&y$1.event.dispatchEvents(t?.events),t._token&&salla.api.setHeader("X-CSRF-TOKEN",t._token),this.injectMaintenanceAlert(),this.injectThemePreviewAlert(),this.injectEditAlert(),t?.user?.language_code&&salla.lang.setLocale(t?.user?.language_code),salla.lang.loadStoreTranslations(),this.setSallaReady(t)):this.setSallaReady(t):salla.log("Trying to re-initiate Salla, while its status === 'ready'!");}injectMaintenanceAlert(){salla.config.get("maintenance")&&(document.body.classList.add("has-maintenance-bar"),document.querySelector(".store-notify")?salla.logger.warn(".store-notify element Existed before!"):salla.lang.onLoaded((()=>{const e=document.createElement("div");e.classList.add("store-notify"),e.style="background-color: #d63031; color: #fff; padding: 10px 15px; text-align: center; font-size: 17px;",e.innerHTML=`<p style="margin:0 !important;">${salla.lang.get("blocks.header.maintenance_alert")}</p>`,document.body.prepend(e);})));}injectThemePreviewAlert(){"preview"===salla.config.get("theme.mode")&&(document.body.classList.add("has-preview-bar"),document.querySelector("#s-theme_preview_bar")?salla.logger.warn("#s-theme_preview_bar element Existed before!"):salla.lang.onLoaded((()=>{let e=document.createElement("div");e.id="s-theme_preview_bar",e.setAttribute("style","display: flex; justify-content: space-between; text-align: center; background-color: #232323; color: #fff; padding: 10px; font-size: 0.875rem; line-height: 1.25rem; position: relative;"),e.innerHTML=`\n <div style="display:flex; align-items:center;">\n <img width="32" src="https://assets.salla.sa/cp/assets/images/logo-new.png">\n <span style="margin:0 10px;">${salla.lang.get("blocks.header.preview_mode")}: <span style="background:rgba(255,255,255,0.25);border-radius:15px; padding:2px 15px 4px">${salla.config.get("theme.name")}</span></span>\n </div>\n <a href="${salla.url.get("preview_theme/cancel/preview")}" style="line-height:32px; width:32px;"><i class="sicon-cancel"></i></a>\n `,document.body.prepend(e);})));}injectEditAlert(){let e=salla.config.get("edit");e&&(document.querySelector("#s-edit-alert")?salla.logger.warn("#s-edit-alert element Existed before!"):salla.lang.onLoaded((()=>{let t=document.createElement("div");t.id="s-edit-alert",t.innerHTML=`\n <a href="${e}" style="display:block; background-color:${salla.config.get("theme.color.primary","#5cd5c4")}; color:${salla.config.get("theme.color.reverse","#fff")}; padding: 10px; text-align:center; font-size: 0.875rem; line-height: 1.25rem;">\n <i class="sicon-edit"></i> \n ${salla.lang.get("pages.products.quick_edit")}\n </a>\n `,document.body.prepend(t);})));}handleElementAjaxRequest(e,t){if(!(t instanceof HTMLFormElement||t instanceof HTMLAnchorElement))return salla.logger.warn("trying to call ajax from non Element!!"),!1;e.preventDefault();let a=t.getAjaxFormData(e),s=a.method?a.method.toLowerCase():void 0;salla.api.request(a.url,a.formData,s).then((e=>(e.data&&e.request&&(e=e.data),salla.api.handleAfterResponseActions(e),this.callAjaxEvent(a.events.success,e,a.formData),e))).catch((e=>{throw salla.api.handleErrorResponse(e),this.callAjaxEvent(a.events.fail,e,a.formData),e}));}callAjaxEvent(e,t,a){if(e){if(a instanceof FormData){const e={};Array.from(a.entries()).forEach((function(t){e[t[0]]=t[1];})),a=e;}window[e]?window[e](t,a):salla.event.dispatch(e,t,a);}}setSallaReady(t){y$1.status="ready",y$1.event.dispatch("twilight::initiated",t),window.dispatchEvent(new CustomEvent("twilight::initiated",{detail:t}));}}y$1.status="loading",y$1.notify=o,y$1.lang=new class extends lang{constructor(e){(e=e||{}).messages=e.messages||window.translations,e.locale=e.locale||(window.locale||navigator.language||navigator.userLanguage||"ar").split("-")[0],e.fallback=e.fallback||e.locale,super(e),this.translationsLoaded=!1;}onLoaded(e){if(this.translationsLoaded)return e();Salla.event.once("languages::translations.loaded",e);}loadStoreTranslations(){if(this.hash=salla.config.get("theme.translations_hash",salla.config.get("store.id","twilight")),this.message||(salla.log("try to load translations from localstorage"),this.messages=salla.storage.get(`s_translations.${this.hash}`),this.messages&&(this.translationsLoaded=!0)&&super.setMessages(this.messages)),this.messages)return salla.event.dispatch("languages::translations.loaded"),void salla.logger.info("The messages of transactions is already loaded");salla.url.get("")?this.loadScript(salla.url.get(`languages/assets/${this.hash}.js`)):this.loadScript("https://cdn.salla.network/js/translations.js",!1);}setMessages(e){super.setMessages(e),salla.event.dispatch("languages::translations.loaded"),this.translationsLoaded=!0;}loadScript(e,t=!0){let a=document.createElement("script");a.src=e,a.onload=()=>{if(window.translations)return salla.storage.remove("s_translations"),salla.storage.set("s_translations",{[this.hash]:window.translations}),this.setMessages(window.translations);a.onerror();},a.onerror=()=>{if(t)return salla.logger.warn("Failed to load Translations for store, lets try load it from CDN"),this.loadScript("https://cdn.salla.network/js/translations.js",!1);salla.logger.error("Failed to load Translations, check your network logs for more details\nor: salla.lang.setMessages({....}), see https://docs.salla.dev for more information's.");},document.head.appendChild(a);}get(e,t,a){let s=e;(window.translations||this.translationsLoaded)&&(s="trans."+e);let i=super.get(s,t,a);return i!==s?i:super.get(s,t,"en").replace(s,e)}set(e,t){return salla.helpers.setNested(this.messages[this.getLocale()+".trans"],e,t),this}},y$1.form=new class{async submit(e,t=null){let a=t;if("SubmitEvent"===t?.constructor?.name||"submit"===t?.type){if(t.preventDefault(),"FORM"!==t.target?.tagName)return Salla.logger.warn("Failed find the target element for submit action. make sure you submit a form element"),new Promise((()=>{throw "Failed find the target element for submit action. make sure you submit a form element"}));"SALLA-BUTTON"===t?.submitter?.parentElement?.tagName&&t.submitter.parentElement.load(),a=t.target.getElementSallaData(),salla.log("Data from element",a);}if(/^https?:\/\/(?:www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)$/gm.test(e))return salla.api.request(e,a,"post").finally((()=>{loaderSupported&&t?.submitter?.parentElement.stop();}));let s=e.split("."),i=s.splice(-1);return await salla.call(s.join("."))[i](a).finally((()=>t?.submitter?.parentElement?.stop())).catch((e=>{throw salla.logger.warn(e),e}))}onSubmit(e,t){return salla.form.submit(e,t),!1}onChange(e,t){return t?.currentTarget?"FORM"!==t?.currentTarget?.tagName||t.currentTarget.checkValidity()?(salla.form.submit(e,t.currentTarget.getElementSallaData()),!0):(salla.logger.warn(`Trying to trigger '${e}' without filling required fields!`),!1):(salla.logger.warn(`Trying to trigger '${e}' without event!`),!1)}getPossibleValue(e,t,a=!1){if(!e)return;if("object"!=typeof e)return e;let s;for(let a=0;a<t.length&&!(s=e[t[a]])&&!("undefined"!=typeof FormData&&e instanceof FormData&&(s=e.get(t[a])));a++);return s=s||e,"object"!=typeof s||a?s:void 0}},y$1.infiniteScroll=new class extends d{constructor(e,t){super(e,t),this.options={path:".infinite-scroll-btn",history:"push",status:".infinite-scroll-status",append:".list-block"},this.fetchOptions={headers:{"S-INFINITE-SCROLL":!0}},this.instances=[];}initiate(e,a,s){s=this.getCustomOptions(a,s);let i="string"!=typeof e?e:document.querySelector(e),r=s.path;if(!i||!r||"string"==typeof r&&!document.querySelector(r))return void Salla.logger.warn(i?"Path Option (a link that has next page link) Not Existed!":"Container For InfiniteScroll not Existed!");let n=new js(i,s);return n.on("scrollThreshold",Salla.infiniteScroll.event.scrollThreshold),n.on("request",Salla.infiniteScroll.event.request),n.on("load",Salla.infiniteScroll.event.load),n.on("append",Salla.infiniteScroll.event.append),n.on("error",Salla.infiniteScroll.event.error),n.on("last",Salla.infiniteScroll.event.last),n.on("history",Salla.infiniteScroll.event.history),this.instances.push(n),n}getCustomOptions(e,t){return (t="object"==typeof e&&e||t||this.options).fetchOptions=this.fetchOptions,t.path=t.path||this.options.path,t.button=t.button||t.path,t.status=t.status||this.options.status,t.hasOwnProperty("history")||(t.history=this.options.history),t.nextPage=t.nextPage||t.next_page,t.append="string"==typeof e&&e||t.append||this.options.append,t}}(void 0,salla.event.infiniteScroll),y$1.api=new class extends x{constructor(){super(),this.auth=new f,this.cart=new p,this.loyalty=new g,this.order=new m,this.rating=new S,this.product=new v,this.profile=new y,this.comment=new w,this.currency=new F,this.document=new b,this.wishlist=new _,this.scope=new q,this.booking=new A,this.landing=new C;}},["cart","auth","order","scope","rating","comment","loyalty","product","profile","currency","document","wishlist","booking","landing"].forEach((t=>y$1[t]=new d(y$1.api[t],y$1.event[t]))),y$1.call=t=>{let a=y$1,s=t.split(".");for(;s.length&&(a=a[s.shift()]););return a},y$1.init=e=>new k(e),salla.event.once("twilight::init",salla.init),salla.event.once("twilight::api",(e=>{let t=e?.events;t&&salla.event.dispatchEvents(t);})),y$1.success=y$1.notify.success,y$1.error=y$1.notify.error,y$1.versions.twilight="[VI]{version}[/VI]",y$1.onInitiated=e=>salla.event.once("twilight::initiated",e),y$1.onReady=y$1.onReady||function(t){"ready"!==salla.status?y$1.onInitiated(t):t(salla.config.all());},window.dispatchEvent(new CustomEvent("salla::created"));
|
|
9527
|
+
let r=function(e,t,a){return alert(e)},n=function(e,t){return r(e,l.error,t)},l={error:"error",success:"success",info:"info"};var o={fire:function(e,t,a){return r(e,t,a)},setNotifier:function(e){r=e,salla.event.emit("twilight::notifier.changed");},error:n,success:function(e,t){return r(e,l.success,t)},info:function(e,t){return r(e,l.info,t)},sallaInitiated:function(){let e=window.location.href.match(/([\?\&]danger=)[^&]+/g);e&&(window.history.replaceState(null,document.title,window.location.pathname),salla.event.once("twilight::notifier.changed",(()=>{e.forEach((e=>{n(decodeURI(e.replace("?danger=","").replace("&danger=","")));}));})));},types:l};class d{constructor(e,t){return this.api=e,this.event=t,new Proxy(this,{get:function(a,s){return "event"===s?t:"api"===s?e:e&&e[s]||a[s]}})}}Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector),Element.prototype.closest||(Element.prototype.closest=function(e){for(var t=this;t;){if(t.matches(e))return t;t=t.parentElement;}}),Element.prototype.getElementSallaData=function(e,...t){if(!this.getAttribute)return;if(this.hasAttribute("data-json"))try{return JSON.parse(this.getAttribute("data-json"))}catch(e){}let a=this.getAttribute("data-function");if(a&&window[a])return "function"==typeof window[a]?this.getFilteredData(window[a].call(this,...t)):this.getFilteredData(window[a]);let s=this.hasAttribute("data-form-selector")?document.querySelector(this.dataset.formSelector):void 0;if(s="FORM"===this.tagName?this:s||this.closest("form")||this.closest("[salla-form-data]")||this,s&&"FORM"===s.tagName)return this.getFilteredData(new FormData(s),null,s);let i=s.querySelectorAll("[name]");if(!i.length)return this.getFilteredData();let r=Object.assign({},this.dataset);return i.forEach((e=>{if(!["checkbox","radio"].includes(e.type)||e.checked)try{let t=Salla.helpers.inputData(e.name,e.value,r);r[t.name]=t.value;}catch(t){Salla.log(e.name+" can't be send");}})),this.getFilteredData(r)},Element.prototype.canEventFireHook=function(e){return !!this.hasAttribute&&this.hasAttribute(Salla.api.hooksPrefix+e.type)},Element.prototype.hasAttributeStartsWith=function(e,t){e=e.toLowerCase();for(var a=0;a<this.attributes.length;a++){let s=this.attributes[a].name.toLowerCase();if(0===s.indexOf(e))return !t||s}return !1},HTMLFormElement.prototype.getAjaxFormData=function(e){var t=this.querySelectorAll('input[type="file"]');t.forEach((e=>{e.files.length||e.setAttribute("disabled","");}));var a=new FormData(this);return t.forEach((e=>{e.files.length||e.removeAttribute("disabled");})),{formData:this.getFilteredData(a,e),url:this.getAttribute("action"),method:this.getAttribute("method")||"post",events:{success:this.dataset.onSuccess,fail:this.dataset.onFail}}},Element.prototype.getFilteredData=function(e=null,t=null,a=null){return e=e||a?.dataset||this.dataset,a&&this.name&&void 0!==this.value&&(e=function(e,t,a){e instanceof FormData?e.append(t,a):e[t]=a;return e}(e,this.name,this.value)),["filterBeforeSubmit","filterBeforeSend"].forEach((s=>{let i=a?.dataset[s]||this.dataset[s];if(i){var r=window[i];if("function"==typeof r){if(!r(e,a||this,t)&&e)throw `Data failed to be pass verify function window.${i}(formData, element, event)!`;return r(e,a||this,t)}Salla.log("window."+i+"() not found!");}})),e},HTMLAnchorElement.prototype.getAjaxFormData=function(e){return {formData:this.getFilteredData(null,e),url:this.getAttribute("href"),method:this.dataset.type||"get",events:{success:this.dataset.onSuccess,fail:this.dataset.onFail}}};class c{constructor(){this.events={},this.namespace="";let e=/function (.{1,})\(/.exec(this.constructor.toString());this.className=(e&&e.length>1?e[1]:"").toLowerCase();}after_init(){this.createDynamicFunctions();}createDynamicFunctions(){Object.keys(this.events).forEach((e=>{this.createDynamicEventFuns(e),this.createDynamicListenerFuns(e);}));}createDynamicEventFuns(e){if(this[e])return;let t=this;this[e]=function(...a){return t.dispatch(e,...a)};}createDynamicListenerFuns(e){let t="on"+e.charAt(0).toUpperCase()+e.slice(1);if(this[t])return;let a=this;this[t]=function(t){return a.on(e,(async(...e)=>t(...e)))};}getEventName(e){return e=this.events[e]||e,!this.namespace||e.includes("::")?e:this.namespace+Salla.event.delimiter+e}dispatch(e,...t){return Salla.event.emitAsync(this.getEventName(e),...t)}on(e,t){return Salla.event.addListener(this.getEventName(e),t)}once(e,t){return Salla.event.once(this.getEventName(e),t)}}function u(e){e&&e.sallaInitiated&&!e.initiated&&(e.sallaInitiated(),e.initiated=!0);}Salla.event.auth=new class extends c{constructor(){super(),this.namespace="auth",this.events={login:"login",logout:"logout",codeSent:"code.sent",codeNotSent:"code.not-sent",verified:"verified",verificationFailed:"verification.failed",loggedIn:"logged.in",registered:"registered",registrationFailed:"registration.failed",loggedOut:"logged.out",failedLogout:"failed.logout",refreshFailed:"refresh.failed",tokenFetched:"token.fetched"},this.after_init();}login(e){return e?(e.type&&this.setTypeActionOnVerified(e.type),this.next_event=e.next_event||null,this.dispatch("login",...arguments)):(this.next_event=null,this.dispatch("login",...arguments))}loggedIn(e){return Salla.profile.info().finally((()=>this.dispatch("loggedIn",e)))}setTypeActionOnVerified(e){this.type_action_on_verified=e;}getTypeActionOnVerified(){return this.type_action_on_verified||"redirect"}},Salla.event.cart=new class extends c{constructor(){super(),this.namespace="cart",this.events={latestFetched:"latest.fetched",latestFailed:"latest.failed",updated:"updated",itemUpdated:"item.updated",itemUpdatedFailed:"item.updated.failed",itemAdded:"item.added",itemAddedFailed:"item.added.failed",itemDeleted:"item.deleted",itemDeletedFailed:"item.deleted.failed",submitted:"submitted",submitFailed:"submit.failed",imageDeleted:"image.deleted",imageNotDeleted:"image.not.deleted",detailsFetched:"details.fetched",detailsNotFetched:"details.not.fetched",successReset:"success.reset",priceQuoteSucceeded:"price-quote.succeeded",priceQuoteFailed:"price-quote.failed",couponAdded:"coupon.added",couponDeleted:"coupon.deleted",couponAdditionFailed:"coupon.addition.failed",couponDeletionFailed:"coupon.deletion.failed",quickOrderSettingFetched:"quick-order.fetched",quickOrderSettingFailed:"quick-order.failed",quickOrderSucceeded:"quick-order.succeeded",quickOrderFailed:"quick-order.failed"},this.after_init();}updated(e){return Salla.cookie.set("fresh_summary",1),e&&"object"==typeof e?(e.offer&&salla.product.event.offerExisted(e.offer),e.redirect&&(salla.log("The current cart is purchased!"),salla.cart.api.reset()),e.cart?(salla.storage.set("cart.summary",{total:e.cart.total,sub_total:e.cart.sub_total,discount:e.cart.discount,real_shipping_cost:e.cart.real_shipping_cost,count:e.cart.count,shipping_cost:e.cart.free_shipping_bar?.has_free_shipping?0:e.cart.real_shipping_cost}),this.dispatch("updated",e.cart)):void salla.log("Failed to get the cart summary!")):(Salla.logger.info("Cart summary not an object!",e),this.dispatch("updated"))}latestFetched(e){return this.updated(e.data),this.dispatch("latestFetched",e)}itemAdded(e,t){return this.updated(e.data),this.dispatch("itemAdded",e,t)}itemDeleted(e,t){return this.updated(e.data),this.dispatch("itemDeleted",e,t)}itemUpdated(e,t){return this.updated(e.data),this.dispatch("itemUpdated",e,t)}couponAdded(e,t){return this.updated(e.data),this.dispatch("couponAdded",e,t)}couponDeleted(e,t){return this.updated(e.data),this.dispatch("couponDeleted",e,t)}},Salla.event.order=new class extends c{constructor(){super(),this.namespace="order",this.events={canceled:"canceled",notCanceled:"not.canceled",orderCreated:"order.created",orderCreationFailed:"order.creation.failed",invoiceSent:"invoice.sent",invoiceNotSent:"invoice.not.sent"},this.after_init();}},Salla.event.scope=new class extends c{constructor(){super(),this.namespace="scope",this.events={fetched:"fetched",notFetched:"not.fetched",productAvailabilityFetched:"product-availability.fetched",productAvailabilityNotFetched:"product-availability.not.fetched",changeSucceeded:"changed",changeFailed:"not.changed"},this.after_init();}},Salla.event.rating=new class extends c{constructor(){super(),this.namespace="rating",this.events={orderNotFetched:"order.not.fetched",orderFetched:"order.fetched",storeRated:"store.rated",storeFailed:"store.failed",productsRated:"products.rated",productsFailed:"products.failed",shippingRated:"shipping.rated",shippingFailed:"shipping.failed"},this.after_init();}},Salla.event.booking=new class extends c{constructor(){super(),this.namespace="booking",this.events={added:"added",additionFailed:"addition.failed"},this.after_init();}},Salla.event.comment=new class extends c{constructor(){super(),this.namespace="comment",this.events={added:"added",additionFailed:"addition.failed"},this.after_init();}},Salla.event.landing=new class extends c{constructor(){super(),this.namespace="landing",this.events={detailsFetched:"order.fetched",getDetailsFailed:"get.details.failed",orderCreated:"order.created",orderCreationFailed:"order.creation.failed"},this.after_init();}},Salla.event.loyalty=new class extends c{constructor(){super(),this.namespace="loyalty",this.events={exchangeSucceeded:"exchange.succeeded",exchangeFailed:"exchange.failed",programFetched:"program.fetched",programNotFetched:"program.not.fetched",resetSucceeded:"exchange-reset.succeeded",resetFailed:"exchange-reset.failed"},this.after_init();}exchangeSucceeded(e,t){return salla.cart.event.updated(e.data),this.dispatch("exchangeSucceeded",e,t)}resetSucceeded(e){return salla.cart.event.updated(e.data),this.dispatch("resetSucceeded",e)}},Salla.event.product=new class extends c{constructor(){super(),this.namespace="product",this.events={priceUpdated:"price.updated",priceUpdateFailed:"price.updated.failed",availabilitySubscribed:"availability.subscribed",availabilitySubscribeFailed:"availability.subscribe.failed",categoriesFetched:"categories.fetched",categoriesFailed:"categories.failed",searchFailed:"search.failed",searchResults:"search.results",offerExisted:"offer.existed",fetchOffersFailed:"fetch.offers.failed",offersFetched:"offers.fetched",sizeGuideFetched:"size-guide.fetched",SizeGuideFetchFailed:"size-guide.failed",giftFetched:"gift.fetched",giftFetchFailed:"gift.failed",detailFetched:"detail.fetched",detailFetchFailed:"detail.failed",addGiftToCartSucceeded:"gift.add-to-cart.succeeded",addGiftToCartFailed:"gift.add-to-cart.failed",giftImageUploadSucceeded:"gift.image-upload.succeeded",giftImageUploadFailed:"gift.image-upload.failed"},this.after_init();}},Salla.event.profile=new class extends c{constructor(){super(),this.namespace="profile",this.events={updated:"updated",updateFailed:"update.failed",verificationCodeSent:"verification.code.sent",updateContactsFailed:"update.contacts.failed",verified:"verified",unverified:"unverified",infoFetched:"info.fetched",infoNotFetched:"info.not.fetched",settingsUpdated:"settings.updated",updateSettingsFailed:"update.settings.failed",deleted:"deleted",notDeleted:"not.deleted"},this.after_init();}},Salla.event.currency=new class extends c{constructor(){super(),this.namespace="currency",this.events={changed:"changed",failed:"failed",fetched:"fetched",failedToFetch:"failed.to.fetch"},this.after_init();}},Salla.event.document=new class extends c{constructor(){super(),this.namespace="document",this.events={click:"click",change:"change",submit:"submit",keyup:"keyup",leaving:"leaving",request:"request",requestFailed:"request.failed"},this.after_init();}onClick(e,t){this.fireCallableFuns("click",e,t);}onChange(e,t){this.fireCallableFuns("change",e,t);}onSubmit(e,t){this.fireCallableFuns("submit",e,t);}onKeyup(e,t){this.fireCallableFuns("keyup",e,t);}fireCallableFuns(e,t,a){this.on(e,(e=>{"function"!=typeof t?"function"==typeof a&&e.target.matches(t)&&a(e):t(e);}));}fireEvent(e,t,...a){return this.fireEventForElements(e,t,!1,...a)}fireEventForAll(e,t,...a){return this.fireEventForElements(e,t,!0,...a)}fireEventForElements(e,t,a,...s){if("string"==typeof e){if(a)return document.querySelectorAll(e).forEach((e=>this.fireEventForElements(e,t,!1,...s)));e=document.querySelector(e);}if(!e)return void salla.log("Failed To get element to fire event: "+t);const i=new CustomEvent(t,...s);return e.dispatchEvent(i)}},Salla.event.wishlist=new class extends c{constructor(){super(),this.namespace="wishlist",this.events={added:"added",removed:"removed",additionFailed:"addition.failed",removingFailed:"removing.failed"},this.after_init();}},Salla.event.infiniteScroll=new class extends c{constructor(){super(),this.namespace="infiniteScroll",this.events={scrollThreshold:"scroll.threshold",request:"request",load:"load",append:"append",error:"error",last:"last",history:"history"},this.after_init();}},Salla.event.on("twilight::initiated",(()=>{Object.keys(Salla).forEach((e=>{"object"==typeof(e=Salla[e])&&(u(e),Object.keys(e).forEach((t=>{u(e[t]);})));}));})),Salla.config.default_properties={debug:"undefined"!=typeof browser$1&&"development"==="production",token:null,fastRequests:!0,canLeave:!0,store:{api:"https://api.salla.dev/store/v1/"},currencies:{SAR:{code:"SAR",name:"ريال سعودي",symbol:"ر.س",amount:1,country_code:"sa"}}},Salla.config.merge(Salla.config.default_properties),Salla.config.triedToGetCurrencies_=!1,Salla.config.triedToGetLanguages_=!1,Salla.config.isUser=()=>"user"===Salla.config.get("user.type"),Salla.config.isGuest=()=>!Salla.config.isUser(),Salla.config.languages=async()=>{if(Salla.config.triedToGetLanguages_)return Salla.config.get("languages");Salla.config.triedToGetLanguages_=!0;let e=!0,t=[];return (await salla.document.api.request("languages",null,"get"))?.data?.map((a=>{e&&(t=[],e=!1),a.code=a.code||a.iso_code,a.url=salla.url.get(a.code),a.is_rtl=a.is_rtl||a.rtl,t.push(a);})),Salla.config.set("languages",t),t},Salla.config.currencies=async()=>{if(Salla.config.triedToGetCurrencies_)return Salla.config.get("currencies");Salla.config.triedToGetCurrencies_=!0;let e=!0,t={};return (await salla.currency.api.list())?.data?.map((a=>{e&&(t={},e=!1),a.country_code=a.code.substr(0,2).toLowerCase(),t[a.code]=a;})),Salla.config.set("currencies",t),t};class h{constructor(){this.endpoints={},this.webEndpoints=[],this.namespace="BaseApi",this.endpointsMethods={},this.endpointsHeaders={};let e=/function (.{1,})\(/.exec(this.constructor.toString());this.className=(e&&e.length>1?e[1]:"").toLowerCase(),this.debounce={request:void 0,time:300,enabled:!0,exclude:[]};}after_init(){}normalRequest(e,t,a=null){let s=Array.isArray(e),i=s?this.getUrl(...e):this.getUrl(e);e=s?e[0]:e,a=a||this.endpointsMethods[e]||"post";let r=this.endpointsHeaders[e];if("get"===a&&t instanceof FormData){let e={};Array.from(t.entries()).forEach((function(t){e[t[0]]=t[1];})),t={params:e};}return r&&"get"===a&&(t=t?Object.assign(t,r):r),this.webEndpoints.includes(e)?i=salla.url.get(i):"http"!==i.substring(0,4)&&(i=salla.url.api(i)),Salla.api.request(i,t,a,{headers:r})}request(e,t,a=null){return !salla.api.isFastRequestsAllowed()&&this.debounce.enabled?(this.debounce.request||(this.debounce.request=salla.helpers.debounce(this.normalRequest.bind(this),this.debounce.time)),this.debounce.request(e,t,a)):this.normalRequest(e,t,a)}getUrl(e){let t=this.endpoints[e]||e;const a=/{[^{}]+}/i;for(let e=1;e<arguments.length;e++)t=t.replace(a,arguments[e]);return t}event(){return salla.event[this.className]}}class p extends h{constructor(){super(),this.namespace="cart",this.endpoints={latest:"cart/latest",details:"cart/{cart}",quickAdd:"cart/{cart}/item/{product}/quick-add",addItem:"cart/{cart}/item/{product}/add",deleteItem:"cart/{cart}/item/{item}",updateItem:"cart/{cart}/item/{item}",deleteImage:"cart/{cart}/image/{image}",uploadImage:"cart/{cart}/image",status:"cart/{cart}/status",addCoupon:"cart/{id}/coupon",deleteCoupon:"cart/{id}/coupon",getQuickOrderSettings:"checkout/quick-order",createQuickOrder:"checkout/quick-order",priceQuote:"cart/{cartId}/price-quote"},this.endpointsMethods={latest:"get",details:"get",status:"get",updateItem:"post",deleteItem:"delete",deleteImage:"delete",deleteCoupon:"put",getQuickOrderSettings:"get"},this.webEndpoints=["latest"],this.latestCart=null,this.after_init(),salla.event.on("api::initiated",(()=>this.getCurrentCartId()));}async getCurrentCartId(){if(salla.cart.api.latestCart)return salla.cart.api.latestCart.cart.id;let e=salla.storage.get("cart.id");if(e)return e;let t=await this.latest();return salla.cart.api.latestCart=t.data,salla.cart.api.latestCart.cart.id}getUploadImageEndpoint(e){return salla.url.api(this.getUrl("uploadImage",e||salla.storage.get("cart.id")))}latest(){return this.request("latest",{params:{source:""}}).then((e=>(salla.storage.set("cart",e.data.cart),salla.event.cart.latestFetched(e),e))).catch((e=>{throw salla.storage.set("cart",""),salla.event.cart.latestFailed(e),e}))}async details(e,t=[]){return e=e||await this.getCurrentCartId(),this.request(["details",e],{params:{with:t}}).then((function(e){return salla.cart.event.detailsFetched(e),e})).catch((function(e){throw salla.cart.event.detailsNotFetched(e),e}))}async quickAdd(e,t){return this.addItem({id:e,quantity:t,endpoint:"quickAdd"})}async addItem(e){let t=this.getCartPayload(e);if(!t.id){let e='There is no product "id"!';return salla.cart.event.itemAddedFailed(e),salla.api.errorPromise(e)}let a=salla.form.getPossibleValue(t.payload,["endpoint"]);a&&["addItem","quickAdd"].includes(a)||(a=salla.form.getPossibleValue(t.payload,["quantity","donating_amount"])?"addItem":"quickAdd");let s=await this.getCurrentCartId();return this.request([a,s,t.id],t.payload).then((function(e){return salla.cart.event.itemAdded(e,t.id),e})).catch((function(e){throw salla.cart.event.itemAddedFailed(e,t.id),e}))}async deleteItem(e){let t=this.getCartPayload(e);if(!t.id){let e='There is no "id"!';return salla.cart.event.itemDeletedFailed(e),salla.api.errorPromise(e)}let a=await this.getCurrentCartId();return this.request(["deleteItem",a,t.id]).then((function(e){return salla.cart.event.itemDeleted(e,t.id),e})).catch((function(e){throw salla.cart.event.itemDeletedFailed(e,t.id),e}))}async updateItem(e){let t=this.getCartPayload(e);if(!t.id){let e='There is no "id"!';return salla.cart.event.itemUpdatedFailed(e),salla.api.errorPromise(e)}let a=await this.getCurrentCartId();return "Object"===t.payload.constructor?.name?t.payload._method="PUT":t.payload.append("_method","PUT"),this.request(["updateItem",a,t.id],t.payload).then((function(e){return salla.cart.event.itemUpdated(e,t.id),e})).catch((function(e){throw salla.cart.event.itemUpdatedFailed(e,t.id),e}))}async deleteImage(e){if(!(e=salla.form.getPossibleValue(e,["id","image_id","photo_id"]))){let e='There is no "id"!';return salla.cart.event.imageNotDeleted(e),salla.api.errorPromise(e)}let t=await this.getCurrentCartId();return this.request(["deleteImage",t,e]).then((function(t){return salla.cart.event.imageDeleted(t,e),t})).catch((function(t){throw salla.cart.event.imageNotDeleted(t,e),t}))}async status(e){return this.request(["status",e||await this.getCurrentCartId()],{params:{has_apple_pay:!!window.ApplePaySession}})}async submit(){this.status(await this.getCurrentCartId()).then((e=>{let t=e.data.next_step.to;if(!["checkout","refresh","login"].includes(t)){let e="Can't find next_step );";throw salla.cart.event.submitFailed(e),e}if(salla.cart.event.submitted(e),"login"===t)return salla.auth.setCanRedirect(!1),salla.event.dispatch("login::open"),void salla.auth.event.onLoggedIn((e=>{salla.event.dispatch("login::close"),this.submit();}));"checkout"===t?window.location.href=e.data.next_step.url+(window.ApplePaySession?"?has_apple_pay=true":""):window.location.reload();})).catch((function(e){throw salla.cart.event.submitFailed(e),e}));}getCartPayload(e){let t=e?.data||("object"==typeof e?e:void 0);return e=t?salla.form.getPossibleValue(t,["prod_id","product_id","item_id","id"]):e,t="object"==typeof t?t:void 0,{id:e,payload:t}}normalRequest(e,t,a=null){return super.normalRequest(e,t,a).catch((e=>{throw 403===e?.response?.status&&(salla.cart.api.reset(),salla.error(salla.lang.get("pages.checkout.try_again"))),e}))}reset(){salla.api.cart.latestCart=null,salla.storage.remove("cart"),salla.cart.event.successReset();}async addCoupon(e){if(e=e.data||e,!(e=salla.form.getPossibleValue(e,["coupon"]))){let e=new Error('There is no "Coupon Code"!');return e.name="EmptyCoupon",salla.event.cart.couponAdditionFailed(e),salla.api.errorPromise(e)}let t=await salla.cart.api.getCurrentCartId();return this.request(["addCoupon",t],{coupon:e}).then((function(e){return salla.event.cart.couponAdded(e,t),e})).catch((function(e){throw salla.event.cart.couponAdditionFailed(e,t),e}))}async deleteCoupon(){let e=await salla.cart.api.getCurrentCartId();return this.request(["deleteCoupon",e],{}).then((function(t){return salla.event.cart.couponDeleted(t,e),t})).catch((function(t){throw salla.event.cart.couponDeletionFailed(t,e),t}))}getQuickOrderSettings(){return this.request("getQuickOrderSettings").then((e=>(salla.event.cart.quickOrderSettingFetched(e),e))).catch((e=>{throw salla.event.cart.quickOrderSettingFailed(e),e}))}createQuickOrder(e){return this.request("createQuickOrder",e).then((e=>(salla.event.cart.quickOrderSucceeded(e),e))).catch((e=>{throw salla.event.cart.quickOrderFailed(e),e}))}async priceQuote(e){return salla.config.isGuest()?(salla.auth.api.setAfterLoginEvent("cart::priceQuote",e),void salla.event.dispatch("login::open")):this.request(["priceQuote",e||await this.getCurrentCartId()]).then((e=>(salla.cart.api.reset(),salla.event.cart.priceQuoteSucceeded(e).then((()=>(setTimeout((()=>window.location.href=salla.url.get("/")),1e3),e)))))).catch((e=>salla.event.cart.priceQuoteFailed(e).then((()=>{throw 404===e.error?.code&&window.location.reload(),e}))))}}class g extends h{constructor(){super(),this.namespace="loyalty",this.endpoints={getProgram:"loyalty",exchange:"loyalty/exchange",reset:"loyalty/exchange"},this.endpointsMethods={getProgram:"get",reset:"put"},this.after_init();}getProgram(){return this.request("getProgram").then((e=>(salla.loyalty.event.programFetched(e),e))).catch((e=>{throw salla.loyalty.event.programNotFetched(e),e}))}async exchange(e,t=null){if(!(e=salla.form.getPossibleValue(e,["id","loyalty_prize_id","prize_id"]))){let e="Unable to find cart id. Please provide one.";return salla.loyalty.event.exchangeFailed(e),salla.api.errorPromise(e)}if(!(t=t||await salla.cart.getCurrentCartId())){let e="Unable to find cart id. Please provide one.";return salla.loyalty.event.exchangeFailed(e),salla.api.errorPromise(e)}return this.request("exchange",{loyalty_prize_id:e,cart_id:t}).then((function(t){return salla.loyalty.event.exchangeSucceeded(t,e),t})).catch((function(t){throw salla.loyalty.event.exchangeFailed(t,e),t}))}async reset(e=null){if(!(e=e||await salla.cart.getCurrentCartId())){let e="Unable to find cart id. Please provide one.";return salla.loyalty.event.resetFailed(e),salla.api.errorPromise(e)}return this.request("reset",{cart_id:e}).then((e=>(salla.loyalty.event.resetSucceeded(e),e))).catch((e=>{throw salla.loyalty.event.resetFailed(e),e}))}}class f extends h{constructor(){super(),this.namespace="auth",this.canRedirect_=!0,this.afterLoginEvent={event:null,payload:null},this.endpoints={login:"auth/{type}/send_verification",resend:"auth/resend_verification",verify:"auth/{type}/verify",register:"auth/register",logout:"logout",refresh:"auth/refresh"},this.webEndpoints=["logout","auth/jwt","refresh"],this.endpointsMethods={logout:"get"},this.after_init();}setAfterLoginEvent(e,t){salla.api.auth.afterLoginEvent={event:e,payload:t};}setCanRedirect(e){salla.api.auth.canRedirect_=e;}canRedirect(){return salla.api.auth.canRedirect_&&!salla.api.auth.afterLoginEvent.event}login(e){e?.data&&(e=e.data);let t=salla.form.getPossibleValue(e,["type"]);if(!["email","mobile"].includes(t)){let e="Login type should be in: [email, mobile]";return salla.auth.event.codeNotSent(e),salla.api.errorPromise(e)}return this.request(["login",t],e).then((function(e){return salla.auth.event.codeSent(e,t),e})).catch((function(e){throw salla.auth.event.codeNotSent(e,t),e}))}async verify(e,t=!0){let a=salla.form.getPossibleValue(e,["type"]);if(!a){let e="Failed to know what's login type!";return salla.auth.event.verificationFailed(e),salla.api.errorPromise(e)}t=!1!==salla.form.getPossibleValue(e,["supportWebAuth"])&&t,salla.auth.event.next_event&&(e.next_event=salla.auth.event.next_event);let s=await salla.auth.api.request(["verify",a],e);if(200!==s?.status)return salla.auth.event.verificationFailed(s,a),salla.api.errorPromise(s);let i="authenticated"===s.data?.case;return i&&salla.auth.event.tokenFetched(s.data.token),t&&await salla.auth.api.request("auth/jwt"),i&&salla.auth.event.loggedIn(s).then((()=>salla.auth.api.afterUserLogin())),salla.auth.event.verified(s,a),salla.api.successPromise(s)}resend(e){let t;return (e=e.data||e).type=e.type||"mobile","mobile"!==e.type||e.phone&&e.country_code?"email"!==e.type||e.email?this.request("resend",e).then((function(t){return salla.auth.event.codeSent(t,e),t})).catch((function(t){throw salla.auth.event.codeNotSent(t,e),t})):(salla.auth.event.codeNotSent(t="There is no email!",e),salla.api.errorPromise(t)):(salla.auth.event.codeNotSent(t="There is no phone or country_code!",e),salla.api.errorPromise(t))}register(e){let t;return e.data&&(t=e.element,e=e.data),salla.auth.event.next_event&&(e.next_event=salla.auth.event.next_event),this.request("register",e).then((async function(e){return salla.auth.event.registered.call(t,e),"authenticated"===e.data?.case&&(salla.auth.event.tokenFetched(e.data.token),await salla.auth.request("auth/jwt"),salla.auth.event.loggedIn(e),salla.auth.api.afterUserLogin()),e})).catch((function(e){throw salla.auth.event.registrationFailed.call(t,e),e}))}logout(){return salla.storage.clearAll(),salla.cookie.clearAll(),salla.auth.event.loggedOut().then((()=>{let e=salla.url.get("logout");console.log(`Going to ${e}, to do any thing before this action use: salla.auth.even.onLoggedOut(()=>{...})`);try{location.href=e;}catch(e){salla.log(e);}}))}refresh(){return this.request("refresh").then((function(e){return salla.auth.event.tokenFetched(e.data.token),e})).catch((function(e){throw salla.auth.event.refreshFailed(e),e}))}afterUserLogin(){this.afterLoginEvent.event&&salla.event.emit(this.afterLoginEvent.event,this.afterLoginEvent.payload);}}class m extends h{constructor(){super(),this.namespace="order",this.endpoints={cancel:"orders/cancel/{id}",createCartFromOrder:"reorder/{id}",sendInvoice:"orders/send/{id}"},this.endpointsMethods={createCartFromOrder:"get"},this.after_init();}show(e){let t=salla.form.getPossibleValue(e?.data||e,["id","order_id"]);salla.event.dispatch("mobile::order.placed",{order_id:t}),location.href=salla.form.getPossibleValue(e?.data||e,["url"]);}cancel(e){return e=e||Salla.config.get("page.id"),this.request(["cancel",e],{params:{has_apple_pay:!!window.ApplePaySession}}).then((function(t){return salla.event.order.canceled(t,e),t})).catch((function(t){throw salla.event.order.notCanceled(t,e),t}))}createCartFromOrder(e){return e=e||salla.config.get("page.id"),this.request(["createCartFromOrder",e]).then((function(t){return salla.cart.reset(),salla.event.order.orderCreated(t,e),window.location.href=t.data.url,t})).catch((function(t){throw salla.event.order.orderCreationFailed(t,e),t}))}sendInvoice(e){let t=salla.form.getPossibleValue(e,["id"])||salla.config.get("page.id");if(!t||isNaN(t)){let e="There is no id!";return salla.order.event.invoiceNotSent(e),salla.api.errorPromise(e)}return this.request(["sendInvoice",t],e).then((e=>(salla.event.order.invoiceSent(e,t),e))).catch((e=>{throw salla.event.order.invoiceNotSent(e,t),e}))}}class v extends h{constructor(){super(),this.namespace="product",this.previousQuery="",this.endpoints={getPrice:"products/{id}/price",availabilitySubscribe:"products/{id}/availability-notify",search:"products/search",details:"products/{product_id}/details",categories:"products/categories/{?id}",offers:"products/{product_id}/specialoffer",getSizeGuides:"products/{prod_id}/size-guides",giftDetail:"products/{product_id}/buy-as-gift",giftToCart:"products/{product_id}/buy-as-gift",giftImage:"products/buy-as-gift/image",buyNow:"products/{product_id}/buy-now"},this.endpointsMethods={details:"get",giftDetail:"get"},this.after_init();}getPrice(e){let t=e.data||e,a=salla.form.getPossibleValue(t,["id","prod_id","product_id"]);return this.request(["getPrice",a],"object"==typeof t?t:void 0).then((function(e){return salla.product.event.priceUpdated(e,a),e})).catch((function(e){throw salla.product.event.priceUpdateFailed(e,a),e}))}categories(e){return this.request(["categories",e||""],null,"get").then((function(e){return salla.product.event.categoriesFetched(e),e})).catch((function(e){throw salla.product.event.categoriesFailed(e),e}))}availabilitySubscribe(e){let t=e.data||e;return e=salla.form.getPossibleValue(t,["id","prod_id"]),this.request(["availabilitySubscribe",e],"object"==typeof t?t:void 0).then((function(t){return salla.product.event.availabilitySubscribed(t,e),t})).catch((function(t){throw salla.product.event.availabilitySubscribedFailed(t,e),t}))}search(e){let t=e.data;if(t||(t={params:"string"==typeof e?{query:e}:e}),!(e=t instanceof FormData?t.get("query"):t.query||t.params?.query)){let e='There is no "query"!';return salla.product.event.searchFailed(e),salla.api.errorPromise(e)}if(e===salla.api.product.previousQuery){let e="Query is same as previous one!";return salla.product.event.searchFailed(e),salla.api.product.previousQuery=null,salla.api.errorPromise(e)}return salla.api.product.previousQuery=e,this.request("search",t,"get").then((function(t){return salla.product.event.searchResults(t,e),t})).catch((function(t){throw salla.product.event.searchFailed(t,e),t}))}offers(e){if(!(e=salla.form.getPossibleValue(e?.data|e,["product_id","id"]))){let e='There is no "product_id"!';return salla.product.event.fetchOffersFailed(e),salla.api.errorPromise(e)}return this.request(["offers",e]).then((function(t){return salla.product.event.offersFetched(t,e),t})).catch((function(t){throw salla.product.event.fetchOffersFailed(t,e),t}))}getSizeGuides(e){return this.request(`products/${e}/size-guides`,null,"get").then((t=>(salla.product.event.sizeGuideFetched(t,e),t))).catch((t=>{throw salla.product.event.sizeGuideFetchFailed(t,e),t}))}getGiftDetails(e){return this.request(["giftDetail",e]).then((t=>(salla.product.event.giftFetched(t,e),t))).catch((t=>{throw salla.product.event.giftFetchFailed(t,e),t}))}getDetails(e,t=[]){if(!Array.isArray(t)){let e="withItems should be array.";return salla.product.event.detailFetchFailed(e),salla.api.errorPromise(e)}if(!e){let e="productId is not passed.";return salla.product.event.detailFetchFailed(e),salla.api.errorPromise(e)}return this.request(["details",e],{params:{with:t}}).then((function(t){return salla.product.event.detailFetched(t,e),t})).catch((function(t){throw salla.product.event.availabilitySubscribeFailed(t,e),t}))}addGiftToCart(e,t,a=!1){return this.request(["giftToCart",e],t).then((t=>(salla.product.event.addGiftToCartSucceeded(t,e),a&&(window.location.href=t.redirect),t))).catch((t=>{throw salla.product.event.addGiftToCartFailed(t,e),t}))}uploadGiftImage(e){return this.request("giftImage",e).then((e=>(salla.product.event.giftImageUploadSucceeded(e),e))).catch((e=>{throw salla.product.event.giftImageUploadFailed(e),e}))}}class y extends h{constructor(){super(),this.namespace="profile",this.endpoints={info:"auth/user",update:"profile/update",updateContacts:"profile/contacts/update",updateSettings:"profile/settings",verify:"profile/verify",delete:"profile"},this.endpointsMethods={delete:"delete"},this.after_init();}info(){return this.request("info",null,"get").then((e=>{let t={id:e.data.id,type:"user",email:e.data.email,mobile:e.data.phone.code+e.data.phone.number,country_code:e.data.phone.country,language_code:e.data.language,currency_code:e.data.currency,notifications:e.data.notifications,pending_orders:e.data.pending_orders,avatar:e.data.avatar,first_name:e.data.first_name,last_name:e.data.last_name,fetched_at:Date.now()};return salla.config.set("user",t),salla.storage.set("user",t),salla.profile.event.infoFetched(e),e})).catch((e=>{throw salla.profile.event.infoNotFetched(e),e}))}update(e){return this.request("update",e).then((e=>(salla.profile.event.updated(e),e))).catch((e=>{throw salla.event.profile.updateFailed(e),e}))}updateContacts(e){return this.request("updateContacts",e).then((e=>(salla.profile.event.verificationCodeSent(e),e))).catch((e=>{throw salla.event.profile.updateContactsFailed(e),e}))}verify(e){return this.request("verify",e).then((e=>(salla.profile.event.verified(e),e))).catch((e=>{throw salla.event.profile.unverified(e),e}))}updateSettings(e){return this.request("updateSettings",e).then((e=>(salla.event.profile.settingsUpdated(e),e))).catch((e=>{throw salla.event.profile.updateSettingsFailed(e),e}))}delete(){return this.request("delete").then((e=>(salla.storage.clearAll(),salla.cookie.clearAll(),salla.event.profile.deleted(e),window.location.href=salla.url.get("logout"),e))).catch((e=>{throw salla.event.profile.notDeleted(e),e}))}}class w extends h{constructor(){super(),this.namespace="comment",this.endpoints={add:"{type}/{id}/comments"},this.after_init();}add(e){e?.data&&(e=e.data);let t,a=salla.form.getPossibleValue(e,["id"]),s=salla.form.getPossibleValue(e,["type"]),i=salla.form.getPossibleValue(e,["comment"]);return a?s&&["products","pages","product","page"].includes(s)?i?(s+=["product","page"].includes(s)?"s":"",this.request(["add",s,a],{comment:i}).then((function(e){return salla.event.comment.added(e,a),e})).catch((function(e){throw salla.event.comment.additionFailed(e,a),e}))):(salla.event.comment.additionFailed(t="can't find comment content!"),salla.api.errorPromise(t)):(salla.event.comment.additionFailed(t="Failed to get type one of:(products, product, page, pages)!"),salla.api.errorPromise(t)):(salla.event.comment.additionFailed(t="Failed to get id!"),salla.api.errorPromise(t))}}class F extends h{constructor(){super(),this.namespace="currency",this.endpoints={change:"/",list:"currencies"},this.endpointsMethods={change:"get",list:"get"},this.webEndpoints=["change"],this.after_init();}change(e){if(!(e=salla.form.getPossibleValue(e.data||e,["currency","code"]))){let e="Can't find currency code!";return salla.currency.event.failed(e),salla.api.errorPromise(e)}return this.request("change",{params:{change_currency:"",currency:e}}).then((function(t){return salla.cookie.set("fresh_summary",1),salla.storage.set("cart",""),salla.currency.event.changed(t,e),t})).catch((function(t){throw salla.currency.event.failed(t,e),t}))}list(){return this.request("list").then((function(e){return salla.currency.event.fetched(e),e})).catch((function(e){throw salla.currency.event.failedToFetch(e),e}))}}class b extends h{constructor(){super(),this.namespace="document";}}class S extends h{constructor(){super(),this.namespace="rating",this.endpoints={store:"rating/store",products:"rating/products",shipping:"rating/shipping",order:"rating/{order_id}"},this.endpointsMethods={order:"get"},this.after_init();}order(e){let t="object"==typeof e?e:{},a=salla.form.getPossibleValue(e?.data||e,["order_id","id"]);if(!a){let e='There is no "order_id"!';return salla.event.rating.orderNotFetched(e),salla.api.errorPromise(e)}return this.request(["order",a],t).then((function(e){return salla.event.rating.orderFetched(e,a),e})).catch((function(e){throw salla.event.rating.orderNotFetched(e,a),e}))}store(e){if(!(e=e.data||e)){let e='There is no "data"!';return salla.event.rating.storeFailed(e),salla.api.errorPromise(e)}return this.request("store",e).then((function(t){return salla.event.rating.storeRated(t,e),t})).catch((function(t){throw salla.event.rating.storeFailed(t,e),t}))}products(e){if(!(e=e.data||e)){let e='There is no "data"!';return salla.event.rating.productsFailed(e),salla.api.errorPromise(e)}return this.request("products",e).then((function(t){return salla.event.rating.productsRated(t,e),t})).catch((function(t){throw salla.event.rating.productsFailed(t,e),t}))}shipping(e){if(!(e=e.data||e)){let e='There is no "data"!';return salla.event.rating.shippingFailed(e),salla.api.errorPromise(e)}return this.request("shipping",e).then((function(t){return salla.event.rating.shippingRated(t,e),t})).catch((function(t){throw salla.event.rating.shippingFailed(t,e),t}))}}class _ extends h{constructor(){super(),this.namespace="wishlist",this.endpoints={add:"products/favorites/{id}",remove:"products/favorites/{id}"},this.endpointsMethods={remove:"delete"},this.after_init();}toggle(e){return salla.storage.get("salla::wishlist",[]).includes(e)?this.remove(e):this.add(e)}add(e){let t;return salla.config.isGuest()?(salla.wishlist.event.additionFailed(t=salla.lang.get("common.messages.must_login")),salla.error(t),salla.api.errorPromise(t)):(e=salla.form.getPossibleValue(e?.data||e,["product_id","id"]))?this.request(["add",e]).then((t=>(this.updateWishlistStorage(e),salla.wishlist.event.added(t,e),t))).catch((function(t){throw salla.wishlist.event.additionFailed(t,e),t})):(salla.wishlist.event.additionFailed(t="Failed to get product id!"),salla.api.errorPromise(t))}remove(e){let t;return salla.config.isGuest()?(salla.wishlist.event.additionFailed(t=salla.lang.get("common.messages.must_login")),salla.error(t),salla.api.errorPromise(t)):(e=salla.form.getPossibleValue(e?.data||e,["product_id","id"]))?this.request(["remove",e]).then((t=>(this.updateWishlistStorage(e,!1),salla.wishlist.event.removed(t,e),t))).catch((function(t){throw salla.wishlist.event.removingFailed(t,e),t})):(salla.wishlist.event.removingFailed(t="Failed to get id!"),salla.api.errorPromise(t))}updateWishlistStorage(e,t=!0){let a=salla.storage.get("salla::wishlist",[]);t?a.push(e):a.splice(a.indexOf(e),1),salla.storage.set("salla::wishlist",a);}}class q extends h{constructor(){super(),this.namespace="scopes",this.endpoints={get:"scopes",change:"scopes",getProductAvailability:"scopes/availability?product_id={id}"},this.after_init();}get(){return this.request("scopes",null,"get").then((e=>(salla.scope.event.fetched(e),e))).catch((e=>{throw salla.scope.event.notFetched(e),e}))}change(e){return this.request("scopes",e).then((e=>(salla.scope.event.changeSucceeded(e),e))).catch((e=>{throw salla.scope.event.changeFailed(e),e}))}getProductAvailability(e=null){return this.request(`scopes/availability?product_id=${e}`,null,"get").then((t=>(salla.scope.event.productAvailabilityFetched(t,e),t))).catch((e=>{throw salla.scope.event.productAvailabilityNotFetched(e),e}))}}class A extends h{constructor(){super(),this.namespace="booking",this.endpoints={add:"cart/booking/product/{id}"},this.endpointsMethods={add:"get"};}async add(e,t=!0){if(!e){let e="Please provide product id.";return salla.booking.event.additionFailed(e),salla.api.errorPromise(e)}return this.request(["add",e]).then((function(e){return salla.booking.event.added(e),t&&"booking"===e.data.redirect.to&&(window.location.href=e.data.redirect.url),e})).catch((function(e){throw salla.booking.event.additionFailed(e),e}))}}class C extends h{constructor(){super(),this.namespace="landing",this.endpoints={getDetails:"landing/{landing_page_id}",createCartFromPage:"landing/{landing_page_id}"},this.endpointsMethods={getDetails:"get"},this.after_init();}getDetails(e){if(!e){let e="page landing id not passed";return salla.event.landing.getDetailsFailed(e),salla.api.errorPromise(e)}return this.request(["getDetails",e]).then((function(t){return salla.event.landing.detailsFetched(t,e),t})).catch((function(t){throw salla.event.landing.getDetailsFailed(t,e),t}))}createCartFromPage(e){if(!e){let e="page landing id not passed";return salla.event.landing.orderCreationFailed(e),salla.api.errorPromise(e)}return salla.config.isGuest()?(salla.auth.api.setAfterLoginEvent("landing::createCartFromPage",e),salla.event.dispatch("login::open"),salla.api.successPromise("")):this.request(["createCartFromPage",e]).then((function(t){return salla.event.landing.orderCreated(t,e).then((()=>location.href=t.data.url)),t})).catch((function(t){throw salla.event.landing.orderCreationFailed(t,e),t}))}}class x{constructor(){salla.event.on("twilight::initiated",(e=>this.initiateRequest(e))),salla.event.on("profile::info.fetched",(e=>this.setCurrencyAndLanguage(e))),salla.event.on("auth::token.fetched",(e=>{salla.storage.set("token",e),this.setToken(e),salla.cart.api.reset();})),this.notifier_handler_disabled=!1,this.axios=axios.create({headers:{common:{"X-Requested-With":"XMLHttpRequest","S-SOURCE":"twilight","S-APP-VERSION":"v2.0.0","S-APP-OS":"browser"}}});}getHeaders(){return this.axios.defaults.headers.common}setHeaders(e){return Object.entries(e).forEach((e=>this.setHeader(e[0],e[1]))),this}setHeader(e,t){return salla.infiniteScroll.fetchOptions.headers[e]=this.axios.defaults.headers.common[e]=t,this}async withoutNotifier(e){return this.notifier_handler_disabled=!0,await e().finally((()=>{this.notifier_handler_disabled=!1;}))}initiateRequest(e){this.axios.defaults.baseURL=Salla.config.get("store.api",Salla.config.get("store.url")),this.setHeaders({"Store-Identifier":Salla.config.get("store.id"),currency:e.user?.currency_code||"SAR","accept-language":salla.lang.getLocale(),"s-user-id":e.user?.id});let t=salla.storage.get("scope");t&&this.setHeaders({"s-scope-type":t.type,"s-scope-id":t.id}),this.injectTokenToTheRequests(e),salla.storage.get("affiliate_code")&&this.setHeader("s-affiliate-code",salla.storage.get("affiliate_code"));}injectTokenToTheRequests(e){let t=salla.storage.get("token"),a="guest"===e.user.type,s=salla.storage.get("cart"),r=e.user?.id,n=salla.storage.get("user.id");if(n&&n!==r&&(salla.log("Api:: case1 = >user in localStorage is not same as user in the config"),salla.storage.remove("user")),s&&(s.user_id!==r||s.store_id!==e.store?.id))return salla.log("cart",{user_id:s.user_id,store_id:s.store_id}),salla.log("current",{user_id:r,store_id:e.store?.id}),salla.log("Api:: case2 => The cart is not belong to current "+(s.user_id!==r?"user":"store")+"!"),void salla.cart.api.reset();if(a&&!t)return void salla.log("Api:: case3 => current user is a guest and there is no token");if(a&&t)return salla.log("Api:: case4 => there is a token and current user is guest"),salla.log("Auth:: Token without user!"),salla.storage.remove("token"),void salla.cart.api.reset();if(!t)return salla.log("Api:: case5 => current user is logged-in but there is no token"),salla.cart.api.reset(),void salla.auth.api.refresh();let l=o$1(t);return Date.now()/1e3>l.exp?(salla.log("Api:: case6 => current user is logged-in and there is a token, but it's expired"),salla.storage.remove("token"),salla.cart.api.reset(),void salla.auth.api.refresh()):l.sub!==r?(salla.log("Api:: case7 => The user id is not match the token details"),salla.storage.remove("token"),salla.cart.api.reset(),void salla.auth.api.refresh()):(this.setToken(t),salla.log("Api:: case8 => current user is logged-in and there is a token, and it's not expired"),void salla.event.emit("api::initiated"))}setToken(e){return this.setHeader("Authorization","Bearer "+e),salla.event.emit("api::token.injected",e),this.token=e,this}setCurrencyAndLanguage(e){return this.setHeaders({currency:e.data.currency,"accept-language":e.data.language})}request(e,t,a="get",s={}){let i={endPoint:e,payload:t,method:a,options:s},r="undefined"!=typeof event?event.currentTarget:null,n=!1;return "SALLA-BUTTON"===r?.tagName&&(n=!0),n&&r?.load(),this.axios[i.method](i.endPoint,i.payload,i.options).then((e=>(n&&r?.stop(),e.data&&e.request&&(e=e.data),this.handleAfterResponseActions(e),e))).catch((e=>{throw n&&r?.stop(),salla.event.document.requestFailed(i,e),this.handleErrorResponse(e),e}))}handleAfterResponseActions(e){if(!e)return;let{data:t,googleTags:a=null}=e,s=t&&t.googleTags?t.googleTags:a;dataLayer&&s&&dataLayer.push(s),this.fireEventsForResponse(e),this.showAlert(e);}fireEventsForResponse(e){let t=e?.events||e.data?.events||e.error?.events;"string"==typeof t&&(t=JSON.parse(t)),t&&Object.keys(t).forEach((e=>salla.event.dispatch(e,t[e])));}handleErrorResponse(e){if(e.response&&e.response.data)return e.response.data.error&&e.response.data.error.fields&&!this.notifier_handler_disabled?this.handleInvalidFields(e):this.handleAfterResponseActions(e.response.data)}showAlert(e){if(e&&!this.notifier_handler_disabled)return e.case&&e.msg?salla.notify.fire(e.msg,e.case,e):e.hasOwnProperty("success")&&e.data?.message?salla.notify.fire(e.data?.message,e.success?salla.notify.types.success:salla.notify.types.error,e):e.error&&e.error.message&&"FORBIDDEN"!==e.error.message?salla.error(e.error.message,e):void 0}handleInvalidFields(e){let t=e.response.data.error.fields,a=[];Object.keys(t).forEach((e=>{let s=t[e];Array.isArray(s)?s.forEach((e=>a.push(e))):a.push(s);}));let s=(a.length>1?"* ":"")+a.join("\n* ");salla.error(s,e);}isFastRequestsAllowed(){return Salla.config.get("fastRequests")}promise(e,t=!0){return new Promise(((a,s)=>t?a(e):s(e)))}errorPromise(e){return this.promise(e,!1)}successPromise(e){return this.promise(e,!0)}}class k{constructor(t){"ready"!==y$1.status?t?(y$1.config.merge(t),t?.events&&y$1.event.dispatchEvents(t?.events),t._token&&salla.api.setHeader("X-CSRF-TOKEN",t._token),this.injectMaintenanceAlert(),this.injectThemePreviewAlert(),this.injectEditAlert(),t?.user?.language_code&&salla.lang.setLocale(t?.user?.language_code),salla.lang.loadStoreTranslations(),this.setSallaReady(t)):this.setSallaReady(t):salla.log("Trying to re-initiate Salla, while its status === 'ready'!");}injectMaintenanceAlert(){salla.config.get("maintenance")&&(document.body.classList.add("has-maintenance-bar"),document.querySelector(".store-notify")?salla.logger.warn(".store-notify element Existed before!"):salla.lang.onLoaded((()=>{const e=document.createElement("div");e.classList.add("store-notify"),e.style="background-color: #d63031; color: #fff; padding: 10px 15px; text-align: center; font-size: 17px;",e.innerHTML=`<p style="margin:0 !important;">${salla.lang.get("blocks.header.maintenance_alert")}</p>`,document.body.prepend(e);})));}injectThemePreviewAlert(){"preview"===salla.config.get("theme.mode")&&(document.body.classList.add("has-preview-bar"),document.querySelector("#s-theme_preview_bar")?salla.logger.warn("#s-theme_preview_bar element Existed before!"):salla.lang.onLoaded((()=>{let e=document.createElement("div");e.id="s-theme_preview_bar",e.setAttribute("style","display: flex; justify-content: space-between; text-align: center; background-color: #232323; color: #fff; padding: 10px; font-size: 0.875rem; line-height: 1.25rem; position: relative;"),e.innerHTML=`\n <div style="display:flex; align-items:center;">\n <img width="32" src="https://assets.salla.sa/cp/assets/images/logo-new.png">\n <span style="margin:0 10px;">${salla.lang.get("blocks.header.preview_mode")}: <span style="background:rgba(255,255,255,0.25);border-radius:15px; padding:2px 15px 4px">${salla.config.get("theme.name")}</span></span>\n </div>\n <a href="${salla.url.get("preview_theme/cancel/preview")}" style="line-height:32px; width:32px;"><i class="sicon-cancel"></i></a>\n `,document.body.prepend(e);})));}injectEditAlert(){let e=salla.config.get("edit");e&&(document.querySelector("#s-edit-alert")?salla.logger.warn("#s-edit-alert element Existed before!"):salla.lang.onLoaded((()=>{let t=document.createElement("div");t.id="s-edit-alert",t.innerHTML=`\n <a href="${e}" style="display:block; background-color:${salla.config.get("theme.color.primary","#5cd5c4")}; color:${salla.config.get("theme.color.reverse","#fff")}; padding: 10px; text-align:center; font-size: 0.875rem; line-height: 1.25rem;">\n <i class="sicon-edit"></i> \n ${salla.lang.get("pages.products.quick_edit")}\n </a>\n `,document.body.prepend(t);})));}handleElementAjaxRequest(e,t){if(!(t instanceof HTMLFormElement||t instanceof HTMLAnchorElement))return salla.logger.warn("trying to call ajax from non Element!!"),!1;e.preventDefault();let a=t.getAjaxFormData(e),s=a.method?a.method.toLowerCase():void 0;salla.api.request(a.url,a.formData,s).then((e=>(e.data&&e.request&&(e=e.data),salla.api.handleAfterResponseActions(e),this.callAjaxEvent(a.events.success,e,a.formData),e))).catch((e=>{throw salla.api.handleErrorResponse(e),this.callAjaxEvent(a.events.fail,e,a.formData),e}));}callAjaxEvent(e,t,a){if(e){if(a instanceof FormData){const e={};Array.from(a.entries()).forEach((function(t){e[t[0]]=t[1];})),a=e;}window[e]?window[e](t,a):salla.event.dispatch(e,t,a);}}setSallaReady(t){y$1.status="ready",y$1.event.dispatch("twilight::initiated",t),window.dispatchEvent(new CustomEvent("twilight::initiated",{detail:t}));}}y$1.status="loading",y$1.notify=o,y$1.lang=new class extends lang{constructor(e){(e=e||{}).messages=e.messages||window.translations,e.locale=e.locale||(window.locale||navigator.language||navigator.userLanguage||"ar").split("-")[0],e.fallback=e.fallback||e.locale,super(e),this.translationsLoaded=!1;}onLoaded(e){if(this.translationsLoaded)return e();Salla.event.once("languages::translations.loaded",e);}loadStoreTranslations(){if(this.hash=salla.config.get("theme.translations_hash",salla.config.get("store.id","twilight")),this.message||(salla.log("try to load translations from localstorage"),this.messages=salla.storage.get(`s_translations.${this.hash}`),this.messages&&(this.translationsLoaded=!0)&&super.setMessages(this.messages)),this.messages)return salla.event.dispatch("languages::translations.loaded"),void salla.logger.info("The messages of transactions is already loaded");salla.url.get("")?this.loadScript(salla.url.get(`languages/assets/${this.hash}.js`)):this.loadScript("https://cdn.salla.network/js/translations.js",!1);}setMessages(e){super.setMessages(e),salla.event.dispatch("languages::translations.loaded"),this.translationsLoaded=!0;}loadScript(e,t=!0){let a=document.createElement("script");a.src=e,a.onload=()=>{if(window.translations)return salla.storage.remove("s_translations"),salla.storage.set("s_translations",{[this.hash]:window.translations}),this.setMessages(window.translations);a.onerror();},a.onerror=()=>{if(t)return salla.logger.warn("Failed to load Translations for store, lets try load it from CDN"),this.loadScript("https://cdn.salla.network/js/translations.js",!1);salla.logger.error("Failed to load Translations, check your network logs for more details\nor: salla.lang.setMessages({....}), see https://docs.salla.dev for more information's.");},document.head.appendChild(a);}get(e,t,a){let s=e;(window.translations||this.translationsLoaded)&&(s="trans."+e);let i=super.get(s,t,a);return i!==s?i:super.get(s,t,"en").replace(s,e)}set(e,t){return salla.helpers.setNested(this.messages[this.getLocale()+".trans"],e,t),this}},y$1.form=new class{async submit(e,t=null){let a=t;if("SubmitEvent"===t?.constructor?.name||"submit"===t?.type){if(t.preventDefault(),"FORM"!==t.target?.tagName)return Salla.logger.warn("Failed find the target element for submit action. make sure you submit a form element"),new Promise((()=>{throw "Failed find the target element for submit action. make sure you submit a form element"}));"SALLA-BUTTON"===t?.submitter?.parentElement?.tagName&&t.submitter.parentElement.load(),a=t.target.getElementSallaData(),salla.log("Data from element",a);}if(/^https?:\/\/(?:www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)$/gm.test(e))return salla.api.request(e,a,"post").finally((()=>{loaderSupported&&t?.submitter?.parentElement.stop();}));let s=e.split("."),i=s.splice(-1);return await salla.call(s.join("."))[i](a).finally((()=>t?.submitter?.parentElement?.stop())).catch((e=>{throw salla.logger.warn(e),e}))}onSubmit(e,t){return salla.form.submit(e,t),!1}onChange(e,t){return t?.currentTarget?"FORM"!==t?.currentTarget?.tagName||t.currentTarget.checkValidity()?(salla.form.submit(e,t.currentTarget.getElementSallaData()),!0):(salla.logger.warn(`Trying to trigger '${e}' without filling required fields!`),!1):(salla.logger.warn(`Trying to trigger '${e}' without event!`),!1)}getPossibleValue(e,t,a=!1){if(!e)return;if("object"!=typeof e)return e;let s;for(let a=0;a<t.length&&!(s=e[t[a]])&&!("undefined"!=typeof FormData&&e instanceof FormData&&(s=e.get(t[a])));a++);return s=s||e,"object"!=typeof s||a?s:void 0}},y$1.infiniteScroll=new class extends d{constructor(e,t){super(e,t),this.options={path:".infinite-scroll-btn",history:"push",status:".infinite-scroll-status",append:".list-block"},this.fetchOptions={headers:{"S-INFINITE-SCROLL":!0}},this.instances=[];}initiate(e,a,s){s=this.getCustomOptions(a,s);let i="string"!=typeof e?e:document.querySelector(e),r=s.path;if(!i||!r||"string"==typeof r&&!document.querySelector(r))return void Salla.logger.warn(i?"Path Option (a link that has next page link) Not Existed!":"Container For InfiniteScroll not Existed!");let n=new js(i,s);return n.on("scrollThreshold",Salla.infiniteScroll.event.scrollThreshold),n.on("request",Salla.infiniteScroll.event.request),n.on("load",Salla.infiniteScroll.event.load),n.on("append",Salla.infiniteScroll.event.append),n.on("error",Salla.infiniteScroll.event.error),n.on("last",Salla.infiniteScroll.event.last),n.on("history",Salla.infiniteScroll.event.history),this.instances.push(n),n}getCustomOptions(e,t){return (t="object"==typeof e&&e||t||this.options).fetchOptions=this.fetchOptions,t.path=t.path||this.options.path,t.button=t.button||t.path,t.status=t.status||this.options.status,t.hasOwnProperty("history")||(t.history=this.options.history),t.nextPage=t.nextPage||t.next_page,t.append="string"==typeof e&&e||t.append||this.options.append,t}}(void 0,salla.event.infiniteScroll),y$1.api=new class extends x{constructor(){super(),this.auth=new f,this.cart=new p,this.loyalty=new g,this.order=new m,this.rating=new S,this.product=new v,this.profile=new y,this.comment=new w,this.currency=new F,this.document=new b,this.wishlist=new _,this.scope=new q,this.booking=new A,this.landing=new C;}},["cart","auth","order","scope","rating","comment","loyalty","product","profile","currency","document","wishlist","booking","landing"].forEach((t=>y$1[t]=new d(y$1.api[t],y$1.event[t]))),y$1.call=t=>{let a=y$1,s=t.split(".");for(;s.length&&(a=a[s.shift()]););return a},y$1.init=e=>new k(e),salla.event.once("twilight::init",salla.init),salla.event.once("twilight::api",(e=>{let t=e?.events;t&&salla.event.dispatchEvents(t);})),y$1.success=y$1.notify.success,y$1.error=y$1.notify.error,y$1.versions.twilight="[VI]{version}[/VI]",y$1.onInitiated=e=>salla.event.once("twilight::initiated",e),y$1.onReady=y$1.onReady||function(t){"ready"!==salla.status?y$1.onInitiated(t):t(salla.config.all());},window.dispatchEvent(new CustomEvent("salla::created"));
|
|
7560
9528
|
|
|
7561
9529
|
var lazyload_min = createCommonjsModule(function (module, exports) {
|
|
7562
9530
|
!function(n,t){module.exports=t();}(commonjsGlobal,(function(){function n(){return n=Object.assign||function(n){for(var t=1;t<arguments.length;t++){var e=arguments[t];for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(n[i]=e[i]);}return n},n.apply(this,arguments)}var t="undefined"!=typeof window,e=t&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),i=t&&"IntersectionObserver"in window,o=t&&"classList"in document.createElement("p"),a=t&&window.devicePixelRatio>1,r={elements_selector:".lazy",container:e||t?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_bg_set:"bg-set",data_poster:"poster",class_applied:"applied",class_loading:"loading",class_loaded:"loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1,restore_on_error:!1},c=function(t){return n({},r,t)},l=function(n,t){var e,i="LazyLoad::Initialized",o=new n(t);try{e=new CustomEvent(i,{detail:{instance:o}});}catch(n){(e=document.createEvent("CustomEvent")).initCustomEvent(i,!1,!1,{instance:o});}window.dispatchEvent(e);},u="src",s="srcset",d="sizes",f="poster",_="llOriginalAttrs",g="data",v="loading",b="loaded",m="applied",p="error",h="native",E="data-",I="ll-status",y=function(n,t){return n.getAttribute(E+t)},k=function(n){return y(n,I)},w=function(n,t){return function(n,t,e){var i="data-ll-status";null!==e?n.setAttribute(i,e):n.removeAttribute(i);}(n,0,t)},A=function(n){return w(n,null)},L=function(n){return null===k(n)},O=function(n){return k(n)===h},x=[v,b,m,p],C=function(n,t,e,i){n&&(void 0===i?void 0===e?n(t):n(t,e):n(t,e,i));},N=function(n,t){o?n.classList.add(t):n.className+=(n.className?" ":"")+t;},M=function(n,t){o?n.classList.remove(t):n.className=n.className.replace(new RegExp("(^|\\s+)"+t+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"");},z=function(n){return n.llTempImage},T=function(n,t){if(t){var e=t._observer;e&&e.unobserve(n);}},R=function(n,t){n&&(n.loadingCount+=t);},G=function(n,t){n&&(n.toLoadCount=t);},j=function(n){for(var t,e=[],i=0;t=n.children[i];i+=1)"SOURCE"===t.tagName&&e.push(t);return e},D=function(n,t){var e=n.parentNode;e&&"PICTURE"===e.tagName&&j(e).forEach(t);},H=function(n,t){j(n).forEach(t);},V=[u],F=[u,f],B=[u,s,d],J=[g],P=function(n){return !!n[_]},S=function(n){return n[_]},U=function(n){return delete n[_]},$=function(n,t){if(!P(n)){var e={};t.forEach((function(t){e[t]=n.getAttribute(t);})),n[_]=e;}},q=function(n,t){if(P(n)){var e=S(n);t.forEach((function(t){!function(n,t,e){e?n.setAttribute(t,e):n.removeAttribute(t);}(n,t,e[t]);}));}},K=function(n,t,e){N(n,t.class_applied),w(n,m),e&&(t.unobserve_completed&&T(n,t),C(t.callback_applied,n,e));},Q=function(n,t,e){N(n,t.class_loading),w(n,v),e&&(R(e,1),C(t.callback_loading,n,e));},W=function(n,t,e){e&&n.setAttribute(t,e);},X=function(n,t){W(n,d,y(n,t.data_sizes)),W(n,s,y(n,t.data_srcset)),W(n,u,y(n,t.data_src));},Y={IMG:function(n,t){D(n,(function(n){$(n,B),X(n,t);})),$(n,B),X(n,t);},IFRAME:function(n,t){$(n,V),W(n,u,y(n,t.data_src));},VIDEO:function(n,t){H(n,(function(n){$(n,V),W(n,u,y(n,t.data_src));})),$(n,F),W(n,f,y(n,t.data_poster)),W(n,u,y(n,t.data_src)),n.load();},OBJECT:function(n,t){$(n,J),W(n,g,y(n,t.data_src));}},Z=["IMG","IFRAME","VIDEO","OBJECT"],nn=function(n,t){!t||function(n){return n.loadingCount>0}(t)||function(n){return n.toLoadCount>0}(t)||C(n.callback_finish,t);},tn=function(n,t,e){n.addEventListener(t,e),n.llEvLisnrs[t]=e;},en=function(n,t,e){n.removeEventListener(t,e);},on=function(n){return !!n.llEvLisnrs},an=function(n){if(on(n)){var t=n.llEvLisnrs;for(var e in t){var i=t[e];en(n,e,i);}delete n.llEvLisnrs;}},rn=function(n,t,e){!function(n){delete n.llTempImage;}(n),R(e,-1),function(n){n&&(n.toLoadCount-=1);}(e),M(n,t.class_loading),t.unobserve_completed&&T(n,e);},cn=function(n,t,e){var i=z(n)||n;on(i)||function(n,t,e){on(n)||(n.llEvLisnrs={});var i="VIDEO"===n.tagName?"loadeddata":"load";tn(n,i,t),tn(n,"error",e);}(i,(function(o){!function(n,t,e,i){var o=O(t);rn(t,e,i),N(t,e.class_loaded),w(t,b),C(e.callback_loaded,t,i),o||nn(e,i);}(0,n,t,e),an(i);}),(function(o){!function(n,t,e,i){var o=O(t);rn(t,e,i),N(t,e.class_error),w(t,p),C(e.callback_error,t,i),e.restore_on_error&&q(t,B),o||nn(e,i);}(0,n,t,e),an(i);}));},ln=function(n,t,e){!function(n){return Z.indexOf(n.tagName)>-1}(n)?function(n,t,e){!function(n){n.llTempImage=document.createElement("IMG");}(n),cn(n,t,e),function(n){P(n)||(n[_]={backgroundImage:n.style.backgroundImage});}(n),function(n,t,e){var i=y(n,t.data_bg),o=y(n,t.data_bg_hidpi),r=a&&o?o:i;r&&(n.style.backgroundImage='url("'.concat(r,'")'),z(n).setAttribute(u,r),Q(n,t,e));}(n,t,e),function(n,t,e){var i=y(n,t.data_bg_multi),o=y(n,t.data_bg_multi_hidpi),r=a&&o?o:i;r&&(n.style.backgroundImage=r,K(n,t,e));}(n,t,e),function(n,t,e){var i=y(n,t.data_bg_set);if(i){var o=i.split("|"),a=o.map((function(n){return "image-set(".concat(n,")")}));n.style.backgroundImage=a.join(),""===n.style.backgroundImage&&(a=o.map((function(n){return "-webkit-image-set(".concat(n,")")})),n.style.backgroundImage=a.join()),K(n,t,e);}}(n,t,e);}(n,t,e):function(n,t,e){cn(n,t,e),function(n,t,e){var i=Y[n.tagName];i&&(i(n,t),Q(n,t,e));}(n,t,e);}(n,t,e);},un=function(n){n.removeAttribute(u),n.removeAttribute(s),n.removeAttribute(d);},sn=function(n){D(n,(function(n){q(n,B);})),q(n,B);},dn={IMG:sn,IFRAME:function(n){q(n,V);},VIDEO:function(n){H(n,(function(n){q(n,V);})),q(n,F),n.load();},OBJECT:function(n){q(n,J);}},fn=function(n,t){(function(n){var t=dn[n.tagName];t?t(n):function(n){if(P(n)){var t=S(n);n.style.backgroundImage=t.backgroundImage;}}(n);})(n),function(n,t){L(n)||O(n)||(M(n,t.class_entered),M(n,t.class_exited),M(n,t.class_applied),M(n,t.class_loading),M(n,t.class_loaded),M(n,t.class_error));}(n,t),A(n),U(n);},_n=["IMG","IFRAME","VIDEO"],gn=function(n){return n.use_native&&"loading"in HTMLImageElement.prototype},vn=function(n,t,e){n.forEach((function(n){return function(n){return n.isIntersecting||n.intersectionRatio>0}(n)?function(n,t,e,i){var o=function(n){return x.indexOf(k(n))>=0}(n);w(n,"entered"),N(n,e.class_entered),M(n,e.class_exited),function(n,t,e){t.unobserve_entered&&T(n,e);}(n,e,i),C(e.callback_enter,n,t,i),o||ln(n,e,i);}(n.target,n,t,e):function(n,t,e,i){L(n)||(N(n,e.class_exited),function(n,t,e,i){e.cancel_on_exit&&function(n){return k(n)===v}(n)&&"IMG"===n.tagName&&(an(n),function(n){D(n,(function(n){un(n);})),un(n);}(n),sn(n),M(n,e.class_loading),R(i,-1),A(n),C(e.callback_cancel,n,t,i));}(n,t,e,i),C(e.callback_exit,n,t,i));}(n.target,n,t,e)}));},bn=function(n){return Array.prototype.slice.call(n)},mn=function(n){return n.container.querySelectorAll(n.elements_selector)},pn=function(n){return function(n){return k(n)===p}(n)},hn=function(n,t){return function(n){return bn(n).filter(L)}(n||mn(t))},En=function(n,e){var o=c(n);this._settings=o,this.loadingCount=0,function(n,t){i&&!gn(n)&&(t._observer=new IntersectionObserver((function(e){vn(e,n,t);}),function(n){return {root:n.container===document?null:n.container,rootMargin:n.thresholds||n.threshold+"px"}}(n)));}(o,this),function(n,e){t&&(e._onlineHandler=function(){!function(n,t){var e;(e=mn(n),bn(e).filter(pn)).forEach((function(t){M(t,n.class_error),A(t);})),t.update();}(n,e);},window.addEventListener("online",e._onlineHandler));}(o,this),this.update(e);};return En.prototype={update:function(n){var t,o,a=this._settings,r=hn(n,a);G(this,r.length),!e&&i?gn(a)?function(n,t,e){n.forEach((function(n){-1!==_n.indexOf(n.tagName)&&function(n,t,e){n.setAttribute("loading","lazy"),cn(n,t,e),function(n,t){var e=Y[n.tagName];e&&e(n,t);}(n,t),w(n,h);}(n,t,e);})),G(e,0);}(r,a,this):(o=r,function(n){n.disconnect();}(t=this._observer),function(n,t){t.forEach((function(t){n.observe(t);}));}(t,o)):this.loadAll(r);},destroy:function(){this._observer&&this._observer.disconnect(),t&&window.removeEventListener("online",this._onlineHandler),mn(this._settings).forEach((function(n){U(n);})),delete this._observer,delete this._settings,delete this._onlineHandler,delete this.loadingCount,delete this.toLoadCount;},loadAll:function(n){var t=this,e=this._settings;hn(n,e).forEach((function(n){T(n,t),ln(n,e,t);}));},restoreAll:function(){var n=this._settings;mn(n).forEach((function(t){fn(t,n);}));}},En.load=function(n,t){var e=c(t);ln(n,e);},En.resetStatus=function(n){A(n);},t&&function(n,t){if(t)if(t.length)for(var e,i=0;e=t[i];i+=1)l(n,e);else l(n,t);}(En,window.lazyLoadOptions),En}));
|