pinme 1.1.4-alpha.1 → 1.1.4-alpha.2
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/index.js +1468 -813
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
#!/usr/bin/env node
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -8,6 +9,10 @@ var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
|
8
9
|
var __commonJS = (cb, mod) => function __require() {
|
|
9
10
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
10
11
|
};
|
|
12
|
+
var __export = (target, all3) => {
|
|
13
|
+
for (var name in all3)
|
|
14
|
+
__defProp(target, name, { get: all3[name], enumerable: true });
|
|
15
|
+
};
|
|
11
16
|
var __copyProps = (to, from, except, desc) => {
|
|
12
17
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
18
|
for (let key of __getOwnPropNames(from))
|
|
@@ -25,9 +30,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
25
30
|
mod
|
|
26
31
|
));
|
|
27
32
|
|
|
28
|
-
// node_modules
|
|
33
|
+
// node_modules/dotenv/package.json
|
|
29
34
|
var require_package = __commonJS({
|
|
30
|
-
"node_modules
|
|
35
|
+
"node_modules/dotenv/package.json"(exports2, module2) {
|
|
31
36
|
module2.exports = {
|
|
32
37
|
name: "dotenv",
|
|
33
38
|
version: "16.5.0",
|
|
@@ -93,13 +98,13 @@ var require_package = __commonJS({
|
|
|
93
98
|
}
|
|
94
99
|
});
|
|
95
100
|
|
|
96
|
-
// node_modules
|
|
101
|
+
// node_modules/dotenv/lib/main.js
|
|
97
102
|
var require_main = __commonJS({
|
|
98
|
-
"node_modules
|
|
103
|
+
"node_modules/dotenv/lib/main.js"(exports2, module2) {
|
|
99
104
|
var fs6 = require("fs");
|
|
100
105
|
var path6 = require("path");
|
|
101
106
|
var os3 = require("os");
|
|
102
|
-
var
|
|
107
|
+
var crypto3 = require("crypto");
|
|
103
108
|
var packageJson = require_package();
|
|
104
109
|
var version2 = packageJson.version;
|
|
105
110
|
var LINE = /(?:^|^)\s*(?:export\s+)?([\w.-]+)(?:\s*=\s*?|:\s+?)(\s*'(?:\\'|[^'])*'|\s*"(?:\\"|[^"])*"|\s*`(?:\\`|[^`])*`|[^#\r\n]+)?\s*(?:#.*)?(?:$|$)/mg;
|
|
@@ -295,7 +300,7 @@ var require_main = __commonJS({
|
|
|
295
300
|
const authTag = ciphertext.subarray(-16);
|
|
296
301
|
ciphertext = ciphertext.subarray(12, -16);
|
|
297
302
|
try {
|
|
298
|
-
const aesgcm =
|
|
303
|
+
const aesgcm = crypto3.createDecipheriv("aes-256-gcm", key, nonce);
|
|
299
304
|
aesgcm.setAuthTag(authTag);
|
|
300
305
|
return `${aesgcm.update(ciphertext)}${aesgcm.final()}`;
|
|
301
306
|
} catch (error) {
|
|
@@ -360,9 +365,9 @@ var require_main = __commonJS({
|
|
|
360
365
|
}
|
|
361
366
|
});
|
|
362
367
|
|
|
363
|
-
// node_modules
|
|
368
|
+
// node_modules/proxy-from-env/index.js
|
|
364
369
|
var require_proxy_from_env = __commonJS({
|
|
365
|
-
"node_modules
|
|
370
|
+
"node_modules/proxy-from-env/index.js"(exports2) {
|
|
366
371
|
"use strict";
|
|
367
372
|
var parseUrl = require("url").parse;
|
|
368
373
|
var DEFAULT_PORTS = {
|
|
@@ -376,7 +381,7 @@ var require_proxy_from_env = __commonJS({
|
|
|
376
381
|
var stringEndsWith = String.prototype.endsWith || function(s) {
|
|
377
382
|
return s.length <= this.length && this.indexOf(s, this.length - s.length) !== -1;
|
|
378
383
|
};
|
|
379
|
-
function
|
|
384
|
+
function getProxyForUrl(url2) {
|
|
380
385
|
var parsedUrl = typeof url2 === "string" ? parseUrl(url2) : url2 || {};
|
|
381
386
|
var proto = parsedUrl.protocol;
|
|
382
387
|
var hostname = parsedUrl.host;
|
|
@@ -426,13 +431,13 @@ var require_proxy_from_env = __commonJS({
|
|
|
426
431
|
function getEnv(key) {
|
|
427
432
|
return process.env[key.toLowerCase()] || process.env[key.toUpperCase()] || "";
|
|
428
433
|
}
|
|
429
|
-
exports2.getProxyForUrl =
|
|
434
|
+
exports2.getProxyForUrl = getProxyForUrl;
|
|
430
435
|
}
|
|
431
436
|
});
|
|
432
437
|
|
|
433
|
-
// node_modules
|
|
438
|
+
// node_modules/ms/index.js
|
|
434
439
|
var require_ms = __commonJS({
|
|
435
|
-
"node_modules
|
|
440
|
+
"node_modules/ms/index.js"(exports2, module2) {
|
|
436
441
|
var s = 1e3;
|
|
437
442
|
var m = s * 60;
|
|
438
443
|
var h = m * 60;
|
|
@@ -546,10 +551,9 @@ var require_ms = __commonJS({
|
|
|
546
551
|
}
|
|
547
552
|
});
|
|
548
553
|
|
|
549
|
-
// node_modules
|
|
554
|
+
// node_modules/debug/src/common.js
|
|
550
555
|
var require_common = __commonJS({
|
|
551
|
-
"node_modules
|
|
552
|
-
"use strict";
|
|
556
|
+
"node_modules/debug/src/common.js"(exports2, module2) {
|
|
553
557
|
function setup(env) {
|
|
554
558
|
createDebug.debug = createDebug;
|
|
555
559
|
createDebug.default = createDebug;
|
|
@@ -558,16 +562,16 @@ var require_common = __commonJS({
|
|
|
558
562
|
createDebug.enable = enable;
|
|
559
563
|
createDebug.enabled = enabled;
|
|
560
564
|
createDebug.humanize = require_ms();
|
|
561
|
-
|
|
565
|
+
createDebug.destroy = destroy;
|
|
566
|
+
Object.keys(env).forEach((key) => {
|
|
562
567
|
createDebug[key] = env[key];
|
|
563
568
|
});
|
|
564
|
-
createDebug.instances = [];
|
|
565
569
|
createDebug.names = [];
|
|
566
570
|
createDebug.skips = [];
|
|
567
571
|
createDebug.formatters = {};
|
|
568
572
|
function selectColor(namespace) {
|
|
569
|
-
|
|
570
|
-
for (
|
|
573
|
+
let hash = 0;
|
|
574
|
+
for (let i = 0; i < namespace.length; i++) {
|
|
571
575
|
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
|
572
576
|
hash |= 0;
|
|
573
577
|
}
|
|
@@ -575,17 +579,17 @@ var require_common = __commonJS({
|
|
|
575
579
|
}
|
|
576
580
|
createDebug.selectColor = selectColor;
|
|
577
581
|
function createDebug(namespace) {
|
|
578
|
-
|
|
579
|
-
|
|
582
|
+
let prevTime;
|
|
583
|
+
let enableOverride = null;
|
|
584
|
+
let namespacesCache;
|
|
585
|
+
let enabledCache;
|
|
586
|
+
function debug(...args) {
|
|
580
587
|
if (!debug.enabled) {
|
|
581
588
|
return;
|
|
582
589
|
}
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
var self2 = debug;
|
|
587
|
-
var curr = Number(/* @__PURE__ */ new Date());
|
|
588
|
-
var ms = curr - (prevTime || curr);
|
|
590
|
+
const self2 = debug;
|
|
591
|
+
const curr = Number(/* @__PURE__ */ new Date());
|
|
592
|
+
const ms = curr - (prevTime || curr);
|
|
589
593
|
self2.diff = ms;
|
|
590
594
|
self2.prev = prevTime;
|
|
591
595
|
self2.curr = curr;
|
|
@@ -594,15 +598,15 @@ var require_common = __commonJS({
|
|
|
594
598
|
if (typeof args[0] !== "string") {
|
|
595
599
|
args.unshift("%O");
|
|
596
600
|
}
|
|
597
|
-
|
|
598
|
-
args[0] = args[0].replace(/%([a-zA-Z%])/g,
|
|
601
|
+
let index = 0;
|
|
602
|
+
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
599
603
|
if (match === "%%") {
|
|
600
|
-
return
|
|
604
|
+
return "%";
|
|
601
605
|
}
|
|
602
606
|
index++;
|
|
603
|
-
|
|
607
|
+
const formatter = createDebug.formatters[format];
|
|
604
608
|
if (typeof formatter === "function") {
|
|
605
|
-
|
|
609
|
+
const val = args[index];
|
|
606
610
|
match = formatter.call(self2, val);
|
|
607
611
|
args.splice(index, 1);
|
|
608
612
|
index--;
|
|
@@ -610,71 +614,99 @@ var require_common = __commonJS({
|
|
|
610
614
|
return match;
|
|
611
615
|
});
|
|
612
616
|
createDebug.formatArgs.call(self2, args);
|
|
613
|
-
|
|
617
|
+
const logFn = self2.log || createDebug.log;
|
|
614
618
|
logFn.apply(self2, args);
|
|
615
619
|
}
|
|
616
620
|
debug.namespace = namespace;
|
|
617
|
-
debug.enabled = createDebug.enabled(namespace);
|
|
618
621
|
debug.useColors = createDebug.useColors();
|
|
619
|
-
debug.color = selectColor(namespace);
|
|
620
|
-
debug.destroy = destroy;
|
|
622
|
+
debug.color = createDebug.selectColor(namespace);
|
|
621
623
|
debug.extend = extend2;
|
|
624
|
+
debug.destroy = createDebug.destroy;
|
|
625
|
+
Object.defineProperty(debug, "enabled", {
|
|
626
|
+
enumerable: true,
|
|
627
|
+
configurable: false,
|
|
628
|
+
get: () => {
|
|
629
|
+
if (enableOverride !== null) {
|
|
630
|
+
return enableOverride;
|
|
631
|
+
}
|
|
632
|
+
if (namespacesCache !== createDebug.namespaces) {
|
|
633
|
+
namespacesCache = createDebug.namespaces;
|
|
634
|
+
enabledCache = createDebug.enabled(namespace);
|
|
635
|
+
}
|
|
636
|
+
return enabledCache;
|
|
637
|
+
},
|
|
638
|
+
set: (v) => {
|
|
639
|
+
enableOverride = v;
|
|
640
|
+
}
|
|
641
|
+
});
|
|
622
642
|
if (typeof createDebug.init === "function") {
|
|
623
643
|
createDebug.init(debug);
|
|
624
644
|
}
|
|
625
|
-
createDebug.instances.push(debug);
|
|
626
645
|
return debug;
|
|
627
646
|
}
|
|
628
|
-
function destroy() {
|
|
629
|
-
var index = createDebug.instances.indexOf(this);
|
|
630
|
-
if (index !== -1) {
|
|
631
|
-
createDebug.instances.splice(index, 1);
|
|
632
|
-
return true;
|
|
633
|
-
}
|
|
634
|
-
return false;
|
|
635
|
-
}
|
|
636
647
|
function extend2(namespace, delimiter) {
|
|
637
|
-
|
|
648
|
+
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
649
|
+
newDebug.log = this.log;
|
|
650
|
+
return newDebug;
|
|
638
651
|
}
|
|
639
652
|
function enable(namespaces) {
|
|
640
653
|
createDebug.save(namespaces);
|
|
654
|
+
createDebug.namespaces = namespaces;
|
|
641
655
|
createDebug.names = [];
|
|
642
656
|
createDebug.skips = [];
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
657
|
+
const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
|
|
658
|
+
for (const ns of split) {
|
|
659
|
+
if (ns[0] === "-") {
|
|
660
|
+
createDebug.skips.push(ns.slice(1));
|
|
661
|
+
} else {
|
|
662
|
+
createDebug.names.push(ns);
|
|
649
663
|
}
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
function matchesTemplate(search, template) {
|
|
667
|
+
let searchIndex = 0;
|
|
668
|
+
let templateIndex = 0;
|
|
669
|
+
let starIndex = -1;
|
|
670
|
+
let matchIndex = 0;
|
|
671
|
+
while (searchIndex < search.length) {
|
|
672
|
+
if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
|
|
673
|
+
if (template[templateIndex] === "*") {
|
|
674
|
+
starIndex = templateIndex;
|
|
675
|
+
matchIndex = searchIndex;
|
|
676
|
+
templateIndex++;
|
|
677
|
+
} else {
|
|
678
|
+
searchIndex++;
|
|
679
|
+
templateIndex++;
|
|
680
|
+
}
|
|
681
|
+
} else if (starIndex !== -1) {
|
|
682
|
+
templateIndex = starIndex + 1;
|
|
683
|
+
matchIndex++;
|
|
684
|
+
searchIndex = matchIndex;
|
|
653
685
|
} else {
|
|
654
|
-
|
|
686
|
+
return false;
|
|
655
687
|
}
|
|
656
688
|
}
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
instance.enabled = createDebug.enabled(instance.namespace);
|
|
689
|
+
while (templateIndex < template.length && template[templateIndex] === "*") {
|
|
690
|
+
templateIndex++;
|
|
660
691
|
}
|
|
692
|
+
return templateIndex === template.length;
|
|
661
693
|
}
|
|
662
694
|
function disable() {
|
|
695
|
+
const namespaces = [
|
|
696
|
+
...createDebug.names,
|
|
697
|
+
...createDebug.skips.map((namespace) => "-" + namespace)
|
|
698
|
+
].join(",");
|
|
663
699
|
createDebug.enable("");
|
|
700
|
+
return namespaces;
|
|
664
701
|
}
|
|
665
702
|
function enabled(name) {
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
}
|
|
669
|
-
var i;
|
|
670
|
-
var len;
|
|
671
|
-
for (i = 0, len = createDebug.skips.length; i < len; i++) {
|
|
672
|
-
if (createDebug.skips[i].test(name)) {
|
|
703
|
+
for (const skip of createDebug.skips) {
|
|
704
|
+
if (matchesTemplate(name, skip)) {
|
|
673
705
|
return false;
|
|
674
706
|
}
|
|
675
707
|
}
|
|
676
|
-
for (
|
|
677
|
-
if (
|
|
708
|
+
for (const ns of createDebug.names) {
|
|
709
|
+
if (matchesTemplate(name, ns)) {
|
|
678
710
|
return true;
|
|
679
711
|
}
|
|
680
712
|
}
|
|
@@ -686,6 +718,9 @@ var require_common = __commonJS({
|
|
|
686
718
|
}
|
|
687
719
|
return val;
|
|
688
720
|
}
|
|
721
|
+
function destroy() {
|
|
722
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
723
|
+
}
|
|
689
724
|
createDebug.enable(createDebug.load());
|
|
690
725
|
return createDebug;
|
|
691
726
|
}
|
|
@@ -693,29 +728,101 @@ var require_common = __commonJS({
|
|
|
693
728
|
}
|
|
694
729
|
});
|
|
695
730
|
|
|
696
|
-
// node_modules
|
|
731
|
+
// node_modules/debug/src/browser.js
|
|
697
732
|
var require_browser = __commonJS({
|
|
698
|
-
"node_modules
|
|
699
|
-
"use strict";
|
|
700
|
-
function _typeof(obj) {
|
|
701
|
-
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
|
702
|
-
_typeof = function _typeof2(obj2) {
|
|
703
|
-
return typeof obj2;
|
|
704
|
-
};
|
|
705
|
-
} else {
|
|
706
|
-
_typeof = function _typeof2(obj2) {
|
|
707
|
-
return obj2 && typeof Symbol === "function" && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
|
|
708
|
-
};
|
|
709
|
-
}
|
|
710
|
-
return _typeof(obj);
|
|
711
|
-
}
|
|
712
|
-
exports2.log = log;
|
|
733
|
+
"node_modules/debug/src/browser.js"(exports2, module2) {
|
|
713
734
|
exports2.formatArgs = formatArgs;
|
|
714
735
|
exports2.save = save;
|
|
715
736
|
exports2.load = load;
|
|
716
737
|
exports2.useColors = useColors;
|
|
717
738
|
exports2.storage = localstorage();
|
|
718
|
-
exports2.
|
|
739
|
+
exports2.destroy = /* @__PURE__ */ (() => {
|
|
740
|
+
let warned = false;
|
|
741
|
+
return () => {
|
|
742
|
+
if (!warned) {
|
|
743
|
+
warned = true;
|
|
744
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
745
|
+
}
|
|
746
|
+
};
|
|
747
|
+
})();
|
|
748
|
+
exports2.colors = [
|
|
749
|
+
"#0000CC",
|
|
750
|
+
"#0000FF",
|
|
751
|
+
"#0033CC",
|
|
752
|
+
"#0033FF",
|
|
753
|
+
"#0066CC",
|
|
754
|
+
"#0066FF",
|
|
755
|
+
"#0099CC",
|
|
756
|
+
"#0099FF",
|
|
757
|
+
"#00CC00",
|
|
758
|
+
"#00CC33",
|
|
759
|
+
"#00CC66",
|
|
760
|
+
"#00CC99",
|
|
761
|
+
"#00CCCC",
|
|
762
|
+
"#00CCFF",
|
|
763
|
+
"#3300CC",
|
|
764
|
+
"#3300FF",
|
|
765
|
+
"#3333CC",
|
|
766
|
+
"#3333FF",
|
|
767
|
+
"#3366CC",
|
|
768
|
+
"#3366FF",
|
|
769
|
+
"#3399CC",
|
|
770
|
+
"#3399FF",
|
|
771
|
+
"#33CC00",
|
|
772
|
+
"#33CC33",
|
|
773
|
+
"#33CC66",
|
|
774
|
+
"#33CC99",
|
|
775
|
+
"#33CCCC",
|
|
776
|
+
"#33CCFF",
|
|
777
|
+
"#6600CC",
|
|
778
|
+
"#6600FF",
|
|
779
|
+
"#6633CC",
|
|
780
|
+
"#6633FF",
|
|
781
|
+
"#66CC00",
|
|
782
|
+
"#66CC33",
|
|
783
|
+
"#9900CC",
|
|
784
|
+
"#9900FF",
|
|
785
|
+
"#9933CC",
|
|
786
|
+
"#9933FF",
|
|
787
|
+
"#99CC00",
|
|
788
|
+
"#99CC33",
|
|
789
|
+
"#CC0000",
|
|
790
|
+
"#CC0033",
|
|
791
|
+
"#CC0066",
|
|
792
|
+
"#CC0099",
|
|
793
|
+
"#CC00CC",
|
|
794
|
+
"#CC00FF",
|
|
795
|
+
"#CC3300",
|
|
796
|
+
"#CC3333",
|
|
797
|
+
"#CC3366",
|
|
798
|
+
"#CC3399",
|
|
799
|
+
"#CC33CC",
|
|
800
|
+
"#CC33FF",
|
|
801
|
+
"#CC6600",
|
|
802
|
+
"#CC6633",
|
|
803
|
+
"#CC9900",
|
|
804
|
+
"#CC9933",
|
|
805
|
+
"#CCCC00",
|
|
806
|
+
"#CCCC33",
|
|
807
|
+
"#FF0000",
|
|
808
|
+
"#FF0033",
|
|
809
|
+
"#FF0066",
|
|
810
|
+
"#FF0099",
|
|
811
|
+
"#FF00CC",
|
|
812
|
+
"#FF00FF",
|
|
813
|
+
"#FF3300",
|
|
814
|
+
"#FF3333",
|
|
815
|
+
"#FF3366",
|
|
816
|
+
"#FF3399",
|
|
817
|
+
"#FF33CC",
|
|
818
|
+
"#FF33FF",
|
|
819
|
+
"#FF6600",
|
|
820
|
+
"#FF6633",
|
|
821
|
+
"#FF9900",
|
|
822
|
+
"#FF9933",
|
|
823
|
+
"#FFCC00",
|
|
824
|
+
"#FFCC33"
|
|
825
|
+
];
|
|
719
826
|
function useColors() {
|
|
720
827
|
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
721
828
|
return true;
|
|
@@ -723,10 +830,11 @@ var require_browser = __commonJS({
|
|
|
723
830
|
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
724
831
|
return false;
|
|
725
832
|
}
|
|
833
|
+
let m;
|
|
726
834
|
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
727
835
|
typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
728
836
|
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
729
|
-
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(
|
|
837
|
+
typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
730
838
|
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
731
839
|
}
|
|
732
840
|
function formatArgs(args) {
|
|
@@ -734,11 +842,11 @@ var require_browser = __commonJS({
|
|
|
734
842
|
if (!this.useColors) {
|
|
735
843
|
return;
|
|
736
844
|
}
|
|
737
|
-
|
|
845
|
+
const c = "color: " + this.color;
|
|
738
846
|
args.splice(1, 0, c, "color: inherit");
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
args[0].replace(/%[a-zA-Z%]/g,
|
|
847
|
+
let index = 0;
|
|
848
|
+
let lastC = 0;
|
|
849
|
+
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
742
850
|
if (match === "%%") {
|
|
743
851
|
return;
|
|
744
852
|
}
|
|
@@ -749,10 +857,8 @@ var require_browser = __commonJS({
|
|
|
749
857
|
});
|
|
750
858
|
args.splice(lastC, 0, c);
|
|
751
859
|
}
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
return (typeof console === "undefined" ? "undefined" : _typeof(console)) === "object" && console.log && (_console = console).log.apply(_console, arguments);
|
|
755
|
-
}
|
|
860
|
+
exports2.log = console.debug || console.log || (() => {
|
|
861
|
+
});
|
|
756
862
|
function save(namespaces) {
|
|
757
863
|
try {
|
|
758
864
|
if (namespaces) {
|
|
@@ -764,9 +870,9 @@ var require_browser = __commonJS({
|
|
|
764
870
|
}
|
|
765
871
|
}
|
|
766
872
|
function load() {
|
|
767
|
-
|
|
873
|
+
let r;
|
|
768
874
|
try {
|
|
769
|
-
r = exports2.storage.getItem("debug");
|
|
875
|
+
r = exports2.storage.getItem("debug") || exports2.storage.getItem("DEBUG");
|
|
770
876
|
} catch (error) {
|
|
771
877
|
}
|
|
772
878
|
if (!r && typeof process !== "undefined" && "env" in process) {
|
|
@@ -781,7 +887,7 @@ var require_browser = __commonJS({
|
|
|
781
887
|
}
|
|
782
888
|
}
|
|
783
889
|
module2.exports = require_common()(exports2);
|
|
784
|
-
var formatters = module2.exports
|
|
890
|
+
var { formatters } = module2.exports;
|
|
785
891
|
formatters.j = function(v) {
|
|
786
892
|
try {
|
|
787
893
|
return JSON.stringify(v);
|
|
@@ -792,9 +898,9 @@ var require_browser = __commonJS({
|
|
|
792
898
|
}
|
|
793
899
|
});
|
|
794
900
|
|
|
795
|
-
// node_modules
|
|
901
|
+
// node_modules/has-flag/index.js
|
|
796
902
|
var require_has_flag = __commonJS({
|
|
797
|
-
"node_modules
|
|
903
|
+
"node_modules/has-flag/index.js"(exports2, module2) {
|
|
798
904
|
"use strict";
|
|
799
905
|
module2.exports = (flag, argv) => {
|
|
800
906
|
argv = argv || process.argv;
|
|
@@ -806,9 +912,9 @@ var require_has_flag = __commonJS({
|
|
|
806
912
|
}
|
|
807
913
|
});
|
|
808
914
|
|
|
809
|
-
// node_modules
|
|
915
|
+
// node_modules/supports-color/index.js
|
|
810
916
|
var require_supports_color = __commonJS({
|
|
811
|
-
"node_modules
|
|
917
|
+
"node_modules/supports-color/index.js"(exports2, module2) {
|
|
812
918
|
"use strict";
|
|
813
919
|
var os3 = require("os");
|
|
814
920
|
var hasFlag = require_has_flag();
|
|
@@ -901,34 +1007,114 @@ var require_supports_color = __commonJS({
|
|
|
901
1007
|
}
|
|
902
1008
|
});
|
|
903
1009
|
|
|
904
|
-
// node_modules
|
|
1010
|
+
// node_modules/debug/src/node.js
|
|
905
1011
|
var require_node = __commonJS({
|
|
906
|
-
"node_modules
|
|
907
|
-
"use strict";
|
|
1012
|
+
"node_modules/debug/src/node.js"(exports2, module2) {
|
|
908
1013
|
var tty = require("tty");
|
|
909
|
-
var
|
|
1014
|
+
var util3 = require("util");
|
|
910
1015
|
exports2.init = init;
|
|
911
1016
|
exports2.log = log;
|
|
912
1017
|
exports2.formatArgs = formatArgs;
|
|
913
1018
|
exports2.save = save;
|
|
914
1019
|
exports2.load = load;
|
|
915
1020
|
exports2.useColors = useColors;
|
|
1021
|
+
exports2.destroy = util3.deprecate(
|
|
1022
|
+
() => {
|
|
1023
|
+
},
|
|
1024
|
+
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
1025
|
+
);
|
|
916
1026
|
exports2.colors = [6, 2, 3, 4, 5, 1];
|
|
917
1027
|
try {
|
|
918
|
-
supportsColor = require_supports_color();
|
|
1028
|
+
const supportsColor = require_supports_color();
|
|
919
1029
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
920
|
-
exports2.colors = [
|
|
1030
|
+
exports2.colors = [
|
|
1031
|
+
20,
|
|
1032
|
+
21,
|
|
1033
|
+
26,
|
|
1034
|
+
27,
|
|
1035
|
+
32,
|
|
1036
|
+
33,
|
|
1037
|
+
38,
|
|
1038
|
+
39,
|
|
1039
|
+
40,
|
|
1040
|
+
41,
|
|
1041
|
+
42,
|
|
1042
|
+
43,
|
|
1043
|
+
44,
|
|
1044
|
+
45,
|
|
1045
|
+
56,
|
|
1046
|
+
57,
|
|
1047
|
+
62,
|
|
1048
|
+
63,
|
|
1049
|
+
68,
|
|
1050
|
+
69,
|
|
1051
|
+
74,
|
|
1052
|
+
75,
|
|
1053
|
+
76,
|
|
1054
|
+
77,
|
|
1055
|
+
78,
|
|
1056
|
+
79,
|
|
1057
|
+
80,
|
|
1058
|
+
81,
|
|
1059
|
+
92,
|
|
1060
|
+
93,
|
|
1061
|
+
98,
|
|
1062
|
+
99,
|
|
1063
|
+
112,
|
|
1064
|
+
113,
|
|
1065
|
+
128,
|
|
1066
|
+
129,
|
|
1067
|
+
134,
|
|
1068
|
+
135,
|
|
1069
|
+
148,
|
|
1070
|
+
149,
|
|
1071
|
+
160,
|
|
1072
|
+
161,
|
|
1073
|
+
162,
|
|
1074
|
+
163,
|
|
1075
|
+
164,
|
|
1076
|
+
165,
|
|
1077
|
+
166,
|
|
1078
|
+
167,
|
|
1079
|
+
168,
|
|
1080
|
+
169,
|
|
1081
|
+
170,
|
|
1082
|
+
171,
|
|
1083
|
+
172,
|
|
1084
|
+
173,
|
|
1085
|
+
178,
|
|
1086
|
+
179,
|
|
1087
|
+
184,
|
|
1088
|
+
185,
|
|
1089
|
+
196,
|
|
1090
|
+
197,
|
|
1091
|
+
198,
|
|
1092
|
+
199,
|
|
1093
|
+
200,
|
|
1094
|
+
201,
|
|
1095
|
+
202,
|
|
1096
|
+
203,
|
|
1097
|
+
204,
|
|
1098
|
+
205,
|
|
1099
|
+
206,
|
|
1100
|
+
207,
|
|
1101
|
+
208,
|
|
1102
|
+
209,
|
|
1103
|
+
214,
|
|
1104
|
+
215,
|
|
1105
|
+
220,
|
|
1106
|
+
221
|
|
1107
|
+
];
|
|
921
1108
|
}
|
|
922
1109
|
} catch (error) {
|
|
923
1110
|
}
|
|
924
|
-
|
|
925
|
-
exports2.inspectOpts = Object.keys(process.env).filter(function(key) {
|
|
1111
|
+
exports2.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
926
1112
|
return /^debug_/i.test(key);
|
|
927
|
-
}).reduce(
|
|
928
|
-
|
|
1113
|
+
}).reduce((obj, key) => {
|
|
1114
|
+
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
929
1115
|
return k.toUpperCase();
|
|
930
1116
|
});
|
|
931
|
-
|
|
1117
|
+
let val = process.env[key];
|
|
932
1118
|
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
933
1119
|
val = true;
|
|
934
1120
|
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
@@ -945,11 +1131,11 @@ var require_node = __commonJS({
|
|
|
945
1131
|
return "colors" in exports2.inspectOpts ? Boolean(exports2.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
946
1132
|
}
|
|
947
1133
|
function formatArgs(args) {
|
|
948
|
-
|
|
1134
|
+
const { namespace: name, useColors: useColors2 } = this;
|
|
949
1135
|
if (useColors2) {
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
1136
|
+
const c = this.color;
|
|
1137
|
+
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
1138
|
+
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
953
1139
|
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
954
1140
|
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
955
1141
|
} else {
|
|
@@ -962,8 +1148,8 @@ var require_node = __commonJS({
|
|
|
962
1148
|
}
|
|
963
1149
|
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
964
1150
|
}
|
|
965
|
-
function log() {
|
|
966
|
-
return process.stderr.write(
|
|
1151
|
+
function log(...args) {
|
|
1152
|
+
return process.stderr.write(util3.formatWithOptions(exports2.inspectOpts, ...args) + "\n");
|
|
967
1153
|
}
|
|
968
1154
|
function save(namespaces) {
|
|
969
1155
|
if (namespaces) {
|
|
@@ -977,30 +1163,27 @@ var require_node = __commonJS({
|
|
|
977
1163
|
}
|
|
978
1164
|
function init(debug) {
|
|
979
1165
|
debug.inspectOpts = {};
|
|
980
|
-
|
|
981
|
-
for (
|
|
1166
|
+
const keys = Object.keys(exports2.inspectOpts);
|
|
1167
|
+
for (let i = 0; i < keys.length; i++) {
|
|
982
1168
|
debug.inspectOpts[keys[i]] = exports2.inspectOpts[keys[i]];
|
|
983
1169
|
}
|
|
984
1170
|
}
|
|
985
1171
|
module2.exports = require_common()(exports2);
|
|
986
|
-
var formatters = module2.exports
|
|
1172
|
+
var { formatters } = module2.exports;
|
|
987
1173
|
formatters.o = function(v) {
|
|
988
1174
|
this.inspectOpts.colors = this.useColors;
|
|
989
|
-
return
|
|
990
|
-
return str.trim();
|
|
991
|
-
}).join(" ");
|
|
1175
|
+
return util3.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
992
1176
|
};
|
|
993
1177
|
formatters.O = function(v) {
|
|
994
1178
|
this.inspectOpts.colors = this.useColors;
|
|
995
|
-
return
|
|
1179
|
+
return util3.inspect(v, this.inspectOpts);
|
|
996
1180
|
};
|
|
997
1181
|
}
|
|
998
1182
|
});
|
|
999
1183
|
|
|
1000
|
-
// node_modules
|
|
1184
|
+
// node_modules/debug/src/index.js
|
|
1001
1185
|
var require_src = __commonJS({
|
|
1002
|
-
"node_modules
|
|
1003
|
-
"use strict";
|
|
1186
|
+
"node_modules/debug/src/index.js"(exports2, module2) {
|
|
1004
1187
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
1005
1188
|
module2.exports = require_browser();
|
|
1006
1189
|
} else {
|
|
@@ -1009,9 +1192,9 @@ var require_src = __commonJS({
|
|
|
1009
1192
|
}
|
|
1010
1193
|
});
|
|
1011
1194
|
|
|
1012
|
-
// node_modules
|
|
1195
|
+
// node_modules/follow-redirects/debug.js
|
|
1013
1196
|
var require_debug = __commonJS({
|
|
1014
|
-
"node_modules
|
|
1197
|
+
"node_modules/follow-redirects/debug.js"(exports2, module2) {
|
|
1015
1198
|
var debug;
|
|
1016
1199
|
module2.exports = function() {
|
|
1017
1200
|
if (!debug) {
|
|
@@ -1029,9 +1212,9 @@ var require_debug = __commonJS({
|
|
|
1029
1212
|
}
|
|
1030
1213
|
});
|
|
1031
1214
|
|
|
1032
|
-
// node_modules
|
|
1215
|
+
// node_modules/follow-redirects/index.js
|
|
1033
1216
|
var require_follow_redirects = __commonJS({
|
|
1034
|
-
"node_modules
|
|
1217
|
+
"node_modules/follow-redirects/index.js"(exports2, module2) {
|
|
1035
1218
|
var url2 = require("url");
|
|
1036
1219
|
var URL3 = url2.URL;
|
|
1037
1220
|
var http2 = require("http");
|
|
@@ -1039,6 +1222,33 @@ var require_follow_redirects = __commonJS({
|
|
|
1039
1222
|
var Writable = require("stream").Writable;
|
|
1040
1223
|
var assert = require("assert");
|
|
1041
1224
|
var debug = require_debug();
|
|
1225
|
+
(function detectUnsupportedEnvironment() {
|
|
1226
|
+
var looksLikeNode = typeof process !== "undefined";
|
|
1227
|
+
var looksLikeBrowser = typeof window !== "undefined" && typeof document !== "undefined";
|
|
1228
|
+
var looksLikeV8 = isFunction2(Error.captureStackTrace);
|
|
1229
|
+
if (!looksLikeNode && (looksLikeBrowser || !looksLikeV8)) {
|
|
1230
|
+
console.warn("The follow-redirects package should be excluded from browser builds.");
|
|
1231
|
+
}
|
|
1232
|
+
})();
|
|
1233
|
+
var useNativeURL = false;
|
|
1234
|
+
try {
|
|
1235
|
+
assert(new URL3(""));
|
|
1236
|
+
} catch (error) {
|
|
1237
|
+
useNativeURL = error.code === "ERR_INVALID_URL";
|
|
1238
|
+
}
|
|
1239
|
+
var preservedUrlFields = [
|
|
1240
|
+
"auth",
|
|
1241
|
+
"host",
|
|
1242
|
+
"hostname",
|
|
1243
|
+
"href",
|
|
1244
|
+
"path",
|
|
1245
|
+
"pathname",
|
|
1246
|
+
"port",
|
|
1247
|
+
"protocol",
|
|
1248
|
+
"query",
|
|
1249
|
+
"search",
|
|
1250
|
+
"hash"
|
|
1251
|
+
];
|
|
1042
1252
|
var events = ["abort", "aborted", "connect", "error", "socket", "timeout"];
|
|
1043
1253
|
var eventHandlers = /* @__PURE__ */ Object.create(null);
|
|
1044
1254
|
events.forEach(function(event) {
|
|
@@ -1057,7 +1267,8 @@ var require_follow_redirects = __commonJS({
|
|
|
1057
1267
|
);
|
|
1058
1268
|
var TooManyRedirectsError = createErrorType(
|
|
1059
1269
|
"ERR_FR_TOO_MANY_REDIRECTS",
|
|
1060
|
-
"Maximum number of redirects exceeded"
|
|
1270
|
+
"Maximum number of redirects exceeded",
|
|
1271
|
+
RedirectionError
|
|
1061
1272
|
);
|
|
1062
1273
|
var MaxBodyLengthExceededError = createErrorType(
|
|
1063
1274
|
"ERR_FR_MAX_BODY_LENGTH_EXCEEDED",
|
|
@@ -1067,6 +1278,7 @@ var require_follow_redirects = __commonJS({
|
|
|
1067
1278
|
"ERR_STREAM_WRITE_AFTER_END",
|
|
1068
1279
|
"write after end"
|
|
1069
1280
|
);
|
|
1281
|
+
var destroy = Writable.prototype.destroy || noop2;
|
|
1070
1282
|
function RedirectableRequest(options, responseCallback) {
|
|
1071
1283
|
Writable.call(this);
|
|
1072
1284
|
this._sanitizeOptions(options);
|
|
@@ -1082,15 +1294,25 @@ var require_follow_redirects = __commonJS({
|
|
|
1082
1294
|
}
|
|
1083
1295
|
var self2 = this;
|
|
1084
1296
|
this._onNativeResponse = function(response) {
|
|
1085
|
-
|
|
1297
|
+
try {
|
|
1298
|
+
self2._processResponse(response);
|
|
1299
|
+
} catch (cause) {
|
|
1300
|
+
self2.emit("error", cause instanceof RedirectionError ? cause : new RedirectionError({ cause }));
|
|
1301
|
+
}
|
|
1086
1302
|
};
|
|
1087
1303
|
this._performRequest();
|
|
1088
1304
|
}
|
|
1089
1305
|
RedirectableRequest.prototype = Object.create(Writable.prototype);
|
|
1090
1306
|
RedirectableRequest.prototype.abort = function() {
|
|
1091
|
-
|
|
1307
|
+
destroyRequest(this._currentRequest);
|
|
1308
|
+
this._currentRequest.abort();
|
|
1092
1309
|
this.emit("abort");
|
|
1093
1310
|
};
|
|
1311
|
+
RedirectableRequest.prototype.destroy = function(error) {
|
|
1312
|
+
destroyRequest(this._currentRequest, error);
|
|
1313
|
+
destroy.call(this, error);
|
|
1314
|
+
return this;
|
|
1315
|
+
};
|
|
1094
1316
|
RedirectableRequest.prototype.write = function(data, encoding, callback) {
|
|
1095
1317
|
if (this._ending) {
|
|
1096
1318
|
throw new WriteAfterEndError();
|
|
@@ -1171,6 +1393,7 @@ var require_follow_redirects = __commonJS({
|
|
|
1171
1393
|
self2.removeListener("abort", clearTimer);
|
|
1172
1394
|
self2.removeListener("error", clearTimer);
|
|
1173
1395
|
self2.removeListener("response", clearTimer);
|
|
1396
|
+
self2.removeListener("close", clearTimer);
|
|
1174
1397
|
if (callback) {
|
|
1175
1398
|
self2.removeListener("timeout", callback);
|
|
1176
1399
|
}
|
|
@@ -1190,6 +1413,7 @@ var require_follow_redirects = __commonJS({
|
|
|
1190
1413
|
this.on("abort", clearTimer);
|
|
1191
1414
|
this.on("error", clearTimer);
|
|
1192
1415
|
this.on("response", clearTimer);
|
|
1416
|
+
this.on("close", clearTimer);
|
|
1193
1417
|
return this;
|
|
1194
1418
|
};
|
|
1195
1419
|
[
|
|
@@ -1233,8 +1457,7 @@ var require_follow_redirects = __commonJS({
|
|
|
1233
1457
|
var protocol = this._options.protocol;
|
|
1234
1458
|
var nativeProtocol = this._options.nativeProtocols[protocol];
|
|
1235
1459
|
if (!nativeProtocol) {
|
|
1236
|
-
|
|
1237
|
-
return;
|
|
1460
|
+
throw new TypeError("Unsupported protocol " + protocol);
|
|
1238
1461
|
}
|
|
1239
1462
|
if (this._options.agents) {
|
|
1240
1463
|
var scheme = protocol.slice(0, -1);
|
|
@@ -1287,11 +1510,10 @@ var require_follow_redirects = __commonJS({
|
|
|
1287
1510
|
this._requestBodyBuffers = [];
|
|
1288
1511
|
return;
|
|
1289
1512
|
}
|
|
1290
|
-
|
|
1513
|
+
destroyRequest(this._currentRequest);
|
|
1291
1514
|
response.destroy();
|
|
1292
1515
|
if (++this._redirectCount > this._options.maxRedirects) {
|
|
1293
|
-
|
|
1294
|
-
return;
|
|
1516
|
+
throw new TooManyRedirectsError();
|
|
1295
1517
|
}
|
|
1296
1518
|
var requestHeaders;
|
|
1297
1519
|
var beforeRedirect = this._options.beforeRedirect;
|
|
@@ -1312,22 +1534,15 @@ var require_follow_redirects = __commonJS({
|
|
|
1312
1534
|
removeMatchingHeaders(/^content-/i, this._options.headers);
|
|
1313
1535
|
}
|
|
1314
1536
|
var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers);
|
|
1315
|
-
var currentUrlParts =
|
|
1537
|
+
var currentUrlParts = parseUrl(this._currentUrl);
|
|
1316
1538
|
var currentHost = currentHostHeader || currentUrlParts.host;
|
|
1317
1539
|
var currentUrl = /^\w+:/.test(location) ? this._currentUrl : url2.format(Object.assign(currentUrlParts, { host: currentHost }));
|
|
1318
|
-
var redirectUrl;
|
|
1319
|
-
|
|
1320
|
-
redirectUrl = url2.resolve(currentUrl, location);
|
|
1321
|
-
} catch (cause) {
|
|
1322
|
-
this.emit("error", new RedirectionError({ cause }));
|
|
1323
|
-
return;
|
|
1324
|
-
}
|
|
1325
|
-
debug("redirecting to", redirectUrl);
|
|
1540
|
+
var redirectUrl = resolveUrl(location, currentUrl);
|
|
1541
|
+
debug("redirecting to", redirectUrl.href);
|
|
1326
1542
|
this._isRedirect = true;
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers);
|
|
1543
|
+
spreadUrlObject(redirectUrl, this._options);
|
|
1544
|
+
if (redirectUrl.protocol !== currentUrlParts.protocol && redirectUrl.protocol !== "https:" || redirectUrl.host !== currentHost && !isSubdomain(redirectUrl.host, currentHost)) {
|
|
1545
|
+
removeMatchingHeaders(/^(?:(?:proxy-)?authorization|cookie)$/i, this._options.headers);
|
|
1331
1546
|
}
|
|
1332
1547
|
if (isFunction2(beforeRedirect)) {
|
|
1333
1548
|
var responseDetails = {
|
|
@@ -1339,19 +1554,10 @@ var require_follow_redirects = __commonJS({
|
|
|
1339
1554
|
method,
|
|
1340
1555
|
headers: requestHeaders
|
|
1341
1556
|
};
|
|
1342
|
-
|
|
1343
|
-
beforeRedirect(this._options, responseDetails, requestDetails);
|
|
1344
|
-
} catch (err) {
|
|
1345
|
-
this.emit("error", err);
|
|
1346
|
-
return;
|
|
1347
|
-
}
|
|
1557
|
+
beforeRedirect(this._options, responseDetails, requestDetails);
|
|
1348
1558
|
this._sanitizeOptions(this._options);
|
|
1349
1559
|
}
|
|
1350
|
-
|
|
1351
|
-
this._performRequest();
|
|
1352
|
-
} catch (cause) {
|
|
1353
|
-
this.emit("error", new RedirectionError({ cause }));
|
|
1354
|
-
}
|
|
1560
|
+
this._performRequest();
|
|
1355
1561
|
};
|
|
1356
1562
|
function wrap(protocols) {
|
|
1357
1563
|
var exports3 = {
|
|
@@ -1364,22 +1570,13 @@ var require_follow_redirects = __commonJS({
|
|
|
1364
1570
|
var nativeProtocol = nativeProtocols[protocol] = protocols[scheme];
|
|
1365
1571
|
var wrappedProtocol = exports3[scheme] = Object.create(nativeProtocol);
|
|
1366
1572
|
function request(input, options, callback) {
|
|
1367
|
-
if (
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
} catch (err) {
|
|
1372
|
-
parsed = url2.parse(input);
|
|
1373
|
-
}
|
|
1374
|
-
if (!isString2(parsed.protocol)) {
|
|
1375
|
-
throw new InvalidUrlError({ input });
|
|
1376
|
-
}
|
|
1377
|
-
input = parsed;
|
|
1378
|
-
} else if (URL3 && input instanceof URL3) {
|
|
1379
|
-
input = urlToOptions(input);
|
|
1573
|
+
if (isURL(input)) {
|
|
1574
|
+
input = spreadUrlObject(input);
|
|
1575
|
+
} else if (isString2(input)) {
|
|
1576
|
+
input = spreadUrlObject(parseUrl(input));
|
|
1380
1577
|
} else {
|
|
1381
1578
|
callback = options;
|
|
1382
|
-
options = input;
|
|
1579
|
+
options = validateUrl(input);
|
|
1383
1580
|
input = { protocol };
|
|
1384
1581
|
}
|
|
1385
1582
|
if (isFunction2(options)) {
|
|
@@ -1412,23 +1609,43 @@ var require_follow_redirects = __commonJS({
|
|
|
1412
1609
|
}
|
|
1413
1610
|
function noop2() {
|
|
1414
1611
|
}
|
|
1415
|
-
function
|
|
1416
|
-
var
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
)
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1612
|
+
function parseUrl(input) {
|
|
1613
|
+
var parsed;
|
|
1614
|
+
if (useNativeURL) {
|
|
1615
|
+
parsed = new URL3(input);
|
|
1616
|
+
} else {
|
|
1617
|
+
parsed = validateUrl(url2.parse(input));
|
|
1618
|
+
if (!isString2(parsed.protocol)) {
|
|
1619
|
+
throw new InvalidUrlError({ input });
|
|
1620
|
+
}
|
|
1621
|
+
}
|
|
1622
|
+
return parsed;
|
|
1623
|
+
}
|
|
1624
|
+
function resolveUrl(relative, base) {
|
|
1625
|
+
return useNativeURL ? new URL3(relative, base) : parseUrl(url2.resolve(base, relative));
|
|
1626
|
+
}
|
|
1627
|
+
function validateUrl(input) {
|
|
1628
|
+
if (/^\[/.test(input.hostname) && !/^\[[:0-9a-f]+\]$/i.test(input.hostname)) {
|
|
1629
|
+
throw new InvalidUrlError({ input: input.href || input });
|
|
1630
|
+
}
|
|
1631
|
+
if (/^\[/.test(input.host) && !/^\[[:0-9a-f]+\](:\d+)?$/i.test(input.host)) {
|
|
1632
|
+
throw new InvalidUrlError({ input: input.href || input });
|
|
1430
1633
|
}
|
|
1431
|
-
return
|
|
1634
|
+
return input;
|
|
1635
|
+
}
|
|
1636
|
+
function spreadUrlObject(urlObject, target) {
|
|
1637
|
+
var spread3 = target || {};
|
|
1638
|
+
for (var key of preservedUrlFields) {
|
|
1639
|
+
spread3[key] = urlObject[key];
|
|
1640
|
+
}
|
|
1641
|
+
if (spread3.hostname.startsWith("[")) {
|
|
1642
|
+
spread3.hostname = spread3.hostname.slice(1, -1);
|
|
1643
|
+
}
|
|
1644
|
+
if (spread3.port !== "") {
|
|
1645
|
+
spread3.port = Number(spread3.port);
|
|
1646
|
+
}
|
|
1647
|
+
spread3.path = spread3.search ? spread3.pathname + spread3.search : spread3.pathname;
|
|
1648
|
+
return spread3;
|
|
1432
1649
|
}
|
|
1433
1650
|
function removeMatchingHeaders(regex, headers) {
|
|
1434
1651
|
var lastValue;
|
|
@@ -1442,22 +1659,32 @@ var require_follow_redirects = __commonJS({
|
|
|
1442
1659
|
}
|
|
1443
1660
|
function createErrorType(code, message, baseClass) {
|
|
1444
1661
|
function CustomError(properties) {
|
|
1445
|
-
Error.captureStackTrace
|
|
1662
|
+
if (isFunction2(Error.captureStackTrace)) {
|
|
1663
|
+
Error.captureStackTrace(this, this.constructor);
|
|
1664
|
+
}
|
|
1446
1665
|
Object.assign(this, properties || {});
|
|
1447
1666
|
this.code = code;
|
|
1448
1667
|
this.message = this.cause ? message + ": " + this.cause.message : message;
|
|
1449
1668
|
}
|
|
1450
1669
|
CustomError.prototype = new (baseClass || Error)();
|
|
1451
|
-
CustomError.prototype
|
|
1452
|
-
|
|
1670
|
+
Object.defineProperties(CustomError.prototype, {
|
|
1671
|
+
constructor: {
|
|
1672
|
+
value: CustomError,
|
|
1673
|
+
enumerable: false
|
|
1674
|
+
},
|
|
1675
|
+
name: {
|
|
1676
|
+
value: "Error [" + code + "]",
|
|
1677
|
+
enumerable: false
|
|
1678
|
+
}
|
|
1679
|
+
});
|
|
1453
1680
|
return CustomError;
|
|
1454
1681
|
}
|
|
1455
|
-
function
|
|
1682
|
+
function destroyRequest(request, error) {
|
|
1456
1683
|
for (var event of events) {
|
|
1457
1684
|
request.removeListener(event, eventHandlers[event]);
|
|
1458
1685
|
}
|
|
1459
1686
|
request.on("error", noop2);
|
|
1460
|
-
request.
|
|
1687
|
+
request.destroy(error);
|
|
1461
1688
|
}
|
|
1462
1689
|
function isSubdomain(subdomain, domain) {
|
|
1463
1690
|
assert(isString2(subdomain) && isString2(domain));
|
|
@@ -1473,6 +1700,9 @@ var require_follow_redirects = __commonJS({
|
|
|
1473
1700
|
function isBuffer2(value) {
|
|
1474
1701
|
return typeof value === "object" && "length" in value;
|
|
1475
1702
|
}
|
|
1703
|
+
function isURL(value) {
|
|
1704
|
+
return URL3 && value instanceof URL3;
|
|
1705
|
+
}
|
|
1476
1706
|
module2.exports = wrap({ http: http2, https: https2 });
|
|
1477
1707
|
module2.exports.wrap = wrap;
|
|
1478
1708
|
}
|
|
@@ -1485,7 +1715,7 @@ var import_chalk5 = __toESM(require("chalk"));
|
|
|
1485
1715
|
var import_figlet3 = __toESM(require("figlet"));
|
|
1486
1716
|
|
|
1487
1717
|
// package.json
|
|
1488
|
-
var version = "1.1.4-alpha.
|
|
1718
|
+
var version = "1.1.4-alpha.2";
|
|
1489
1719
|
|
|
1490
1720
|
// bin/upload.ts
|
|
1491
1721
|
var import_path5 = __toESM(require("path"));
|
|
@@ -1493,16 +1723,17 @@ var import_chalk2 = __toESM(require("chalk"));
|
|
|
1493
1723
|
var import_inquirer = __toESM(require("inquirer"));
|
|
1494
1724
|
var import_figlet = __toESM(require("figlet"));
|
|
1495
1725
|
|
|
1496
|
-
// node_modules
|
|
1726
|
+
// node_modules/axios/lib/helpers/bind.js
|
|
1497
1727
|
function bind(fn, thisArg) {
|
|
1498
1728
|
return function wrap() {
|
|
1499
1729
|
return fn.apply(thisArg, arguments);
|
|
1500
1730
|
};
|
|
1501
1731
|
}
|
|
1502
1732
|
|
|
1503
|
-
// node_modules
|
|
1733
|
+
// node_modules/axios/lib/utils.js
|
|
1504
1734
|
var { toString } = Object.prototype;
|
|
1505
1735
|
var { getPrototypeOf } = Object;
|
|
1736
|
+
var { iterator, toStringTag } = Symbol;
|
|
1506
1737
|
var kindOf = /* @__PURE__ */ ((cache) => (thing) => {
|
|
1507
1738
|
const str = toString.call(thing);
|
|
1508
1739
|
return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
|
|
@@ -1537,7 +1768,7 @@ var isPlainObject = (val) => {
|
|
|
1537
1768
|
return false;
|
|
1538
1769
|
}
|
|
1539
1770
|
const prototype3 = getPrototypeOf(val);
|
|
1540
|
-
return (prototype3 === null || prototype3 === Object.prototype || Object.getPrototypeOf(prototype3) === null) && !(
|
|
1771
|
+
return (prototype3 === null || prototype3 === Object.prototype || Object.getPrototypeOf(prototype3) === null) && !(toStringTag in val) && !(iterator in val);
|
|
1541
1772
|
};
|
|
1542
1773
|
var isDate = kindOfTest("Date");
|
|
1543
1774
|
var isFile = kindOfTest("File");
|
|
@@ -1545,10 +1776,12 @@ var isBlob = kindOfTest("Blob");
|
|
|
1545
1776
|
var isFileList = kindOfTest("FileList");
|
|
1546
1777
|
var isStream = (val) => isObject(val) && isFunction(val.pipe);
|
|
1547
1778
|
var isFormData = (thing) => {
|
|
1548
|
-
|
|
1549
|
-
return thing && (typeof FormData === "function" && thing instanceof FormData ||
|
|
1779
|
+
let kind;
|
|
1780
|
+
return thing && (typeof FormData === "function" && thing instanceof FormData || isFunction(thing.append) && ((kind = kindOf(thing)) === "formdata" || // detect form-data instance
|
|
1781
|
+
kind === "object" && isFunction(thing.toString) && thing.toString() === "[object FormData]"));
|
|
1550
1782
|
};
|
|
1551
1783
|
var isURLSearchParams = kindOfTest("URLSearchParams");
|
|
1784
|
+
var [isReadableStream, isRequest, isResponse, isHeaders] = ["ReadableStream", "Request", "Response", "Headers"].map(kindOfTest);
|
|
1552
1785
|
var trim = (str) => str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
1553
1786
|
function forEach(obj, fn, { allOwnKeys = false } = {}) {
|
|
1554
1787
|
if (obj === null || typeof obj === "undefined") {
|
|
@@ -1682,10 +1915,10 @@ var isTypedArray = /* @__PURE__ */ ((TypedArray) => {
|
|
|
1682
1915
|
};
|
|
1683
1916
|
})(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
|
|
1684
1917
|
var forEachEntry = (obj, fn) => {
|
|
1685
|
-
const generator = obj && obj[
|
|
1686
|
-
const
|
|
1918
|
+
const generator = obj && obj[iterator];
|
|
1919
|
+
const _iterator = generator.call(obj);
|
|
1687
1920
|
let result;
|
|
1688
|
-
while ((result =
|
|
1921
|
+
while ((result = _iterator.next()) && !result.done) {
|
|
1689
1922
|
const pair = result.value;
|
|
1690
1923
|
fn.call(obj, pair[0], pair[1]);
|
|
1691
1924
|
}
|
|
@@ -1713,8 +1946,9 @@ var reduceDescriptors = (obj, reducer) => {
|
|
|
1713
1946
|
const descriptors2 = Object.getOwnPropertyDescriptors(obj);
|
|
1714
1947
|
const reducedDescriptors = {};
|
|
1715
1948
|
forEach(descriptors2, (descriptor, name) => {
|
|
1716
|
-
|
|
1717
|
-
|
|
1949
|
+
let ret;
|
|
1950
|
+
if ((ret = reducer(descriptor, name, obj)) !== false) {
|
|
1951
|
+
reducedDescriptors[name] = ret || descriptor;
|
|
1718
1952
|
}
|
|
1719
1953
|
});
|
|
1720
1954
|
Object.defineProperties(obj, reducedDescriptors);
|
|
@@ -1751,26 +1985,10 @@ var toObjectSet = (arrayOrString, delimiter) => {
|
|
|
1751
1985
|
var noop = () => {
|
|
1752
1986
|
};
|
|
1753
1987
|
var toFiniteNumber = (value, defaultValue) => {
|
|
1754
|
-
value = +value;
|
|
1755
|
-
return Number.isFinite(value) ? value : defaultValue;
|
|
1756
|
-
};
|
|
1757
|
-
var ALPHA = "abcdefghijklmnopqrstuvwxyz";
|
|
1758
|
-
var DIGIT = "0123456789";
|
|
1759
|
-
var ALPHABET = {
|
|
1760
|
-
DIGIT,
|
|
1761
|
-
ALPHA,
|
|
1762
|
-
ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
|
|
1763
|
-
};
|
|
1764
|
-
var generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
|
|
1765
|
-
let str = "";
|
|
1766
|
-
const { length } = alphabet;
|
|
1767
|
-
while (size--) {
|
|
1768
|
-
str += alphabet[Math.random() * length | 0];
|
|
1769
|
-
}
|
|
1770
|
-
return str;
|
|
1988
|
+
return value != null && Number.isFinite(value = +value) ? value : defaultValue;
|
|
1771
1989
|
};
|
|
1772
1990
|
function isSpecCompliantForm(thing) {
|
|
1773
|
-
return !!(thing && isFunction(thing.append) && thing[
|
|
1991
|
+
return !!(thing && isFunction(thing.append) && thing[toStringTag] === "FormData" && thing[iterator]);
|
|
1774
1992
|
}
|
|
1775
1993
|
var toJSONObject = (obj) => {
|
|
1776
1994
|
const stack = new Array(10);
|
|
@@ -1794,6 +2012,29 @@ var toJSONObject = (obj) => {
|
|
|
1794
2012
|
};
|
|
1795
2013
|
return visit(obj, 0);
|
|
1796
2014
|
};
|
|
2015
|
+
var isAsyncFn = kindOfTest("AsyncFunction");
|
|
2016
|
+
var isThenable = (thing) => thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
|
|
2017
|
+
var _setImmediate = ((setImmediateSupported, postMessageSupported) => {
|
|
2018
|
+
if (setImmediateSupported) {
|
|
2019
|
+
return setImmediate;
|
|
2020
|
+
}
|
|
2021
|
+
return postMessageSupported ? ((token, callbacks) => {
|
|
2022
|
+
_global.addEventListener("message", ({ source, data }) => {
|
|
2023
|
+
if (source === _global && data === token) {
|
|
2024
|
+
callbacks.length && callbacks.shift()();
|
|
2025
|
+
}
|
|
2026
|
+
}, false);
|
|
2027
|
+
return (cb) => {
|
|
2028
|
+
callbacks.push(cb);
|
|
2029
|
+
_global.postMessage(token, "*");
|
|
2030
|
+
};
|
|
2031
|
+
})(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
|
|
2032
|
+
})(
|
|
2033
|
+
typeof setImmediate === "function",
|
|
2034
|
+
isFunction(_global.postMessage)
|
|
2035
|
+
);
|
|
2036
|
+
var asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate;
|
|
2037
|
+
var isIterable = (thing) => thing != null && isFunction(thing[iterator]);
|
|
1797
2038
|
var utils_default = {
|
|
1798
2039
|
isArray,
|
|
1799
2040
|
isArrayBuffer,
|
|
@@ -1805,6 +2046,10 @@ var utils_default = {
|
|
|
1805
2046
|
isBoolean,
|
|
1806
2047
|
isObject,
|
|
1807
2048
|
isPlainObject,
|
|
2049
|
+
isReadableStream,
|
|
2050
|
+
isRequest,
|
|
2051
|
+
isResponse,
|
|
2052
|
+
isHeaders,
|
|
1808
2053
|
isUndefined,
|
|
1809
2054
|
isDate,
|
|
1810
2055
|
isFile,
|
|
@@ -1841,13 +2086,16 @@ var utils_default = {
|
|
|
1841
2086
|
findKey,
|
|
1842
2087
|
global: _global,
|
|
1843
2088
|
isContextDefined,
|
|
1844
|
-
ALPHABET,
|
|
1845
|
-
generateString,
|
|
1846
2089
|
isSpecCompliantForm,
|
|
1847
|
-
toJSONObject
|
|
2090
|
+
toJSONObject,
|
|
2091
|
+
isAsyncFn,
|
|
2092
|
+
isThenable,
|
|
2093
|
+
setImmediate: _setImmediate,
|
|
2094
|
+
asap,
|
|
2095
|
+
isIterable
|
|
1848
2096
|
};
|
|
1849
2097
|
|
|
1850
|
-
// node_modules
|
|
2098
|
+
// node_modules/axios/lib/core/AxiosError.js
|
|
1851
2099
|
function AxiosError(message, code, config, request, response) {
|
|
1852
2100
|
Error.call(this);
|
|
1853
2101
|
if (Error.captureStackTrace) {
|
|
@@ -1860,7 +2108,10 @@ function AxiosError(message, code, config, request, response) {
|
|
|
1860
2108
|
code && (this.code = code);
|
|
1861
2109
|
config && (this.config = config);
|
|
1862
2110
|
request && (this.request = request);
|
|
1863
|
-
|
|
2111
|
+
if (response) {
|
|
2112
|
+
this.response = response;
|
|
2113
|
+
this.status = response.status ? response.status : null;
|
|
2114
|
+
}
|
|
1864
2115
|
}
|
|
1865
2116
|
utils_default.inherits(AxiosError, Error, {
|
|
1866
2117
|
toJSON: function toJSON() {
|
|
@@ -1879,7 +2130,7 @@ utils_default.inherits(AxiosError, Error, {
|
|
|
1879
2130
|
// Axios
|
|
1880
2131
|
config: utils_default.toJSONObject(this.config),
|
|
1881
2132
|
code: this.code,
|
|
1882
|
-
status: this.
|
|
2133
|
+
status: this.status
|
|
1883
2134
|
};
|
|
1884
2135
|
}
|
|
1885
2136
|
});
|
|
@@ -1919,11 +2170,11 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
|
|
|
1919
2170
|
};
|
|
1920
2171
|
var AxiosError_default = AxiosError;
|
|
1921
2172
|
|
|
1922
|
-
// node_modules
|
|
2173
|
+
// node_modules/axios/lib/platform/node/classes/FormData.js
|
|
1923
2174
|
var import_form_data = __toESM(require("form-data"), 1);
|
|
1924
2175
|
var FormData_default = import_form_data.default;
|
|
1925
2176
|
|
|
1926
|
-
// node_modules
|
|
2177
|
+
// node_modules/axios/lib/helpers/toFormData.js
|
|
1927
2178
|
function isVisitable(thing) {
|
|
1928
2179
|
return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
|
|
1929
2180
|
}
|
|
@@ -2035,7 +2286,7 @@ function toFormData(obj, formData, options) {
|
|
|
2035
2286
|
}
|
|
2036
2287
|
var toFormData_default = toFormData;
|
|
2037
2288
|
|
|
2038
|
-
// node_modules
|
|
2289
|
+
// node_modules/axios/lib/helpers/AxiosURLSearchParams.js
|
|
2039
2290
|
function encode(str) {
|
|
2040
2291
|
const charMap = {
|
|
2041
2292
|
"!": "%21",
|
|
@@ -2068,7 +2319,7 @@ prototype2.toString = function toString2(encoder) {
|
|
|
2068
2319
|
};
|
|
2069
2320
|
var AxiosURLSearchParams_default = AxiosURLSearchParams;
|
|
2070
2321
|
|
|
2071
|
-
// node_modules
|
|
2322
|
+
// node_modules/axios/lib/helpers/buildURL.js
|
|
2072
2323
|
function encode2(val) {
|
|
2073
2324
|
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
2074
2325
|
}
|
|
@@ -2077,6 +2328,11 @@ function buildURL(url2, params, options) {
|
|
|
2077
2328
|
return url2;
|
|
2078
2329
|
}
|
|
2079
2330
|
const _encode = options && options.encode || encode2;
|
|
2331
|
+
if (utils_default.isFunction(options)) {
|
|
2332
|
+
options = {
|
|
2333
|
+
serialize: options
|
|
2334
|
+
};
|
|
2335
|
+
}
|
|
2080
2336
|
const serializeFn = options && options.serialize;
|
|
2081
2337
|
let serializedParams;
|
|
2082
2338
|
if (serializeFn) {
|
|
@@ -2094,7 +2350,7 @@ function buildURL(url2, params, options) {
|
|
|
2094
2350
|
return url2;
|
|
2095
2351
|
}
|
|
2096
2352
|
|
|
2097
|
-
// node_modules
|
|
2353
|
+
// node_modules/axios/lib/core/InterceptorManager.js
|
|
2098
2354
|
var InterceptorManager = class {
|
|
2099
2355
|
constructor() {
|
|
2100
2356
|
this.handlers = [];
|
|
@@ -2158,18 +2414,38 @@ var InterceptorManager = class {
|
|
|
2158
2414
|
};
|
|
2159
2415
|
var InterceptorManager_default = InterceptorManager;
|
|
2160
2416
|
|
|
2161
|
-
// node_modules
|
|
2417
|
+
// node_modules/axios/lib/defaults/transitional.js
|
|
2162
2418
|
var transitional_default = {
|
|
2163
2419
|
silentJSONParsing: true,
|
|
2164
2420
|
forcedJSONParsing: true,
|
|
2165
2421
|
clarifyTimeoutError: false
|
|
2166
2422
|
};
|
|
2167
2423
|
|
|
2168
|
-
// node_modules
|
|
2424
|
+
// node_modules/axios/lib/platform/node/index.js
|
|
2425
|
+
var import_crypto = __toESM(require("crypto"), 1);
|
|
2426
|
+
|
|
2427
|
+
// node_modules/axios/lib/platform/node/classes/URLSearchParams.js
|
|
2169
2428
|
var import_url = __toESM(require("url"), 1);
|
|
2170
2429
|
var URLSearchParams_default = import_url.default.URLSearchParams;
|
|
2171
2430
|
|
|
2172
|
-
// node_modules
|
|
2431
|
+
// node_modules/axios/lib/platform/node/index.js
|
|
2432
|
+
var ALPHA = "abcdefghijklmnopqrstuvwxyz";
|
|
2433
|
+
var DIGIT = "0123456789";
|
|
2434
|
+
var ALPHABET = {
|
|
2435
|
+
DIGIT,
|
|
2436
|
+
ALPHA,
|
|
2437
|
+
ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
|
|
2438
|
+
};
|
|
2439
|
+
var generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
|
|
2440
|
+
let str = "";
|
|
2441
|
+
const { length } = alphabet;
|
|
2442
|
+
const randomValues = new Uint32Array(size);
|
|
2443
|
+
import_crypto.default.randomFillSync(randomValues);
|
|
2444
|
+
for (let i = 0; i < size; i++) {
|
|
2445
|
+
str += alphabet[randomValues[i] % length];
|
|
2446
|
+
}
|
|
2447
|
+
return str;
|
|
2448
|
+
};
|
|
2173
2449
|
var node_default = {
|
|
2174
2450
|
isNode: true,
|
|
2175
2451
|
classes: {
|
|
@@ -2177,14 +2453,40 @@ var node_default = {
|
|
|
2177
2453
|
FormData: FormData_default,
|
|
2178
2454
|
Blob: typeof Blob !== "undefined" && Blob || null
|
|
2179
2455
|
},
|
|
2456
|
+
ALPHABET,
|
|
2457
|
+
generateString,
|
|
2180
2458
|
protocols: ["http", "https", "file", "data"]
|
|
2181
2459
|
};
|
|
2182
2460
|
|
|
2183
|
-
// node_modules
|
|
2461
|
+
// node_modules/axios/lib/platform/common/utils.js
|
|
2462
|
+
var utils_exports = {};
|
|
2463
|
+
__export(utils_exports, {
|
|
2464
|
+
hasBrowserEnv: () => hasBrowserEnv,
|
|
2465
|
+
hasStandardBrowserEnv: () => hasStandardBrowserEnv,
|
|
2466
|
+
hasStandardBrowserWebWorkerEnv: () => hasStandardBrowserWebWorkerEnv,
|
|
2467
|
+
navigator: () => _navigator,
|
|
2468
|
+
origin: () => origin
|
|
2469
|
+
});
|
|
2470
|
+
var hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined";
|
|
2471
|
+
var _navigator = typeof navigator === "object" && navigator || void 0;
|
|
2472
|
+
var hasStandardBrowserEnv = hasBrowserEnv && (!_navigator || ["ReactNative", "NativeScript", "NS"].indexOf(_navigator.product) < 0);
|
|
2473
|
+
var hasStandardBrowserWebWorkerEnv = (() => {
|
|
2474
|
+
return typeof WorkerGlobalScope !== "undefined" && // eslint-disable-next-line no-undef
|
|
2475
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts === "function";
|
|
2476
|
+
})();
|
|
2477
|
+
var origin = hasBrowserEnv && window.location.href || "http://localhost";
|
|
2478
|
+
|
|
2479
|
+
// node_modules/axios/lib/platform/index.js
|
|
2480
|
+
var platform_default = {
|
|
2481
|
+
...utils_exports,
|
|
2482
|
+
...node_default
|
|
2483
|
+
};
|
|
2484
|
+
|
|
2485
|
+
// node_modules/axios/lib/helpers/toURLEncodedForm.js
|
|
2184
2486
|
function toURLEncodedForm(data, options) {
|
|
2185
|
-
return toFormData_default(data, new
|
|
2487
|
+
return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
|
|
2186
2488
|
visitor: function(value, key, path6, helpers) {
|
|
2187
|
-
if (
|
|
2489
|
+
if (platform_default.isNode && utils_default.isBuffer(value)) {
|
|
2188
2490
|
this.append(key, value.toString("base64"));
|
|
2189
2491
|
return false;
|
|
2190
2492
|
}
|
|
@@ -2193,7 +2495,7 @@ function toURLEncodedForm(data, options) {
|
|
|
2193
2495
|
}, options));
|
|
2194
2496
|
}
|
|
2195
2497
|
|
|
2196
|
-
// node_modules
|
|
2498
|
+
// node_modules/axios/lib/helpers/formDataToJSON.js
|
|
2197
2499
|
function parsePropPath(name) {
|
|
2198
2500
|
return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
|
|
2199
2501
|
return match[0] === "[]" ? "" : match[1] || match[0];
|
|
@@ -2214,6 +2516,7 @@ function arrayToObject(arr) {
|
|
|
2214
2516
|
function formDataToJSON(formData) {
|
|
2215
2517
|
function buildPath(path6, value, target, index) {
|
|
2216
2518
|
let name = path6[index++];
|
|
2519
|
+
if (name === "__proto__") return true;
|
|
2217
2520
|
const isNumericKey = Number.isFinite(+name);
|
|
2218
2521
|
const isLast = index >= path6.length;
|
|
2219
2522
|
name = !name && utils_default.isArray(target) ? target.length : name;
|
|
@@ -2245,10 +2548,7 @@ function formDataToJSON(formData) {
|
|
|
2245
2548
|
}
|
|
2246
2549
|
var formDataToJSON_default = formDataToJSON;
|
|
2247
2550
|
|
|
2248
|
-
// node_modules
|
|
2249
|
-
var DEFAULT_CONTENT_TYPE = {
|
|
2250
|
-
"Content-Type": void 0
|
|
2251
|
-
};
|
|
2551
|
+
// node_modules/axios/lib/defaults/index.js
|
|
2252
2552
|
function stringifySafely(rawValue, parser, encoder) {
|
|
2253
2553
|
if (utils_default.isString(rawValue)) {
|
|
2254
2554
|
try {
|
|
@@ -2264,7 +2564,7 @@ function stringifySafely(rawValue, parser, encoder) {
|
|
|
2264
2564
|
}
|
|
2265
2565
|
var defaults = {
|
|
2266
2566
|
transitional: transitional_default,
|
|
2267
|
-
adapter: ["xhr", "http"],
|
|
2567
|
+
adapter: ["xhr", "http", "fetch"],
|
|
2268
2568
|
transformRequest: [function transformRequest(data, headers) {
|
|
2269
2569
|
const contentType = headers.getContentType() || "";
|
|
2270
2570
|
const hasJSONContentType = contentType.indexOf("application/json") > -1;
|
|
@@ -2274,12 +2574,9 @@ var defaults = {
|
|
|
2274
2574
|
}
|
|
2275
2575
|
const isFormData2 = utils_default.isFormData(data);
|
|
2276
2576
|
if (isFormData2) {
|
|
2277
|
-
if (!hasJSONContentType) {
|
|
2278
|
-
return data;
|
|
2279
|
-
}
|
|
2280
2577
|
return hasJSONContentType ? JSON.stringify(formDataToJSON_default(data)) : data;
|
|
2281
2578
|
}
|
|
2282
|
-
if (utils_default.isArrayBuffer(data) || utils_default.isBuffer(data) || utils_default.isStream(data) || utils_default.isFile(data) || utils_default.isBlob(data)) {
|
|
2579
|
+
if (utils_default.isArrayBuffer(data) || utils_default.isBuffer(data) || utils_default.isStream(data) || utils_default.isFile(data) || utils_default.isBlob(data) || utils_default.isReadableStream(data)) {
|
|
2283
2580
|
return data;
|
|
2284
2581
|
}
|
|
2285
2582
|
if (utils_default.isArrayBufferView(data)) {
|
|
@@ -2313,6 +2610,9 @@ var defaults = {
|
|
|
2313
2610
|
const transitional2 = this.transitional || defaults.transitional;
|
|
2314
2611
|
const forcedJSONParsing = transitional2 && transitional2.forcedJSONParsing;
|
|
2315
2612
|
const JSONRequested = this.responseType === "json";
|
|
2613
|
+
if (utils_default.isResponse(data) || utils_default.isReadableStream(data)) {
|
|
2614
|
+
return data;
|
|
2615
|
+
}
|
|
2316
2616
|
if (data && utils_default.isString(data) && (forcedJSONParsing && !this.responseType || JSONRequested)) {
|
|
2317
2617
|
const silentJSONParsing = transitional2 && transitional2.silentJSONParsing;
|
|
2318
2618
|
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
@@ -2339,27 +2639,25 @@ var defaults = {
|
|
|
2339
2639
|
maxContentLength: -1,
|
|
2340
2640
|
maxBodyLength: -1,
|
|
2341
2641
|
env: {
|
|
2342
|
-
FormData:
|
|
2343
|
-
Blob:
|
|
2642
|
+
FormData: platform_default.classes.FormData,
|
|
2643
|
+
Blob: platform_default.classes.Blob
|
|
2344
2644
|
},
|
|
2345
2645
|
validateStatus: function validateStatus(status) {
|
|
2346
2646
|
return status >= 200 && status < 300;
|
|
2347
2647
|
},
|
|
2348
2648
|
headers: {
|
|
2349
2649
|
common: {
|
|
2350
|
-
"Accept": "application/json, text/plain, */*"
|
|
2650
|
+
"Accept": "application/json, text/plain, */*",
|
|
2651
|
+
"Content-Type": void 0
|
|
2351
2652
|
}
|
|
2352
2653
|
}
|
|
2353
2654
|
};
|
|
2354
|
-
utils_default.forEach(["delete", "get", "head"],
|
|
2655
|
+
utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method) => {
|
|
2355
2656
|
defaults.headers[method] = {};
|
|
2356
2657
|
});
|
|
2357
|
-
utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
|
|
2358
|
-
defaults.headers[method] = utils_default.merge(DEFAULT_CONTENT_TYPE);
|
|
2359
|
-
});
|
|
2360
2658
|
var defaults_default = defaults;
|
|
2361
2659
|
|
|
2362
|
-
// node_modules
|
|
2660
|
+
// node_modules/axios/lib/helpers/parseHeaders.js
|
|
2363
2661
|
var ignoreDuplicateOf = utils_default.toObjectSet([
|
|
2364
2662
|
"age",
|
|
2365
2663
|
"authorization",
|
|
@@ -2404,7 +2702,7 @@ var parseHeaders_default = (rawHeaders) => {
|
|
|
2404
2702
|
return parsed;
|
|
2405
2703
|
};
|
|
2406
2704
|
|
|
2407
|
-
// node_modules
|
|
2705
|
+
// node_modules/axios/lib/core/AxiosHeaders.js
|
|
2408
2706
|
var $internals = Symbol("internals");
|
|
2409
2707
|
function normalizeHeader(header) {
|
|
2410
2708
|
return header && String(header).trim().toLowerCase();
|
|
@@ -2424,13 +2722,14 @@ function parseTokens(str) {
|
|
|
2424
2722
|
}
|
|
2425
2723
|
return tokens;
|
|
2426
2724
|
}
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
}
|
|
2430
|
-
function matchHeaderValue(context, value, header, filter2) {
|
|
2725
|
+
var isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
|
|
2726
|
+
function matchHeaderValue(context, value, header, filter2, isHeaderNameFilter) {
|
|
2431
2727
|
if (utils_default.isFunction(filter2)) {
|
|
2432
2728
|
return filter2.call(this, value, header);
|
|
2433
2729
|
}
|
|
2730
|
+
if (isHeaderNameFilter) {
|
|
2731
|
+
value = header;
|
|
2732
|
+
}
|
|
2434
2733
|
if (!utils_default.isString(value)) return;
|
|
2435
2734
|
if (utils_default.isString(filter2)) {
|
|
2436
2735
|
return value.indexOf(filter2) !== -1;
|
|
@@ -2476,6 +2775,15 @@ var AxiosHeaders = class {
|
|
|
2476
2775
|
setHeaders(header, valueOrRewrite);
|
|
2477
2776
|
} else if (utils_default.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
|
|
2478
2777
|
setHeaders(parseHeaders_default(header), valueOrRewrite);
|
|
2778
|
+
} else if (utils_default.isObject(header) && utils_default.isIterable(header)) {
|
|
2779
|
+
let obj = {}, dest, key;
|
|
2780
|
+
for (const entry of header) {
|
|
2781
|
+
if (!utils_default.isArray(entry)) {
|
|
2782
|
+
throw TypeError("Object iterator must return a key-value pair");
|
|
2783
|
+
}
|
|
2784
|
+
obj[key = entry[0]] = (dest = obj[key]) ? utils_default.isArray(dest) ? [...dest, entry[1]] : [dest, entry[1]] : entry[1];
|
|
2785
|
+
}
|
|
2786
|
+
setHeaders(obj, valueOrRewrite);
|
|
2479
2787
|
} else {
|
|
2480
2788
|
header != null && setHeader(valueOrRewrite, header, rewrite);
|
|
2481
2789
|
}
|
|
@@ -2537,7 +2845,7 @@ var AxiosHeaders = class {
|
|
|
2537
2845
|
let deleted = false;
|
|
2538
2846
|
while (i--) {
|
|
2539
2847
|
const key = keys[i];
|
|
2540
|
-
if (!matcher || matchHeaderValue(this, this[key], key, matcher)) {
|
|
2848
|
+
if (!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {
|
|
2541
2849
|
delete this[key];
|
|
2542
2850
|
deleted = true;
|
|
2543
2851
|
}
|
|
@@ -2579,6 +2887,9 @@ var AxiosHeaders = class {
|
|
|
2579
2887
|
toString() {
|
|
2580
2888
|
return Object.entries(this.toJSON()).map(([header, value]) => header + ": " + value).join("\n");
|
|
2581
2889
|
}
|
|
2890
|
+
getSetCookie() {
|
|
2891
|
+
return this.get("set-cookie") || [];
|
|
2892
|
+
}
|
|
2582
2893
|
get [Symbol.toStringTag]() {
|
|
2583
2894
|
return "AxiosHeaders";
|
|
2584
2895
|
}
|
|
@@ -2608,11 +2919,19 @@ var AxiosHeaders = class {
|
|
|
2608
2919
|
}
|
|
2609
2920
|
};
|
|
2610
2921
|
AxiosHeaders.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
|
|
2611
|
-
utils_default.
|
|
2922
|
+
utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
|
|
2923
|
+
let mapped = key[0].toUpperCase() + key.slice(1);
|
|
2924
|
+
return {
|
|
2925
|
+
get: () => value,
|
|
2926
|
+
set(headerValue) {
|
|
2927
|
+
this[mapped] = headerValue;
|
|
2928
|
+
}
|
|
2929
|
+
};
|
|
2930
|
+
});
|
|
2612
2931
|
utils_default.freezeMethods(AxiosHeaders);
|
|
2613
2932
|
var AxiosHeaders_default = AxiosHeaders;
|
|
2614
2933
|
|
|
2615
|
-
// node_modules
|
|
2934
|
+
// node_modules/axios/lib/core/transformData.js
|
|
2616
2935
|
function transformData(fns, response) {
|
|
2617
2936
|
const config = this || defaults_default;
|
|
2618
2937
|
const context = response || config;
|
|
@@ -2625,12 +2944,12 @@ function transformData(fns, response) {
|
|
|
2625
2944
|
return data;
|
|
2626
2945
|
}
|
|
2627
2946
|
|
|
2628
|
-
// node_modules
|
|
2947
|
+
// node_modules/axios/lib/cancel/isCancel.js
|
|
2629
2948
|
function isCancel(value) {
|
|
2630
2949
|
return !!(value && value.__CANCEL__);
|
|
2631
2950
|
}
|
|
2632
2951
|
|
|
2633
|
-
// node_modules
|
|
2952
|
+
// node_modules/axios/lib/cancel/CanceledError.js
|
|
2634
2953
|
function CanceledError(message, config, request) {
|
|
2635
2954
|
AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
|
|
2636
2955
|
this.name = "CanceledError";
|
|
@@ -2640,7 +2959,7 @@ utils_default.inherits(CanceledError, AxiosError_default, {
|
|
|
2640
2959
|
});
|
|
2641
2960
|
var CanceledError_default = CanceledError;
|
|
2642
2961
|
|
|
2643
|
-
// node_modules
|
|
2962
|
+
// node_modules/axios/lib/core/settle.js
|
|
2644
2963
|
function settle(resolve, reject, response) {
|
|
2645
2964
|
const validateStatus2 = response.config.validateStatus;
|
|
2646
2965
|
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
|
@@ -2656,25 +2975,26 @@ function settle(resolve, reject, response) {
|
|
|
2656
2975
|
}
|
|
2657
2976
|
}
|
|
2658
2977
|
|
|
2659
|
-
// node_modules
|
|
2978
|
+
// node_modules/axios/lib/helpers/isAbsoluteURL.js
|
|
2660
2979
|
function isAbsoluteURL(url2) {
|
|
2661
2980
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
|
|
2662
2981
|
}
|
|
2663
2982
|
|
|
2664
|
-
// node_modules
|
|
2983
|
+
// node_modules/axios/lib/helpers/combineURLs.js
|
|
2665
2984
|
function combineURLs(baseURL, relativeURL) {
|
|
2666
|
-
return relativeURL ? baseURL.replace(
|
|
2985
|
+
return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
|
|
2667
2986
|
}
|
|
2668
2987
|
|
|
2669
|
-
// node_modules
|
|
2670
|
-
function buildFullPath(baseURL, requestedURL) {
|
|
2671
|
-
|
|
2988
|
+
// node_modules/axios/lib/core/buildFullPath.js
|
|
2989
|
+
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
2990
|
+
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
|
2991
|
+
if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
|
|
2672
2992
|
return combineURLs(baseURL, requestedURL);
|
|
2673
2993
|
}
|
|
2674
2994
|
return requestedURL;
|
|
2675
2995
|
}
|
|
2676
2996
|
|
|
2677
|
-
// node_modules
|
|
2997
|
+
// node_modules/axios/lib/adapters/http.js
|
|
2678
2998
|
var import_proxy_from_env = __toESM(require_proxy_from_env(), 1);
|
|
2679
2999
|
var import_http = __toESM(require("http"), 1);
|
|
2680
3000
|
var import_https = __toESM(require("https"), 1);
|
|
@@ -2682,19 +3002,19 @@ var import_util2 = __toESM(require("util"), 1);
|
|
|
2682
3002
|
var import_follow_redirects = __toESM(require_follow_redirects(), 1);
|
|
2683
3003
|
var import_zlib = __toESM(require("zlib"), 1);
|
|
2684
3004
|
|
|
2685
|
-
// node_modules
|
|
2686
|
-
var VERSION = "1.
|
|
3005
|
+
// node_modules/axios/lib/env/data.js
|
|
3006
|
+
var VERSION = "1.9.0";
|
|
2687
3007
|
|
|
2688
|
-
// node_modules
|
|
3008
|
+
// node_modules/axios/lib/helpers/parseProtocol.js
|
|
2689
3009
|
function parseProtocol(url2) {
|
|
2690
3010
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
|
|
2691
3011
|
return match && match[1] || "";
|
|
2692
3012
|
}
|
|
2693
3013
|
|
|
2694
|
-
// node_modules
|
|
3014
|
+
// node_modules/axios/lib/helpers/fromDataURI.js
|
|
2695
3015
|
var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
|
|
2696
3016
|
function fromDataURI(uri, asBlob, options) {
|
|
2697
|
-
const _Blob = options && options.Blob ||
|
|
3017
|
+
const _Blob = options && options.Blob || platform_default.classes.Blob;
|
|
2698
3018
|
const protocol = parseProtocol(uri);
|
|
2699
3019
|
if (asBlob === void 0 && _Blob) {
|
|
2700
3020
|
asBlob = true;
|
|
@@ -2720,75 +3040,11 @@ function fromDataURI(uri, asBlob, options) {
|
|
|
2720
3040
|
throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
|
|
2721
3041
|
}
|
|
2722
3042
|
|
|
2723
|
-
// node_modules
|
|
3043
|
+
// node_modules/axios/lib/adapters/http.js
|
|
2724
3044
|
var import_stream4 = __toESM(require("stream"), 1);
|
|
2725
3045
|
|
|
2726
|
-
// node_modules
|
|
3046
|
+
// node_modules/axios/lib/helpers/AxiosTransformStream.js
|
|
2727
3047
|
var import_stream = __toESM(require("stream"), 1);
|
|
2728
|
-
|
|
2729
|
-
// node_modules/.pnpm/axios@1.3.2/node_modules/axios/lib/helpers/throttle.js
|
|
2730
|
-
function throttle(fn, freq) {
|
|
2731
|
-
let timestamp = 0;
|
|
2732
|
-
const threshold = 1e3 / freq;
|
|
2733
|
-
let timer = null;
|
|
2734
|
-
return function throttled(force, args) {
|
|
2735
|
-
const now = Date.now();
|
|
2736
|
-
if (force || now - timestamp > threshold) {
|
|
2737
|
-
if (timer) {
|
|
2738
|
-
clearTimeout(timer);
|
|
2739
|
-
timer = null;
|
|
2740
|
-
}
|
|
2741
|
-
timestamp = now;
|
|
2742
|
-
return fn.apply(null, args);
|
|
2743
|
-
}
|
|
2744
|
-
if (!timer) {
|
|
2745
|
-
timer = setTimeout(() => {
|
|
2746
|
-
timer = null;
|
|
2747
|
-
timestamp = Date.now();
|
|
2748
|
-
return fn.apply(null, args);
|
|
2749
|
-
}, threshold - (now - timestamp));
|
|
2750
|
-
}
|
|
2751
|
-
};
|
|
2752
|
-
}
|
|
2753
|
-
var throttle_default = throttle;
|
|
2754
|
-
|
|
2755
|
-
// node_modules/.pnpm/axios@1.3.2/node_modules/axios/lib/helpers/speedometer.js
|
|
2756
|
-
function speedometer(samplesCount, min) {
|
|
2757
|
-
samplesCount = samplesCount || 10;
|
|
2758
|
-
const bytes = new Array(samplesCount);
|
|
2759
|
-
const timestamps = new Array(samplesCount);
|
|
2760
|
-
let head = 0;
|
|
2761
|
-
let tail = 0;
|
|
2762
|
-
let firstSampleTS;
|
|
2763
|
-
min = min !== void 0 ? min : 1e3;
|
|
2764
|
-
return function push(chunkLength) {
|
|
2765
|
-
const now = Date.now();
|
|
2766
|
-
const startedAt = timestamps[tail];
|
|
2767
|
-
if (!firstSampleTS) {
|
|
2768
|
-
firstSampleTS = now;
|
|
2769
|
-
}
|
|
2770
|
-
bytes[head] = chunkLength;
|
|
2771
|
-
timestamps[head] = now;
|
|
2772
|
-
let i = tail;
|
|
2773
|
-
let bytesCount = 0;
|
|
2774
|
-
while (i !== head) {
|
|
2775
|
-
bytesCount += bytes[i++];
|
|
2776
|
-
i = i % samplesCount;
|
|
2777
|
-
}
|
|
2778
|
-
head = (head + 1) % samplesCount;
|
|
2779
|
-
if (head === tail) {
|
|
2780
|
-
tail = (tail + 1) % samplesCount;
|
|
2781
|
-
}
|
|
2782
|
-
if (now - firstSampleTS < min) {
|
|
2783
|
-
return;
|
|
2784
|
-
}
|
|
2785
|
-
const passed = startedAt && now - startedAt;
|
|
2786
|
-
return passed ? Math.round(bytesCount * 1e3 / passed) : void 0;
|
|
2787
|
-
};
|
|
2788
|
-
}
|
|
2789
|
-
var speedometer_default = speedometer;
|
|
2790
|
-
|
|
2791
|
-
// node_modules/.pnpm/axios@1.3.2/node_modules/axios/lib/helpers/AxiosTransformStream.js
|
|
2792
3048
|
var kInternals = Symbol("internals");
|
|
2793
3049
|
var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
2794
3050
|
constructor(options) {
|
|
@@ -2805,11 +3061,8 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
2805
3061
|
super({
|
|
2806
3062
|
readableHighWaterMark: options.chunkSize
|
|
2807
3063
|
});
|
|
2808
|
-
const self2 = this;
|
|
2809
3064
|
const internals = this[kInternals] = {
|
|
2810
|
-
length: options.length,
|
|
2811
3065
|
timeWindow: options.timeWindow,
|
|
2812
|
-
ticksRate: options.ticksRate,
|
|
2813
3066
|
chunkSize: options.chunkSize,
|
|
2814
3067
|
maxRate: options.maxRate,
|
|
2815
3068
|
minChunkSize: options.minChunkSize,
|
|
@@ -2820,7 +3073,6 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
2820
3073
|
bytes: 0,
|
|
2821
3074
|
onReadCallback: null
|
|
2822
3075
|
};
|
|
2823
|
-
const _speedometer = speedometer_default(internals.ticksRate * options.samplesCount, internals.timeWindow);
|
|
2824
3076
|
this.on("newListener", (event) => {
|
|
2825
3077
|
if (event === "progress") {
|
|
2826
3078
|
if (!internals.isCaptured) {
|
|
@@ -2828,30 +3080,6 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
2828
3080
|
}
|
|
2829
3081
|
}
|
|
2830
3082
|
});
|
|
2831
|
-
let bytesNotified = 0;
|
|
2832
|
-
internals.updateProgress = throttle_default(function throttledHandler() {
|
|
2833
|
-
const totalBytes = internals.length;
|
|
2834
|
-
const bytesTransferred = internals.bytesSeen;
|
|
2835
|
-
const progressBytes = bytesTransferred - bytesNotified;
|
|
2836
|
-
if (!progressBytes || self2.destroyed) return;
|
|
2837
|
-
const rate = _speedometer(progressBytes);
|
|
2838
|
-
bytesNotified = bytesTransferred;
|
|
2839
|
-
process.nextTick(() => {
|
|
2840
|
-
self2.emit("progress", {
|
|
2841
|
-
"loaded": bytesTransferred,
|
|
2842
|
-
"total": totalBytes,
|
|
2843
|
-
"progress": totalBytes ? bytesTransferred / totalBytes : void 0,
|
|
2844
|
-
"bytes": progressBytes,
|
|
2845
|
-
"rate": rate ? rate : void 0,
|
|
2846
|
-
"estimated": rate && totalBytes && bytesTransferred <= totalBytes ? (totalBytes - bytesTransferred) / rate : void 0
|
|
2847
|
-
});
|
|
2848
|
-
});
|
|
2849
|
-
}, internals.ticksRate);
|
|
2850
|
-
const onFinish = () => {
|
|
2851
|
-
internals.updateProgress(true);
|
|
2852
|
-
};
|
|
2853
|
-
this.once("end", onFinish);
|
|
2854
|
-
this.once("error", onFinish);
|
|
2855
3083
|
}
|
|
2856
3084
|
_read(size) {
|
|
2857
3085
|
const internals = this[kInternals];
|
|
@@ -2861,7 +3089,6 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
2861
3089
|
return super._read(size);
|
|
2862
3090
|
}
|
|
2863
3091
|
_transform(chunk, encoding, callback) {
|
|
2864
|
-
const self2 = this;
|
|
2865
3092
|
const internals = this[kInternals];
|
|
2866
3093
|
const maxRate = internals.maxRate;
|
|
2867
3094
|
const readableHighWaterMark = this.readableHighWaterMark;
|
|
@@ -2869,14 +3096,12 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
2869
3096
|
const divider = 1e3 / timeWindow;
|
|
2870
3097
|
const bytesThreshold = maxRate / divider;
|
|
2871
3098
|
const minChunkSize = internals.minChunkSize !== false ? Math.max(internals.minChunkSize, bytesThreshold * 0.01) : 0;
|
|
2872
|
-
|
|
3099
|
+
const pushChunk = (_chunk, _callback) => {
|
|
2873
3100
|
const bytes = Buffer.byteLength(_chunk);
|
|
2874
3101
|
internals.bytesSeen += bytes;
|
|
2875
3102
|
internals.bytes += bytes;
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
}
|
|
2879
|
-
if (self2.push(_chunk)) {
|
|
3103
|
+
internals.isCaptured && this.emit("progress", internals.bytesSeen);
|
|
3104
|
+
if (this.push(_chunk)) {
|
|
2880
3105
|
process.nextTick(_callback);
|
|
2881
3106
|
} else {
|
|
2882
3107
|
internals.onReadCallback = () => {
|
|
@@ -2884,7 +3109,7 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
2884
3109
|
process.nextTick(_callback);
|
|
2885
3110
|
};
|
|
2886
3111
|
}
|
|
2887
|
-
}
|
|
3112
|
+
};
|
|
2888
3113
|
const transformChunk = (_chunk, _callback) => {
|
|
2889
3114
|
const chunkSize = Buffer.byteLength(_chunk);
|
|
2890
3115
|
let chunkRemainder = null;
|
|
@@ -2930,21 +3155,17 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
2930
3155
|
}
|
|
2931
3156
|
});
|
|
2932
3157
|
}
|
|
2933
|
-
setLength(length) {
|
|
2934
|
-
this[kInternals].length = +length;
|
|
2935
|
-
return this;
|
|
2936
|
-
}
|
|
2937
3158
|
};
|
|
2938
3159
|
var AxiosTransformStream_default = AxiosTransformStream;
|
|
2939
3160
|
|
|
2940
|
-
// node_modules
|
|
2941
|
-
var import_events =
|
|
3161
|
+
// node_modules/axios/lib/adapters/http.js
|
|
3162
|
+
var import_events = require("events");
|
|
2942
3163
|
|
|
2943
|
-
// node_modules
|
|
2944
|
-
var import_util = require("util");
|
|
3164
|
+
// node_modules/axios/lib/helpers/formDataToStream.js
|
|
3165
|
+
var import_util = __toESM(require("util"), 1);
|
|
2945
3166
|
var import_stream2 = require("stream");
|
|
2946
3167
|
|
|
2947
|
-
// node_modules
|
|
3168
|
+
// node_modules/axios/lib/helpers/readBlob.js
|
|
2948
3169
|
var { asyncIterator } = Symbol;
|
|
2949
3170
|
var readBlob = async function* (blob) {
|
|
2950
3171
|
if (blob.stream) {
|
|
@@ -2959,9 +3180,9 @@ var readBlob = async function* (blob) {
|
|
|
2959
3180
|
};
|
|
2960
3181
|
var readBlob_default = readBlob;
|
|
2961
3182
|
|
|
2962
|
-
// node_modules
|
|
2963
|
-
var BOUNDARY_ALPHABET =
|
|
2964
|
-
var textEncoder = new import_util.TextEncoder();
|
|
3183
|
+
// node_modules/axios/lib/helpers/formDataToStream.js
|
|
3184
|
+
var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
|
|
3185
|
+
var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
|
|
2965
3186
|
var CRLF = "\r\n";
|
|
2966
3187
|
var CRLF_BYTES = textEncoder.encode(CRLF);
|
|
2967
3188
|
var CRLF_BYTES_COUNT = 2;
|
|
@@ -3003,7 +3224,7 @@ var formDataToStream = (form, headersHandler, options) => {
|
|
|
3003
3224
|
const {
|
|
3004
3225
|
tag = "form-data-boundary",
|
|
3005
3226
|
size = 25,
|
|
3006
|
-
boundary = tag + "-" +
|
|
3227
|
+
boundary = tag + "-" + platform_default.generateString(size, BOUNDARY_ALPHABET)
|
|
3007
3228
|
} = options || {};
|
|
3008
3229
|
if (!utils_default.isFormData(form)) {
|
|
3009
3230
|
throw TypeError("FormData instance required");
|
|
@@ -3012,7 +3233,7 @@ var formDataToStream = (form, headersHandler, options) => {
|
|
|
3012
3233
|
throw Error("boundary must be 10-70 characters long");
|
|
3013
3234
|
}
|
|
3014
3235
|
const boundaryBytes = textEncoder.encode("--" + boundary + CRLF);
|
|
3015
|
-
const footerBytes = textEncoder.encode("--" + boundary + "--" + CRLF
|
|
3236
|
+
const footerBytes = textEncoder.encode("--" + boundary + "--" + CRLF);
|
|
3016
3237
|
let contentLength = footerBytes.byteLength;
|
|
3017
3238
|
const parts = Array.from(form.entries()).map(([name, value]) => {
|
|
3018
3239
|
const part = new FormDataPart(name, value);
|
|
@@ -3038,7 +3259,7 @@ var formDataToStream = (form, headersHandler, options) => {
|
|
|
3038
3259
|
};
|
|
3039
3260
|
var formDataToStream_default = formDataToStream;
|
|
3040
3261
|
|
|
3041
|
-
// node_modules
|
|
3262
|
+
// node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
|
|
3042
3263
|
var import_stream3 = __toESM(require("stream"), 1);
|
|
3043
3264
|
var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
|
3044
3265
|
__transform(chunk, encoding, callback) {
|
|
@@ -3060,56 +3281,181 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
|
|
3060
3281
|
};
|
|
3061
3282
|
var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
|
|
3062
3283
|
|
|
3063
|
-
// node_modules
|
|
3064
|
-
var
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3284
|
+
// node_modules/axios/lib/helpers/callbackify.js
|
|
3285
|
+
var callbackify = (fn, reducer) => {
|
|
3286
|
+
return utils_default.isAsyncFn(fn) ? function(...args) {
|
|
3287
|
+
const cb = args.pop();
|
|
3288
|
+
fn.apply(this, args).then((value) => {
|
|
3289
|
+
try {
|
|
3290
|
+
reducer ? cb(null, ...reducer(value)) : cb(null, value);
|
|
3291
|
+
} catch (err) {
|
|
3292
|
+
cb(err);
|
|
3293
|
+
}
|
|
3294
|
+
}, cb);
|
|
3295
|
+
} : fn;
|
|
3071
3296
|
};
|
|
3072
|
-
var
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
if (!proxy && proxy !== false) {
|
|
3089
|
-
const proxyUrl = (0, import_proxy_from_env.getProxyForUrl)(location);
|
|
3090
|
-
if (proxyUrl) {
|
|
3091
|
-
proxy = new URL(proxyUrl);
|
|
3092
|
-
}
|
|
3093
|
-
}
|
|
3094
|
-
if (proxy) {
|
|
3095
|
-
if (proxy.username) {
|
|
3096
|
-
proxy.auth = (proxy.username || "") + ":" + (proxy.password || "");
|
|
3297
|
+
var callbackify_default = callbackify;
|
|
3298
|
+
|
|
3299
|
+
// node_modules/axios/lib/helpers/speedometer.js
|
|
3300
|
+
function speedometer(samplesCount, min) {
|
|
3301
|
+
samplesCount = samplesCount || 10;
|
|
3302
|
+
const bytes = new Array(samplesCount);
|
|
3303
|
+
const timestamps = new Array(samplesCount);
|
|
3304
|
+
let head = 0;
|
|
3305
|
+
let tail = 0;
|
|
3306
|
+
let firstSampleTS;
|
|
3307
|
+
min = min !== void 0 ? min : 1e3;
|
|
3308
|
+
return function push(chunkLength) {
|
|
3309
|
+
const now = Date.now();
|
|
3310
|
+
const startedAt = timestamps[tail];
|
|
3311
|
+
if (!firstSampleTS) {
|
|
3312
|
+
firstSampleTS = now;
|
|
3097
3313
|
}
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3314
|
+
bytes[head] = chunkLength;
|
|
3315
|
+
timestamps[head] = now;
|
|
3316
|
+
let i = tail;
|
|
3317
|
+
let bytesCount = 0;
|
|
3318
|
+
while (i !== head) {
|
|
3319
|
+
bytesCount += bytes[i++];
|
|
3320
|
+
i = i % samplesCount;
|
|
3104
3321
|
}
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3322
|
+
head = (head + 1) % samplesCount;
|
|
3323
|
+
if (head === tail) {
|
|
3324
|
+
tail = (tail + 1) % samplesCount;
|
|
3325
|
+
}
|
|
3326
|
+
if (now - firstSampleTS < min) {
|
|
3327
|
+
return;
|
|
3328
|
+
}
|
|
3329
|
+
const passed = startedAt && now - startedAt;
|
|
3330
|
+
return passed ? Math.round(bytesCount * 1e3 / passed) : void 0;
|
|
3331
|
+
};
|
|
3332
|
+
}
|
|
3333
|
+
var speedometer_default = speedometer;
|
|
3334
|
+
|
|
3335
|
+
// node_modules/axios/lib/helpers/throttle.js
|
|
3336
|
+
function throttle(fn, freq) {
|
|
3337
|
+
let timestamp = 0;
|
|
3338
|
+
let threshold = 1e3 / freq;
|
|
3339
|
+
let lastArgs;
|
|
3340
|
+
let timer;
|
|
3341
|
+
const invoke = (args, now = Date.now()) => {
|
|
3342
|
+
timestamp = now;
|
|
3343
|
+
lastArgs = null;
|
|
3344
|
+
if (timer) {
|
|
3345
|
+
clearTimeout(timer);
|
|
3346
|
+
timer = null;
|
|
3347
|
+
}
|
|
3348
|
+
fn.apply(null, args);
|
|
3349
|
+
};
|
|
3350
|
+
const throttled = (...args) => {
|
|
3351
|
+
const now = Date.now();
|
|
3352
|
+
const passed = now - timestamp;
|
|
3353
|
+
if (passed >= threshold) {
|
|
3354
|
+
invoke(args, now);
|
|
3355
|
+
} else {
|
|
3356
|
+
lastArgs = args;
|
|
3357
|
+
if (!timer) {
|
|
3358
|
+
timer = setTimeout(() => {
|
|
3359
|
+
timer = null;
|
|
3360
|
+
invoke(lastArgs);
|
|
3361
|
+
}, threshold - passed);
|
|
3362
|
+
}
|
|
3363
|
+
}
|
|
3364
|
+
};
|
|
3365
|
+
const flush = () => lastArgs && invoke(lastArgs);
|
|
3366
|
+
return [throttled, flush];
|
|
3367
|
+
}
|
|
3368
|
+
var throttle_default = throttle;
|
|
3369
|
+
|
|
3370
|
+
// node_modules/axios/lib/helpers/progressEventReducer.js
|
|
3371
|
+
var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
3372
|
+
let bytesNotified = 0;
|
|
3373
|
+
const _speedometer = speedometer_default(50, 250);
|
|
3374
|
+
return throttle_default((e) => {
|
|
3375
|
+
const loaded = e.loaded;
|
|
3376
|
+
const total = e.lengthComputable ? e.total : void 0;
|
|
3377
|
+
const progressBytes = loaded - bytesNotified;
|
|
3378
|
+
const rate = _speedometer(progressBytes);
|
|
3379
|
+
const inRange = loaded <= total;
|
|
3380
|
+
bytesNotified = loaded;
|
|
3381
|
+
const data = {
|
|
3382
|
+
loaded,
|
|
3383
|
+
total,
|
|
3384
|
+
progress: total ? loaded / total : void 0,
|
|
3385
|
+
bytes: progressBytes,
|
|
3386
|
+
rate: rate ? rate : void 0,
|
|
3387
|
+
estimated: rate && total && inRange ? (total - loaded) / rate : void 0,
|
|
3388
|
+
event: e,
|
|
3389
|
+
lengthComputable: total != null,
|
|
3390
|
+
[isDownloadStream ? "download" : "upload"]: true
|
|
3391
|
+
};
|
|
3392
|
+
listener(data);
|
|
3393
|
+
}, freq);
|
|
3394
|
+
};
|
|
3395
|
+
var progressEventDecorator = (total, throttled) => {
|
|
3396
|
+
const lengthComputable = total != null;
|
|
3397
|
+
return [(loaded) => throttled[0]({
|
|
3398
|
+
lengthComputable,
|
|
3399
|
+
total,
|
|
3400
|
+
loaded
|
|
3401
|
+
}), throttled[1]];
|
|
3402
|
+
};
|
|
3403
|
+
var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
|
|
3404
|
+
|
|
3405
|
+
// node_modules/axios/lib/adapters/http.js
|
|
3406
|
+
var zlibOptions = {
|
|
3407
|
+
flush: import_zlib.default.constants.Z_SYNC_FLUSH,
|
|
3408
|
+
finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
|
|
3409
|
+
};
|
|
3410
|
+
var brotliOptions = {
|
|
3411
|
+
flush: import_zlib.default.constants.BROTLI_OPERATION_FLUSH,
|
|
3412
|
+
finishFlush: import_zlib.default.constants.BROTLI_OPERATION_FLUSH
|
|
3413
|
+
};
|
|
3414
|
+
var isBrotliSupported = utils_default.isFunction(import_zlib.default.createBrotliDecompress);
|
|
3415
|
+
var { http: httpFollow, https: httpsFollow } = import_follow_redirects.default;
|
|
3416
|
+
var isHttps = /https:?/;
|
|
3417
|
+
var supportedProtocols = platform_default.protocols.map((protocol) => {
|
|
3418
|
+
return protocol + ":";
|
|
3419
|
+
});
|
|
3420
|
+
var flushOnFinish = (stream4, [throttled, flush]) => {
|
|
3421
|
+
stream4.on("end", flush).on("error", flush);
|
|
3422
|
+
return throttled;
|
|
3423
|
+
};
|
|
3424
|
+
function dispatchBeforeRedirect(options, responseDetails) {
|
|
3425
|
+
if (options.beforeRedirects.proxy) {
|
|
3426
|
+
options.beforeRedirects.proxy(options);
|
|
3427
|
+
}
|
|
3428
|
+
if (options.beforeRedirects.config) {
|
|
3429
|
+
options.beforeRedirects.config(options, responseDetails);
|
|
3430
|
+
}
|
|
3431
|
+
}
|
|
3432
|
+
function setProxy(options, configProxy, location) {
|
|
3433
|
+
let proxy = configProxy;
|
|
3434
|
+
if (!proxy && proxy !== false) {
|
|
3435
|
+
const proxyUrl = import_proxy_from_env.default.getProxyForUrl(location);
|
|
3436
|
+
if (proxyUrl) {
|
|
3437
|
+
proxy = new URL(proxyUrl);
|
|
3438
|
+
}
|
|
3439
|
+
}
|
|
3440
|
+
if (proxy) {
|
|
3441
|
+
if (proxy.username) {
|
|
3442
|
+
proxy.auth = (proxy.username || "") + ":" + (proxy.password || "");
|
|
3443
|
+
}
|
|
3444
|
+
if (proxy.auth) {
|
|
3445
|
+
if (proxy.auth.username || proxy.auth.password) {
|
|
3446
|
+
proxy.auth = (proxy.auth.username || "") + ":" + (proxy.auth.password || "");
|
|
3447
|
+
}
|
|
3448
|
+
const base64 = Buffer.from(proxy.auth, "utf8").toString("base64");
|
|
3449
|
+
options.headers["Proxy-Authorization"] = "Basic " + base64;
|
|
3450
|
+
}
|
|
3451
|
+
options.headers.host = options.hostname + (options.port ? ":" + options.port : "");
|
|
3452
|
+
const proxyHost = proxy.hostname || proxy.host;
|
|
3453
|
+
options.hostname = proxyHost;
|
|
3454
|
+
options.host = proxyHost;
|
|
3455
|
+
options.port = proxy.port;
|
|
3456
|
+
options.path = location;
|
|
3457
|
+
if (proxy.protocol) {
|
|
3458
|
+
options.protocol = proxy.protocol.includes(":") ? proxy.protocol : `${proxy.protocol}:`;
|
|
3113
3459
|
}
|
|
3114
3460
|
}
|
|
3115
3461
|
options.beforeRedirects.proxy = function beforeRedirect(redirectOptions) {
|
|
@@ -3117,20 +3463,58 @@ function setProxy(options, configProxy, location) {
|
|
|
3117
3463
|
};
|
|
3118
3464
|
}
|
|
3119
3465
|
var isHttpAdapterSupported = typeof process !== "undefined" && utils_default.kindOf(process) === "process";
|
|
3466
|
+
var wrapAsync = (asyncExecutor) => {
|
|
3467
|
+
return new Promise((resolve, reject) => {
|
|
3468
|
+
let onDone;
|
|
3469
|
+
let isDone;
|
|
3470
|
+
const done = (value, isRejected) => {
|
|
3471
|
+
if (isDone) return;
|
|
3472
|
+
isDone = true;
|
|
3473
|
+
onDone && onDone(value, isRejected);
|
|
3474
|
+
};
|
|
3475
|
+
const _resolve = (value) => {
|
|
3476
|
+
done(value);
|
|
3477
|
+
resolve(value);
|
|
3478
|
+
};
|
|
3479
|
+
const _reject = (reason) => {
|
|
3480
|
+
done(reason, true);
|
|
3481
|
+
reject(reason);
|
|
3482
|
+
};
|
|
3483
|
+
asyncExecutor(_resolve, _reject, (onDoneHandler) => onDone = onDoneHandler).catch(_reject);
|
|
3484
|
+
});
|
|
3485
|
+
};
|
|
3486
|
+
var resolveFamily = ({ address, family }) => {
|
|
3487
|
+
if (!utils_default.isString(address)) {
|
|
3488
|
+
throw TypeError("address must be a string");
|
|
3489
|
+
}
|
|
3490
|
+
return {
|
|
3491
|
+
address,
|
|
3492
|
+
family: family || (address.indexOf(".") < 0 ? 6 : 4)
|
|
3493
|
+
};
|
|
3494
|
+
};
|
|
3495
|
+
var buildAddressEntry = (address, family) => resolveFamily(utils_default.isObject(address) ? address : { address, family });
|
|
3120
3496
|
var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
3121
|
-
return
|
|
3122
|
-
let data = config
|
|
3123
|
-
const responseType = config
|
|
3124
|
-
const responseEncoding = config.responseEncoding;
|
|
3497
|
+
return wrapAsync(async function dispatchHttpRequest(resolve, reject, onDone) {
|
|
3498
|
+
let { data, lookup, family } = config;
|
|
3499
|
+
const { responseType, responseEncoding } = config;
|
|
3125
3500
|
const method = config.method.toUpperCase();
|
|
3126
|
-
let isFinished;
|
|
3127
3501
|
let isDone;
|
|
3128
3502
|
let rejected = false;
|
|
3129
3503
|
let req;
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3504
|
+
if (lookup) {
|
|
3505
|
+
const _lookup = callbackify_default(lookup, (value) => utils_default.isArray(value) ? value : [value]);
|
|
3506
|
+
lookup = (hostname, opt, cb) => {
|
|
3507
|
+
_lookup(hostname, opt, (err, arg0, arg1) => {
|
|
3508
|
+
if (err) {
|
|
3509
|
+
return cb(err);
|
|
3510
|
+
}
|
|
3511
|
+
const addresses = utils_default.isArray(arg0) ? arg0.map((addr) => buildAddressEntry(addr)) : [buildAddressEntry(arg0, arg1)];
|
|
3512
|
+
opt.all ? cb(err, addresses) : cb(err, addresses[0].address, addresses[0].family);
|
|
3513
|
+
});
|
|
3514
|
+
};
|
|
3515
|
+
}
|
|
3516
|
+
const emitter = new import_events.EventEmitter();
|
|
3517
|
+
const onFinished = () => {
|
|
3134
3518
|
if (config.cancelToken) {
|
|
3135
3519
|
config.cancelToken.unsubscribe(abort);
|
|
3136
3520
|
}
|
|
@@ -3138,22 +3522,14 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3138
3522
|
config.signal.removeEventListener("abort", abort);
|
|
3139
3523
|
}
|
|
3140
3524
|
emitter.removeAllListeners();
|
|
3141
|
-
}
|
|
3142
|
-
|
|
3143
|
-
if (isDone) return;
|
|
3525
|
+
};
|
|
3526
|
+
onDone((value, isRejected) => {
|
|
3144
3527
|
isDone = true;
|
|
3145
3528
|
if (isRejected) {
|
|
3146
3529
|
rejected = true;
|
|
3147
3530
|
onFinished();
|
|
3148
3531
|
}
|
|
3149
|
-
|
|
3150
|
-
}
|
|
3151
|
-
const resolve = function resolve2(value) {
|
|
3152
|
-
done(value);
|
|
3153
|
-
};
|
|
3154
|
-
const reject = function reject2(value) {
|
|
3155
|
-
done(value, true);
|
|
3156
|
-
};
|
|
3532
|
+
});
|
|
3157
3533
|
function abort(reason) {
|
|
3158
3534
|
emitter.emit("abort", !reason || reason.type ? new CanceledError_default(null, config, req) : reason);
|
|
3159
3535
|
}
|
|
@@ -3164,8 +3540,8 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3164
3540
|
config.signal.aborted ? abort() : config.signal.addEventListener("abort", abort);
|
|
3165
3541
|
}
|
|
3166
3542
|
}
|
|
3167
|
-
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
3168
|
-
const parsed = new URL(fullPath,
|
|
3543
|
+
const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
|
|
3544
|
+
const parsed = new URL(fullPath, platform_default.hasBrowserEnv ? platform_default.origin : void 0);
|
|
3169
3545
|
const protocol = parsed.protocol || supportedProtocols[0];
|
|
3170
3546
|
if (protocol === "data:") {
|
|
3171
3547
|
let convertedData;
|
|
@@ -3209,8 +3585,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3209
3585
|
}
|
|
3210
3586
|
const headers = AxiosHeaders_default.from(config.headers).normalize();
|
|
3211
3587
|
headers.set("User-Agent", "axios/" + VERSION, false);
|
|
3212
|
-
const onDownloadProgress = config
|
|
3213
|
-
const onUploadProgress = config.onUploadProgress;
|
|
3588
|
+
const { onUploadProgress, onDownloadProgress } = config;
|
|
3214
3589
|
const maxRate = config.maxRate;
|
|
3215
3590
|
let maxUploadRate = void 0;
|
|
3216
3591
|
let maxDownloadRate = void 0;
|
|
@@ -3227,11 +3602,11 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3227
3602
|
if (!headers.hasContentLength()) {
|
|
3228
3603
|
try {
|
|
3229
3604
|
const knownLength = await import_util2.default.promisify(data.getLength).call(data);
|
|
3230
|
-
headers.setContentLength(knownLength);
|
|
3605
|
+
Number.isFinite(knownLength) && knownLength >= 0 && headers.setContentLength(knownLength);
|
|
3231
3606
|
} catch (e) {
|
|
3232
3607
|
}
|
|
3233
3608
|
}
|
|
3234
|
-
} else if (utils_default.isBlob(data)) {
|
|
3609
|
+
} else if (utils_default.isBlob(data) || utils_default.isFile(data)) {
|
|
3235
3610
|
data.size && headers.setContentType(data.type || "application/octet-stream");
|
|
3236
3611
|
headers.setContentLength(data.size || 0);
|
|
3237
3612
|
data = import_stream4.default.Readable.from(readBlob_default(data));
|
|
@@ -3269,14 +3644,15 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3269
3644
|
data = import_stream4.default.Readable.from(data, { objectMode: false });
|
|
3270
3645
|
}
|
|
3271
3646
|
data = import_stream4.default.pipeline([data, new AxiosTransformStream_default({
|
|
3272
|
-
length: contentLength,
|
|
3273
3647
|
maxRate: utils_default.toFiniteNumber(maxUploadRate)
|
|
3274
3648
|
})], utils_default.noop);
|
|
3275
|
-
onUploadProgress && data.on("progress", (
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3649
|
+
onUploadProgress && data.on("progress", flushOnFinish(
|
|
3650
|
+
data,
|
|
3651
|
+
progressEventDecorator(
|
|
3652
|
+
contentLength,
|
|
3653
|
+
progressEventReducer(asyncDecorator(onUploadProgress), false, 3)
|
|
3654
|
+
)
|
|
3655
|
+
));
|
|
3280
3656
|
}
|
|
3281
3657
|
let auth = void 0;
|
|
3282
3658
|
if (config.auth) {
|
|
@@ -3316,13 +3692,15 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3316
3692
|
agents: { http: config.httpAgent, https: config.httpsAgent },
|
|
3317
3693
|
auth,
|
|
3318
3694
|
protocol,
|
|
3695
|
+
family,
|
|
3319
3696
|
beforeRedirect: dispatchBeforeRedirect,
|
|
3320
3697
|
beforeRedirects: {}
|
|
3321
3698
|
};
|
|
3699
|
+
!utils_default.isUndefined(lookup) && (options.lookup = lookup);
|
|
3322
3700
|
if (config.socketPath) {
|
|
3323
3701
|
options.socketPath = config.socketPath;
|
|
3324
3702
|
} else {
|
|
3325
|
-
options.hostname = parsed.hostname;
|
|
3703
|
+
options.hostname = parsed.hostname.startsWith("[") ? parsed.hostname.slice(1, -1) : parsed.hostname;
|
|
3326
3704
|
options.port = parsed.port;
|
|
3327
3705
|
setProxy(options, config.proxy, protocol + "//" + parsed.hostname + (parsed.port ? ":" + parsed.port : "") + options.path);
|
|
3328
3706
|
}
|
|
@@ -3354,16 +3732,17 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3354
3732
|
if (req.destroyed) return;
|
|
3355
3733
|
const streams = [res];
|
|
3356
3734
|
const responseLength = +res.headers["content-length"];
|
|
3357
|
-
if (onDownloadProgress) {
|
|
3735
|
+
if (onDownloadProgress || maxDownloadRate) {
|
|
3358
3736
|
const transformStream = new AxiosTransformStream_default({
|
|
3359
|
-
length: utils_default.toFiniteNumber(responseLength),
|
|
3360
3737
|
maxRate: utils_default.toFiniteNumber(maxDownloadRate)
|
|
3361
3738
|
});
|
|
3362
|
-
onDownloadProgress && transformStream.on("progress", (
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3739
|
+
onDownloadProgress && transformStream.on("progress", flushOnFinish(
|
|
3740
|
+
transformStream,
|
|
3741
|
+
progressEventDecorator(
|
|
3742
|
+
responseLength,
|
|
3743
|
+
progressEventReducer(asyncDecorator(onDownloadProgress), true, 3)
|
|
3744
|
+
)
|
|
3745
|
+
));
|
|
3367
3746
|
streams.push(transformStream);
|
|
3368
3747
|
}
|
|
3369
3748
|
let responseStream = res;
|
|
@@ -3372,7 +3751,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3372
3751
|
if (method === "HEAD" || res.statusCode === 204) {
|
|
3373
3752
|
delete res.headers["content-encoding"];
|
|
3374
3753
|
}
|
|
3375
|
-
switch (res.headers["content-encoding"]) {
|
|
3754
|
+
switch ((res.headers["content-encoding"] || "").toLowerCase()) {
|
|
3376
3755
|
/*eslint default-case:0*/
|
|
3377
3756
|
case "gzip":
|
|
3378
3757
|
case "x-gzip":
|
|
@@ -3430,7 +3809,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3430
3809
|
return;
|
|
3431
3810
|
}
|
|
3432
3811
|
const err = new AxiosError_default(
|
|
3433
|
-
"
|
|
3812
|
+
"stream has been aborted",
|
|
3434
3813
|
AxiosError_default.ERR_BAD_RESPONSE,
|
|
3435
3814
|
config,
|
|
3436
3815
|
lastRequest
|
|
@@ -3453,7 +3832,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3453
3832
|
}
|
|
3454
3833
|
response.data = responseData;
|
|
3455
3834
|
} catch (err) {
|
|
3456
|
-
reject(AxiosError_default.from(err, null, config, response.request, response));
|
|
3835
|
+
return reject(AxiosError_default.from(err, null, config, response.request, response));
|
|
3457
3836
|
}
|
|
3458
3837
|
settle(resolve, reject, response);
|
|
3459
3838
|
});
|
|
@@ -3477,7 +3856,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3477
3856
|
});
|
|
3478
3857
|
if (config.timeout) {
|
|
3479
3858
|
const timeout = parseInt(config.timeout, 10);
|
|
3480
|
-
if (isNaN(timeout)) {
|
|
3859
|
+
if (Number.isNaN(timeout)) {
|
|
3481
3860
|
reject(new AxiosError_default(
|
|
3482
3861
|
"error trying to parse `config.timeout` to int",
|
|
3483
3862
|
AxiosError_default.ERR_BAD_OPTION_VALUE,
|
|
@@ -3524,144 +3903,181 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3524
3903
|
});
|
|
3525
3904
|
};
|
|
3526
3905
|
|
|
3527
|
-
// node_modules
|
|
3528
|
-
var
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
if (utils_default.isNumber(expires)) {
|
|
3536
|
-
cookie.push("expires=" + new Date(expires).toGMTString());
|
|
3537
|
-
}
|
|
3538
|
-
if (utils_default.isString(path6)) {
|
|
3539
|
-
cookie.push("path=" + path6);
|
|
3540
|
-
}
|
|
3541
|
-
if (utils_default.isString(domain)) {
|
|
3542
|
-
cookie.push("domain=" + domain);
|
|
3543
|
-
}
|
|
3544
|
-
if (secure === true) {
|
|
3545
|
-
cookie.push("secure");
|
|
3546
|
-
}
|
|
3547
|
-
document.cookie = cookie.join("; ");
|
|
3548
|
-
},
|
|
3549
|
-
read: function read(name) {
|
|
3550
|
-
const match = document.cookie.match(new RegExp("(^|;\\s*)(" + name + ")=([^;]*)"));
|
|
3551
|
-
return match ? decodeURIComponent(match[3]) : null;
|
|
3552
|
-
},
|
|
3553
|
-
remove: function remove(name) {
|
|
3554
|
-
this.write(name, "", Date.now() - 864e5);
|
|
3555
|
-
}
|
|
3556
|
-
};
|
|
3557
|
-
}()
|
|
3558
|
-
) : (
|
|
3559
|
-
// Non standard browser env (web workers, react-native) lack needed support.
|
|
3560
|
-
/* @__PURE__ */ function nonStandardBrowserEnv() {
|
|
3561
|
-
return {
|
|
3562
|
-
write: function write() {
|
|
3563
|
-
},
|
|
3564
|
-
read: function read() {
|
|
3565
|
-
return null;
|
|
3566
|
-
},
|
|
3567
|
-
remove: function remove() {
|
|
3568
|
-
}
|
|
3569
|
-
};
|
|
3570
|
-
}()
|
|
3571
|
-
);
|
|
3906
|
+
// node_modules/axios/lib/helpers/isURLSameOrigin.js
|
|
3907
|
+
var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? /* @__PURE__ */ ((origin2, isMSIE) => (url2) => {
|
|
3908
|
+
url2 = new URL(url2, platform_default.origin);
|
|
3909
|
+
return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
|
|
3910
|
+
})(
|
|
3911
|
+
new URL(platform_default.origin),
|
|
3912
|
+
platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
|
|
3913
|
+
) : () => true;
|
|
3572
3914
|
|
|
3573
|
-
// node_modules
|
|
3574
|
-
var
|
|
3575
|
-
// Standard browser envs
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
host: urlParsingNode.host,
|
|
3592
|
-
search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, "") : "",
|
|
3593
|
-
hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, "") : "",
|
|
3594
|
-
hostname: urlParsingNode.hostname,
|
|
3595
|
-
port: urlParsingNode.port,
|
|
3596
|
-
pathname: urlParsingNode.pathname.charAt(0) === "/" ? urlParsingNode.pathname : "/" + urlParsingNode.pathname
|
|
3597
|
-
};
|
|
3915
|
+
// node_modules/axios/lib/helpers/cookies.js
|
|
3916
|
+
var cookies_default = platform_default.hasStandardBrowserEnv ? (
|
|
3917
|
+
// Standard browser envs support document.cookie
|
|
3918
|
+
{
|
|
3919
|
+
write(name, value, expires, path6, domain, secure) {
|
|
3920
|
+
const cookie = [name + "=" + encodeURIComponent(value)];
|
|
3921
|
+
utils_default.isNumber(expires) && cookie.push("expires=" + new Date(expires).toGMTString());
|
|
3922
|
+
utils_default.isString(path6) && cookie.push("path=" + path6);
|
|
3923
|
+
utils_default.isString(domain) && cookie.push("domain=" + domain);
|
|
3924
|
+
secure === true && cookie.push("secure");
|
|
3925
|
+
document.cookie = cookie.join("; ");
|
|
3926
|
+
},
|
|
3927
|
+
read(name) {
|
|
3928
|
+
const match = document.cookie.match(new RegExp("(^|;\\s*)(" + name + ")=([^;]*)"));
|
|
3929
|
+
return match ? decodeURIComponent(match[3]) : null;
|
|
3930
|
+
},
|
|
3931
|
+
remove(name) {
|
|
3932
|
+
this.write(name, "", Date.now() - 864e5);
|
|
3598
3933
|
}
|
|
3599
|
-
|
|
3600
|
-
return function isURLSameOrigin(requestURL) {
|
|
3601
|
-
const parsed = utils_default.isString(requestURL) ? resolveURL(requestURL) : requestURL;
|
|
3602
|
-
return parsed.protocol === originURL.protocol && parsed.host === originURL.host;
|
|
3603
|
-
};
|
|
3604
|
-
}()
|
|
3934
|
+
}
|
|
3605
3935
|
) : (
|
|
3606
|
-
// Non
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3936
|
+
// Non-standard browser env (web workers, react-native) lack needed support.
|
|
3937
|
+
{
|
|
3938
|
+
write() {
|
|
3939
|
+
},
|
|
3940
|
+
read() {
|
|
3941
|
+
return null;
|
|
3942
|
+
},
|
|
3943
|
+
remove() {
|
|
3944
|
+
}
|
|
3945
|
+
}
|
|
3612
3946
|
);
|
|
3613
3947
|
|
|
3614
|
-
// node_modules
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3948
|
+
// node_modules/axios/lib/core/mergeConfig.js
|
|
3949
|
+
var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? { ...thing } : thing;
|
|
3950
|
+
function mergeConfig(config1, config2) {
|
|
3951
|
+
config2 = config2 || {};
|
|
3952
|
+
const config = {};
|
|
3953
|
+
function getMergedValue(target, source, prop, caseless) {
|
|
3954
|
+
if (utils_default.isPlainObject(target) && utils_default.isPlainObject(source)) {
|
|
3955
|
+
return utils_default.merge.call({ caseless }, target, source);
|
|
3956
|
+
} else if (utils_default.isPlainObject(source)) {
|
|
3957
|
+
return utils_default.merge({}, source);
|
|
3958
|
+
} else if (utils_default.isArray(source)) {
|
|
3959
|
+
return source.slice();
|
|
3960
|
+
}
|
|
3961
|
+
return source;
|
|
3962
|
+
}
|
|
3963
|
+
function mergeDeepProperties(a, b, prop, caseless) {
|
|
3964
|
+
if (!utils_default.isUndefined(b)) {
|
|
3965
|
+
return getMergedValue(a, b, prop, caseless);
|
|
3966
|
+
} else if (!utils_default.isUndefined(a)) {
|
|
3967
|
+
return getMergedValue(void 0, a, prop, caseless);
|
|
3968
|
+
}
|
|
3969
|
+
}
|
|
3970
|
+
function valueFromConfig2(a, b) {
|
|
3971
|
+
if (!utils_default.isUndefined(b)) {
|
|
3972
|
+
return getMergedValue(void 0, b);
|
|
3973
|
+
}
|
|
3974
|
+
}
|
|
3975
|
+
function defaultToConfig2(a, b) {
|
|
3976
|
+
if (!utils_default.isUndefined(b)) {
|
|
3977
|
+
return getMergedValue(void 0, b);
|
|
3978
|
+
} else if (!utils_default.isUndefined(a)) {
|
|
3979
|
+
return getMergedValue(void 0, a);
|
|
3980
|
+
}
|
|
3981
|
+
}
|
|
3982
|
+
function mergeDirectKeys(a, b, prop) {
|
|
3983
|
+
if (prop in config2) {
|
|
3984
|
+
return getMergedValue(a, b);
|
|
3985
|
+
} else if (prop in config1) {
|
|
3986
|
+
return getMergedValue(void 0, a);
|
|
3987
|
+
}
|
|
3988
|
+
}
|
|
3989
|
+
const mergeMap = {
|
|
3990
|
+
url: valueFromConfig2,
|
|
3991
|
+
method: valueFromConfig2,
|
|
3992
|
+
data: valueFromConfig2,
|
|
3993
|
+
baseURL: defaultToConfig2,
|
|
3994
|
+
transformRequest: defaultToConfig2,
|
|
3995
|
+
transformResponse: defaultToConfig2,
|
|
3996
|
+
paramsSerializer: defaultToConfig2,
|
|
3997
|
+
timeout: defaultToConfig2,
|
|
3998
|
+
timeoutMessage: defaultToConfig2,
|
|
3999
|
+
withCredentials: defaultToConfig2,
|
|
4000
|
+
withXSRFToken: defaultToConfig2,
|
|
4001
|
+
adapter: defaultToConfig2,
|
|
4002
|
+
responseType: defaultToConfig2,
|
|
4003
|
+
xsrfCookieName: defaultToConfig2,
|
|
4004
|
+
xsrfHeaderName: defaultToConfig2,
|
|
4005
|
+
onUploadProgress: defaultToConfig2,
|
|
4006
|
+
onDownloadProgress: defaultToConfig2,
|
|
4007
|
+
decompress: defaultToConfig2,
|
|
4008
|
+
maxContentLength: defaultToConfig2,
|
|
4009
|
+
maxBodyLength: defaultToConfig2,
|
|
4010
|
+
beforeRedirect: defaultToConfig2,
|
|
4011
|
+
transport: defaultToConfig2,
|
|
4012
|
+
httpAgent: defaultToConfig2,
|
|
4013
|
+
httpsAgent: defaultToConfig2,
|
|
4014
|
+
cancelToken: defaultToConfig2,
|
|
4015
|
+
socketPath: defaultToConfig2,
|
|
4016
|
+
responseEncoding: defaultToConfig2,
|
|
4017
|
+
validateStatus: mergeDirectKeys,
|
|
4018
|
+
headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
|
|
3636
4019
|
};
|
|
4020
|
+
utils_default.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
4021
|
+
const merge2 = mergeMap[prop] || mergeDeepProperties;
|
|
4022
|
+
const configValue = merge2(config1[prop], config2[prop], prop);
|
|
4023
|
+
utils_default.isUndefined(configValue) && merge2 !== mergeDirectKeys || (config[prop] = configValue);
|
|
4024
|
+
});
|
|
4025
|
+
return config;
|
|
3637
4026
|
}
|
|
4027
|
+
|
|
4028
|
+
// node_modules/axios/lib/helpers/resolveConfig.js
|
|
4029
|
+
var resolveConfig_default = (config) => {
|
|
4030
|
+
const newConfig = mergeConfig({}, config);
|
|
4031
|
+
let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
|
|
4032
|
+
newConfig.headers = headers = AxiosHeaders_default.from(headers);
|
|
4033
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
|
|
4034
|
+
if (auth) {
|
|
4035
|
+
headers.set(
|
|
4036
|
+
"Authorization",
|
|
4037
|
+
"Basic " + btoa((auth.username || "") + ":" + (auth.password ? unescape(encodeURIComponent(auth.password)) : ""))
|
|
4038
|
+
);
|
|
4039
|
+
}
|
|
4040
|
+
let contentType;
|
|
4041
|
+
if (utils_default.isFormData(data)) {
|
|
4042
|
+
if (platform_default.hasStandardBrowserEnv || platform_default.hasStandardBrowserWebWorkerEnv) {
|
|
4043
|
+
headers.setContentType(void 0);
|
|
4044
|
+
} else if ((contentType = headers.getContentType()) !== false) {
|
|
4045
|
+
const [type, ...tokens] = contentType ? contentType.split(";").map((token) => token.trim()).filter(Boolean) : [];
|
|
4046
|
+
headers.setContentType([type || "multipart/form-data", ...tokens].join("; "));
|
|
4047
|
+
}
|
|
4048
|
+
}
|
|
4049
|
+
if (platform_default.hasStandardBrowserEnv) {
|
|
4050
|
+
withXSRFToken && utils_default.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(newConfig));
|
|
4051
|
+
if (withXSRFToken || withXSRFToken !== false && isURLSameOrigin_default(newConfig.url)) {
|
|
4052
|
+
const xsrfValue = xsrfHeaderName && xsrfCookieName && cookies_default.read(xsrfCookieName);
|
|
4053
|
+
if (xsrfValue) {
|
|
4054
|
+
headers.set(xsrfHeaderName, xsrfValue);
|
|
4055
|
+
}
|
|
4056
|
+
}
|
|
4057
|
+
}
|
|
4058
|
+
return newConfig;
|
|
4059
|
+
};
|
|
4060
|
+
|
|
4061
|
+
// node_modules/axios/lib/adapters/xhr.js
|
|
3638
4062
|
var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
|
|
3639
4063
|
var xhr_default = isXHRAdapterSupported && function(config) {
|
|
3640
4064
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
const
|
|
4065
|
+
const _config = resolveConfig_default(config);
|
|
4066
|
+
let requestData = _config.data;
|
|
4067
|
+
const requestHeaders = AxiosHeaders_default.from(_config.headers).normalize();
|
|
4068
|
+
let { responseType, onUploadProgress, onDownloadProgress } = _config;
|
|
3644
4069
|
let onCanceled;
|
|
4070
|
+
let uploadThrottled, downloadThrottled;
|
|
4071
|
+
let flushUpload, flushDownload;
|
|
3645
4072
|
function done() {
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
config.signal.removeEventListener("abort", onCanceled);
|
|
3651
|
-
}
|
|
3652
|
-
}
|
|
3653
|
-
if (utils_default.isFormData(requestData) && (node_default.isStandardBrowserEnv || node_default.isStandardBrowserWebWorkerEnv)) {
|
|
3654
|
-
requestHeaders.setContentType(false);
|
|
4073
|
+
flushUpload && flushUpload();
|
|
4074
|
+
flushDownload && flushDownload();
|
|
4075
|
+
_config.cancelToken && _config.cancelToken.unsubscribe(onCanceled);
|
|
4076
|
+
_config.signal && _config.signal.removeEventListener("abort", onCanceled);
|
|
3655
4077
|
}
|
|
3656
4078
|
let request = new XMLHttpRequest();
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : "";
|
|
3660
|
-
requestHeaders.set("Authorization", "Basic " + btoa(username + ":" + password));
|
|
3661
|
-
}
|
|
3662
|
-
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
3663
|
-
request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
|
|
3664
|
-
request.timeout = config.timeout;
|
|
4079
|
+
request.open(_config.method.toUpperCase(), _config.url, true);
|
|
4080
|
+
request.timeout = _config.timeout;
|
|
3665
4081
|
function onloadend() {
|
|
3666
4082
|
if (!request) {
|
|
3667
4083
|
return;
|
|
@@ -3712,10 +4128,10 @@ var xhr_default = isXHRAdapterSupported && function(config) {
|
|
|
3712
4128
|
request = null;
|
|
3713
4129
|
};
|
|
3714
4130
|
request.ontimeout = function handleTimeout() {
|
|
3715
|
-
let timeoutErrorMessage =
|
|
3716
|
-
const transitional2 =
|
|
3717
|
-
if (
|
|
3718
|
-
timeoutErrorMessage =
|
|
4131
|
+
let timeoutErrorMessage = _config.timeout ? "timeout of " + _config.timeout + "ms exceeded" : "timeout exceeded";
|
|
4132
|
+
const transitional2 = _config.transitional || transitional_default;
|
|
4133
|
+
if (_config.timeoutErrorMessage) {
|
|
4134
|
+
timeoutErrorMessage = _config.timeoutErrorMessage;
|
|
3719
4135
|
}
|
|
3720
4136
|
reject(new AxiosError_default(
|
|
3721
4137
|
timeoutErrorMessage,
|
|
@@ -3725,31 +4141,28 @@ var xhr_default = isXHRAdapterSupported && function(config) {
|
|
|
3725
4141
|
));
|
|
3726
4142
|
request = null;
|
|
3727
4143
|
};
|
|
3728
|
-
if (node_default.isStandardBrowserEnv) {
|
|
3729
|
-
const xsrfValue = (config.withCredentials || isURLSameOrigin_default(fullPath)) && config.xsrfCookieName && cookies_default.read(config.xsrfCookieName);
|
|
3730
|
-
if (xsrfValue) {
|
|
3731
|
-
requestHeaders.set(config.xsrfHeaderName, xsrfValue);
|
|
3732
|
-
}
|
|
3733
|
-
}
|
|
3734
4144
|
requestData === void 0 && requestHeaders.setContentType(null);
|
|
3735
4145
|
if ("setRequestHeader" in request) {
|
|
3736
4146
|
utils_default.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
|
|
3737
4147
|
request.setRequestHeader(key, val);
|
|
3738
4148
|
});
|
|
3739
4149
|
}
|
|
3740
|
-
if (!utils_default.isUndefined(
|
|
3741
|
-
request.withCredentials = !!
|
|
4150
|
+
if (!utils_default.isUndefined(_config.withCredentials)) {
|
|
4151
|
+
request.withCredentials = !!_config.withCredentials;
|
|
3742
4152
|
}
|
|
3743
4153
|
if (responseType && responseType !== "json") {
|
|
3744
|
-
request.responseType =
|
|
4154
|
+
request.responseType = _config.responseType;
|
|
3745
4155
|
}
|
|
3746
|
-
if (
|
|
3747
|
-
|
|
4156
|
+
if (onDownloadProgress) {
|
|
4157
|
+
[downloadThrottled, flushDownload] = progressEventReducer(onDownloadProgress, true);
|
|
4158
|
+
request.addEventListener("progress", downloadThrottled);
|
|
3748
4159
|
}
|
|
3749
|
-
if (
|
|
3750
|
-
|
|
4160
|
+
if (onUploadProgress && request.upload) {
|
|
4161
|
+
[uploadThrottled, flushUpload] = progressEventReducer(onUploadProgress);
|
|
4162
|
+
request.upload.addEventListener("progress", uploadThrottled);
|
|
4163
|
+
request.upload.addEventListener("loadend", flushUpload);
|
|
3751
4164
|
}
|
|
3752
|
-
if (
|
|
4165
|
+
if (_config.cancelToken || _config.signal) {
|
|
3753
4166
|
onCanceled = (cancel) => {
|
|
3754
4167
|
if (!request) {
|
|
3755
4168
|
return;
|
|
@@ -3758,13 +4171,13 @@ var xhr_default = isXHRAdapterSupported && function(config) {
|
|
|
3758
4171
|
request.abort();
|
|
3759
4172
|
request = null;
|
|
3760
4173
|
};
|
|
3761
|
-
|
|
3762
|
-
if (
|
|
3763
|
-
|
|
4174
|
+
_config.cancelToken && _config.cancelToken.subscribe(onCanceled);
|
|
4175
|
+
if (_config.signal) {
|
|
4176
|
+
_config.signal.aborted ? onCanceled() : _config.signal.addEventListener("abort", onCanceled);
|
|
3764
4177
|
}
|
|
3765
4178
|
}
|
|
3766
|
-
const protocol = parseProtocol(
|
|
3767
|
-
if (protocol &&
|
|
4179
|
+
const protocol = parseProtocol(_config.url);
|
|
4180
|
+
if (protocol && platform_default.protocols.indexOf(protocol) === -1) {
|
|
3768
4181
|
reject(new AxiosError_default("Unsupported protocol " + protocol + ":", AxiosError_default.ERR_BAD_REQUEST, config));
|
|
3769
4182
|
return;
|
|
3770
4183
|
}
|
|
@@ -3772,10 +4185,288 @@ var xhr_default = isXHRAdapterSupported && function(config) {
|
|
|
3772
4185
|
});
|
|
3773
4186
|
};
|
|
3774
4187
|
|
|
3775
|
-
// node_modules
|
|
4188
|
+
// node_modules/axios/lib/helpers/composeSignals.js
|
|
4189
|
+
var composeSignals = (signals, timeout) => {
|
|
4190
|
+
const { length } = signals = signals ? signals.filter(Boolean) : [];
|
|
4191
|
+
if (timeout || length) {
|
|
4192
|
+
let controller = new AbortController();
|
|
4193
|
+
let aborted;
|
|
4194
|
+
const onabort = function(reason) {
|
|
4195
|
+
if (!aborted) {
|
|
4196
|
+
aborted = true;
|
|
4197
|
+
unsubscribe();
|
|
4198
|
+
const err = reason instanceof Error ? reason : this.reason;
|
|
4199
|
+
controller.abort(err instanceof AxiosError_default ? err : new CanceledError_default(err instanceof Error ? err.message : err));
|
|
4200
|
+
}
|
|
4201
|
+
};
|
|
4202
|
+
let timer = timeout && setTimeout(() => {
|
|
4203
|
+
timer = null;
|
|
4204
|
+
onabort(new AxiosError_default(`timeout ${timeout} of ms exceeded`, AxiosError_default.ETIMEDOUT));
|
|
4205
|
+
}, timeout);
|
|
4206
|
+
const unsubscribe = () => {
|
|
4207
|
+
if (signals) {
|
|
4208
|
+
timer && clearTimeout(timer);
|
|
4209
|
+
timer = null;
|
|
4210
|
+
signals.forEach((signal2) => {
|
|
4211
|
+
signal2.unsubscribe ? signal2.unsubscribe(onabort) : signal2.removeEventListener("abort", onabort);
|
|
4212
|
+
});
|
|
4213
|
+
signals = null;
|
|
4214
|
+
}
|
|
4215
|
+
};
|
|
4216
|
+
signals.forEach((signal2) => signal2.addEventListener("abort", onabort));
|
|
4217
|
+
const { signal } = controller;
|
|
4218
|
+
signal.unsubscribe = () => utils_default.asap(unsubscribe);
|
|
4219
|
+
return signal;
|
|
4220
|
+
}
|
|
4221
|
+
};
|
|
4222
|
+
var composeSignals_default = composeSignals;
|
|
4223
|
+
|
|
4224
|
+
// node_modules/axios/lib/helpers/trackStream.js
|
|
4225
|
+
var streamChunk = function* (chunk, chunkSize) {
|
|
4226
|
+
let len = chunk.byteLength;
|
|
4227
|
+
if (!chunkSize || len < chunkSize) {
|
|
4228
|
+
yield chunk;
|
|
4229
|
+
return;
|
|
4230
|
+
}
|
|
4231
|
+
let pos = 0;
|
|
4232
|
+
let end;
|
|
4233
|
+
while (pos < len) {
|
|
4234
|
+
end = pos + chunkSize;
|
|
4235
|
+
yield chunk.slice(pos, end);
|
|
4236
|
+
pos = end;
|
|
4237
|
+
}
|
|
4238
|
+
};
|
|
4239
|
+
var readBytes = async function* (iterable, chunkSize) {
|
|
4240
|
+
for await (const chunk of readStream(iterable)) {
|
|
4241
|
+
yield* streamChunk(chunk, chunkSize);
|
|
4242
|
+
}
|
|
4243
|
+
};
|
|
4244
|
+
var readStream = async function* (stream4) {
|
|
4245
|
+
if (stream4[Symbol.asyncIterator]) {
|
|
4246
|
+
yield* stream4;
|
|
4247
|
+
return;
|
|
4248
|
+
}
|
|
4249
|
+
const reader = stream4.getReader();
|
|
4250
|
+
try {
|
|
4251
|
+
for (; ; ) {
|
|
4252
|
+
const { done, value } = await reader.read();
|
|
4253
|
+
if (done) {
|
|
4254
|
+
break;
|
|
4255
|
+
}
|
|
4256
|
+
yield value;
|
|
4257
|
+
}
|
|
4258
|
+
} finally {
|
|
4259
|
+
await reader.cancel();
|
|
4260
|
+
}
|
|
4261
|
+
};
|
|
4262
|
+
var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
|
|
4263
|
+
const iterator2 = readBytes(stream4, chunkSize);
|
|
4264
|
+
let bytes = 0;
|
|
4265
|
+
let done;
|
|
4266
|
+
let _onFinish = (e) => {
|
|
4267
|
+
if (!done) {
|
|
4268
|
+
done = true;
|
|
4269
|
+
onFinish && onFinish(e);
|
|
4270
|
+
}
|
|
4271
|
+
};
|
|
4272
|
+
return new ReadableStream({
|
|
4273
|
+
async pull(controller) {
|
|
4274
|
+
try {
|
|
4275
|
+
const { done: done2, value } = await iterator2.next();
|
|
4276
|
+
if (done2) {
|
|
4277
|
+
_onFinish();
|
|
4278
|
+
controller.close();
|
|
4279
|
+
return;
|
|
4280
|
+
}
|
|
4281
|
+
let len = value.byteLength;
|
|
4282
|
+
if (onProgress) {
|
|
4283
|
+
let loadedBytes = bytes += len;
|
|
4284
|
+
onProgress(loadedBytes);
|
|
4285
|
+
}
|
|
4286
|
+
controller.enqueue(new Uint8Array(value));
|
|
4287
|
+
} catch (err) {
|
|
4288
|
+
_onFinish(err);
|
|
4289
|
+
throw err;
|
|
4290
|
+
}
|
|
4291
|
+
},
|
|
4292
|
+
cancel(reason) {
|
|
4293
|
+
_onFinish(reason);
|
|
4294
|
+
return iterator2.return();
|
|
4295
|
+
}
|
|
4296
|
+
}, {
|
|
4297
|
+
highWaterMark: 2
|
|
4298
|
+
});
|
|
4299
|
+
};
|
|
4300
|
+
|
|
4301
|
+
// node_modules/axios/lib/adapters/fetch.js
|
|
4302
|
+
var isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
|
|
4303
|
+
var isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
|
|
4304
|
+
var encodeText = isFetchSupported && (typeof TextEncoder === "function" ? /* @__PURE__ */ ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : async (str) => new Uint8Array(await new Response(str).arrayBuffer()));
|
|
4305
|
+
var test = (fn, ...args) => {
|
|
4306
|
+
try {
|
|
4307
|
+
return !!fn(...args);
|
|
4308
|
+
} catch (e) {
|
|
4309
|
+
return false;
|
|
4310
|
+
}
|
|
4311
|
+
};
|
|
4312
|
+
var supportsRequestStream = isReadableStreamSupported && test(() => {
|
|
4313
|
+
let duplexAccessed = false;
|
|
4314
|
+
const hasContentType = new Request(platform_default.origin, {
|
|
4315
|
+
body: new ReadableStream(),
|
|
4316
|
+
method: "POST",
|
|
4317
|
+
get duplex() {
|
|
4318
|
+
duplexAccessed = true;
|
|
4319
|
+
return "half";
|
|
4320
|
+
}
|
|
4321
|
+
}).headers.has("Content-Type");
|
|
4322
|
+
return duplexAccessed && !hasContentType;
|
|
4323
|
+
});
|
|
4324
|
+
var DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
4325
|
+
var supportsResponseStream = isReadableStreamSupported && test(() => utils_default.isReadableStream(new Response("").body));
|
|
4326
|
+
var resolvers = {
|
|
4327
|
+
stream: supportsResponseStream && ((res) => res.body)
|
|
4328
|
+
};
|
|
4329
|
+
isFetchSupported && ((res) => {
|
|
4330
|
+
["text", "arrayBuffer", "blob", "formData", "stream"].forEach((type) => {
|
|
4331
|
+
!resolvers[type] && (resolvers[type] = utils_default.isFunction(res[type]) ? (res2) => res2[type]() : (_, config) => {
|
|
4332
|
+
throw new AxiosError_default(`Response type '${type}' is not supported`, AxiosError_default.ERR_NOT_SUPPORT, config);
|
|
4333
|
+
});
|
|
4334
|
+
});
|
|
4335
|
+
})(new Response());
|
|
4336
|
+
var getBodyLength = async (body) => {
|
|
4337
|
+
if (body == null) {
|
|
4338
|
+
return 0;
|
|
4339
|
+
}
|
|
4340
|
+
if (utils_default.isBlob(body)) {
|
|
4341
|
+
return body.size;
|
|
4342
|
+
}
|
|
4343
|
+
if (utils_default.isSpecCompliantForm(body)) {
|
|
4344
|
+
const _request = new Request(platform_default.origin, {
|
|
4345
|
+
method: "POST",
|
|
4346
|
+
body
|
|
4347
|
+
});
|
|
4348
|
+
return (await _request.arrayBuffer()).byteLength;
|
|
4349
|
+
}
|
|
4350
|
+
if (utils_default.isArrayBufferView(body) || utils_default.isArrayBuffer(body)) {
|
|
4351
|
+
return body.byteLength;
|
|
4352
|
+
}
|
|
4353
|
+
if (utils_default.isURLSearchParams(body)) {
|
|
4354
|
+
body = body + "";
|
|
4355
|
+
}
|
|
4356
|
+
if (utils_default.isString(body)) {
|
|
4357
|
+
return (await encodeText(body)).byteLength;
|
|
4358
|
+
}
|
|
4359
|
+
};
|
|
4360
|
+
var resolveBodyLength = async (headers, body) => {
|
|
4361
|
+
const length = utils_default.toFiniteNumber(headers.getContentLength());
|
|
4362
|
+
return length == null ? getBodyLength(body) : length;
|
|
4363
|
+
};
|
|
4364
|
+
var fetch_default = isFetchSupported && (async (config) => {
|
|
4365
|
+
let {
|
|
4366
|
+
url: url2,
|
|
4367
|
+
method,
|
|
4368
|
+
data,
|
|
4369
|
+
signal,
|
|
4370
|
+
cancelToken,
|
|
4371
|
+
timeout,
|
|
4372
|
+
onDownloadProgress,
|
|
4373
|
+
onUploadProgress,
|
|
4374
|
+
responseType,
|
|
4375
|
+
headers,
|
|
4376
|
+
withCredentials = "same-origin",
|
|
4377
|
+
fetchOptions
|
|
4378
|
+
} = resolveConfig_default(config);
|
|
4379
|
+
responseType = responseType ? (responseType + "").toLowerCase() : "text";
|
|
4380
|
+
let composedSignal = composeSignals_default([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
|
|
4381
|
+
let request;
|
|
4382
|
+
const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => {
|
|
4383
|
+
composedSignal.unsubscribe();
|
|
4384
|
+
});
|
|
4385
|
+
let requestContentLength;
|
|
4386
|
+
try {
|
|
4387
|
+
if (onUploadProgress && supportsRequestStream && method !== "get" && method !== "head" && (requestContentLength = await resolveBodyLength(headers, data)) !== 0) {
|
|
4388
|
+
let _request = new Request(url2, {
|
|
4389
|
+
method: "POST",
|
|
4390
|
+
body: data,
|
|
4391
|
+
duplex: "half"
|
|
4392
|
+
});
|
|
4393
|
+
let contentTypeHeader;
|
|
4394
|
+
if (utils_default.isFormData(data) && (contentTypeHeader = _request.headers.get("content-type"))) {
|
|
4395
|
+
headers.setContentType(contentTypeHeader);
|
|
4396
|
+
}
|
|
4397
|
+
if (_request.body) {
|
|
4398
|
+
const [onProgress, flush] = progressEventDecorator(
|
|
4399
|
+
requestContentLength,
|
|
4400
|
+
progressEventReducer(asyncDecorator(onUploadProgress))
|
|
4401
|
+
);
|
|
4402
|
+
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
|
|
4403
|
+
}
|
|
4404
|
+
}
|
|
4405
|
+
if (!utils_default.isString(withCredentials)) {
|
|
4406
|
+
withCredentials = withCredentials ? "include" : "omit";
|
|
4407
|
+
}
|
|
4408
|
+
const isCredentialsSupported = "credentials" in Request.prototype;
|
|
4409
|
+
request = new Request(url2, {
|
|
4410
|
+
...fetchOptions,
|
|
4411
|
+
signal: composedSignal,
|
|
4412
|
+
method: method.toUpperCase(),
|
|
4413
|
+
headers: headers.normalize().toJSON(),
|
|
4414
|
+
body: data,
|
|
4415
|
+
duplex: "half",
|
|
4416
|
+
credentials: isCredentialsSupported ? withCredentials : void 0
|
|
4417
|
+
});
|
|
4418
|
+
let response = await fetch(request);
|
|
4419
|
+
const isStreamResponse = supportsResponseStream && (responseType === "stream" || responseType === "response");
|
|
4420
|
+
if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
|
|
4421
|
+
const options = {};
|
|
4422
|
+
["status", "statusText", "headers"].forEach((prop) => {
|
|
4423
|
+
options[prop] = response[prop];
|
|
4424
|
+
});
|
|
4425
|
+
const responseContentLength = utils_default.toFiniteNumber(response.headers.get("content-length"));
|
|
4426
|
+
const [onProgress, flush] = onDownloadProgress && progressEventDecorator(
|
|
4427
|
+
responseContentLength,
|
|
4428
|
+
progressEventReducer(asyncDecorator(onDownloadProgress), true)
|
|
4429
|
+
) || [];
|
|
4430
|
+
response = new Response(
|
|
4431
|
+
trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
|
|
4432
|
+
flush && flush();
|
|
4433
|
+
unsubscribe && unsubscribe();
|
|
4434
|
+
}),
|
|
4435
|
+
options
|
|
4436
|
+
);
|
|
4437
|
+
}
|
|
4438
|
+
responseType = responseType || "text";
|
|
4439
|
+
let responseData = await resolvers[utils_default.findKey(resolvers, responseType) || "text"](response, config);
|
|
4440
|
+
!isStreamResponse && unsubscribe && unsubscribe();
|
|
4441
|
+
return await new Promise((resolve, reject) => {
|
|
4442
|
+
settle(resolve, reject, {
|
|
4443
|
+
data: responseData,
|
|
4444
|
+
headers: AxiosHeaders_default.from(response.headers),
|
|
4445
|
+
status: response.status,
|
|
4446
|
+
statusText: response.statusText,
|
|
4447
|
+
config,
|
|
4448
|
+
request
|
|
4449
|
+
});
|
|
4450
|
+
});
|
|
4451
|
+
} catch (err) {
|
|
4452
|
+
unsubscribe && unsubscribe();
|
|
4453
|
+
if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
|
|
4454
|
+
throw Object.assign(
|
|
4455
|
+
new AxiosError_default("Network Error", AxiosError_default.ERR_NETWORK, config, request),
|
|
4456
|
+
{
|
|
4457
|
+
cause: err.cause || err
|
|
4458
|
+
}
|
|
4459
|
+
);
|
|
4460
|
+
}
|
|
4461
|
+
throw AxiosError_default.from(err, err && err.code, config, request);
|
|
4462
|
+
}
|
|
4463
|
+
});
|
|
4464
|
+
|
|
4465
|
+
// node_modules/axios/lib/adapters/adapters.js
|
|
3776
4466
|
var knownAdapters = {
|
|
3777
4467
|
http: http_default,
|
|
3778
|
-
xhr: xhr_default
|
|
4468
|
+
xhr: xhr_default,
|
|
4469
|
+
fetch: fetch_default
|
|
3779
4470
|
};
|
|
3780
4471
|
utils_default.forEach(knownAdapters, (fn, value) => {
|
|
3781
4472
|
if (fn) {
|
|
@@ -3786,38 +4477,46 @@ utils_default.forEach(knownAdapters, (fn, value) => {
|
|
|
3786
4477
|
Object.defineProperty(fn, "adapterName", { value });
|
|
3787
4478
|
}
|
|
3788
4479
|
});
|
|
4480
|
+
var renderReason = (reason) => `- ${reason}`;
|
|
4481
|
+
var isResolvedHandle = (adapter) => utils_default.isFunction(adapter) || adapter === null || adapter === false;
|
|
3789
4482
|
var adapters_default = {
|
|
3790
4483
|
getAdapter: (adapters) => {
|
|
3791
4484
|
adapters = utils_default.isArray(adapters) ? adapters : [adapters];
|
|
3792
4485
|
const { length } = adapters;
|
|
3793
4486
|
let nameOrAdapter;
|
|
3794
4487
|
let adapter;
|
|
4488
|
+
const rejectedReasons = {};
|
|
3795
4489
|
for (let i = 0; i < length; i++) {
|
|
3796
4490
|
nameOrAdapter = adapters[i];
|
|
3797
|
-
|
|
4491
|
+
let id;
|
|
4492
|
+
adapter = nameOrAdapter;
|
|
4493
|
+
if (!isResolvedHandle(nameOrAdapter)) {
|
|
4494
|
+
adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
|
|
4495
|
+
if (adapter === void 0) {
|
|
4496
|
+
throw new AxiosError_default(`Unknown adapter '${id}'`);
|
|
4497
|
+
}
|
|
4498
|
+
}
|
|
4499
|
+
if (adapter) {
|
|
3798
4500
|
break;
|
|
3799
4501
|
}
|
|
4502
|
+
rejectedReasons[id || "#" + i] = adapter;
|
|
3800
4503
|
}
|
|
3801
4504
|
if (!adapter) {
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
utils_default.hasOwnProp(knownAdapters, nameOrAdapter) ? `Adapter '${nameOrAdapter}' is not available in the build` : `Unknown adapter '${nameOrAdapter}'`
|
|
4505
|
+
const reasons = Object.entries(rejectedReasons).map(
|
|
4506
|
+
([id, state]) => `adapter ${id} ` + (state === false ? "is not supported by the environment" : "is not available in the build")
|
|
4507
|
+
);
|
|
4508
|
+
let s = length ? reasons.length > 1 ? "since :\n" + reasons.map(renderReason).join("\n") : " " + renderReason(reasons[0]) : "as no adapter specified";
|
|
4509
|
+
throw new AxiosError_default(
|
|
4510
|
+
`There is no suitable adapter to dispatch the request ` + s,
|
|
4511
|
+
"ERR_NOT_SUPPORT"
|
|
3810
4512
|
);
|
|
3811
|
-
}
|
|
3812
|
-
if (!utils_default.isFunction(adapter)) {
|
|
3813
|
-
throw new TypeError("adapter is not a function");
|
|
3814
4513
|
}
|
|
3815
4514
|
return adapter;
|
|
3816
4515
|
},
|
|
3817
4516
|
adapters: knownAdapters
|
|
3818
4517
|
};
|
|
3819
4518
|
|
|
3820
|
-
// node_modules
|
|
4519
|
+
// node_modules/axios/lib/core/dispatchRequest.js
|
|
3821
4520
|
function throwIfCancellationRequested(config) {
|
|
3822
4521
|
if (config.cancelToken) {
|
|
3823
4522
|
config.cancelToken.throwIfRequested();
|
|
@@ -3862,86 +4561,7 @@ function dispatchRequest(config) {
|
|
|
3862
4561
|
});
|
|
3863
4562
|
}
|
|
3864
4563
|
|
|
3865
|
-
// node_modules
|
|
3866
|
-
var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? thing.toJSON() : thing;
|
|
3867
|
-
function mergeConfig(config1, config2) {
|
|
3868
|
-
config2 = config2 || {};
|
|
3869
|
-
const config = {};
|
|
3870
|
-
function getMergedValue(target, source, caseless) {
|
|
3871
|
-
if (utils_default.isPlainObject(target) && utils_default.isPlainObject(source)) {
|
|
3872
|
-
return utils_default.merge.call({ caseless }, target, source);
|
|
3873
|
-
} else if (utils_default.isPlainObject(source)) {
|
|
3874
|
-
return utils_default.merge({}, source);
|
|
3875
|
-
} else if (utils_default.isArray(source)) {
|
|
3876
|
-
return source.slice();
|
|
3877
|
-
}
|
|
3878
|
-
return source;
|
|
3879
|
-
}
|
|
3880
|
-
function mergeDeepProperties(a, b, caseless) {
|
|
3881
|
-
if (!utils_default.isUndefined(b)) {
|
|
3882
|
-
return getMergedValue(a, b, caseless);
|
|
3883
|
-
} else if (!utils_default.isUndefined(a)) {
|
|
3884
|
-
return getMergedValue(void 0, a, caseless);
|
|
3885
|
-
}
|
|
3886
|
-
}
|
|
3887
|
-
function valueFromConfig2(a, b) {
|
|
3888
|
-
if (!utils_default.isUndefined(b)) {
|
|
3889
|
-
return getMergedValue(void 0, b);
|
|
3890
|
-
}
|
|
3891
|
-
}
|
|
3892
|
-
function defaultToConfig2(a, b) {
|
|
3893
|
-
if (!utils_default.isUndefined(b)) {
|
|
3894
|
-
return getMergedValue(void 0, b);
|
|
3895
|
-
} else if (!utils_default.isUndefined(a)) {
|
|
3896
|
-
return getMergedValue(void 0, a);
|
|
3897
|
-
}
|
|
3898
|
-
}
|
|
3899
|
-
function mergeDirectKeys(a, b, prop) {
|
|
3900
|
-
if (prop in config2) {
|
|
3901
|
-
return getMergedValue(a, b);
|
|
3902
|
-
} else if (prop in config1) {
|
|
3903
|
-
return getMergedValue(void 0, a);
|
|
3904
|
-
}
|
|
3905
|
-
}
|
|
3906
|
-
const mergeMap = {
|
|
3907
|
-
url: valueFromConfig2,
|
|
3908
|
-
method: valueFromConfig2,
|
|
3909
|
-
data: valueFromConfig2,
|
|
3910
|
-
baseURL: defaultToConfig2,
|
|
3911
|
-
transformRequest: defaultToConfig2,
|
|
3912
|
-
transformResponse: defaultToConfig2,
|
|
3913
|
-
paramsSerializer: defaultToConfig2,
|
|
3914
|
-
timeout: defaultToConfig2,
|
|
3915
|
-
timeoutMessage: defaultToConfig2,
|
|
3916
|
-
withCredentials: defaultToConfig2,
|
|
3917
|
-
adapter: defaultToConfig2,
|
|
3918
|
-
responseType: defaultToConfig2,
|
|
3919
|
-
xsrfCookieName: defaultToConfig2,
|
|
3920
|
-
xsrfHeaderName: defaultToConfig2,
|
|
3921
|
-
onUploadProgress: defaultToConfig2,
|
|
3922
|
-
onDownloadProgress: defaultToConfig2,
|
|
3923
|
-
decompress: defaultToConfig2,
|
|
3924
|
-
maxContentLength: defaultToConfig2,
|
|
3925
|
-
maxBodyLength: defaultToConfig2,
|
|
3926
|
-
beforeRedirect: defaultToConfig2,
|
|
3927
|
-
transport: defaultToConfig2,
|
|
3928
|
-
httpAgent: defaultToConfig2,
|
|
3929
|
-
httpsAgent: defaultToConfig2,
|
|
3930
|
-
cancelToken: defaultToConfig2,
|
|
3931
|
-
socketPath: defaultToConfig2,
|
|
3932
|
-
responseEncoding: defaultToConfig2,
|
|
3933
|
-
validateStatus: mergeDirectKeys,
|
|
3934
|
-
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
3935
|
-
};
|
|
3936
|
-
utils_default.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {
|
|
3937
|
-
const merge2 = mergeMap[prop] || mergeDeepProperties;
|
|
3938
|
-
const configValue = merge2(config1[prop], config2[prop], prop);
|
|
3939
|
-
utils_default.isUndefined(configValue) && merge2 !== mergeDirectKeys || (config[prop] = configValue);
|
|
3940
|
-
});
|
|
3941
|
-
return config;
|
|
3942
|
-
}
|
|
3943
|
-
|
|
3944
|
-
// node_modules/.pnpm/axios@1.3.2/node_modules/axios/lib/helpers/validator.js
|
|
4564
|
+
// node_modules/axios/lib/helpers/validator.js
|
|
3945
4565
|
var validators = {};
|
|
3946
4566
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
3947
4567
|
validators[type] = function validator(thing) {
|
|
@@ -3972,6 +4592,12 @@ validators.transitional = function transitional(validator, version2, message) {
|
|
|
3972
4592
|
return validator ? validator(value, opt, opts) : true;
|
|
3973
4593
|
};
|
|
3974
4594
|
};
|
|
4595
|
+
validators.spelling = function spelling(correctSpelling) {
|
|
4596
|
+
return (value, opt) => {
|
|
4597
|
+
console.warn(`${opt} is likely a misspelling of ${correctSpelling}`);
|
|
4598
|
+
return true;
|
|
4599
|
+
};
|
|
4600
|
+
};
|
|
3975
4601
|
function assertOptions(options, schema, allowUnknown) {
|
|
3976
4602
|
if (typeof options !== "object") {
|
|
3977
4603
|
throw new AxiosError_default("options must be an object", AxiosError_default.ERR_BAD_OPTION_VALUE);
|
|
@@ -3999,11 +4625,11 @@ var validator_default = {
|
|
|
3999
4625
|
validators
|
|
4000
4626
|
};
|
|
4001
4627
|
|
|
4002
|
-
// node_modules
|
|
4628
|
+
// node_modules/axios/lib/core/Axios.js
|
|
4003
4629
|
var validators2 = validator_default.validators;
|
|
4004
4630
|
var Axios = class {
|
|
4005
4631
|
constructor(instanceConfig) {
|
|
4006
|
-
this.defaults = instanceConfig;
|
|
4632
|
+
this.defaults = instanceConfig || {};
|
|
4007
4633
|
this.interceptors = {
|
|
4008
4634
|
request: new InterceptorManager_default(),
|
|
4009
4635
|
response: new InterceptorManager_default()
|
|
@@ -4017,7 +4643,27 @@ var Axios = class {
|
|
|
4017
4643
|
*
|
|
4018
4644
|
* @returns {Promise} The Promise to be fulfilled
|
|
4019
4645
|
*/
|
|
4020
|
-
request(configOrUrl, config) {
|
|
4646
|
+
async request(configOrUrl, config) {
|
|
4647
|
+
try {
|
|
4648
|
+
return await this._request(configOrUrl, config);
|
|
4649
|
+
} catch (err) {
|
|
4650
|
+
if (err instanceof Error) {
|
|
4651
|
+
let dummy = {};
|
|
4652
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy) : dummy = new Error();
|
|
4653
|
+
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, "") : "";
|
|
4654
|
+
try {
|
|
4655
|
+
if (!err.stack) {
|
|
4656
|
+
err.stack = stack;
|
|
4657
|
+
} else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ""))) {
|
|
4658
|
+
err.stack += "\n" + stack;
|
|
4659
|
+
}
|
|
4660
|
+
} catch (e) {
|
|
4661
|
+
}
|
|
4662
|
+
}
|
|
4663
|
+
throw err;
|
|
4664
|
+
}
|
|
4665
|
+
}
|
|
4666
|
+
_request(configOrUrl, config) {
|
|
4021
4667
|
if (typeof configOrUrl === "string") {
|
|
4022
4668
|
config = config || {};
|
|
4023
4669
|
config.url = configOrUrl;
|
|
@@ -4033,19 +4679,34 @@ var Axios = class {
|
|
|
4033
4679
|
clarifyTimeoutError: validators2.transitional(validators2.boolean)
|
|
4034
4680
|
}, false);
|
|
4035
4681
|
}
|
|
4036
|
-
if (paramsSerializer
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4682
|
+
if (paramsSerializer != null) {
|
|
4683
|
+
if (utils_default.isFunction(paramsSerializer)) {
|
|
4684
|
+
config.paramsSerializer = {
|
|
4685
|
+
serialize: paramsSerializer
|
|
4686
|
+
};
|
|
4687
|
+
} else {
|
|
4688
|
+
validator_default.assertOptions(paramsSerializer, {
|
|
4689
|
+
encode: validators2.function,
|
|
4690
|
+
serialize: validators2.function
|
|
4691
|
+
}, true);
|
|
4692
|
+
}
|
|
4041
4693
|
}
|
|
4694
|
+
if (config.allowAbsoluteUrls !== void 0) {
|
|
4695
|
+
} else if (this.defaults.allowAbsoluteUrls !== void 0) {
|
|
4696
|
+
config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
|
|
4697
|
+
} else {
|
|
4698
|
+
config.allowAbsoluteUrls = true;
|
|
4699
|
+
}
|
|
4700
|
+
validator_default.assertOptions(config, {
|
|
4701
|
+
baseUrl: validators2.spelling("baseURL"),
|
|
4702
|
+
withXsrfToken: validators2.spelling("withXSRFToken")
|
|
4703
|
+
}, true);
|
|
4042
4704
|
config.method = (config.method || this.defaults.method || "get").toLowerCase();
|
|
4043
|
-
let contextHeaders
|
|
4044
|
-
contextHeaders = headers && utils_default.merge(
|
|
4705
|
+
let contextHeaders = headers && utils_default.merge(
|
|
4045
4706
|
headers.common,
|
|
4046
4707
|
headers[config.method]
|
|
4047
4708
|
);
|
|
4048
|
-
|
|
4709
|
+
headers && utils_default.forEach(
|
|
4049
4710
|
["delete", "get", "head", "post", "put", "patch", "common"],
|
|
4050
4711
|
(method) => {
|
|
4051
4712
|
delete headers[method];
|
|
@@ -4106,11 +4767,11 @@ var Axios = class {
|
|
|
4106
4767
|
}
|
|
4107
4768
|
getUri(config) {
|
|
4108
4769
|
config = mergeConfig(this.defaults, config);
|
|
4109
|
-
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
4770
|
+
const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
|
|
4110
4771
|
return buildURL(fullPath, config.params, config.paramsSerializer);
|
|
4111
4772
|
}
|
|
4112
4773
|
};
|
|
4113
|
-
utils_default.forEach(["delete", "get", "head", "options"], function
|
|
4774
|
+
utils_default.forEach(["delete", "get", "head", "options"], function forEachMethodNoData(method) {
|
|
4114
4775
|
Axios.prototype[method] = function(url2, config) {
|
|
4115
4776
|
return this.request(mergeConfig(config || {}, {
|
|
4116
4777
|
method,
|
|
@@ -4119,7 +4780,7 @@ utils_default.forEach(["delete", "get", "head", "options"], function forEachMeth
|
|
|
4119
4780
|
}));
|
|
4120
4781
|
};
|
|
4121
4782
|
});
|
|
4122
|
-
utils_default.forEach(["post", "put", "patch"], function
|
|
4783
|
+
utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
|
|
4123
4784
|
function generateHTTPMethod(isForm) {
|
|
4124
4785
|
return function httpMethod(url2, data, config) {
|
|
4125
4786
|
return this.request(mergeConfig(config || {}, {
|
|
@@ -4137,7 +4798,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData2(
|
|
|
4137
4798
|
});
|
|
4138
4799
|
var Axios_default = Axios;
|
|
4139
4800
|
|
|
4140
|
-
// node_modules
|
|
4801
|
+
// node_modules/axios/lib/cancel/CancelToken.js
|
|
4141
4802
|
var CancelToken = class _CancelToken {
|
|
4142
4803
|
constructor(executor) {
|
|
4143
4804
|
if (typeof executor !== "function") {
|
|
@@ -4209,6 +4870,15 @@ var CancelToken = class _CancelToken {
|
|
|
4209
4870
|
this._listeners.splice(index, 1);
|
|
4210
4871
|
}
|
|
4211
4872
|
}
|
|
4873
|
+
toAbortSignal() {
|
|
4874
|
+
const controller = new AbortController();
|
|
4875
|
+
const abort = (err) => {
|
|
4876
|
+
controller.abort(err);
|
|
4877
|
+
};
|
|
4878
|
+
this.subscribe(abort);
|
|
4879
|
+
controller.signal.unsubscribe = () => this.unsubscribe(abort);
|
|
4880
|
+
return controller.signal;
|
|
4881
|
+
}
|
|
4212
4882
|
/**
|
|
4213
4883
|
* Returns an object that contains a new `CancelToken` and a function that, when called,
|
|
4214
4884
|
* cancels the `CancelToken`.
|
|
@@ -4226,19 +4896,19 @@ var CancelToken = class _CancelToken {
|
|
|
4226
4896
|
};
|
|
4227
4897
|
var CancelToken_default = CancelToken;
|
|
4228
4898
|
|
|
4229
|
-
// node_modules
|
|
4899
|
+
// node_modules/axios/lib/helpers/spread.js
|
|
4230
4900
|
function spread(callback) {
|
|
4231
4901
|
return function wrap(arr) {
|
|
4232
4902
|
return callback.apply(null, arr);
|
|
4233
4903
|
};
|
|
4234
4904
|
}
|
|
4235
4905
|
|
|
4236
|
-
// node_modules
|
|
4906
|
+
// node_modules/axios/lib/helpers/isAxiosError.js
|
|
4237
4907
|
function isAxiosError(payload) {
|
|
4238
4908
|
return utils_default.isObject(payload) && payload.isAxiosError === true;
|
|
4239
4909
|
}
|
|
4240
4910
|
|
|
4241
|
-
// node_modules
|
|
4911
|
+
// node_modules/axios/lib/helpers/HttpStatusCode.js
|
|
4242
4912
|
var HttpStatusCode = {
|
|
4243
4913
|
Continue: 100,
|
|
4244
4914
|
SwitchingProtocols: 101,
|
|
@@ -4309,7 +4979,7 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
|
|
|
4309
4979
|
});
|
|
4310
4980
|
var HttpStatusCode_default = HttpStatusCode;
|
|
4311
4981
|
|
|
4312
|
-
// node_modules
|
|
4982
|
+
// node_modules/axios/lib/axios.js
|
|
4313
4983
|
function createInstance(defaultConfig) {
|
|
4314
4984
|
const context = new Axios_default(defaultConfig);
|
|
4315
4985
|
const instance = bind(Axios_default.prototype.request, context);
|
|
@@ -4337,11 +5007,12 @@ axios.isAxiosError = isAxiosError;
|
|
|
4337
5007
|
axios.mergeConfig = mergeConfig;
|
|
4338
5008
|
axios.AxiosHeaders = AxiosHeaders_default;
|
|
4339
5009
|
axios.formToJSON = (thing) => formDataToJSON_default(utils_default.isHTMLForm(thing) ? new FormData(thing) : thing);
|
|
5010
|
+
axios.getAdapter = adapters_default.getAdapter;
|
|
4340
5011
|
axios.HttpStatusCode = HttpStatusCode_default;
|
|
4341
5012
|
axios.default = axios;
|
|
4342
5013
|
var axios_default = axios;
|
|
4343
5014
|
|
|
4344
|
-
// node_modules
|
|
5015
|
+
// node_modules/axios/index.js
|
|
4345
5016
|
var {
|
|
4346
5017
|
Axios: Axios2,
|
|
4347
5018
|
AxiosError: AxiosError2,
|
|
@@ -4357,6 +5028,7 @@ var {
|
|
|
4357
5028
|
AxiosHeaders: AxiosHeaders2,
|
|
4358
5029
|
HttpStatusCode: HttpStatusCode2,
|
|
4359
5030
|
formToJSON,
|
|
5031
|
+
getAdapter,
|
|
4360
5032
|
mergeConfig: mergeConfig2
|
|
4361
5033
|
} = axios_default;
|
|
4362
5034
|
|
|
@@ -4365,12 +5037,12 @@ var import_fs_extra3 = __toESM(require("fs-extra"));
|
|
|
4365
5037
|
var import_path4 = __toESM(require("path"));
|
|
4366
5038
|
var import_form_data2 = __toESM(require("form-data"));
|
|
4367
5039
|
var import_ora = __toESM(require("ora"));
|
|
4368
|
-
var
|
|
5040
|
+
var crypto2 = __toESM(require("crypto"));
|
|
4369
5041
|
|
|
4370
5042
|
// bin/utils/uploadLimits.ts
|
|
4371
5043
|
var import_fs = __toESM(require("fs"));
|
|
4372
5044
|
var import_path = __toESM(require("path"));
|
|
4373
|
-
var FILE_SIZE_LIMIT = parseInt("
|
|
5045
|
+
var FILE_SIZE_LIMIT = parseInt("20", 10) * 1024 * 1024;
|
|
4374
5046
|
var DIRECTORY_SIZE_LIMIT = parseInt("500", 10) * 1024 * 1024;
|
|
4375
5047
|
function checkFileSizeLimit(filePath) {
|
|
4376
5048
|
const stats = import_fs.default.statSync(filePath);
|
|
@@ -4521,15 +5193,15 @@ function getDeviceId() {
|
|
|
4521
5193
|
}
|
|
4522
5194
|
|
|
4523
5195
|
// bin/utils/uploadToIpfsSplit.ts
|
|
4524
|
-
var IPFS_API_URL = "https://pinme.dev/api/
|
|
5196
|
+
var IPFS_API_URL = "https://pinme.dev/api/v2";
|
|
4525
5197
|
var MAX_RETRIES = parseInt(process.env.MAX_RETRIES || "2");
|
|
4526
5198
|
var RETRY_DELAY = parseInt(process.env.RETRY_DELAY_MS || "1000");
|
|
4527
5199
|
var TIMEOUT = parseInt(process.env.TIMEOUT_MS || "600000");
|
|
4528
|
-
var MAX_POLL_TIME = parseInt("5") * 60 * 1e3;
|
|
5200
|
+
var MAX_POLL_TIME = parseInt(process.env.MAX_POLL_TIME_MINUTES || "5") * 60 * 1e3;
|
|
4529
5201
|
var POLL_INTERVAL = parseInt(process.env.POLL_INTERVAL_SECONDS || "2") * 1e3;
|
|
4530
5202
|
var PROGRESS_UPDATE_INTERVAL = 200;
|
|
4531
5203
|
var EXPECTED_UPLOAD_TIME = 6e4;
|
|
4532
|
-
var MAX_PROGRESS = 0.
|
|
5204
|
+
var MAX_PROGRESS = 0.95;
|
|
4533
5205
|
var StepProgressBar = class {
|
|
4534
5206
|
spinner;
|
|
4535
5207
|
fileName;
|
|
@@ -4537,8 +5209,6 @@ var StepProgressBar = class {
|
|
|
4537
5209
|
currentStep = 0;
|
|
4538
5210
|
stepStartTime = 0;
|
|
4539
5211
|
progressInterval = null;
|
|
4540
|
-
isSimulatingProgress = false;
|
|
4541
|
-
simulationStartTime = 0;
|
|
4542
5212
|
constructor(fileName, isDirectory = false) {
|
|
4543
5213
|
this.fileName = fileName;
|
|
4544
5214
|
this.spinner = (0, import_ora.default)(`Preparing to upload ${fileName}...`).start();
|
|
@@ -4554,15 +5224,6 @@ var StepProgressBar = class {
|
|
|
4554
5224
|
}
|
|
4555
5225
|
completeStep() {
|
|
4556
5226
|
}
|
|
4557
|
-
// 开始模拟进度,用于在90%后继续显示进度
|
|
4558
|
-
startSimulatingProgress() {
|
|
4559
|
-
this.isSimulatingProgress = true;
|
|
4560
|
-
this.simulationStartTime = Date.now();
|
|
4561
|
-
}
|
|
4562
|
-
// 停止模拟进度
|
|
4563
|
-
stopSimulatingProgress() {
|
|
4564
|
-
this.isSimulatingProgress = false;
|
|
4565
|
-
}
|
|
4566
5227
|
failStep(error) {
|
|
4567
5228
|
this.stopProgress();
|
|
4568
5229
|
this.spinner.fail(`Upload failed: ${error}`);
|
|
@@ -4581,14 +5242,7 @@ var StepProgressBar = class {
|
|
|
4581
5242
|
startProgress() {
|
|
4582
5243
|
this.progressInterval = setInterval(() => {
|
|
4583
5244
|
const elapsed = Date.now() - this.startTime;
|
|
4584
|
-
|
|
4585
|
-
if (this.isSimulatingProgress) {
|
|
4586
|
-
const simulationElapsed = Date.now() - this.simulationStartTime;
|
|
4587
|
-
const simulationProgress = Math.min(simulationElapsed / 6e4, 1);
|
|
4588
|
-
progress = 0.9 + simulationProgress * 0.09;
|
|
4589
|
-
} else {
|
|
4590
|
-
progress = this.calculateProgress(elapsed);
|
|
4591
|
-
}
|
|
5245
|
+
const progress = this.calculateProgress(elapsed);
|
|
4592
5246
|
const duration = this.formatDuration(Math.floor(elapsed / 1e3));
|
|
4593
5247
|
const progressBar = this.createProgressBar(progress);
|
|
4594
5248
|
this.spinner.text = `Uploading ${this.fileName}... ${progressBar} ${Math.round(progress * 100)}% (${duration})`;
|
|
@@ -4626,7 +5280,7 @@ var StepProgressBar = class {
|
|
|
4626
5280
|
};
|
|
4627
5281
|
async function calculateMD5(filePath) {
|
|
4628
5282
|
return new Promise((resolve, reject) => {
|
|
4629
|
-
const hash =
|
|
5283
|
+
const hash = crypto2.createHash("md5");
|
|
4630
5284
|
const stream4 = import_fs_extra3.default.createReadStream(filePath);
|
|
4631
5285
|
stream4.on("data", hash.update.bind(hash));
|
|
4632
5286
|
stream4.on("end", () => resolve(hash.digest("hex")));
|
|
@@ -4857,41 +5511,29 @@ async function getChunkStatus(sessionId, deviceId) {
|
|
|
4857
5511
|
throw error;
|
|
4858
5512
|
}
|
|
4859
5513
|
}
|
|
4860
|
-
async function monitorChunkProgress(traceId, deviceId
|
|
5514
|
+
async function monitorChunkProgress(traceId, deviceId) {
|
|
4861
5515
|
let consecutiveErrors = 0;
|
|
4862
5516
|
const startTime = Date.now();
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
|
|
4875
|
-
|
|
4876
|
-
|
|
4877
|
-
shortUrl: status.upload_rst.ShortUrl
|
|
4878
|
-
};
|
|
4879
|
-
}
|
|
4880
|
-
} catch (error) {
|
|
4881
|
-
consecutiveErrors++;
|
|
4882
|
-
if (consecutiveErrors > 10) {
|
|
4883
|
-
throw new Error(`Polling failed: ${error.message}`);
|
|
4884
|
-
}
|
|
5517
|
+
while (Date.now() - startTime < MAX_POLL_TIME) {
|
|
5518
|
+
try {
|
|
5519
|
+
const status = await getChunkStatus(traceId, deviceId);
|
|
5520
|
+
consecutiveErrors = 0;
|
|
5521
|
+
if (status.is_ready && status.upload_rst.Hash) {
|
|
5522
|
+
return {
|
|
5523
|
+
hash: status.upload_rst.Hash,
|
|
5524
|
+
shortUrl: status.upload_rst.ShortUrl
|
|
5525
|
+
};
|
|
5526
|
+
}
|
|
5527
|
+
} catch (error) {
|
|
5528
|
+
consecutiveErrors++;
|
|
5529
|
+
if (consecutiveErrors > 10) {
|
|
5530
|
+
throw new Error(`Polling failed: ${error.message}`);
|
|
4885
5531
|
}
|
|
4886
|
-
await new Promise((resolve) => setTimeout(resolve, POLL_INTERVAL));
|
|
4887
|
-
}
|
|
4888
|
-
const maxPollTimeMinutes = Math.floor(MAX_POLL_TIME / (60 * 1e3));
|
|
4889
|
-
throw new Error(`Polling timeout after ${maxPollTimeMinutes} minutes`);
|
|
4890
|
-
} finally {
|
|
4891
|
-
if (progressBar) {
|
|
4892
|
-
progressBar.stopSimulatingProgress();
|
|
4893
5532
|
}
|
|
5533
|
+
await new Promise((resolve) => setTimeout(resolve, POLL_INTERVAL));
|
|
4894
5534
|
}
|
|
5535
|
+
const maxPollTimeMinutes = Math.floor(MAX_POLL_TIME / (60 * 1e3));
|
|
5536
|
+
throw new Error(`Polling timeout after ${maxPollTimeMinutes} minutes`);
|
|
4895
5537
|
}
|
|
4896
5538
|
async function uploadDirectoryInChunks(directoryPath, deviceId) {
|
|
4897
5539
|
const sizeCheck = checkDirectorySizeLimit(directoryPath);
|
|
@@ -4922,7 +5564,7 @@ async function uploadDirectoryInChunks(directoryPath, deviceId) {
|
|
|
4922
5564
|
const traceId = await completeChunkUpload(sessionInfo.session_id, deviceId);
|
|
4923
5565
|
progressBar.completeStep();
|
|
4924
5566
|
progressBar.startStep(4, "Waiting for processing");
|
|
4925
|
-
const result = await monitorChunkProgress(traceId, deviceId
|
|
5567
|
+
const result = await monitorChunkProgress(traceId, deviceId);
|
|
4926
5568
|
progressBar.completeStep();
|
|
4927
5569
|
try {
|
|
4928
5570
|
import_fs_extra3.default.unlinkSync(compressedPath);
|
|
@@ -4975,7 +5617,7 @@ async function uploadFileInChunks(filePath, deviceId) {
|
|
|
4975
5617
|
const traceId = await completeChunkUpload(sessionInfo.session_id, deviceId);
|
|
4976
5618
|
progressBar.completeStep();
|
|
4977
5619
|
progressBar.startStep(3, "Waiting for processing");
|
|
4978
|
-
const result = await monitorChunkProgress(traceId, deviceId
|
|
5620
|
+
const result = await monitorChunkProgress(traceId, deviceId);
|
|
4979
5621
|
progressBar.completeStep();
|
|
4980
5622
|
const uploadData = {
|
|
4981
5623
|
path: filePath,
|
|
@@ -5131,7 +5773,7 @@ var import_figlet2 = __toESM(require("figlet"));
|
|
|
5131
5773
|
|
|
5132
5774
|
// bin/utils/removeFromIpfs.ts
|
|
5133
5775
|
var import_chalk3 = __toESM(require("chalk"));
|
|
5134
|
-
var ipfsApiUrl = "https://pinme.dev/api/
|
|
5776
|
+
var ipfsApiUrl = "https://pinme.dev/api/v2";
|
|
5135
5777
|
async function removeFromIpfs(value, type = "hash") {
|
|
5136
5778
|
try {
|
|
5137
5779
|
const uid = getDeviceId();
|
|
@@ -5325,6 +5967,19 @@ var remove_default = async (options) => {
|
|
|
5325
5967
|
};
|
|
5326
5968
|
|
|
5327
5969
|
// bin/index.ts
|
|
5970
|
+
var nodeVersion = process.version.slice(1).split(".").map(Number);
|
|
5971
|
+
var [major] = nodeVersion;
|
|
5972
|
+
var requiredMajor = 16;
|
|
5973
|
+
if (major < requiredMajor) {
|
|
5974
|
+
console.error("\n\u274C Error: Pinme requires Node.js >= 16.0.0");
|
|
5975
|
+
console.error(`Current version: ${process.version}`);
|
|
5976
|
+
console.error("This tool uses AbortController which requires Node.js 16+");
|
|
5977
|
+
console.error("\nRecommended upgrade commands:");
|
|
5978
|
+
console.error(" nvm install 16.20.2");
|
|
5979
|
+
console.error(" nvm use 16.20.2");
|
|
5980
|
+
console.error("\nOr visit https://nodejs.org/ to download the latest LTS version\n");
|
|
5981
|
+
process.exit(1);
|
|
5982
|
+
}
|
|
5328
5983
|
import_dotenv.default.config();
|
|
5329
5984
|
function showBanner() {
|
|
5330
5985
|
console.log(
|