@cloudflare/vite-plugin 0.0.5 → 0.0.7
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/asset-workers/asset-worker.js +687 -630
- package/dist/index.d.ts +1 -1
- package/dist/index.js +353 -223
- package/dist/runner-worker/index.js +6 -1
- package/package.json +5 -5
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
// ../workers-shared/dist/asset-worker.mjs
|
|
2
|
-
import { WorkerEntrypoint as
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
2
|
+
import { WorkerEntrypoint as Hs } from "cloudflare:workers";
|
|
3
|
+
var dr = Object.defineProperty;
|
|
4
|
+
var lr = (t, e, n) => e in t ? dr(t, e, { enumerable: true, configurable: true, writable: true, value: n }) : t[e] = n;
|
|
5
|
+
var Ee = (t, e, n) => (lr(t, typeof e != "symbol" ? e + "" : e, n), n);
|
|
6
|
+
var Yt = (t, e, n) => {
|
|
7
7
|
if (!e.has(t)) throw TypeError("Cannot " + n);
|
|
8
8
|
};
|
|
9
|
-
var
|
|
10
|
-
var
|
|
9
|
+
var nt = (t, e, n) => (Yt(t, e, "read from private field"), n ? n.call(t) : e.get(t));
|
|
10
|
+
var jt = (t, e, n) => {
|
|
11
11
|
if (e.has(t)) throw TypeError("Cannot add the same private member more than once");
|
|
12
12
|
e instanceof WeakSet ? e.add(t) : e.set(t, n);
|
|
13
13
|
};
|
|
14
|
-
var
|
|
15
|
-
var
|
|
14
|
+
var qt = (t, e, n, r) => (Yt(t, e, "write to private field"), r ? r.call(t, n) : e.set(t, n), n);
|
|
15
|
+
var re = class {
|
|
16
16
|
constructor(e) {
|
|
17
17
|
this.performanceTimer = e;
|
|
18
18
|
}
|
|
@@ -20,113 +20,113 @@ var ge = class {
|
|
|
20
20
|
return this.performanceTimer ? this.performanceTimer.timeOrigin + this.performanceTimer.now() : Date.now();
|
|
21
21
|
}
|
|
22
22
|
};
|
|
23
|
-
var
|
|
23
|
+
var ye = class extends Response {
|
|
24
24
|
constructor(e, n) {
|
|
25
25
|
super(e, { ...n, status: 200 });
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
-
var
|
|
28
|
+
var se = class extends Response {
|
|
29
29
|
constructor(...[e, n]) {
|
|
30
30
|
super(e, { ...n, status: 404, statusText: "Not Found" });
|
|
31
31
|
}
|
|
32
32
|
};
|
|
33
|
-
var
|
|
33
|
+
var Se = class extends Response {
|
|
34
34
|
constructor(...[e, n]) {
|
|
35
35
|
super(e, { ...n, status: 405, statusText: "Method Not Allowed" });
|
|
36
36
|
}
|
|
37
37
|
};
|
|
38
|
-
var
|
|
38
|
+
var F = class extends Response {
|
|
39
39
|
constructor(e, n) {
|
|
40
40
|
super(null, { ...n, status: 500 });
|
|
41
41
|
}
|
|
42
42
|
};
|
|
43
|
-
var
|
|
43
|
+
var Te = class extends Response {
|
|
44
44
|
constructor(...[e, n]) {
|
|
45
45
|
super(null, { ...n, status: 304, statusText: "Not Modified" });
|
|
46
46
|
}
|
|
47
47
|
};
|
|
48
|
-
var
|
|
48
|
+
var be = class extends Response {
|
|
49
49
|
constructor(e, n) {
|
|
50
50
|
super(null, { ...n, status: 307, statusText: "Temporary Redirect", headers: { ...n?.headers, Location: e } });
|
|
51
51
|
}
|
|
52
52
|
};
|
|
53
|
-
var
|
|
54
|
-
function
|
|
55
|
-
switch (
|
|
53
|
+
var Wt = Object.prototype.toString;
|
|
54
|
+
function $(t) {
|
|
55
|
+
switch (Wt.call(t)) {
|
|
56
56
|
case "[object Error]":
|
|
57
57
|
case "[object Exception]":
|
|
58
58
|
case "[object DOMException]":
|
|
59
59
|
return true;
|
|
60
60
|
default:
|
|
61
|
-
return
|
|
61
|
+
return C(t, Error);
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
|
-
function
|
|
65
|
-
return
|
|
64
|
+
function zt(t, e) {
|
|
65
|
+
return Wt.call(t) === `[object ${e}]`;
|
|
66
66
|
}
|
|
67
|
-
function
|
|
68
|
-
return
|
|
67
|
+
function V(t) {
|
|
68
|
+
return zt(t, "String");
|
|
69
69
|
}
|
|
70
|
-
function
|
|
70
|
+
function Re(t) {
|
|
71
71
|
return t === null || typeof t != "object" && typeof t != "function";
|
|
72
72
|
}
|
|
73
|
-
function
|
|
74
|
-
return
|
|
73
|
+
function x(t) {
|
|
74
|
+
return zt(t, "Object");
|
|
75
75
|
}
|
|
76
|
-
function
|
|
77
|
-
return typeof Event < "u" &&
|
|
76
|
+
function rt(t) {
|
|
77
|
+
return typeof Event < "u" && C(t, Event);
|
|
78
78
|
}
|
|
79
|
-
function
|
|
80
|
-
return typeof Element < "u" &&
|
|
79
|
+
function st(t) {
|
|
80
|
+
return typeof Element < "u" && C(t, Element);
|
|
81
81
|
}
|
|
82
|
-
function
|
|
82
|
+
function H(t) {
|
|
83
83
|
return !!(t && t.then && typeof t.then == "function");
|
|
84
84
|
}
|
|
85
|
-
function
|
|
86
|
-
return
|
|
85
|
+
function it(t) {
|
|
86
|
+
return x(t) && "nativeEvent" in t && "preventDefault" in t && "stopPropagation" in t;
|
|
87
87
|
}
|
|
88
|
-
function
|
|
88
|
+
function ie(t) {
|
|
89
89
|
return typeof t == "number" && t !== t;
|
|
90
90
|
}
|
|
91
|
-
function
|
|
91
|
+
function C(t, e) {
|
|
92
92
|
try {
|
|
93
93
|
return t instanceof e;
|
|
94
94
|
} catch {
|
|
95
95
|
return false;
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
|
-
function
|
|
98
|
+
function ot(t) {
|
|
99
99
|
return !!(typeof t == "object" && t !== null && (t.__isVue || t._isVue));
|
|
100
100
|
}
|
|
101
|
-
function
|
|
101
|
+
function U(t, e = 0) {
|
|
102
102
|
return typeof t != "string" || e === 0 || t.length <= e ? t : `${t.slice(0, e)}...`;
|
|
103
103
|
}
|
|
104
|
-
function
|
|
104
|
+
function Ie(t) {
|
|
105
105
|
return t && t.Math == Math ? t : void 0;
|
|
106
106
|
}
|
|
107
|
-
var h = typeof globalThis == "object" &&
|
|
107
|
+
var h = typeof globalThis == "object" && Ie(globalThis) || typeof window == "object" && Ie(window) || typeof self == "object" && Ie(self) || typeof global == "object" && Ie(global) || /* @__PURE__ */ function() {
|
|
108
108
|
return this;
|
|
109
109
|
}() || {};
|
|
110
|
-
function
|
|
110
|
+
function w() {
|
|
111
111
|
return h;
|
|
112
112
|
}
|
|
113
|
-
function
|
|
113
|
+
function oe(t, e, n) {
|
|
114
114
|
let r = n || h, s = r.__SENTRY__ = r.__SENTRY__ || {};
|
|
115
115
|
return s[t] || (s[t] = e());
|
|
116
116
|
}
|
|
117
|
-
var
|
|
118
|
-
var
|
|
119
|
-
function
|
|
117
|
+
var Xs = w();
|
|
118
|
+
var fr = 80;
|
|
119
|
+
function Vt(t, e = {}) {
|
|
120
120
|
if (!t) return "<unknown>";
|
|
121
121
|
try {
|
|
122
|
-
let n = t, r = 5, s = [], i = 0, o = 0, a = " > ", c = a.length, u, l = Array.isArray(e) ? e : e.keyAttrs, d = !Array.isArray(e) && e.maxStringLength ||
|
|
123
|
-
for (; n && i++ < r && (u =
|
|
122
|
+
let n = t, r = 5, s = [], i = 0, o = 0, a = " > ", c = a.length, u, l = Array.isArray(e) ? e : e.keyAttrs, d = !Array.isArray(e) && e.maxStringLength || fr;
|
|
123
|
+
for (; n && i++ < r && (u = pr(n, l), !(u === "html" || i > 1 && o + s.length * c + u.length >= d)); ) s.push(u), o += u.length, n = n.parentNode;
|
|
124
124
|
return s.reverse().join(a);
|
|
125
125
|
} catch {
|
|
126
126
|
return "<unknown>";
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
|
-
function
|
|
129
|
+
function pr(t, e) {
|
|
130
130
|
let n = t, r = [], s, i, o, a, c;
|
|
131
131
|
if (!n || !n.tagName) return "";
|
|
132
132
|
r.push(n.tagName.toLowerCase());
|
|
@@ -134,19 +134,19 @@ function ar(t, e) {
|
|
|
134
134
|
if (u && u.length) u.forEach((d) => {
|
|
135
135
|
r.push(`[${d[0]}="${d[1]}"]`);
|
|
136
136
|
});
|
|
137
|
-
else if (n.id && r.push(`#${n.id}`), s = n.className, s &&
|
|
137
|
+
else if (n.id && r.push(`#${n.id}`), s = n.className, s && V(s)) for (i = s.split(/\s+/), c = 0; c < i.length; c++) r.push(`.${i[c]}`);
|
|
138
138
|
let l = ["aria-label", "type", "name", "title", "alt"];
|
|
139
139
|
for (c = 0; c < l.length; c++) o = l[c], a = n.getAttribute(o), a && r.push(`[${o}="${a}"]`);
|
|
140
140
|
return r.join("");
|
|
141
141
|
}
|
|
142
|
-
var
|
|
143
|
-
var
|
|
144
|
-
var
|
|
142
|
+
var mr = "Sentry Logger ";
|
|
143
|
+
var ae = ["debug", "info", "warn", "error", "log", "assert", "trace"];
|
|
144
|
+
var J = {};
|
|
145
145
|
function xe(t) {
|
|
146
146
|
if (!("console" in h)) return t();
|
|
147
|
-
let e = h.console, n = {}, r = Object.keys(
|
|
147
|
+
let e = h.console, n = {}, r = Object.keys(J);
|
|
148
148
|
r.forEach((s) => {
|
|
149
|
-
let i =
|
|
149
|
+
let i = J[s];
|
|
150
150
|
n[s] = e[s], e[s] = i;
|
|
151
151
|
});
|
|
152
152
|
try {
|
|
@@ -157,34 +157,34 @@ function xe(t) {
|
|
|
157
157
|
});
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
|
-
function
|
|
160
|
+
function hr() {
|
|
161
161
|
let t = false, e = { enable: () => {
|
|
162
162
|
t = true;
|
|
163
163
|
}, disable: () => {
|
|
164
164
|
t = false;
|
|
165
165
|
}, isEnabled: () => t };
|
|
166
|
-
return typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__ ?
|
|
166
|
+
return typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__ ? ae.forEach((n) => {
|
|
167
167
|
e[n] = (...r) => {
|
|
168
168
|
t && xe(() => {
|
|
169
|
-
h.console[n](`${
|
|
169
|
+
h.console[n](`${mr}[${n}]:`, ...r);
|
|
170
170
|
});
|
|
171
171
|
};
|
|
172
|
-
}) :
|
|
172
|
+
}) : ae.forEach((n) => {
|
|
173
173
|
e[n] = () => {
|
|
174
174
|
};
|
|
175
175
|
}), e;
|
|
176
176
|
}
|
|
177
|
-
var f =
|
|
178
|
-
var
|
|
179
|
-
function
|
|
177
|
+
var f = hr();
|
|
178
|
+
var _r = /^(?:(\w+):)\/\/(?:(\w+)(?::(\w+)?)?@)([\w.-]+)(?::(\d+))?\/(.+)/;
|
|
179
|
+
function gr(t) {
|
|
180
180
|
return t === "http" || t === "https";
|
|
181
181
|
}
|
|
182
|
-
function
|
|
182
|
+
function L(t, e = false) {
|
|
183
183
|
let { host: n, path: r, pass: s, port: i, projectId: o, protocol: a, publicKey: c } = t;
|
|
184
184
|
return `${a}://${c}${e && s ? `:${s}` : ""}@${n}${i ? `:${i}` : ""}/${r && `${r}/`}${o}`;
|
|
185
185
|
}
|
|
186
|
-
function
|
|
187
|
-
let e =
|
|
186
|
+
function Jt(t) {
|
|
187
|
+
let e = _r.exec(t);
|
|
188
188
|
if (!e) {
|
|
189
189
|
console.error(`Invalid Sentry Dsn: ${t}`);
|
|
190
190
|
return;
|
|
@@ -194,88 +194,88 @@ function Wt(t) {
|
|
|
194
194
|
let d = u.match(/^\d+/);
|
|
195
195
|
d && (u = d[0]);
|
|
196
196
|
}
|
|
197
|
-
return
|
|
197
|
+
return Kt({ host: i, pass: s, path: c, projectId: u, port: o, protocol: n, publicKey: r });
|
|
198
198
|
}
|
|
199
|
-
function
|
|
199
|
+
function Kt(t) {
|
|
200
200
|
return { protocol: t.protocol, publicKey: t.publicKey || "", pass: t.pass || "", host: t.host, port: t.port || "", path: t.path || "", projectId: t.projectId };
|
|
201
201
|
}
|
|
202
|
-
function
|
|
202
|
+
function Er(t) {
|
|
203
203
|
if (!(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__)) return true;
|
|
204
204
|
let { port: e, projectId: n, protocol: r } = t;
|
|
205
|
-
return ["protocol", "publicKey", "host", "projectId"].find((o) => t[o] ? false : (f.error(`Invalid Sentry Dsn: ${o} missing`), true)) ? false : n.match(/^\d+$/) ?
|
|
205
|
+
return ["protocol", "publicKey", "host", "projectId"].find((o) => t[o] ? false : (f.error(`Invalid Sentry Dsn: ${o} missing`), true)) ? false : n.match(/^\d+$/) ? gr(r) ? e && isNaN(parseInt(e, 10)) ? (f.error(`Invalid Sentry Dsn: Invalid port ${e}`), false) : true : (f.error(`Invalid Sentry Dsn: Invalid protocol ${r}`), false) : (f.error(`Invalid Sentry Dsn: Invalid projectId ${n}`), false);
|
|
206
206
|
}
|
|
207
|
-
function
|
|
208
|
-
let e = typeof t == "string" ?
|
|
209
|
-
if (!(!e || !
|
|
207
|
+
function Ae(t) {
|
|
208
|
+
let e = typeof t == "string" ? Jt(t) : Kt(t);
|
|
209
|
+
if (!(!e || !Er(e))) return e;
|
|
210
210
|
}
|
|
211
211
|
var T = class extends Error {
|
|
212
212
|
constructor(e, n = "warn") {
|
|
213
213
|
super(e), this.message = e, this.name = new.target.prototype.constructor.name, Object.setPrototypeOf(this, new.target.prototype), this.logLevel = n;
|
|
214
214
|
}
|
|
215
215
|
};
|
|
216
|
-
function
|
|
216
|
+
function A(t, e, n) {
|
|
217
217
|
if (!(e in t)) return;
|
|
218
218
|
let r = t[e], s = n(r);
|
|
219
|
-
typeof s == "function" &&
|
|
219
|
+
typeof s == "function" && Qt(s, r), t[e] = s;
|
|
220
220
|
}
|
|
221
|
-
function
|
|
221
|
+
function K(t, e, n) {
|
|
222
222
|
try {
|
|
223
223
|
Object.defineProperty(t, e, { value: n, writable: true, configurable: true });
|
|
224
224
|
} catch {
|
|
225
225
|
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(`Failed to add non-enumerable property "${e}" to object`, t);
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
|
-
function
|
|
228
|
+
function Qt(t, e) {
|
|
229
229
|
try {
|
|
230
230
|
let n = e.prototype || {};
|
|
231
|
-
t.prototype = e.prototype = n,
|
|
231
|
+
t.prototype = e.prototype = n, K(t, "__sentry_original__", e);
|
|
232
232
|
} catch {
|
|
233
233
|
}
|
|
234
234
|
}
|
|
235
|
-
function
|
|
235
|
+
function ct(t) {
|
|
236
236
|
return Object.keys(t).map((e) => `${encodeURIComponent(e)}=${encodeURIComponent(t[e])}`).join("&");
|
|
237
237
|
}
|
|
238
238
|
function Ne(t) {
|
|
239
|
-
if (
|
|
240
|
-
if (
|
|
241
|
-
let e = { type: t.type, target:
|
|
242
|
-
return typeof CustomEvent < "u" &&
|
|
239
|
+
if ($(t)) return { message: t.message, name: t.name, stack: t.stack, ...Zt(t) };
|
|
240
|
+
if (rt(t)) {
|
|
241
|
+
let e = { type: t.type, target: Xt(t.target), currentTarget: Xt(t.currentTarget), ...Zt(t) };
|
|
242
|
+
return typeof CustomEvent < "u" && C(t, CustomEvent) && (e.detail = t.detail), e;
|
|
243
243
|
} else return t;
|
|
244
244
|
}
|
|
245
|
-
function
|
|
245
|
+
function Xt(t) {
|
|
246
246
|
try {
|
|
247
|
-
return
|
|
247
|
+
return st(t) ? Vt(t) : Object.prototype.toString.call(t);
|
|
248
248
|
} catch {
|
|
249
249
|
return "<unknown>";
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
|
-
function
|
|
252
|
+
function Zt(t) {
|
|
253
253
|
if (typeof t == "object" && t !== null) {
|
|
254
254
|
let e = {};
|
|
255
255
|
for (let n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]);
|
|
256
256
|
return e;
|
|
257
257
|
} else return {};
|
|
258
258
|
}
|
|
259
|
-
function
|
|
259
|
+
function ce(t, e = 40) {
|
|
260
260
|
let n = Object.keys(Ne(t));
|
|
261
261
|
if (n.sort(), !n.length) return "[object has no keys]";
|
|
262
|
-
if (n[0].length >= e) return
|
|
262
|
+
if (n[0].length >= e) return U(n[0], e);
|
|
263
263
|
for (let r = n.length; r > 0; r--) {
|
|
264
264
|
let s = n.slice(0, r).join(", ");
|
|
265
|
-
if (!(s.length > e)) return r === n.length ? s :
|
|
265
|
+
if (!(s.length > e)) return r === n.length ? s : U(s, e);
|
|
266
266
|
}
|
|
267
267
|
return "";
|
|
268
268
|
}
|
|
269
269
|
function E(t) {
|
|
270
|
-
return
|
|
270
|
+
return at(t, /* @__PURE__ */ new Map());
|
|
271
271
|
}
|
|
272
|
-
function
|
|
273
|
-
if (
|
|
272
|
+
function at(t, e) {
|
|
273
|
+
if (x(t)) {
|
|
274
274
|
let n = e.get(t);
|
|
275
275
|
if (n !== void 0) return n;
|
|
276
276
|
let r = {};
|
|
277
277
|
e.set(t, r);
|
|
278
|
-
for (let s of Object.keys(t)) typeof t[s] < "u" && (r[s] =
|
|
278
|
+
for (let s of Object.keys(t)) typeof t[s] < "u" && (r[s] = at(t[s], e));
|
|
279
279
|
return r;
|
|
280
280
|
}
|
|
281
281
|
if (Array.isArray(t)) {
|
|
@@ -283,15 +283,15 @@ function it(t, e) {
|
|
|
283
283
|
if (n !== void 0) return n;
|
|
284
284
|
let r = [];
|
|
285
285
|
return e.set(t, r), t.forEach((s) => {
|
|
286
|
-
r.push(
|
|
286
|
+
r.push(at(s, e));
|
|
287
287
|
}), r;
|
|
288
288
|
}
|
|
289
289
|
return t;
|
|
290
290
|
}
|
|
291
|
-
function
|
|
291
|
+
function yr(t, e = false) {
|
|
292
292
|
return !(e || t && !t.startsWith("/") && !t.includes(":\\") && !t.startsWith(".") && !t.match(/^[a-zA-Z]([a-zA-Z0-9.\-+])*:\/\//)) && t !== void 0 && !t.includes("node_modules/");
|
|
293
293
|
}
|
|
294
|
-
function
|
|
294
|
+
function en(t) {
|
|
295
295
|
let e = /^\s*[-]{4,}$/, n = /at (?:async )?(?:(.+?)\s+\()?(?:(.+):(\d+):(\d+)?|([^)]+))\)?/;
|
|
296
296
|
return (r) => {
|
|
297
297
|
let s = r.match(n);
|
|
@@ -309,15 +309,15 @@ function Xt(t) {
|
|
|
309
309
|
}
|
|
310
310
|
o && (c = i, u = o), o === "<anonymous>" && (u = void 0, a = void 0), a === void 0 && (u = u || "<anonymous>", a = c ? `${c}.${u}` : u);
|
|
311
311
|
let l = s[2] && s[2].startsWith("file://") ? s[2].slice(7) : s[2], d = s[5] === "native";
|
|
312
|
-
return !l && s[5] && !d && (l = s[5]), { filename: l, module: t ? t(l) : void 0, function: a, lineno: parseInt(s[3], 10) || void 0, colno: parseInt(s[4], 10) || void 0, in_app:
|
|
312
|
+
return !l && s[5] && !d && (l = s[5]), { filename: l, module: t ? t(l) : void 0, function: a, lineno: parseInt(s[3], 10) || void 0, colno: parseInt(s[4], 10) || void 0, in_app: yr(l, d) };
|
|
313
313
|
}
|
|
314
314
|
if (r.match(e)) return { filename: r };
|
|
315
315
|
};
|
|
316
316
|
}
|
|
317
|
-
var
|
|
318
|
-
var
|
|
319
|
-
var
|
|
320
|
-
function
|
|
317
|
+
var rn = 50;
|
|
318
|
+
var tn = /\(error: (.*)\)/;
|
|
319
|
+
var nn = /captureMessage|captureException/;
|
|
320
|
+
function we(...t) {
|
|
321
321
|
let e = t.sort((n, r) => n[0] - r[0]).map((n) => n[1]);
|
|
322
322
|
return (n, r = 0) => {
|
|
323
323
|
let s = [], i = n.split(`
|
|
@@ -325,7 +325,7 @@ function Ae(...t) {
|
|
|
325
325
|
for (let o = r; o < i.length; o++) {
|
|
326
326
|
let a = i[o];
|
|
327
327
|
if (a.length > 1024) continue;
|
|
328
|
-
let c =
|
|
328
|
+
let c = tn.test(a) ? a.replace(tn, "$1") : a;
|
|
329
329
|
if (!c.match(/\S*Error: /)) {
|
|
330
330
|
for (let u of e) {
|
|
331
331
|
let l = u(c);
|
|
@@ -334,150 +334,150 @@ function Ae(...t) {
|
|
|
334
334
|
break;
|
|
335
335
|
}
|
|
336
336
|
}
|
|
337
|
-
if (s.length >=
|
|
337
|
+
if (s.length >= rn) break;
|
|
338
338
|
}
|
|
339
339
|
}
|
|
340
|
-
return
|
|
340
|
+
return sn(s);
|
|
341
341
|
};
|
|
342
342
|
}
|
|
343
|
-
function
|
|
344
|
-
return Array.isArray(t) ?
|
|
343
|
+
function dt(t) {
|
|
344
|
+
return Array.isArray(t) ? we(...t) : t;
|
|
345
345
|
}
|
|
346
|
-
function
|
|
346
|
+
function sn(t) {
|
|
347
347
|
if (!t.length) return [];
|
|
348
348
|
let e = Array.from(t);
|
|
349
|
-
return /sentryWrapped/.test(e[e.length - 1].function || "") && e.pop(), e.reverse(),
|
|
349
|
+
return /sentryWrapped/.test(e[e.length - 1].function || "") && e.pop(), e.reverse(), nn.test(e[e.length - 1].function || "") && (e.pop(), nn.test(e[e.length - 1].function || "") && e.pop()), e.slice(0, rn).map((n) => ({ ...n, filename: n.filename || e[e.length - 1].filename, function: n.function || "?" }));
|
|
350
350
|
}
|
|
351
|
-
var
|
|
352
|
-
function
|
|
351
|
+
var ut = "<anonymous>";
|
|
352
|
+
function ue(t) {
|
|
353
353
|
try {
|
|
354
|
-
return !t || typeof t != "function" ?
|
|
354
|
+
return !t || typeof t != "function" ? ut : t.name || ut;
|
|
355
355
|
} catch {
|
|
356
|
-
return
|
|
356
|
+
return ut;
|
|
357
357
|
}
|
|
358
358
|
}
|
|
359
|
-
function
|
|
360
|
-
return [90,
|
|
359
|
+
function lt(t) {
|
|
360
|
+
return [90, en(t)];
|
|
361
361
|
}
|
|
362
|
-
var
|
|
363
|
-
function
|
|
364
|
-
if (!("fetch" in
|
|
362
|
+
var ft = w();
|
|
363
|
+
function Sr() {
|
|
364
|
+
if (!("fetch" in ft)) return false;
|
|
365
365
|
try {
|
|
366
366
|
return new Headers(), new Request("http://www.example.com"), new Response(), true;
|
|
367
367
|
} catch {
|
|
368
368
|
return false;
|
|
369
369
|
}
|
|
370
370
|
}
|
|
371
|
-
function
|
|
371
|
+
function on(t) {
|
|
372
372
|
return t && /^function fetch\(\)\s+\{\s+\[native code\]\s+\}$/.test(t.toString());
|
|
373
373
|
}
|
|
374
|
-
function
|
|
375
|
-
if (!
|
|
376
|
-
if (
|
|
377
|
-
let t = false, e =
|
|
374
|
+
function an() {
|
|
375
|
+
if (!Sr()) return false;
|
|
376
|
+
if (on(ft.fetch)) return true;
|
|
377
|
+
let t = false, e = ft.document;
|
|
378
378
|
if (e && typeof e.createElement == "function") try {
|
|
379
379
|
let n = e.createElement("iframe");
|
|
380
|
-
n.hidden = true, e.head.appendChild(n), n.contentWindow && n.contentWindow.fetch && (t =
|
|
380
|
+
n.hidden = true, e.head.appendChild(n), n.contentWindow && n.contentWindow.fetch && (t = on(n.contentWindow.fetch)), e.head.removeChild(n);
|
|
381
381
|
} catch (n) {
|
|
382
382
|
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn("Could not create sandbox iframe for pure fetch check, bailing to window.fetch: ", n);
|
|
383
383
|
}
|
|
384
384
|
return t;
|
|
385
385
|
}
|
|
386
|
-
var De =
|
|
387
|
-
function
|
|
386
|
+
var De = w();
|
|
387
|
+
function cn() {
|
|
388
388
|
let t = De.chrome, e = t && t.app && t.app.runtime, n = "history" in De && !!De.history.pushState && !!De.history.replaceState;
|
|
389
389
|
return !e && n;
|
|
390
390
|
}
|
|
391
|
-
var y =
|
|
392
|
-
var
|
|
393
|
-
var
|
|
394
|
-
var
|
|
395
|
-
function
|
|
396
|
-
if (!
|
|
391
|
+
var y = w();
|
|
392
|
+
var de = "__sentry_xhr_v2__";
|
|
393
|
+
var le = {};
|
|
394
|
+
var un = {};
|
|
395
|
+
function Tr(t) {
|
|
396
|
+
if (!un[t]) switch (un[t] = true, t) {
|
|
397
397
|
case "console":
|
|
398
|
-
|
|
398
|
+
br();
|
|
399
399
|
break;
|
|
400
400
|
case "dom":
|
|
401
|
-
|
|
401
|
+
hn();
|
|
402
402
|
break;
|
|
403
403
|
case "xhr":
|
|
404
|
-
|
|
404
|
+
mn();
|
|
405
405
|
break;
|
|
406
406
|
case "fetch":
|
|
407
|
-
|
|
407
|
+
Rr();
|
|
408
408
|
break;
|
|
409
409
|
case "history":
|
|
410
|
-
|
|
410
|
+
Ir();
|
|
411
411
|
break;
|
|
412
412
|
case "error":
|
|
413
|
-
|
|
413
|
+
wr();
|
|
414
414
|
break;
|
|
415
415
|
case "unhandledrejection":
|
|
416
|
-
|
|
416
|
+
Dr();
|
|
417
417
|
break;
|
|
418
418
|
default:
|
|
419
419
|
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn("unknown instrumentation type:", t);
|
|
420
420
|
return;
|
|
421
421
|
}
|
|
422
422
|
}
|
|
423
|
-
function
|
|
424
|
-
|
|
423
|
+
function Pe(t, e) {
|
|
424
|
+
le[t] = le[t] || [], le[t].push(e), Tr(t);
|
|
425
425
|
}
|
|
426
426
|
function D(t, e) {
|
|
427
|
-
if (!(!t || !
|
|
427
|
+
if (!(!t || !le[t])) for (let n of le[t] || []) try {
|
|
428
428
|
n(e);
|
|
429
429
|
} catch (r) {
|
|
430
430
|
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.error(`Error while triggering instrumentation handler.
|
|
431
431
|
Type: ${t}
|
|
432
|
-
Name: ${
|
|
432
|
+
Name: ${ue(n)}
|
|
433
433
|
Error:`, r);
|
|
434
434
|
}
|
|
435
435
|
}
|
|
436
|
-
function
|
|
437
|
-
"console" in h &&
|
|
438
|
-
t in h.console &&
|
|
439
|
-
return
|
|
436
|
+
function br() {
|
|
437
|
+
"console" in h && ae.forEach(function(t) {
|
|
438
|
+
t in h.console && A(h.console, t, function(e) {
|
|
439
|
+
return J[t] = e, function(...n) {
|
|
440
440
|
D("console", { args: n, level: t });
|
|
441
|
-
let r =
|
|
441
|
+
let r = J[t];
|
|
442
442
|
r && r.apply(h.console, n);
|
|
443
443
|
};
|
|
444
444
|
});
|
|
445
445
|
});
|
|
446
446
|
}
|
|
447
|
-
function
|
|
448
|
-
|
|
447
|
+
function Rr() {
|
|
448
|
+
an() && A(h, "fetch", function(t) {
|
|
449
449
|
return function(...e) {
|
|
450
|
-
let { method: n, url: r } =
|
|
450
|
+
let { method: n, url: r } = pn(e), s = { args: e, fetchData: { method: n, url: r }, startTimestamp: Date.now() };
|
|
451
451
|
return D("fetch", { ...s }), t.apply(h, e).then((i) => (D("fetch", { ...s, endTimestamp: Date.now(), response: i }), i), (i) => {
|
|
452
452
|
throw D("fetch", { ...s, endTimestamp: Date.now(), error: i }), i;
|
|
453
453
|
});
|
|
454
454
|
};
|
|
455
455
|
});
|
|
456
456
|
}
|
|
457
|
-
function
|
|
457
|
+
function pt(t, e) {
|
|
458
458
|
return !!t && typeof t == "object" && !!t[e];
|
|
459
459
|
}
|
|
460
|
-
function an(t) {
|
|
461
|
-
return typeof t == "string" ? t : t ? lt(t, "url") ? t.url : t.toString ? t.toString() : "" : "";
|
|
462
|
-
}
|
|
463
460
|
function dn(t) {
|
|
461
|
+
return typeof t == "string" ? t : t ? pt(t, "url") ? t.url : t.toString ? t.toString() : "" : "";
|
|
462
|
+
}
|
|
463
|
+
function pn(t) {
|
|
464
464
|
if (t.length === 0) return { method: "GET", url: "" };
|
|
465
465
|
if (t.length === 2) {
|
|
466
466
|
let [n, r] = t;
|
|
467
|
-
return { url:
|
|
467
|
+
return { url: dn(n), method: pt(r, "method") ? String(r.method).toUpperCase() : "GET" };
|
|
468
468
|
}
|
|
469
469
|
let e = t[0];
|
|
470
|
-
return { url:
|
|
470
|
+
return { url: dn(e), method: pt(e, "method") ? String(e.method).toUpperCase() : "GET" };
|
|
471
471
|
}
|
|
472
|
-
function
|
|
472
|
+
function mn() {
|
|
473
473
|
if (!y.XMLHttpRequest) return;
|
|
474
474
|
let t = XMLHttpRequest.prototype;
|
|
475
|
-
|
|
475
|
+
A(t, "open", function(e) {
|
|
476
476
|
return function(...n) {
|
|
477
|
-
let r = Date.now(), s = n[1], i = this[
|
|
478
|
-
|
|
477
|
+
let r = Date.now(), s = n[1], i = this[de] = { method: V(n[0]) ? n[0].toUpperCase() : n[0], url: n[1], request_headers: {} };
|
|
478
|
+
V(s) && i.method === "POST" && s.match(/sentry_key/) && (this.__sentry_own_request__ = true);
|
|
479
479
|
let o = () => {
|
|
480
|
-
let a = this[
|
|
480
|
+
let a = this[de];
|
|
481
481
|
if (a && this.readyState === 4) {
|
|
482
482
|
try {
|
|
483
483
|
a.status_code = this.status;
|
|
@@ -486,31 +486,31 @@ function ln() {
|
|
|
486
486
|
D("xhr", { args: n, endTimestamp: Date.now(), startTimestamp: r, xhr: this });
|
|
487
487
|
}
|
|
488
488
|
};
|
|
489
|
-
return "onreadystatechange" in this && typeof this.onreadystatechange == "function" ?
|
|
489
|
+
return "onreadystatechange" in this && typeof this.onreadystatechange == "function" ? A(this, "onreadystatechange", function(a) {
|
|
490
490
|
return function(...c) {
|
|
491
491
|
return o(), a.apply(this, c);
|
|
492
492
|
};
|
|
493
|
-
}) : this.addEventListener("readystatechange", o),
|
|
493
|
+
}) : this.addEventListener("readystatechange", o), A(this, "setRequestHeader", function(a) {
|
|
494
494
|
return function(...c) {
|
|
495
|
-
let [u, l] = c, d = this[
|
|
495
|
+
let [u, l] = c, d = this[de];
|
|
496
496
|
return d && (d.request_headers[u.toLowerCase()] = l), a.apply(this, c);
|
|
497
497
|
};
|
|
498
498
|
}), e.apply(this, n);
|
|
499
499
|
};
|
|
500
|
-
}),
|
|
500
|
+
}), A(t, "send", function(e) {
|
|
501
501
|
return function(...n) {
|
|
502
|
-
let r = this[
|
|
502
|
+
let r = this[de];
|
|
503
503
|
return r && n[0] !== void 0 && (r.body = n[0]), D("xhr", { args: n, startTimestamp: Date.now(), xhr: this }), e.apply(this, n);
|
|
504
504
|
};
|
|
505
505
|
});
|
|
506
506
|
}
|
|
507
|
-
var
|
|
508
|
-
function
|
|
509
|
-
if (!
|
|
507
|
+
var Oe;
|
|
508
|
+
function Ir() {
|
|
509
|
+
if (!cn()) return;
|
|
510
510
|
let t = y.onpopstate;
|
|
511
511
|
y.onpopstate = function(...n) {
|
|
512
|
-
let r = y.location.href, s =
|
|
513
|
-
if (
|
|
512
|
+
let r = y.location.href, s = Oe;
|
|
513
|
+
if (Oe = r, D("history", { from: s, to: r }), t) try {
|
|
514
514
|
return t.apply(this, n);
|
|
515
515
|
} catch {
|
|
516
516
|
}
|
|
@@ -519,18 +519,18 @@ function Er() {
|
|
|
519
519
|
return function(...r) {
|
|
520
520
|
let s = r.length > 2 ? r[2] : void 0;
|
|
521
521
|
if (s) {
|
|
522
|
-
let i =
|
|
523
|
-
|
|
522
|
+
let i = Oe, o = String(s);
|
|
523
|
+
Oe = o, D("history", { from: i, to: o });
|
|
524
524
|
}
|
|
525
525
|
return n.apply(this, r);
|
|
526
526
|
};
|
|
527
527
|
}
|
|
528
|
-
|
|
528
|
+
A(y.history, "pushState", e), A(y.history, "replaceState", e);
|
|
529
529
|
}
|
|
530
|
-
var
|
|
531
|
-
var
|
|
532
|
-
var
|
|
533
|
-
function
|
|
530
|
+
var xr = 1e3;
|
|
531
|
+
var ln;
|
|
532
|
+
var ve;
|
|
533
|
+
function Ar(t, e) {
|
|
534
534
|
if (t.type !== e.type) return false;
|
|
535
535
|
try {
|
|
536
536
|
if (t.target !== e.target) return false;
|
|
@@ -538,7 +538,7 @@ function Sr(t, e) {
|
|
|
538
538
|
}
|
|
539
539
|
return true;
|
|
540
540
|
}
|
|
541
|
-
function
|
|
541
|
+
function Nr(t) {
|
|
542
542
|
if (t.type !== "keypress") return false;
|
|
543
543
|
try {
|
|
544
544
|
let e = t.target;
|
|
@@ -548,27 +548,27 @@ function Tr(t) {
|
|
|
548
548
|
}
|
|
549
549
|
return true;
|
|
550
550
|
}
|
|
551
|
-
function
|
|
551
|
+
function fn(t, e = false) {
|
|
552
552
|
return (n) => {
|
|
553
|
-
if (!n || n._sentryCaptured ||
|
|
554
|
-
|
|
553
|
+
if (!n || n._sentryCaptured || Nr(n)) return;
|
|
554
|
+
K(n, "_sentryCaptured", true);
|
|
555
555
|
let r = n.type === "keypress" ? "input" : n.type;
|
|
556
|
-
(
|
|
557
|
-
|
|
558
|
-
},
|
|
556
|
+
(ve === void 0 || !Ar(ve, n)) && (t({ event: n, name: r, global: e }), ve = n), clearTimeout(ln), ln = y.setTimeout(() => {
|
|
557
|
+
ve = void 0;
|
|
558
|
+
}, xr);
|
|
559
559
|
};
|
|
560
560
|
}
|
|
561
|
-
function
|
|
561
|
+
function hn() {
|
|
562
562
|
if (!y.document) return;
|
|
563
|
-
let t = D.bind(null, "dom"), e =
|
|
563
|
+
let t = D.bind(null, "dom"), e = fn(t, true);
|
|
564
564
|
y.document.addEventListener("click", e, false), y.document.addEventListener("keypress", e, false), ["EventTarget", "Node"].forEach((n) => {
|
|
565
565
|
let r = y[n] && y[n].prototype;
|
|
566
|
-
!r || !r.hasOwnProperty || !r.hasOwnProperty("addEventListener") || (
|
|
566
|
+
!r || !r.hasOwnProperty || !r.hasOwnProperty("addEventListener") || (A(r, "addEventListener", function(s) {
|
|
567
567
|
return function(i, o, a) {
|
|
568
568
|
if (i === "click" || i == "keypress") try {
|
|
569
569
|
let c = this, u = c.__sentry_instrumentation_handlers__ = c.__sentry_instrumentation_handlers__ || {}, l = u[i] = u[i] || { refCount: 0 };
|
|
570
570
|
if (!l.handler) {
|
|
571
|
-
let d =
|
|
571
|
+
let d = fn(t);
|
|
572
572
|
l.handler = d, s.call(this, i, d, a);
|
|
573
573
|
}
|
|
574
574
|
l.refCount++;
|
|
@@ -576,7 +576,7 @@ function fn() {
|
|
|
576
576
|
}
|
|
577
577
|
return s.call(this, i, o, a);
|
|
578
578
|
};
|
|
579
|
-
}),
|
|
579
|
+
}), A(r, "removeEventListener", function(s) {
|
|
580
580
|
return function(i, o, a) {
|
|
581
581
|
if (i === "click" || i == "keypress") try {
|
|
582
582
|
let c = this, u = c.__sentry_instrumentation_handlers__ || {}, l = u[i];
|
|
@@ -588,28 +588,28 @@ function fn() {
|
|
|
588
588
|
}));
|
|
589
589
|
});
|
|
590
590
|
}
|
|
591
|
-
var
|
|
592
|
-
function
|
|
593
|
-
|
|
594
|
-
return D("error", { column: r, error: s, line: n, msg: t, url: e }),
|
|
591
|
+
var ke = null;
|
|
592
|
+
function wr() {
|
|
593
|
+
ke = y.onerror, y.onerror = function(t, e, n, r, s) {
|
|
594
|
+
return D("error", { column: r, error: s, line: n, msg: t, url: e }), ke && !ke.__SENTRY_LOADER__ ? ke.apply(this, arguments) : false;
|
|
595
595
|
}, y.onerror.__SENTRY_INSTRUMENTED__ = true;
|
|
596
596
|
}
|
|
597
|
-
var
|
|
598
|
-
function
|
|
599
|
-
|
|
600
|
-
return D("unhandledrejection", t),
|
|
597
|
+
var Ce = null;
|
|
598
|
+
function Dr() {
|
|
599
|
+
Ce = y.onunhandledrejection, y.onunhandledrejection = function(t) {
|
|
600
|
+
return D("unhandledrejection", t), Ce && !Ce.__SENTRY_LOADER__ ? Ce.apply(this, arguments) : true;
|
|
601
601
|
}, y.onunhandledrejection.__SENTRY_INSTRUMENTED__ = true;
|
|
602
602
|
}
|
|
603
|
-
function
|
|
603
|
+
function _n() {
|
|
604
604
|
return typeof __SENTRY_BROWSER_BUNDLE__ < "u" && !!__SENTRY_BROWSER_BUNDLE__;
|
|
605
605
|
}
|
|
606
|
-
function
|
|
607
|
-
return !
|
|
606
|
+
function gn() {
|
|
607
|
+
return !_n() && Object.prototype.toString.call(typeof process < "u" ? process : 0) === "[object process]";
|
|
608
608
|
}
|
|
609
|
-
function
|
|
609
|
+
function En(t, e) {
|
|
610
610
|
return t.require(e);
|
|
611
611
|
}
|
|
612
|
-
function
|
|
612
|
+
function yn() {
|
|
613
613
|
let t = typeof WeakSet == "function", e = t ? /* @__PURE__ */ new WeakSet() : [];
|
|
614
614
|
function n(s) {
|
|
615
615
|
if (t) return e.has(s) ? true : (e.add(s), false);
|
|
@@ -634,15 +634,15 @@ function g() {
|
|
|
634
634
|
}
|
|
635
635
|
return ("10000000100040008000" + 1e11).replace(/[018]/g, (r) => (r ^ (n() & 15) >> r / 4).toString(16));
|
|
636
636
|
}
|
|
637
|
-
function
|
|
637
|
+
function Or(t) {
|
|
638
638
|
return t.exception && t.exception.values ? t.exception.values[0] : void 0;
|
|
639
639
|
}
|
|
640
|
-
function
|
|
640
|
+
function fe(t, e, n) {
|
|
641
641
|
let r = t.exception = t.exception || {}, s = r.values = r.values || [], i = s[0] = s[0] || {};
|
|
642
642
|
i.value || (i.value = e || ""), i.type || (i.type = n || "Error");
|
|
643
643
|
}
|
|
644
|
-
function
|
|
645
|
-
let n =
|
|
644
|
+
function pe(t, e) {
|
|
645
|
+
let n = Or(t);
|
|
646
646
|
if (!n) return;
|
|
647
647
|
let r = { type: "generic", handled: true }, s = n.mechanism;
|
|
648
648
|
if (n.mechanism = { ...r, ...s, ...e }, e && "data" in e) {
|
|
@@ -650,32 +650,32 @@ function de(t, e) {
|
|
|
650
650
|
n.mechanism.data = i;
|
|
651
651
|
}
|
|
652
652
|
}
|
|
653
|
-
function
|
|
653
|
+
function Me(t) {
|
|
654
654
|
if (t && t.__sentry_captured__) return true;
|
|
655
655
|
try {
|
|
656
|
-
|
|
656
|
+
K(t, "__sentry_captured__", true);
|
|
657
657
|
} catch {
|
|
658
658
|
}
|
|
659
659
|
return false;
|
|
660
660
|
}
|
|
661
|
-
function
|
|
661
|
+
function me(t) {
|
|
662
662
|
return Array.isArray(t) ? t : [t];
|
|
663
663
|
}
|
|
664
|
-
function
|
|
664
|
+
function O(t, e = 100, n = 1 / 0) {
|
|
665
665
|
try {
|
|
666
|
-
return
|
|
666
|
+
return Ue("", t, e, n);
|
|
667
667
|
} catch (r) {
|
|
668
668
|
return { ERROR: `**non-serializable** (${r})` };
|
|
669
669
|
}
|
|
670
670
|
}
|
|
671
|
-
function
|
|
672
|
-
let r =
|
|
673
|
-
return
|
|
671
|
+
function X(t, e = 3, n = 100 * 1024) {
|
|
672
|
+
let r = O(t, e);
|
|
673
|
+
return Pr(r) > n ? X(t, e - 1, n) : r;
|
|
674
674
|
}
|
|
675
|
-
function
|
|
675
|
+
function Ue(t, e, n = 1 / 0, r = 1 / 0, s = yn()) {
|
|
676
676
|
let [i, o] = s;
|
|
677
|
-
if (e == null || ["number", "boolean", "string"].includes(typeof e) && !
|
|
678
|
-
let a =
|
|
677
|
+
if (e == null || ["number", "boolean", "string"].includes(typeof e) && !ie(e)) return e;
|
|
678
|
+
let a = vr(t, e);
|
|
679
679
|
if (!a.startsWith("[object ")) return a;
|
|
680
680
|
if (e.__sentry_skip_normalization__) return e;
|
|
681
681
|
let c = typeof e.__sentry_override_normalization_depth__ == "number" ? e.__sentry_override_normalization_depth__ : n;
|
|
@@ -684,7 +684,7 @@ function Me(t, e, n = 1 / 0, r = 1 / 0, s = _n()) {
|
|
|
684
684
|
let u = e;
|
|
685
685
|
if (u && typeof u.toJSON == "function") try {
|
|
686
686
|
let m = u.toJSON();
|
|
687
|
-
return
|
|
687
|
+
return Ue("", m, c - 1, r, s);
|
|
688
688
|
} catch {
|
|
689
689
|
}
|
|
690
690
|
let l = Array.isArray(e) ? [] : {}, d = 0, p = Ne(e);
|
|
@@ -694,70 +694,70 @@ function Me(t, e, n = 1 / 0, r = 1 / 0, s = _n()) {
|
|
|
694
694
|
l[m] = "[MaxProperties ~]";
|
|
695
695
|
break;
|
|
696
696
|
}
|
|
697
|
-
let
|
|
698
|
-
l[m] =
|
|
697
|
+
let k = p[m];
|
|
698
|
+
l[m] = Ue(m, k, c - 1, r, s), d++;
|
|
699
699
|
}
|
|
700
700
|
return o(e), l;
|
|
701
701
|
}
|
|
702
|
-
function
|
|
702
|
+
function vr(t, e) {
|
|
703
703
|
try {
|
|
704
704
|
if (t === "domain" && e && typeof e == "object" && e._events) return "[Domain]";
|
|
705
705
|
if (t === "domainEmitter") return "[DomainEmitter]";
|
|
706
706
|
if (typeof global < "u" && e === global) return "[Global]";
|
|
707
707
|
if (typeof window < "u" && e === window) return "[Window]";
|
|
708
708
|
if (typeof document < "u" && e === document) return "[Document]";
|
|
709
|
-
if (
|
|
710
|
-
if (
|
|
709
|
+
if (ot(e)) return "[VueViewModel]";
|
|
710
|
+
if (it(e)) return "[SyntheticEvent]";
|
|
711
711
|
if (typeof e == "number" && e !== e) return "[NaN]";
|
|
712
|
-
if (typeof e == "function") return `[Function: ${
|
|
712
|
+
if (typeof e == "function") return `[Function: ${ue(e)}]`;
|
|
713
713
|
if (typeof e == "symbol") return `[${String(e)}]`;
|
|
714
714
|
if (typeof e == "bigint") return `[BigInt: ${String(e)}]`;
|
|
715
|
-
let n =
|
|
715
|
+
let n = kr(e);
|
|
716
716
|
return /^HTML(\w*)Element$/.test(n) ? `[HTMLElement: ${n}]` : `[object ${n}]`;
|
|
717
717
|
} catch (n) {
|
|
718
718
|
return `**non-serializable** (${n})`;
|
|
719
719
|
}
|
|
720
720
|
}
|
|
721
|
-
function
|
|
721
|
+
function kr(t) {
|
|
722
722
|
let e = Object.getPrototypeOf(t);
|
|
723
723
|
return e ? e.constructor.name : "null prototype";
|
|
724
724
|
}
|
|
725
|
-
function
|
|
725
|
+
function Cr(t) {
|
|
726
726
|
return ~-encodeURI(t).split(/%..|./).length;
|
|
727
727
|
}
|
|
728
|
-
function
|
|
729
|
-
return
|
|
728
|
+
function Pr(t) {
|
|
729
|
+
return Cr(JSON.stringify(t));
|
|
730
730
|
}
|
|
731
|
-
var
|
|
732
|
-
function
|
|
733
|
-
let e = t.length > 1024 ? `<truncated>${t.slice(-1024)}` : t, n =
|
|
731
|
+
var Mr = /^(\S+:\\|\/?)([\s\S]*?)((?:\.{1,2}|[^/\\]+?|)(\.[^./\\]*|))(?:[/\\]*)$/;
|
|
732
|
+
function Ur(t) {
|
|
733
|
+
let e = t.length > 1024 ? `<truncated>${t.slice(-1024)}` : t, n = Mr.exec(e);
|
|
734
734
|
return n ? n.slice(1) : [];
|
|
735
735
|
}
|
|
736
|
-
function
|
|
737
|
-
let n =
|
|
736
|
+
function mt(t, e) {
|
|
737
|
+
let n = Ur(t)[2];
|
|
738
738
|
return e && n.slice(e.length * -1) === e && (n = n.slice(0, n.length - e.length)), n;
|
|
739
739
|
}
|
|
740
|
-
var
|
|
740
|
+
var P;
|
|
741
741
|
(function(t) {
|
|
742
742
|
t[t.PENDING = 0] = "PENDING";
|
|
743
743
|
let n = 1;
|
|
744
744
|
t[t.RESOLVED = n] = "RESOLVED";
|
|
745
745
|
let r = 2;
|
|
746
746
|
t[t.REJECTED = r] = "REJECTED";
|
|
747
|
-
})(
|
|
747
|
+
})(P || (P = {}));
|
|
748
748
|
function b(t) {
|
|
749
749
|
return new S((e) => {
|
|
750
750
|
e(t);
|
|
751
751
|
});
|
|
752
752
|
}
|
|
753
|
-
function
|
|
753
|
+
function Y(t) {
|
|
754
754
|
return new S((e, n) => {
|
|
755
755
|
n(t);
|
|
756
756
|
});
|
|
757
757
|
}
|
|
758
758
|
var S = class {
|
|
759
759
|
constructor(e) {
|
|
760
|
-
S.prototype.__init.call(this), S.prototype.__init2.call(this), S.prototype.__init3.call(this), S.prototype.__init4.call(this), this._state =
|
|
760
|
+
S.prototype.__init.call(this), S.prototype.__init2.call(this), S.prototype.__init3.call(this), S.prototype.__init4.call(this), this._state = P.PENDING, this._handlers = [];
|
|
761
761
|
try {
|
|
762
762
|
e(this._resolve, this._reject);
|
|
763
763
|
} catch (n) {
|
|
@@ -804,18 +804,18 @@ var S = class {
|
|
|
804
804
|
}
|
|
805
805
|
__init() {
|
|
806
806
|
this._resolve = (e) => {
|
|
807
|
-
this._setResult(
|
|
807
|
+
this._setResult(P.RESOLVED, e);
|
|
808
808
|
};
|
|
809
809
|
}
|
|
810
810
|
__init2() {
|
|
811
811
|
this._reject = (e) => {
|
|
812
|
-
this._setResult(
|
|
812
|
+
this._setResult(P.REJECTED, e);
|
|
813
813
|
};
|
|
814
814
|
}
|
|
815
815
|
__init3() {
|
|
816
816
|
this._setResult = (e, n) => {
|
|
817
|
-
if (this._state ===
|
|
818
|
-
if (
|
|
817
|
+
if (this._state === P.PENDING) {
|
|
818
|
+
if (H(n)) {
|
|
819
819
|
n.then(this._resolve, this._reject);
|
|
820
820
|
return;
|
|
821
821
|
}
|
|
@@ -825,15 +825,15 @@ var S = class {
|
|
|
825
825
|
}
|
|
826
826
|
__init4() {
|
|
827
827
|
this._executeHandlers = () => {
|
|
828
|
-
if (this._state ===
|
|
828
|
+
if (this._state === P.PENDING) return;
|
|
829
829
|
let e = this._handlers.slice();
|
|
830
830
|
this._handlers = [], e.forEach((n) => {
|
|
831
|
-
n[0] || (this._state ===
|
|
831
|
+
n[0] || (this._state === P.RESOLVED && n[1](this._value), this._state === P.REJECTED && n[2](this._value), n[0] = true);
|
|
832
832
|
});
|
|
833
833
|
};
|
|
834
834
|
}
|
|
835
835
|
};
|
|
836
|
-
function
|
|
836
|
+
function ht(t) {
|
|
837
837
|
let e = [];
|
|
838
838
|
function n() {
|
|
839
839
|
return t === void 0 || e.length < t;
|
|
@@ -842,7 +842,7 @@ function pt(t) {
|
|
|
842
842
|
return e.splice(e.indexOf(o), 1)[0];
|
|
843
843
|
}
|
|
844
844
|
function s(o) {
|
|
845
|
-
if (!n()) return
|
|
845
|
+
if (!n()) return Y(new T("Not adding Promise because buffer limit was reached."));
|
|
846
846
|
let a = o();
|
|
847
847
|
return e.indexOf(a) === -1 && e.push(a), a.then(() => r(a)).then(null, () => r(a).then(null, () => {
|
|
848
848
|
})), a;
|
|
@@ -863,48 +863,48 @@ function pt(t) {
|
|
|
863
863
|
}
|
|
864
864
|
return { $: e, add: s, drain: i };
|
|
865
865
|
}
|
|
866
|
-
var
|
|
867
|
-
var
|
|
868
|
-
function
|
|
869
|
-
let { performance: t } =
|
|
866
|
+
var Tn = w();
|
|
867
|
+
var gt = { nowSeconds: () => Date.now() / 1e3 };
|
|
868
|
+
function Lr() {
|
|
869
|
+
let { performance: t } = Tn;
|
|
870
870
|
if (!t || !t.now) return;
|
|
871
871
|
let e = Date.now() - t.now();
|
|
872
872
|
return { now: () => t.now(), timeOrigin: e };
|
|
873
873
|
}
|
|
874
|
-
function
|
|
874
|
+
function Br() {
|
|
875
875
|
try {
|
|
876
|
-
return
|
|
876
|
+
return En(module, "perf_hooks").performance;
|
|
877
877
|
} catch {
|
|
878
878
|
return;
|
|
879
879
|
}
|
|
880
880
|
}
|
|
881
|
-
var
|
|
882
|
-
var
|
|
883
|
-
var
|
|
884
|
-
var
|
|
885
|
-
var
|
|
886
|
-
var
|
|
887
|
-
let { performance: t } =
|
|
881
|
+
var _t = gn() ? Br() : Lr();
|
|
882
|
+
var Sn = _t === void 0 ? gt : { nowSeconds: () => (_t.timeOrigin + _t.now()) / 1e3 };
|
|
883
|
+
var j = gt.nowSeconds.bind(gt);
|
|
884
|
+
var q = Sn.nowSeconds.bind(Sn);
|
|
885
|
+
var he;
|
|
886
|
+
var Gr = (() => {
|
|
887
|
+
let { performance: t } = Tn;
|
|
888
888
|
if (!t || !t.now) {
|
|
889
|
-
|
|
889
|
+
he = "none";
|
|
890
890
|
return;
|
|
891
891
|
}
|
|
892
892
|
let e = 3600 * 1e3, n = t.now(), r = Date.now(), s = t.timeOrigin ? Math.abs(t.timeOrigin + n - r) : e, i = s < e, o = t.timing && t.timing.navigationStart, c = typeof o == "number" ? Math.abs(o + n - r) : e, u = c < e;
|
|
893
|
-
return i || u ? s <= c ? (
|
|
893
|
+
return i || u ? s <= c ? (he = "timeOrigin", t.timeOrigin) : (he = "navigationStart", o) : (he = "dateNow", r);
|
|
894
894
|
})();
|
|
895
|
-
var
|
|
896
|
-
function
|
|
895
|
+
var Fr = new RegExp("^[ \\t]*([0-9a-f]{32})?-?([0-9a-f]{16})?-?([01])?[ \\t]*$");
|
|
896
|
+
function Et(t = g(), e = g().substring(16), n) {
|
|
897
897
|
let r = "";
|
|
898
898
|
return n !== void 0 && (r = n ? "-1" : "-0"), `${t}-${e}${r}`;
|
|
899
899
|
}
|
|
900
|
-
function
|
|
900
|
+
function B(t, e = []) {
|
|
901
901
|
return [t, e];
|
|
902
902
|
}
|
|
903
|
-
function
|
|
903
|
+
function St(t, e) {
|
|
904
904
|
let [n, r] = t;
|
|
905
905
|
return [n, [...r, e]];
|
|
906
906
|
}
|
|
907
|
-
function
|
|
907
|
+
function Le(t, e) {
|
|
908
908
|
let n = t[1];
|
|
909
909
|
for (let r of n) {
|
|
910
910
|
let s = r[0].type;
|
|
@@ -912,13 +912,13 @@ function Ue(t, e) {
|
|
|
912
912
|
}
|
|
913
913
|
return false;
|
|
914
914
|
}
|
|
915
|
-
function
|
|
915
|
+
function yt(t, e) {
|
|
916
916
|
return (e || new TextEncoder()).encode(t);
|
|
917
917
|
}
|
|
918
|
-
function
|
|
918
|
+
function Tt(t, e) {
|
|
919
919
|
let [n, r] = t, s = JSON.stringify(n);
|
|
920
920
|
function i(o) {
|
|
921
|
-
typeof s == "string" ? s = typeof o == "string" ? s + o : [
|
|
921
|
+
typeof s == "string" ? s = typeof o == "string" ? s + o : [yt(s, e), o] : s.push(typeof o == "string" ? yt(o, e) : o);
|
|
922
922
|
}
|
|
923
923
|
for (let o of r) {
|
|
924
924
|
let [a, c] = o;
|
|
@@ -930,117 +930,117 @@ ${JSON.stringify(a)}
|
|
|
930
930
|
try {
|
|
931
931
|
u = JSON.stringify(c);
|
|
932
932
|
} catch {
|
|
933
|
-
u = JSON.stringify(
|
|
933
|
+
u = JSON.stringify(O(c));
|
|
934
934
|
}
|
|
935
935
|
i(u);
|
|
936
936
|
}
|
|
937
937
|
}
|
|
938
|
-
return typeof s == "string" ? s :
|
|
938
|
+
return typeof s == "string" ? s : $r(s);
|
|
939
939
|
}
|
|
940
|
-
function
|
|
940
|
+
function $r(t) {
|
|
941
941
|
let e = t.reduce((s, i) => s + i.length, 0), n = new Uint8Array(e), r = 0;
|
|
942
942
|
for (let s of t) n.set(s, r), r += s.length;
|
|
943
943
|
return n;
|
|
944
944
|
}
|
|
945
|
-
function
|
|
946
|
-
let n = typeof t.data == "string" ?
|
|
945
|
+
function bt(t, e) {
|
|
946
|
+
let n = typeof t.data == "string" ? yt(t.data, e) : t.data;
|
|
947
947
|
return [E({ type: "attachment", length: n.length, filename: t.filename, content_type: t.contentType, attachment_type: t.attachmentType }), n];
|
|
948
948
|
}
|
|
949
|
-
var
|
|
950
|
-
function
|
|
951
|
-
return
|
|
949
|
+
var Hr = { session: "session", sessions: "session", attachment: "attachment", transaction: "transaction", event: "error", client_report: "internal", user_report: "default", profile: "profile", replay_event: "replay", replay_recording: "replay", check_in: "monitor", statsd: "unknown" };
|
|
950
|
+
function Be(t) {
|
|
951
|
+
return Hr[t];
|
|
952
952
|
}
|
|
953
|
-
function
|
|
953
|
+
function Ge(t) {
|
|
954
954
|
if (!t || !t.sdk) return;
|
|
955
955
|
let { name: e, version: n } = t.sdk;
|
|
956
956
|
return { name: e, version: n };
|
|
957
957
|
}
|
|
958
|
-
function
|
|
958
|
+
function Rt(t, e, n, r) {
|
|
959
959
|
let s = t.sdkProcessingMetadata && t.sdkProcessingMetadata.dynamicSamplingContext;
|
|
960
|
-
return { event_id: t.event_id, sent_at: (/* @__PURE__ */ new Date()).toISOString(), ...e && { sdk: e }, ...!!n && r && { dsn:
|
|
960
|
+
return { event_id: t.event_id, sent_at: (/* @__PURE__ */ new Date()).toISOString(), ...e && { sdk: e }, ...!!n && r && { dsn: L(r) }, ...s && { trace: E({ ...s }) } };
|
|
961
961
|
}
|
|
962
|
-
function
|
|
962
|
+
function bn(t, e = Date.now()) {
|
|
963
963
|
let n = parseInt(`${t}`, 10);
|
|
964
964
|
if (!isNaN(n)) return n * 1e3;
|
|
965
965
|
let r = Date.parse(`${t}`);
|
|
966
966
|
return isNaN(r) ? 6e4 : r - e;
|
|
967
967
|
}
|
|
968
|
-
function
|
|
968
|
+
function Rn(t, e) {
|
|
969
969
|
return t[e] || t.all || 0;
|
|
970
970
|
}
|
|
971
|
-
function
|
|
972
|
-
return
|
|
971
|
+
function It(t, e, n = Date.now()) {
|
|
972
|
+
return Rn(t, e) > n;
|
|
973
973
|
}
|
|
974
|
-
function
|
|
974
|
+
function xt(t, { statusCode: e, headers: n }, r = Date.now()) {
|
|
975
975
|
let s = { ...t }, i = n && n["x-sentry-rate-limits"], o = n && n["retry-after"];
|
|
976
976
|
if (i) for (let a of i.trim().split(",")) {
|
|
977
977
|
let [c, u] = a.split(":", 2), l = parseInt(c, 10), d = (isNaN(l) ? 60 : l) * 1e3;
|
|
978
978
|
if (!u) s.all = r + d;
|
|
979
979
|
else for (let p of u.split(";")) s[p] = r + d;
|
|
980
980
|
}
|
|
981
|
-
else o ? s.all = r +
|
|
981
|
+
else o ? s.all = r + bn(o, r) : e === 429 && (s.all = r + 60 * 1e3);
|
|
982
982
|
return s;
|
|
983
983
|
}
|
|
984
|
-
function
|
|
984
|
+
function At(t, e) {
|
|
985
985
|
return t(e.stack || "", 1);
|
|
986
986
|
}
|
|
987
|
-
function
|
|
988
|
-
let n = { type: e.name || e.constructor.name, value: e.message }, r =
|
|
987
|
+
function In(t, e) {
|
|
988
|
+
let n = { type: e.name || e.constructor.name, value: e.message }, r = At(t, e);
|
|
989
989
|
return r.length && (n.stacktrace = { frames: r }), n;
|
|
990
990
|
}
|
|
991
|
-
function
|
|
991
|
+
function Yr(t) {
|
|
992
992
|
if ("name" in t && typeof t.name == "string") {
|
|
993
993
|
let e = `'${t.name}' captured as exception`;
|
|
994
994
|
return "message" in t && typeof t.message == "string" && (e += ` with message '${t.message}'`), e;
|
|
995
|
-
} else return "message" in t && typeof t.message == "string" ? t.message : `Object captured as exception with keys: ${
|
|
995
|
+
} else return "message" in t && typeof t.message == "string" ? t.message : `Object captured as exception with keys: ${ce(t)}`;
|
|
996
996
|
}
|
|
997
|
-
function
|
|
997
|
+
function Nt(t, e, n, r) {
|
|
998
998
|
let s = n, o = r && r.data && r.data.mechanism || { handled: true, type: "generic" };
|
|
999
|
-
if (
|
|
1000
|
-
if (
|
|
999
|
+
if (!$(n)) {
|
|
1000
|
+
if (x(n)) {
|
|
1001
1001
|
let c = t(), u = c.getClient(), l = u && u.getOptions().normalizeDepth;
|
|
1002
1002
|
c.configureScope((p) => {
|
|
1003
|
-
p.setExtra("__serialized__",
|
|
1003
|
+
p.setExtra("__serialized__", X(n, l));
|
|
1004
1004
|
});
|
|
1005
|
-
let d =
|
|
1005
|
+
let d = Yr(n);
|
|
1006
1006
|
s = r && r.syntheticException || new Error(d), s.message = d;
|
|
1007
1007
|
} else s = r && r.syntheticException || new Error(n), s.message = n;
|
|
1008
1008
|
o.synthetic = true;
|
|
1009
1009
|
}
|
|
1010
|
-
let a = { exception: { values: [
|
|
1011
|
-
return
|
|
1010
|
+
let a = { exception: { values: [In(e, s)] } };
|
|
1011
|
+
return fe(a, void 0, void 0), pe(a, o), { ...a, event_id: r && r.event_id };
|
|
1012
1012
|
}
|
|
1013
|
-
function
|
|
1013
|
+
function wt(t, e, n = "info", r, s) {
|
|
1014
1014
|
let i = { event_id: r && r.event_id, level: n, message: e };
|
|
1015
1015
|
if (s && r && r.syntheticException) {
|
|
1016
|
-
let o =
|
|
1016
|
+
let o = At(t, r.syntheticException);
|
|
1017
1017
|
o.length && (i.exception = { values: [{ value: e, stacktrace: { frames: o } }] });
|
|
1018
1018
|
}
|
|
1019
1019
|
return i;
|
|
1020
1020
|
}
|
|
1021
|
-
var
|
|
1022
|
-
function
|
|
1023
|
-
return
|
|
1021
|
+
var Z = "production";
|
|
1022
|
+
function _e() {
|
|
1023
|
+
return oe("globalEventProcessors", () => []);
|
|
1024
1024
|
}
|
|
1025
|
-
function
|
|
1026
|
-
|
|
1025
|
+
function xn(t) {
|
|
1026
|
+
_e().push(t);
|
|
1027
1027
|
}
|
|
1028
|
-
function
|
|
1028
|
+
function Q(t, e, n, r = 0) {
|
|
1029
1029
|
return new S((s, i) => {
|
|
1030
1030
|
let o = t[r];
|
|
1031
1031
|
if (e === null || typeof o != "function") s(e);
|
|
1032
1032
|
else {
|
|
1033
1033
|
let a = o({ ...e }, n);
|
|
1034
|
-
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && o.id && a === null && f.log(`Event processor "${o.id}" dropped event`),
|
|
1034
|
+
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && o.id && a === null && f.log(`Event processor "${o.id}" dropped event`), H(a) ? a.then((c) => Q(t, c, n, r + 1).then(s)).then(null, i) : Q(t, a, n, r + 1).then(s).then(null, i);
|
|
1035
1035
|
}
|
|
1036
1036
|
});
|
|
1037
1037
|
}
|
|
1038
|
-
function
|
|
1039
|
-
let e =
|
|
1040
|
-
return t &&
|
|
1038
|
+
function An(t) {
|
|
1039
|
+
let e = q(), n = { sid: g(), init: true, timestamp: e, started: e, duration: 0, status: "ok", errors: 0, ignoreDuration: false, toJSON: () => jr(n) };
|
|
1040
|
+
return t && M(n, t), n;
|
|
1041
1041
|
}
|
|
1042
|
-
function
|
|
1043
|
-
if (e.user && (!t.ipAddress && e.user.ip_address && (t.ipAddress = e.user.ip_address), !t.did && !e.did && (t.did = e.user.id || e.user.email || e.user.username)), t.timestamp = e.timestamp ||
|
|
1042
|
+
function M(t, e = {}) {
|
|
1043
|
+
if (e.user && (!t.ipAddress && e.user.ip_address && (t.ipAddress = e.user.ip_address), !t.did && !e.did && (t.did = e.user.id || e.user.email || e.user.username)), t.timestamp = e.timestamp || q(), e.abnormal_mechanism && (t.abnormal_mechanism = e.abnormal_mechanism), e.ignoreDuration && (t.ignoreDuration = e.ignoreDuration), e.sid && (t.sid = e.sid.length === 32 ? e.sid : g()), e.init !== void 0 && (t.init = e.init), !t.did && e.did && (t.did = `${e.did}`), typeof e.started == "number" && (t.started = e.started), t.ignoreDuration) t.duration = void 0;
|
|
1044
1044
|
else if (typeof e.duration == "number") t.duration = e.duration;
|
|
1045
1045
|
else {
|
|
1046
1046
|
let n = t.timestamp - t.started;
|
|
@@ -1048,20 +1048,20 @@ function P(t, e = {}) {
|
|
|
1048
1048
|
}
|
|
1049
1049
|
e.release && (t.release = e.release), e.environment && (t.environment = e.environment), !t.ipAddress && e.ipAddress && (t.ipAddress = e.ipAddress), !t.userAgent && e.userAgent && (t.userAgent = e.userAgent), typeof e.errors == "number" && (t.errors = e.errors), e.status && (t.status = e.status);
|
|
1050
1050
|
}
|
|
1051
|
-
function
|
|
1051
|
+
function Nn(t, e) {
|
|
1052
1052
|
let n = {};
|
|
1053
|
-
e ? n = { status: e } : t.status === "ok" && (n = { status: "exited" }),
|
|
1053
|
+
e ? n = { status: e } : t.status === "ok" && (n = { status: "exited" }), M(t, n);
|
|
1054
1054
|
}
|
|
1055
|
-
function
|
|
1055
|
+
function jr(t) {
|
|
1056
1056
|
return E({ sid: `${t.sid}`, init: t.init, started: new Date(t.started * 1e3).toISOString(), timestamp: new Date(t.timestamp * 1e3).toISOString(), status: t.status, errors: t.errors, did: typeof t.did == "number" || typeof t.did == "string" ? `${t.did}` : void 0, duration: t.duration, abnormal_mechanism: t.abnormal_mechanism, attrs: { release: t.release, environment: t.environment, ip_address: t.ipAddress, user_agent: t.userAgent } });
|
|
1057
1057
|
}
|
|
1058
|
-
var
|
|
1059
|
-
var
|
|
1058
|
+
var qr = 100;
|
|
1059
|
+
var v = class {
|
|
1060
1060
|
constructor() {
|
|
1061
|
-
this._notifyingListeners = false, this._scopeListeners = [], this._eventProcessors = [], this._breadcrumbs = [], this._attachments = [], this._user = {}, this._tags = {}, this._extra = {}, this._contexts = {}, this._sdkProcessingMetadata = {}, this._propagationContext =
|
|
1061
|
+
this._notifyingListeners = false, this._scopeListeners = [], this._eventProcessors = [], this._breadcrumbs = [], this._attachments = [], this._user = {}, this._tags = {}, this._extra = {}, this._contexts = {}, this._sdkProcessingMetadata = {}, this._propagationContext = wn();
|
|
1062
1062
|
}
|
|
1063
1063
|
static clone(e) {
|
|
1064
|
-
let n = new
|
|
1064
|
+
let n = new v();
|
|
1065
1065
|
return e && (n._breadcrumbs = [...e._breadcrumbs], n._tags = { ...e._tags }, n._extra = { ...e._extra }, n._contexts = { ...e._contexts }, n._user = e._user, n._level = e._level, n._span = e._span, n._session = e._session, n._transactionName = e._transactionName, n._fingerprint = e._fingerprint, n._eventProcessors = [...e._eventProcessors], n._requestSession = e._requestSession, n._attachments = [...e._attachments], n._sdkProcessingMetadata = { ...e._sdkProcessingMetadata }, n._propagationContext = { ...e._propagationContext }), n;
|
|
1066
1066
|
}
|
|
1067
1067
|
addScopeListener(e) {
|
|
@@ -1071,7 +1071,7 @@ var O = class {
|
|
|
1071
1071
|
return this._eventProcessors.push(e), this;
|
|
1072
1072
|
}
|
|
1073
1073
|
setUser(e) {
|
|
1074
|
-
return this._user = e || {}, this._session &&
|
|
1074
|
+
return this._user = e || {}, this._session && M(this._session, { user: e }), this._notifyScopeListeners(), this;
|
|
1075
1075
|
}
|
|
1076
1076
|
getUser() {
|
|
1077
1077
|
return this._user;
|
|
@@ -1126,17 +1126,17 @@ var O = class {
|
|
|
1126
1126
|
if (!e) return this;
|
|
1127
1127
|
if (typeof e == "function") {
|
|
1128
1128
|
let n = e(this);
|
|
1129
|
-
return n instanceof
|
|
1129
|
+
return n instanceof v ? n : this;
|
|
1130
1130
|
}
|
|
1131
|
-
return e instanceof
|
|
1131
|
+
return e instanceof v ? (this._tags = { ...this._tags, ...e._tags }, this._extra = { ...this._extra, ...e._extra }, this._contexts = { ...this._contexts, ...e._contexts }, e._user && Object.keys(e._user).length && (this._user = e._user), e._level && (this._level = e._level), e._fingerprint && (this._fingerprint = e._fingerprint), e._requestSession && (this._requestSession = e._requestSession), e._propagationContext && (this._propagationContext = e._propagationContext)) : x(e) && (e = e, this._tags = { ...this._tags, ...e.tags }, this._extra = { ...this._extra, ...e.extra }, this._contexts = { ...this._contexts, ...e.contexts }, e.user && (this._user = e.user), e.level && (this._level = e.level), e.fingerprint && (this._fingerprint = e.fingerprint), e.requestSession && (this._requestSession = e.requestSession), e.propagationContext && (this._propagationContext = e.propagationContext)), this;
|
|
1132
1132
|
}
|
|
1133
1133
|
clear() {
|
|
1134
|
-
return this._breadcrumbs = [], this._tags = {}, this._extra = {}, this._user = {}, this._contexts = {}, this._level = void 0, this._transactionName = void 0, this._fingerprint = void 0, this._requestSession = void 0, this._span = void 0, this._session = void 0, this._notifyScopeListeners(), this._attachments = [], this._propagationContext =
|
|
1134
|
+
return this._breadcrumbs = [], this._tags = {}, this._extra = {}, this._user = {}, this._contexts = {}, this._level = void 0, this._transactionName = void 0, this._fingerprint = void 0, this._requestSession = void 0, this._span = void 0, this._session = void 0, this._notifyScopeListeners(), this._attachments = [], this._propagationContext = wn(), this;
|
|
1135
1135
|
}
|
|
1136
1136
|
addBreadcrumb(e, n) {
|
|
1137
|
-
let r = typeof n == "number" ? n :
|
|
1137
|
+
let r = typeof n == "number" ? n : qr;
|
|
1138
1138
|
if (r <= 0) return this;
|
|
1139
|
-
let s = { timestamp:
|
|
1139
|
+
let s = { timestamp: j(), ...e }, i = this._breadcrumbs;
|
|
1140
1140
|
return i.push(s), this._breadcrumbs = i.length > r ? i.slice(-r) : i, this._notifyScopeListeners(), this;
|
|
1141
1141
|
}
|
|
1142
1142
|
getLastBreadcrumb() {
|
|
@@ -1166,7 +1166,7 @@ var O = class {
|
|
|
1166
1166
|
}
|
|
1167
1167
|
this._applyFingerprint(e);
|
|
1168
1168
|
let s = this._getBreadcrumbs(), i = [...e.breadcrumbs || [], ...s];
|
|
1169
|
-
return e.breadcrumbs = i.length > 0 ? i : void 0, e.sdkProcessingMetadata = { ...e.sdkProcessingMetadata, ...this._sdkProcessingMetadata, propagationContext: this._propagationContext },
|
|
1169
|
+
return e.breadcrumbs = i.length > 0 ? i : void 0, e.sdkProcessingMetadata = { ...e.sdkProcessingMetadata, ...this._sdkProcessingMetadata, propagationContext: this._propagationContext }, Q([...r || [], ..._e(), ...this._eventProcessors], e, n);
|
|
1170
1170
|
}
|
|
1171
1171
|
setSDKProcessingMetadata(e) {
|
|
1172
1172
|
return this._sdkProcessingMetadata = { ...this._sdkProcessingMetadata, ...e }, this;
|
|
@@ -1186,16 +1186,16 @@ var O = class {
|
|
|
1186
1186
|
}), this._notifyingListeners = false);
|
|
1187
1187
|
}
|
|
1188
1188
|
_applyFingerprint(e) {
|
|
1189
|
-
e.fingerprint = e.fingerprint ?
|
|
1189
|
+
e.fingerprint = e.fingerprint ? me(e.fingerprint) : [], this._fingerprint && (e.fingerprint = e.fingerprint.concat(this._fingerprint)), e.fingerprint && !e.fingerprint.length && delete e.fingerprint;
|
|
1190
1190
|
}
|
|
1191
1191
|
};
|
|
1192
|
-
function
|
|
1192
|
+
function wn() {
|
|
1193
1193
|
return { traceId: g(), spanId: g().substring(16) };
|
|
1194
1194
|
}
|
|
1195
|
-
var
|
|
1196
|
-
var
|
|
1197
|
-
var
|
|
1198
|
-
constructor(e, n = new
|
|
1195
|
+
var Dn = 4;
|
|
1196
|
+
var Wr = 100;
|
|
1197
|
+
var W = class {
|
|
1198
|
+
constructor(e, n = new v(), r = Dn) {
|
|
1199
1199
|
this._version = r, this._stack = [{ scope: n }], e && this.bindClient(e);
|
|
1200
1200
|
}
|
|
1201
1201
|
isOlderThan(e) {
|
|
@@ -1206,7 +1206,7 @@ var j = class {
|
|
|
1206
1206
|
n.client = e, e && e.setupIntegrations && e.setupIntegrations();
|
|
1207
1207
|
}
|
|
1208
1208
|
pushScope() {
|
|
1209
|
-
let e =
|
|
1209
|
+
let e = v.clone(this.getScope());
|
|
1210
1210
|
return this.getStack().push({ client: this.getClient(), scope: e }), e;
|
|
1211
1211
|
}
|
|
1212
1212
|
popScope() {
|
|
@@ -1256,9 +1256,9 @@ var j = class {
|
|
|
1256
1256
|
addBreadcrumb(e, n) {
|
|
1257
1257
|
let { scope: r, client: s } = this.getStackTop();
|
|
1258
1258
|
if (!s) return;
|
|
1259
|
-
let { beforeBreadcrumb: i = null, maxBreadcrumbs: o =
|
|
1259
|
+
let { beforeBreadcrumb: i = null, maxBreadcrumbs: o = Wr } = s.getOptions && s.getOptions() || {};
|
|
1260
1260
|
if (o <= 0) return;
|
|
1261
|
-
let c = { timestamp:
|
|
1261
|
+
let c = { timestamp: j(), ...e }, u = i ? xe(() => i(c, n)) : c;
|
|
1262
1262
|
u !== null && (s.emit && s.emit("beforeAddBreadcrumb", u, n), r.addBreadcrumb(u, o));
|
|
1263
1263
|
}
|
|
1264
1264
|
setUser(e) {
|
|
@@ -1284,11 +1284,11 @@ var j = class {
|
|
|
1284
1284
|
r && e(n);
|
|
1285
1285
|
}
|
|
1286
1286
|
run(e) {
|
|
1287
|
-
let n =
|
|
1287
|
+
let n = Dt(this);
|
|
1288
1288
|
try {
|
|
1289
1289
|
e(this);
|
|
1290
1290
|
} finally {
|
|
1291
|
-
|
|
1291
|
+
Dt(n);
|
|
1292
1292
|
}
|
|
1293
1293
|
}
|
|
1294
1294
|
getIntegration(e) {
|
|
@@ -1320,11 +1320,11 @@ Sentry.init({...});
|
|
|
1320
1320
|
}
|
|
1321
1321
|
endSession() {
|
|
1322
1322
|
let n = this.getStackTop().scope, r = n.getSession();
|
|
1323
|
-
r &&
|
|
1323
|
+
r && Nn(r), this._sendSessionUpdate(), n.setSession();
|
|
1324
1324
|
}
|
|
1325
1325
|
startSession(e) {
|
|
1326
|
-
let { scope: n, client: r } = this.getStackTop(), { release: s, environment: i =
|
|
1327
|
-
return c && c.status === "ok" &&
|
|
1326
|
+
let { scope: n, client: r } = this.getStackTop(), { release: s, environment: i = Z } = r && r.getOptions() || {}, { userAgent: o } = h.navigator || {}, a = An({ release: s, environment: i, user: n.getUser(), ...o && { userAgent: o }, ...e }), c = n.getSession && n.getSession();
|
|
1327
|
+
return c && c.status === "ok" && M(c, { status: "exited" }), this.endSession(), n.setSession(a), a;
|
|
1328
1328
|
}
|
|
1329
1329
|
shouldSendDefaultPii() {
|
|
1330
1330
|
let e = this.getClient(), n = e && e.getOptions();
|
|
@@ -1339,56 +1339,56 @@ Sentry.init({...});
|
|
|
1339
1339
|
r && e(r, n);
|
|
1340
1340
|
}
|
|
1341
1341
|
_callExtensionMethod(e, ...n) {
|
|
1342
|
-
let s =
|
|
1342
|
+
let s = z().__SENTRY__;
|
|
1343
1343
|
if (s && s.extensions && typeof s.extensions[e] == "function") return s.extensions[e].apply(this, n);
|
|
1344
1344
|
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn(`Extension method ${e} couldn't be found, doing nothing.`);
|
|
1345
1345
|
}
|
|
1346
1346
|
};
|
|
1347
|
-
function
|
|
1347
|
+
function z() {
|
|
1348
1348
|
return h.__SENTRY__ = h.__SENTRY__ || { extensions: {}, hub: void 0 }, h;
|
|
1349
1349
|
}
|
|
1350
|
-
function
|
|
1351
|
-
let e =
|
|
1352
|
-
return
|
|
1350
|
+
function Dt(t) {
|
|
1351
|
+
let e = z(), n = Fe(e);
|
|
1352
|
+
return Ot(e, t), n;
|
|
1353
1353
|
}
|
|
1354
1354
|
function R() {
|
|
1355
|
-
let t =
|
|
1355
|
+
let t = z();
|
|
1356
1356
|
if (t.__SENTRY__ && t.__SENTRY__.acs) {
|
|
1357
1357
|
let e = t.__SENTRY__.acs.getCurrentHub();
|
|
1358
1358
|
if (e) return e;
|
|
1359
1359
|
}
|
|
1360
|
-
return
|
|
1360
|
+
return zr(t);
|
|
1361
1361
|
}
|
|
1362
|
-
function
|
|
1363
|
-
return (!
|
|
1362
|
+
function zr(t = z()) {
|
|
1363
|
+
return (!Vr(t) || Fe(t).isOlderThan(Dn)) && Ot(t, new W()), Fe(t);
|
|
1364
1364
|
}
|
|
1365
|
-
function
|
|
1365
|
+
function Vr(t) {
|
|
1366
1366
|
return !!(t && t.__SENTRY__ && t.__SENTRY__.hub);
|
|
1367
1367
|
}
|
|
1368
|
-
function
|
|
1369
|
-
return
|
|
1368
|
+
function Fe(t) {
|
|
1369
|
+
return oe("hub", () => new W(), t);
|
|
1370
1370
|
}
|
|
1371
|
-
function
|
|
1371
|
+
function Ot(t, e) {
|
|
1372
1372
|
if (!t) return false;
|
|
1373
1373
|
let n = t.__SENTRY__ = t.__SENTRY__ || {};
|
|
1374
1374
|
return n.hub = e, true;
|
|
1375
1375
|
}
|
|
1376
|
-
function
|
|
1376
|
+
function On(t) {
|
|
1377
1377
|
return (t || R()).getScope().getTransaction();
|
|
1378
1378
|
}
|
|
1379
|
-
var
|
|
1380
|
-
function
|
|
1381
|
-
|
|
1379
|
+
var vn = false;
|
|
1380
|
+
function kn() {
|
|
1381
|
+
vn || (vn = true, Pe("error", vt), Pe("unhandledrejection", vt));
|
|
1382
1382
|
}
|
|
1383
|
-
function
|
|
1384
|
-
let t =
|
|
1383
|
+
function vt() {
|
|
1384
|
+
let t = On();
|
|
1385
1385
|
if (t) {
|
|
1386
1386
|
let e = "internal_error";
|
|
1387
1387
|
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(`[Tracing] Transaction: ${e} -> Global error occured`), t.setStatus(e);
|
|
1388
1388
|
}
|
|
1389
1389
|
}
|
|
1390
|
-
|
|
1391
|
-
var
|
|
1390
|
+
vt.tag = "sentry_tracingErrorCallback";
|
|
1391
|
+
var $e = class {
|
|
1392
1392
|
constructor(e = 1e3) {
|
|
1393
1393
|
this._maxlen = e, this.spans = [];
|
|
1394
1394
|
}
|
|
@@ -1396,9 +1396,9 @@ var Fe = class {
|
|
|
1396
1396
|
this.spans.length > this._maxlen ? e.spanRecorder = void 0 : this.spans.push(e);
|
|
1397
1397
|
}
|
|
1398
1398
|
};
|
|
1399
|
-
var
|
|
1399
|
+
var ee = class {
|
|
1400
1400
|
constructor(e = {}) {
|
|
1401
|
-
this.traceId = e.traceId || g(), this.spanId = e.spanId || g().substring(16), this.startTimestamp = e.startTimestamp ||
|
|
1401
|
+
this.traceId = e.traceId || g(), this.spanId = e.spanId || g().substring(16), this.startTimestamp = e.startTimestamp || q(), this.tags = e.tags || {}, this.data = e.data || {}, this.instrumenter = e.instrumenter || "sentry", this.origin = e.origin || "manual", e.parentSpanId && (this.parentSpanId = e.parentSpanId), "sampled" in e && (this.sampled = e.sampled), e.op && (this.op = e.op), e.description && (this.description = e.description), e.name && (this.description = e.name), e.status && (this.status = e.status), e.endTimestamp && (this.endTimestamp = e.endTimestamp);
|
|
1402
1402
|
}
|
|
1403
1403
|
get name() {
|
|
1404
1404
|
return this.description || "";
|
|
@@ -1407,7 +1407,7 @@ var Z = class {
|
|
|
1407
1407
|
this.setName(e);
|
|
1408
1408
|
}
|
|
1409
1409
|
startChild(e) {
|
|
1410
|
-
let n = new
|
|
1410
|
+
let n = new ee({ ...e, parentSpanId: this.spanId, sampled: this.sampled, traceId: this.traceId });
|
|
1411
1411
|
if (n.spanRecorder = this.spanRecorder, n.spanRecorder && n.spanRecorder.add(n), n.transaction = this.transaction, (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && n.transaction) {
|
|
1412
1412
|
let r = e && e.op || "< unknown op >", s = n.transaction.name || "< unknown name >", i = n.transaction.spanId, o = `[Tracing] Starting '${r}' span on transaction '${s}' (${i}).`;
|
|
1413
1413
|
n.transaction.metadata.spanMetadata[n.spanId] = { logMessage: o }, f.log(o);
|
|
@@ -1425,7 +1425,7 @@ var Z = class {
|
|
|
1425
1425
|
}
|
|
1426
1426
|
setHttpStatus(e) {
|
|
1427
1427
|
this.setTag("http.status_code", String(e)), this.setData("http.response.status_code", e);
|
|
1428
|
-
let n =
|
|
1428
|
+
let n = Jr(e);
|
|
1429
1429
|
return n !== "unknown_error" && this.setStatus(n), this;
|
|
1430
1430
|
}
|
|
1431
1431
|
setName(e) {
|
|
@@ -1439,10 +1439,10 @@ var Z = class {
|
|
|
1439
1439
|
let { logMessage: n } = this.transaction.metadata.spanMetadata[this.spanId];
|
|
1440
1440
|
n && f.log(n.replace("Starting", "Finishing"));
|
|
1441
1441
|
}
|
|
1442
|
-
this.endTimestamp = typeof e == "number" ? e :
|
|
1442
|
+
this.endTimestamp = typeof e == "number" ? e : q();
|
|
1443
1443
|
}
|
|
1444
1444
|
toTraceparent() {
|
|
1445
|
-
return
|
|
1445
|
+
return Et(this.traceId, this.spanId, this.sampled);
|
|
1446
1446
|
}
|
|
1447
1447
|
toContext() {
|
|
1448
1448
|
return E({ data: this.data, description: this.description, endTimestamp: this.endTimestamp, op: this.op, parentSpanId: this.parentSpanId, sampled: this.sampled, spanId: this.spanId, startTimestamp: this.startTimestamp, status: this.status, tags: this.tags, traceId: this.traceId });
|
|
@@ -1457,7 +1457,7 @@ var Z = class {
|
|
|
1457
1457
|
return E({ data: Object.keys(this.data).length > 0 ? this.data : void 0, description: this.description, op: this.op, parent_span_id: this.parentSpanId, span_id: this.spanId, start_timestamp: this.startTimestamp, status: this.status, tags: Object.keys(this.tags).length > 0 ? this.tags : void 0, timestamp: this.endTimestamp, trace_id: this.traceId, origin: this.origin });
|
|
1458
1458
|
}
|
|
1459
1459
|
};
|
|
1460
|
-
function
|
|
1460
|
+
function Jr(t) {
|
|
1461
1461
|
if (t < 400 && t >= 100) return "ok";
|
|
1462
1462
|
if (t >= 400 && t < 500) switch (t) {
|
|
1463
1463
|
case 401:
|
|
@@ -1487,11 +1487,11 @@ function Yr(t) {
|
|
|
1487
1487
|
}
|
|
1488
1488
|
return "unknown_error";
|
|
1489
1489
|
}
|
|
1490
|
-
function
|
|
1491
|
-
let r = e.getOptions(), { publicKey: s } = e.getDsn() || {}, { segment: i } = n && n.getUser() || {}, o = E({ environment: r.environment ||
|
|
1490
|
+
function te(t, e, n) {
|
|
1491
|
+
let r = e.getOptions(), { publicKey: s } = e.getDsn() || {}, { segment: i } = n && n.getUser() || {}, o = E({ environment: r.environment || Z, release: r.release, user_segment: i, public_key: s, trace_id: t });
|
|
1492
1492
|
return e.emit && e.emit("createDsc", o), o;
|
|
1493
1493
|
}
|
|
1494
|
-
var
|
|
1494
|
+
var He = class extends ee {
|
|
1495
1495
|
constructor(e, n) {
|
|
1496
1496
|
super(e), delete this.description, this._measurements = {}, this._contexts = {}, this._hub = n || R(), this._name = e.name || "", this.metadata = { source: "custom", ...e.metadata, spanMetadata: {} }, this._trimEnd = e.trimEnd, this.transaction = this;
|
|
1497
1497
|
let r = this.metadata.dynamicSamplingContext;
|
|
@@ -1507,7 +1507,7 @@ var $e = class extends Z {
|
|
|
1507
1507
|
this._name = e, this.metadata.source = n;
|
|
1508
1508
|
}
|
|
1509
1509
|
initSpanRecorder(e = 1e3) {
|
|
1510
|
-
this.spanRecorder || (this.spanRecorder = new
|
|
1510
|
+
this.spanRecorder || (this.spanRecorder = new $e(e)), this.spanRecorder.add(this);
|
|
1511
1511
|
}
|
|
1512
1512
|
setContext(e, n) {
|
|
1513
1513
|
n === null ? delete this._contexts[e] : this._contexts[e] = n;
|
|
@@ -1533,7 +1533,7 @@ var $e = class extends Z {
|
|
|
1533
1533
|
if (this._frozenDynamicSamplingContext) return this._frozenDynamicSamplingContext;
|
|
1534
1534
|
let e = this._hub || R(), n = e.getClient();
|
|
1535
1535
|
if (!n) return {};
|
|
1536
|
-
let r = e.getScope(), s =
|
|
1536
|
+
let r = e.getScope(), s = te(this.traceId, n, r), i = this.metadata.sampleRate;
|
|
1537
1537
|
i !== void 0 && (s.sample_rate = `${i}`);
|
|
1538
1538
|
let o = this.metadata.source;
|
|
1539
1539
|
return o && o !== "url" && (s.transaction = this.name), this.sampled !== void 0 && (s.sampled = String(this.sampled)), s;
|
|
@@ -1555,36 +1555,36 @@ var $e = class extends Z {
|
|
|
1555
1555
|
return Object.keys(this._measurements).length > 0 && ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log("[Measurements] Adding measurements to transaction", JSON.stringify(this._measurements, void 0, 2)), i.measurements = this._measurements), (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(`[Tracing] Finishing ${this.op} transaction: ${this.name}.`), i;
|
|
1556
1556
|
}
|
|
1557
1557
|
};
|
|
1558
|
-
function
|
|
1558
|
+
function Cn(t) {
|
|
1559
1559
|
if (typeof __SENTRY_TRACING__ == "boolean" && !__SENTRY_TRACING__) return false;
|
|
1560
1560
|
let e = R().getClient(), n = t || e && e.getOptions();
|
|
1561
1561
|
return !!n && (n.enableTracing || "tracesSampleRate" in n || "tracesSampler" in n);
|
|
1562
1562
|
}
|
|
1563
|
-
function
|
|
1564
|
-
if (!
|
|
1563
|
+
function Pn(t, e, n) {
|
|
1564
|
+
if (!Cn(e)) return t.sampled = false, t;
|
|
1565
1565
|
if (t.sampled !== void 0) return t.setMetadata({ sampleRate: Number(t.sampled) }), t;
|
|
1566
1566
|
let r;
|
|
1567
|
-
return typeof e.tracesSampler == "function" ? (r = e.tracesSampler(n), t.setMetadata({ sampleRate: Number(r) })) : n.parentSampled !== void 0 ? r = n.parentSampled : typeof e.tracesSampleRate < "u" ? (r = e.tracesSampleRate, t.setMetadata({ sampleRate: Number(r) })) : (r = 1, t.setMetadata({ sampleRate: r })),
|
|
1567
|
+
return typeof e.tracesSampler == "function" ? (r = e.tracesSampler(n), t.setMetadata({ sampleRate: Number(r) })) : n.parentSampled !== void 0 ? r = n.parentSampled : typeof e.tracesSampleRate < "u" ? (r = e.tracesSampleRate, t.setMetadata({ sampleRate: Number(r) })) : (r = 1, t.setMetadata({ sampleRate: r })), Kr(r) ? r ? (t.sampled = Math.random() < r, t.sampled ? ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(`[Tracing] starting ${t.op} transaction - ${t.name}`), t) : ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(`[Tracing] Discarding transaction because it's not included in the random sample (sampling rate = ${Number(r)})`), t)) : ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(`[Tracing] Discarding transaction because ${typeof e.tracesSampler == "function" ? "tracesSampler returned 0 or false" : "a negative sampling decision was inherited or tracesSampleRate is set to 0"}`), t.sampled = false, t) : ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn("[Tracing] Discarding transaction because of invalid sample rate."), t.sampled = false, t);
|
|
1568
1568
|
}
|
|
1569
|
-
function
|
|
1570
|
-
return
|
|
1569
|
+
function Kr(t) {
|
|
1570
|
+
return ie(t) || !(typeof t == "number" || typeof t == "boolean") ? ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn(`[Tracing] Given sample rate is invalid. Sample rate must be a boolean or a number between 0 and 1. Got ${JSON.stringify(t)} of type ${JSON.stringify(typeof t)}.`), false) : t < 0 || t > 1 ? ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn(`[Tracing] Given sample rate is invalid. Sample rate must be between 0 and 1. Got ${t}.`), false) : true;
|
|
1571
1571
|
}
|
|
1572
|
-
function
|
|
1572
|
+
function Xr() {
|
|
1573
1573
|
let e = this.getScope().getSpan();
|
|
1574
1574
|
return e ? { "sentry-trace": e.toTraceparent() } : {};
|
|
1575
1575
|
}
|
|
1576
|
-
function
|
|
1576
|
+
function Zr(t, e) {
|
|
1577
1577
|
let n = this.getClient(), r = n && n.getOptions() || {}, s = r.instrumenter || "sentry", i = t.instrumenter || "sentry";
|
|
1578
1578
|
s !== i && ((typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.error(`A transaction was started with instrumenter=\`${i}\`, but the SDK is configured with the \`${s}\` instrumenter.
|
|
1579
1579
|
The transaction will not be sampled. Please use the ${s} instrumentation to start transactions.`), t.sampled = false);
|
|
1580
|
-
let o = new
|
|
1581
|
-
return o =
|
|
1580
|
+
let o = new He(t, this);
|
|
1581
|
+
return o = Pn(o, r, { parentSampled: t.parentSampled, transactionContext: t, ...e }), o.sampled && o.initSpanRecorder(r._experiments && r._experiments.maxSpans), n && n.emit && n.emit("startTransaction", o), o;
|
|
1582
1582
|
}
|
|
1583
|
-
function
|
|
1584
|
-
let t =
|
|
1585
|
-
t.__SENTRY__ && (t.__SENTRY__.extensions = t.__SENTRY__.extensions || {}, t.__SENTRY__.extensions.startTransaction || (t.__SENTRY__.extensions.startTransaction =
|
|
1583
|
+
function Mn() {
|
|
1584
|
+
let t = z();
|
|
1585
|
+
t.__SENTRY__ && (t.__SENTRY__.extensions = t.__SENTRY__.extensions || {}, t.__SENTRY__.extensions.startTransaction || (t.__SENTRY__.extensions.startTransaction = Zr), t.__SENTRY__.extensions.traceHeaders || (t.__SENTRY__.extensions.traceHeaders = Xr), kn());
|
|
1586
1586
|
}
|
|
1587
|
-
var
|
|
1587
|
+
var Ye = class {
|
|
1588
1588
|
constructor(e, n) {
|
|
1589
1589
|
this._client = e, this.flushTimeout = 60, this._pendingAggregates = {}, this._isEnabled = true, this._intervalId = setInterval(() => this.flush(), this.flushTimeout * 1e3), this._sessionAttrs = n;
|
|
1590
1590
|
}
|
|
@@ -1618,64 +1618,64 @@ var He = class {
|
|
|
1618
1618
|
}
|
|
1619
1619
|
}
|
|
1620
1620
|
};
|
|
1621
|
-
var
|
|
1622
|
-
function
|
|
1621
|
+
var Qr = "7";
|
|
1622
|
+
function es(t) {
|
|
1623
1623
|
let e = t.protocol ? `${t.protocol}:` : "", n = t.port ? `:${t.port}` : "";
|
|
1624
1624
|
return `${e}//${t.host}${n}${t.path ? `/${t.path}` : ""}/api/`;
|
|
1625
1625
|
}
|
|
1626
|
-
function
|
|
1627
|
-
return `${
|
|
1626
|
+
function ts(t) {
|
|
1627
|
+
return `${es(t)}${t.projectId}/envelope/`;
|
|
1628
1628
|
}
|
|
1629
|
-
function
|
|
1630
|
-
return
|
|
1629
|
+
function ns(t, e) {
|
|
1630
|
+
return ct({ sentry_key: t.publicKey, sentry_version: Qr, ...e && { sentry_client: `${e.name}/${e.version}` } });
|
|
1631
1631
|
}
|
|
1632
|
-
function
|
|
1632
|
+
function Un(t, e = {}) {
|
|
1633
1633
|
let n = typeof e == "string" ? e : e.tunnel, r = typeof e == "string" || !e._metadata ? void 0 : e._metadata.sdk;
|
|
1634
|
-
return n || `${
|
|
1634
|
+
return n || `${ts(t)}?${ns(t, r)}`;
|
|
1635
1635
|
}
|
|
1636
|
-
function
|
|
1636
|
+
function rs(t, e) {
|
|
1637
1637
|
return e && (t.sdk = t.sdk || {}, t.sdk.name = t.sdk.name || e.name, t.sdk.version = t.sdk.version || e.version, t.sdk.integrations = [...t.sdk.integrations || [], ...e.integrations || []], t.sdk.packages = [...t.sdk.packages || [], ...e.packages || []]), t;
|
|
1638
1638
|
}
|
|
1639
|
-
function
|
|
1640
|
-
let s =
|
|
1641
|
-
return
|
|
1639
|
+
function Ln(t, e, n, r) {
|
|
1640
|
+
let s = Ge(n), i = { sent_at: (/* @__PURE__ */ new Date()).toISOString(), ...s && { sdk: s }, ...!!r && e && { dsn: L(e) } }, o = "aggregates" in t ? [{ type: "sessions" }, t] : [{ type: "session" }, t.toJSON()];
|
|
1641
|
+
return B(i, [o]);
|
|
1642
1642
|
}
|
|
1643
|
-
function
|
|
1644
|
-
let s =
|
|
1645
|
-
|
|
1646
|
-
let o =
|
|
1647
|
-
return delete t.sdkProcessingMetadata,
|
|
1643
|
+
function Bn(t, e, n, r) {
|
|
1644
|
+
let s = Ge(n), i = t.type && t.type !== "replay_event" ? t.type : "event";
|
|
1645
|
+
rs(t, n && n.sdk);
|
|
1646
|
+
let o = Rt(t, s, r, e);
|
|
1647
|
+
return delete t.sdkProcessingMetadata, B(o, [[{ type: i }, t]]);
|
|
1648
1648
|
}
|
|
1649
|
-
var
|
|
1650
|
-
function
|
|
1649
|
+
var Gn = [];
|
|
1650
|
+
function ss(t) {
|
|
1651
1651
|
let e = {};
|
|
1652
1652
|
return t.forEach((n) => {
|
|
1653
1653
|
let { name: r } = n, s = e[r];
|
|
1654
1654
|
s && !s.isDefaultInstance && n.isDefaultInstance || (e[r] = n);
|
|
1655
1655
|
}), Object.keys(e).map((n) => e[n]);
|
|
1656
1656
|
}
|
|
1657
|
-
function
|
|
1657
|
+
function kt(t) {
|
|
1658
1658
|
let e = t.defaultIntegrations || [], n = t.integrations;
|
|
1659
1659
|
e.forEach((o) => {
|
|
1660
1660
|
o.isDefaultInstance = true;
|
|
1661
1661
|
});
|
|
1662
1662
|
let r;
|
|
1663
|
-
Array.isArray(n) ? r = [...e, ...n] : typeof n == "function" ? r =
|
|
1664
|
-
let s =
|
|
1663
|
+
Array.isArray(n) ? r = [...e, ...n] : typeof n == "function" ? r = me(n(e)) : r = e;
|
|
1664
|
+
let s = ss(r), i = is(s, (o) => o.name === "Debug");
|
|
1665
1665
|
if (i !== -1) {
|
|
1666
1666
|
let [o] = s.splice(i, 1);
|
|
1667
1667
|
s.push(o);
|
|
1668
1668
|
}
|
|
1669
1669
|
return s;
|
|
1670
1670
|
}
|
|
1671
|
-
function
|
|
1671
|
+
function Fn(t, e) {
|
|
1672
1672
|
let n = {};
|
|
1673
1673
|
return e.forEach((r) => {
|
|
1674
|
-
r &&
|
|
1674
|
+
r && Ct(t, r, n);
|
|
1675
1675
|
}), n;
|
|
1676
1676
|
}
|
|
1677
|
-
function
|
|
1678
|
-
if (n[e.name] = e,
|
|
1677
|
+
function Ct(t, e, n) {
|
|
1678
|
+
if (n[e.name] = e, Gn.indexOf(e.name) === -1 && (e.setupOnce(xn, R), Gn.push(e.name)), t.on && typeof e.preprocessEvent == "function") {
|
|
1679
1679
|
let r = e.preprocessEvent.bind(e);
|
|
1680
1680
|
t.on("preprocessEvent", (s, i) => r(s, i, t));
|
|
1681
1681
|
}
|
|
@@ -1685,15 +1685,15 @@ function vt(t, e, n) {
|
|
|
1685
1685
|
}
|
|
1686
1686
|
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(`Integration installed: ${e.name}`);
|
|
1687
1687
|
}
|
|
1688
|
-
function
|
|
1688
|
+
function is(t, e) {
|
|
1689
1689
|
for (let n = 0; n < t.length; n++) if (e(t[n]) === true) return n;
|
|
1690
1690
|
return -1;
|
|
1691
1691
|
}
|
|
1692
|
-
function
|
|
1693
|
-
let { normalizeDepth: i = 3, normalizeMaxBreadth: o = 1e3 } = t, a = { ...e, event_id: e.event_id || n.event_id || g(), timestamp: e.timestamp ||
|
|
1694
|
-
|
|
1692
|
+
function Hn(t, e, n, r, s) {
|
|
1693
|
+
let { normalizeDepth: i = 3, normalizeMaxBreadth: o = 1e3 } = t, a = { ...e, event_id: e.event_id || n.event_id || g(), timestamp: e.timestamp || j() }, c = n.integrations || t.integrations.map((p) => p.name);
|
|
1694
|
+
os(a, t), us(a, c), e.type === void 0 && as(a, t.stackParser);
|
|
1695
1695
|
let u = r;
|
|
1696
|
-
n.captureContext && (u =
|
|
1696
|
+
n.captureContext && (u = v.clone(u).update(n.captureContext));
|
|
1697
1697
|
let l = b(a), d = s && s.getEventProcessors ? s.getEventProcessors() : [];
|
|
1698
1698
|
if (u) {
|
|
1699
1699
|
if (u.getAttachments) {
|
|
@@ -1701,23 +1701,23 @@ function Bn(t, e, n, r, s) {
|
|
|
1701
1701
|
p.length && (n.attachments = p);
|
|
1702
1702
|
}
|
|
1703
1703
|
l = u.applyToEvent(a, n, d);
|
|
1704
|
-
} else l =
|
|
1705
|
-
return l.then((p) => (p &&
|
|
1704
|
+
} else l = Q([...d, ..._e()], a, n);
|
|
1705
|
+
return l.then((p) => (p && cs(p), typeof i == "number" && i > 0 ? ds(p, i, o) : p));
|
|
1706
1706
|
}
|
|
1707
|
-
function
|
|
1707
|
+
function os(t, e) {
|
|
1708
1708
|
let { environment: n, release: r, dist: s, maxValueLength: i = 250 } = e;
|
|
1709
|
-
"environment" in t || (t.environment = "environment" in e ? n :
|
|
1709
|
+
"environment" in t || (t.environment = "environment" in e ? n : Z), t.release === void 0 && r !== void 0 && (t.release = r), t.dist === void 0 && s !== void 0 && (t.dist = s), t.message && (t.message = U(t.message, i));
|
|
1710
1710
|
let o = t.exception && t.exception.values && t.exception.values[0];
|
|
1711
|
-
o && o.value && (o.value =
|
|
1711
|
+
o && o.value && (o.value = U(o.value, i));
|
|
1712
1712
|
let a = t.request;
|
|
1713
|
-
a && a.url && (a.url =
|
|
1713
|
+
a && a.url && (a.url = U(a.url, i));
|
|
1714
1714
|
}
|
|
1715
|
-
var
|
|
1716
|
-
function
|
|
1715
|
+
var $n = /* @__PURE__ */ new WeakMap();
|
|
1716
|
+
function as(t, e) {
|
|
1717
1717
|
let n = h._sentryDebugIds;
|
|
1718
1718
|
if (!n) return;
|
|
1719
|
-
let r, s =
|
|
1720
|
-
s ? r = s : (r = /* @__PURE__ */ new Map(),
|
|
1719
|
+
let r, s = $n.get(e);
|
|
1720
|
+
s ? r = s : (r = /* @__PURE__ */ new Map(), $n.set(e, r));
|
|
1721
1721
|
let i = Object.keys(n).reduce((o, a) => {
|
|
1722
1722
|
let c, u = r.get(a);
|
|
1723
1723
|
u ? c = u : (c = e(a), r.set(a, c));
|
|
@@ -1739,7 +1739,7 @@ function ts(t, e) {
|
|
|
1739
1739
|
} catch {
|
|
1740
1740
|
}
|
|
1741
1741
|
}
|
|
1742
|
-
function
|
|
1742
|
+
function cs(t) {
|
|
1743
1743
|
let e = {};
|
|
1744
1744
|
try {
|
|
1745
1745
|
t.exception.values.forEach((r) => {
|
|
@@ -1756,25 +1756,25 @@ function ns(t) {
|
|
|
1756
1756
|
n.push({ type: "sourcemap", code_file: r, debug_id: e[r] });
|
|
1757
1757
|
});
|
|
1758
1758
|
}
|
|
1759
|
-
function
|
|
1759
|
+
function us(t, e) {
|
|
1760
1760
|
e.length > 0 && (t.sdk = t.sdk || {}, t.sdk.integrations = [...t.sdk.integrations || [], ...e]);
|
|
1761
1761
|
}
|
|
1762
|
-
function
|
|
1762
|
+
function ds(t, e, n) {
|
|
1763
1763
|
if (!t) return null;
|
|
1764
|
-
let r = { ...t, ...t.breadcrumbs && { breadcrumbs: t.breadcrumbs.map((s) => ({ ...s, ...s.data && { data:
|
|
1765
|
-
return t.contexts && t.contexts.trace && r.contexts && (r.contexts.trace = t.contexts.trace, t.contexts.trace.data && (r.contexts.trace.data =
|
|
1764
|
+
let r = { ...t, ...t.breadcrumbs && { breadcrumbs: t.breadcrumbs.map((s) => ({ ...s, ...s.data && { data: O(s.data, e, n) } })) }, ...t.user && { user: O(t.user, e, n) }, ...t.contexts && { contexts: O(t.contexts, e, n) }, ...t.extra && { extra: O(t.extra, e, n) } };
|
|
1765
|
+
return t.contexts && t.contexts.trace && r.contexts && (r.contexts.trace = t.contexts.trace, t.contexts.trace.data && (r.contexts.trace.data = O(t.contexts.trace.data, e, n))), t.spans && (r.spans = t.spans.map((s) => (s.data && (s.data = O(s.data, e, n)), s))), r;
|
|
1766
1766
|
}
|
|
1767
|
-
var
|
|
1768
|
-
var
|
|
1767
|
+
var Yn = "Not capturing exception because it's already been captured.";
|
|
1768
|
+
var je = class {
|
|
1769
1769
|
constructor(e) {
|
|
1770
|
-
if (this._options = e, this._integrations = {}, this._integrationsInitialized = false, this._numProcessing = 0, this._outcomes = {}, this._hooks = {}, this._eventProcessors = [], e.dsn ? this._dsn =
|
|
1771
|
-
let n =
|
|
1770
|
+
if (this._options = e, this._integrations = {}, this._integrationsInitialized = false, this._numProcessing = 0, this._outcomes = {}, this._hooks = {}, this._eventProcessors = [], e.dsn ? this._dsn = Ae(e.dsn) : (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn("No DSN provided, client will not send events."), this._dsn) {
|
|
1771
|
+
let n = Un(this._dsn, e);
|
|
1772
1772
|
this._transport = e.transport({ recordDroppedEvent: this.recordDroppedEvent.bind(this), ...e.transportOptions, url: n });
|
|
1773
1773
|
}
|
|
1774
1774
|
}
|
|
1775
1775
|
captureException(e, n, r) {
|
|
1776
|
-
if (
|
|
1777
|
-
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(
|
|
1776
|
+
if (Me(e)) {
|
|
1777
|
+
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(Yn);
|
|
1778
1778
|
return;
|
|
1779
1779
|
}
|
|
1780
1780
|
let s = n && n.event_id;
|
|
@@ -1783,14 +1783,14 @@ var Ye = class {
|
|
|
1783
1783
|
})), s;
|
|
1784
1784
|
}
|
|
1785
1785
|
captureMessage(e, n, r, s) {
|
|
1786
|
-
let i = r && r.event_id, o =
|
|
1786
|
+
let i = r && r.event_id, o = Re(e) ? this.eventFromMessage(String(e), n, r) : this.eventFromException(e, r);
|
|
1787
1787
|
return this._process(o.then((a) => this._captureEvent(a, r, s)).then((a) => {
|
|
1788
1788
|
i = a;
|
|
1789
1789
|
})), i;
|
|
1790
1790
|
}
|
|
1791
1791
|
captureEvent(e, n, r) {
|
|
1792
|
-
if (n && n.originalException &&
|
|
1793
|
-
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(
|
|
1792
|
+
if (n && n.originalException && Me(n.originalException)) {
|
|
1793
|
+
(typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.log(Yn);
|
|
1794
1794
|
return;
|
|
1795
1795
|
}
|
|
1796
1796
|
let s = n && n.event_id;
|
|
@@ -1799,7 +1799,7 @@ var Ye = class {
|
|
|
1799
1799
|
})), s;
|
|
1800
1800
|
}
|
|
1801
1801
|
captureSession(e) {
|
|
1802
|
-
typeof e.release != "string" ? (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn("Discarded session because of missing or non-string release") : (this.sendSession(e),
|
|
1802
|
+
typeof e.release != "string" ? (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn("Discarded session because of missing or non-string release") : (this.sendSession(e), M(e, { init: false }));
|
|
1803
1803
|
}
|
|
1804
1804
|
getDsn() {
|
|
1805
1805
|
return this._dsn;
|
|
@@ -1827,7 +1827,7 @@ var Ye = class {
|
|
|
1827
1827
|
this._eventProcessors.push(e);
|
|
1828
1828
|
}
|
|
1829
1829
|
setupIntegrations(e) {
|
|
1830
|
-
(e && !this._integrationsInitialized || this._isEnabled() && !this._integrationsInitialized) && (this._integrations =
|
|
1830
|
+
(e && !this._integrationsInitialized || this._isEnabled() && !this._integrationsInitialized) && (this._integrations = Fn(this, this._options.integrations), this._integrationsInitialized = true);
|
|
1831
1831
|
}
|
|
1832
1832
|
getIntegrationById(e) {
|
|
1833
1833
|
return this._integrations[e];
|
|
@@ -1840,17 +1840,17 @@ var Ye = class {
|
|
|
1840
1840
|
}
|
|
1841
1841
|
}
|
|
1842
1842
|
addIntegration(e) {
|
|
1843
|
-
|
|
1843
|
+
Ct(this, e, this._integrations);
|
|
1844
1844
|
}
|
|
1845
1845
|
sendEvent(e, n = {}) {
|
|
1846
1846
|
this.emit("beforeSendEvent", e, n);
|
|
1847
|
-
let r =
|
|
1848
|
-
for (let i of n.attachments || []) r =
|
|
1847
|
+
let r = Bn(e, this._dsn, this._options._metadata, this._options.tunnel);
|
|
1848
|
+
for (let i of n.attachments || []) r = St(r, bt(i, this._options.transportOptions && this._options.transportOptions.textEncoder));
|
|
1849
1849
|
let s = this._sendEnvelope(r);
|
|
1850
1850
|
s && s.then((i) => this.emit("afterSendEvent", e, i), null);
|
|
1851
1851
|
}
|
|
1852
1852
|
sendSession(e) {
|
|
1853
|
-
let n =
|
|
1853
|
+
let n = Ln(e, this._dsn, this._options._metadata, this._options.tunnel);
|
|
1854
1854
|
this._sendEnvelope(n);
|
|
1855
1855
|
}
|
|
1856
1856
|
recordDroppedEvent(e, n, r) {
|
|
@@ -1878,7 +1878,7 @@ var Ye = class {
|
|
|
1878
1878
|
}
|
|
1879
1879
|
}
|
|
1880
1880
|
let o = e.status === "ok";
|
|
1881
|
-
(o && e.errors === 0 || o && r) && (
|
|
1881
|
+
(o && e.errors === 0 || o && r) && (M(e, { ...r && { status: "crashed" }, errors: e.errors || Number(s || r) }), this.captureSession(e));
|
|
1882
1882
|
}
|
|
1883
1883
|
_isClientDoneProcessing(e) {
|
|
1884
1884
|
return new S((n) => {
|
|
@@ -1892,13 +1892,13 @@ var Ye = class {
|
|
|
1892
1892
|
}
|
|
1893
1893
|
_prepareEvent(e, n, r) {
|
|
1894
1894
|
let s = this.getOptions(), i = Object.keys(this._integrations);
|
|
1895
|
-
return !n.integrations && i.length > 0 && (n.integrations = i), this.emit("preprocessEvent", e, n),
|
|
1895
|
+
return !n.integrations && i.length > 0 && (n.integrations = i), this.emit("preprocessEvent", e, n), Hn(s, e, n, r, this).then((o) => {
|
|
1896
1896
|
if (o === null) return o;
|
|
1897
1897
|
let { propagationContext: a } = o.sdkProcessingMetadata || {};
|
|
1898
1898
|
if (!(o.contexts && o.contexts.trace) && a) {
|
|
1899
1899
|
let { traceId: u, spanId: l, parentSpanId: d, dsc: p } = a;
|
|
1900
1900
|
o.contexts = { trace: { trace_id: u, span_id: l, parent_span_id: d }, ...o.contexts };
|
|
1901
|
-
let m = p ||
|
|
1901
|
+
let m = p || te(u, this, r);
|
|
1902
1902
|
o.sdkProcessingMetadata = { dynamicSamplingContext: m, ...o.sdkProcessingMetadata };
|
|
1903
1903
|
}
|
|
1904
1904
|
return o;
|
|
@@ -1913,22 +1913,22 @@ var Ye = class {
|
|
|
1913
1913
|
});
|
|
1914
1914
|
}
|
|
1915
1915
|
_processEvent(e, n, r) {
|
|
1916
|
-
let s = this.getOptions(), { sampleRate: i } = s, o =
|
|
1917
|
-
if (a && typeof i == "number" && Math.random() > i) return this.recordDroppedEvent("sample_rate", "error", e),
|
|
1916
|
+
let s = this.getOptions(), { sampleRate: i } = s, o = qn(e), a = jn(e), c = e.type || "error", u = `before send for type \`${c}\``;
|
|
1917
|
+
if (a && typeof i == "number" && Math.random() > i) return this.recordDroppedEvent("sample_rate", "error", e), Y(new T(`Discarding event because it's not included in the random sample (sampling rate = ${i})`, "log"));
|
|
1918
1918
|
let l = c === "replay_event" ? "replay" : c;
|
|
1919
1919
|
return this._prepareEvent(e, n, r).then((d) => {
|
|
1920
1920
|
if (d === null) throw this.recordDroppedEvent("event_processor", l, e), new T("An event processor returned `null`, will not send event.", "log");
|
|
1921
1921
|
if (n.data && n.data.__sentry__ === true) return d;
|
|
1922
|
-
let m =
|
|
1923
|
-
return
|
|
1922
|
+
let m = fs(s, d, n);
|
|
1923
|
+
return ls(m, u);
|
|
1924
1924
|
}).then((d) => {
|
|
1925
1925
|
if (d === null) throw this.recordDroppedEvent("before_send", l, e), new T(`${u} returned \`null\`, will not send event.`, "log");
|
|
1926
1926
|
let p = r && r.getSession();
|
|
1927
1927
|
!o && p && this._updateSessionFromEvent(p, d);
|
|
1928
1928
|
let m = d.transaction_info;
|
|
1929
1929
|
if (o && m && d.transaction !== e.transaction) {
|
|
1930
|
-
let
|
|
1931
|
-
d.transaction_info = { ...m, source:
|
|
1930
|
+
let k = "custom";
|
|
1931
|
+
d.transaction_info = { ...m, source: k };
|
|
1932
1932
|
}
|
|
1933
1933
|
return this.sendEvent(d, n), d;
|
|
1934
1934
|
}).then(null, (d) => {
|
|
@@ -1953,45 +1953,45 @@ Reason: ${d}`));
|
|
|
1953
1953
|
});
|
|
1954
1954
|
}
|
|
1955
1955
|
};
|
|
1956
|
-
function
|
|
1956
|
+
function ls(t, e) {
|
|
1957
1957
|
let n = `${e} must return \`null\` or a valid event.`;
|
|
1958
|
-
if (
|
|
1959
|
-
if (!
|
|
1958
|
+
if (H(t)) return t.then((r) => {
|
|
1959
|
+
if (!x(r) && r !== null) throw new T(n);
|
|
1960
1960
|
return r;
|
|
1961
1961
|
}, (r) => {
|
|
1962
1962
|
throw new T(`${e} rejected with ${r}`);
|
|
1963
1963
|
});
|
|
1964
|
-
if (!
|
|
1964
|
+
if (!x(t) && t !== null) throw new T(n);
|
|
1965
1965
|
return t;
|
|
1966
1966
|
}
|
|
1967
|
-
function
|
|
1967
|
+
function fs(t, e, n) {
|
|
1968
1968
|
let { beforeSend: r, beforeSendTransaction: s } = t;
|
|
1969
|
-
return
|
|
1969
|
+
return jn(e) && r ? r(e, n) : qn(e) && s ? s(e, n) : e;
|
|
1970
1970
|
}
|
|
1971
|
-
function
|
|
1971
|
+
function jn(t) {
|
|
1972
1972
|
return t.type === void 0;
|
|
1973
1973
|
}
|
|
1974
|
-
function
|
|
1974
|
+
function qn(t) {
|
|
1975
1975
|
return t.type === "transaction";
|
|
1976
1976
|
}
|
|
1977
|
-
function
|
|
1977
|
+
function Wn(t, e, n, r, s) {
|
|
1978
1978
|
let i = { sent_at: (/* @__PURE__ */ new Date()).toISOString() };
|
|
1979
|
-
n && n.sdk && (i.sdk = { name: n.sdk.name, version: n.sdk.version }), r && s && (i.dsn =
|
|
1980
|
-
let o =
|
|
1981
|
-
return
|
|
1979
|
+
n && n.sdk && (i.sdk = { name: n.sdk.name, version: n.sdk.version }), r && s && (i.dsn = L(s)), e && (i.trace = E(e));
|
|
1980
|
+
let o = ps(t);
|
|
1981
|
+
return B(i, [o]);
|
|
1982
1982
|
}
|
|
1983
|
-
function
|
|
1983
|
+
function ps(t) {
|
|
1984
1984
|
return [{ type: "check_in" }, t];
|
|
1985
1985
|
}
|
|
1986
|
-
var
|
|
1986
|
+
var ge = class extends je {
|
|
1987
1987
|
constructor(e) {
|
|
1988
|
-
|
|
1988
|
+
Mn(), super(e);
|
|
1989
1989
|
}
|
|
1990
1990
|
eventFromException(e, n) {
|
|
1991
|
-
return b(
|
|
1991
|
+
return b(Nt(R, this._options.stackParser, e, n));
|
|
1992
1992
|
}
|
|
1993
1993
|
eventFromMessage(e, n = "info", r) {
|
|
1994
|
-
return b(
|
|
1994
|
+
return b(wt(this._options.stackParser, e, n, r, this._options.attachStacktrace));
|
|
1995
1995
|
}
|
|
1996
1996
|
captureException(e, n, r) {
|
|
1997
1997
|
if (this._options.autoSessionTracking && this._sessionFlusher && r) {
|
|
@@ -2012,7 +2012,7 @@ var me = class extends Ye {
|
|
|
2012
2012
|
}
|
|
2013
2013
|
initSessionFlusher() {
|
|
2014
2014
|
let { release: e, environment: n } = this._options;
|
|
2015
|
-
e ? this._sessionFlusher = new
|
|
2015
|
+
e ? this._sessionFlusher = new Ye(this, { release: e, environment: n }) : (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn("Cannot initialise an instance of SessionFlusher if no release is provided!");
|
|
2016
2016
|
}
|
|
2017
2017
|
captureCheckIn(e, n, r) {
|
|
2018
2018
|
let s = e.status !== "in_progress" && e.checkInId ? e.checkInId : g();
|
|
@@ -2021,7 +2021,7 @@ var me = class extends Ye {
|
|
|
2021
2021
|
e.status !== "in_progress" && (u.duration = e.duration), n && (u.monitor_config = { schedule: n.schedule, checkin_margin: n.checkinMargin, max_runtime: n.maxRuntime, timezone: n.timezone });
|
|
2022
2022
|
let [l, d] = this._getTraceInfoFromScope(r);
|
|
2023
2023
|
d && (u.contexts = { trace: d });
|
|
2024
|
-
let p =
|
|
2024
|
+
let p = Wn(u, l, this.getSdkMetadata(), c, this.getDsn());
|
|
2025
2025
|
return (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.info("Sending checkin:", e.monitorSlug, e.status), this._sendEnvelope(p), s;
|
|
2026
2026
|
}
|
|
2027
2027
|
_captureRequestSession() {
|
|
@@ -2035,27 +2035,27 @@ var me = class extends Ye {
|
|
|
2035
2035
|
let n = e.getSpan();
|
|
2036
2036
|
if (n) return [n.transaction ? n.transaction.getDynamicSamplingContext() : void 0, n.getTraceContext()];
|
|
2037
2037
|
let { traceId: r, spanId: s, parentSpanId: i, dsc: o } = e.getPropagationContext(), a = { trace_id: r, span_id: s, parent_span_id: i };
|
|
2038
|
-
return o ? [o, a] : [
|
|
2038
|
+
return o ? [o, a] : [te(r, this, e), a];
|
|
2039
2039
|
}
|
|
2040
2040
|
};
|
|
2041
|
-
var
|
|
2042
|
-
function
|
|
2041
|
+
var ms = 30;
|
|
2042
|
+
function Pt(t, e, n = ht(t.bufferSize || ms)) {
|
|
2043
2043
|
let r = {}, s = (o) => n.drain(o);
|
|
2044
2044
|
function i(o) {
|
|
2045
2045
|
let a = [];
|
|
2046
|
-
if (
|
|
2047
|
-
let m =
|
|
2048
|
-
if (
|
|
2049
|
-
let
|
|
2050
|
-
t.recordDroppedEvent("ratelimit_backoff", m,
|
|
2046
|
+
if (Le(o, (d, p) => {
|
|
2047
|
+
let m = Be(p);
|
|
2048
|
+
if (It(r, m)) {
|
|
2049
|
+
let k = zn(d, p);
|
|
2050
|
+
t.recordDroppedEvent("ratelimit_backoff", m, k);
|
|
2051
2051
|
} else a.push(d);
|
|
2052
2052
|
}), a.length === 0) return b();
|
|
2053
|
-
let c =
|
|
2054
|
-
|
|
2055
|
-
let
|
|
2056
|
-
t.recordDroppedEvent(d,
|
|
2053
|
+
let c = B(o[0], a), u = (d) => {
|
|
2054
|
+
Le(c, (p, m) => {
|
|
2055
|
+
let k = zn(p, m);
|
|
2056
|
+
t.recordDroppedEvent(d, Be(m), k);
|
|
2057
2057
|
});
|
|
2058
|
-
}, l = () => e({ body:
|
|
2058
|
+
}, l = () => e({ body: Tt(c, t.textEncoder) }).then((d) => (d.statusCode !== void 0 && (d.statusCode < 200 || d.statusCode >= 300) && (typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__) && f.warn(`Sentry responded with status code ${d.statusCode} to sent event.`), r = xt(r, d), d), (d) => {
|
|
2059
2059
|
throw u("network_error"), d;
|
|
2060
2060
|
});
|
|
2061
2061
|
return n.add(l).then((d) => d, (d) => {
|
|
@@ -2065,110 +2065,110 @@ function kt(t, e, n = pt(t.bufferSize || cs)) {
|
|
|
2065
2065
|
}
|
|
2066
2066
|
return i.__sentry__baseTransport__ = true, { send: i, flush: s };
|
|
2067
2067
|
}
|
|
2068
|
-
function
|
|
2068
|
+
function zn(t, e) {
|
|
2069
2069
|
if (!(e !== "event" && e !== "transaction")) return Array.isArray(t) ? t[1] : void 0;
|
|
2070
2070
|
}
|
|
2071
|
-
function
|
|
2071
|
+
function Jn(t) {
|
|
2072
2072
|
return typeof t == "object" && t !== null;
|
|
2073
2073
|
}
|
|
2074
|
-
function
|
|
2075
|
-
return
|
|
2074
|
+
function hs(t) {
|
|
2075
|
+
return Jn(t) && "handled" in t && typeof t.handled == "boolean" && "type" in t && typeof t.type == "string";
|
|
2076
2076
|
}
|
|
2077
|
-
function
|
|
2078
|
-
return
|
|
2077
|
+
function _s(t) {
|
|
2078
|
+
return Jn(t) && "mechanism" in t && hs(t.mechanism);
|
|
2079
2079
|
}
|
|
2080
|
-
function
|
|
2080
|
+
function gs() {
|
|
2081
2081
|
if (h.SENTRY_RELEASE && h.SENTRY_RELEASE.id) return h.SENTRY_RELEASE.id;
|
|
2082
2082
|
}
|
|
2083
|
-
function
|
|
2083
|
+
function Vn(t, e) {
|
|
2084
2084
|
return t !== void 0 ? (t[e[0]] = e[1], t) : { [e[0]]: e[1] };
|
|
2085
2085
|
}
|
|
2086
|
-
function
|
|
2086
|
+
function Kn(t, e) {
|
|
2087
2087
|
return t(e.stack || "", 1);
|
|
2088
2088
|
}
|
|
2089
|
-
function
|
|
2089
|
+
function Es(t) {
|
|
2090
2090
|
let e = t && t.message;
|
|
2091
2091
|
return e ? e.error && typeof e.error.message == "string" ? e.error.message : e : "No error message";
|
|
2092
2092
|
}
|
|
2093
|
-
function
|
|
2094
|
-
let n = { type: e.name || e.constructor.name, value:
|
|
2093
|
+
function Xn(t, e) {
|
|
2094
|
+
let n = { type: e.name || e.constructor.name, value: Es(e) }, r = Kn(t, e);
|
|
2095
2095
|
return r.length && (n.stacktrace = { frames: r }), n.type === void 0 && n.value === "" && (n.value = "Unrecoverable error caught"), n;
|
|
2096
2096
|
}
|
|
2097
|
-
function
|
|
2098
|
-
let s, o = (r && r.data &&
|
|
2099
|
-
if (
|
|
2097
|
+
function ys(t, e, n, r) {
|
|
2098
|
+
let s, o = (r && r.data && _s(r.data) ? r.data.mechanism : void 0) ?? { handled: true, type: "generic" };
|
|
2099
|
+
if ($(n)) s = n;
|
|
2100
2100
|
else {
|
|
2101
|
-
if (
|
|
2102
|
-
let c = `Non-Error exception captured with keys: ${
|
|
2101
|
+
if (x(n)) {
|
|
2102
|
+
let c = `Non-Error exception captured with keys: ${ce(n)}`, u = t?.getClient(), l = u && u.getOptions().normalizeDepth;
|
|
2103
2103
|
t?.configureScope((d) => {
|
|
2104
|
-
d.setExtra("__serialized__",
|
|
2104
|
+
d.setExtra("__serialized__", X(n, l));
|
|
2105
2105
|
}), s = r && r.syntheticException || new Error(c), s.message = c;
|
|
2106
2106
|
} else s = r && r.syntheticException || new Error(n), s.message = n;
|
|
2107
2107
|
o.synthetic = true;
|
|
2108
2108
|
}
|
|
2109
|
-
let a = { exception: { values: [
|
|
2110
|
-
return
|
|
2109
|
+
let a = { exception: { values: [Xn(e, s)] } };
|
|
2110
|
+
return fe(a, void 0, void 0), pe(a, o), { ...a, event_id: r && r.event_id };
|
|
2111
2111
|
}
|
|
2112
|
-
function
|
|
2112
|
+
function Ss(t, e, n = "info", r, s) {
|
|
2113
2113
|
let i = { event_id: r && r.event_id, level: n, message: e };
|
|
2114
2114
|
if (s && r && r.syntheticException) {
|
|
2115
|
-
let o =
|
|
2115
|
+
let o = Kn(t, r.syntheticException);
|
|
2116
2116
|
o.length && (i.exception = { values: [{ value: e, stacktrace: { frames: o } }] });
|
|
2117
2117
|
}
|
|
2118
2118
|
return i;
|
|
2119
2119
|
}
|
|
2120
|
-
var
|
|
2121
|
-
var
|
|
2122
|
-
name =
|
|
2120
|
+
var Ts = 5;
|
|
2121
|
+
var Ve = class {
|
|
2122
|
+
name = Ve.id;
|
|
2123
2123
|
limit;
|
|
2124
2124
|
constructor(e = {}) {
|
|
2125
|
-
this.limit = e.limit ||
|
|
2125
|
+
this.limit = e.limit || Ts;
|
|
2126
2126
|
}
|
|
2127
2127
|
setupOnce(e, n) {
|
|
2128
2128
|
let r = n().getClient();
|
|
2129
2129
|
r && e((s, i) => {
|
|
2130
|
-
let o = n().getIntegration(
|
|
2131
|
-
return o ?
|
|
2130
|
+
let o = n().getIntegration(Ve);
|
|
2131
|
+
return o ? bs(r.getOptions().stackParser, o.limit, s, i) : s;
|
|
2132
2132
|
});
|
|
2133
2133
|
}
|
|
2134
2134
|
};
|
|
2135
|
-
var
|
|
2136
|
-
|
|
2137
|
-
function
|
|
2138
|
-
if (!n.exception || !n.exception.values || !r || !
|
|
2139
|
-
let s =
|
|
2135
|
+
var qe = Ve;
|
|
2136
|
+
Ee(qe, "id", "LinkedErrors");
|
|
2137
|
+
function bs(t, e, n, r) {
|
|
2138
|
+
if (!n.exception || !n.exception.values || !r || !C(r.originalException, Error)) return n;
|
|
2139
|
+
let s = Zn(t, e, r.originalException);
|
|
2140
2140
|
return n.exception.values = [...s, ...n.exception.values], n;
|
|
2141
2141
|
}
|
|
2142
|
-
function
|
|
2143
|
-
if (!
|
|
2144
|
-
let s =
|
|
2145
|
-
return
|
|
2142
|
+
function Zn(t, e, n, r = []) {
|
|
2143
|
+
if (!C(n.cause, Error) || r.length + 1 >= e) return r;
|
|
2144
|
+
let s = Xn(t, n.cause);
|
|
2145
|
+
return Zn(t, e, n.cause, [s, ...r]);
|
|
2146
2146
|
}
|
|
2147
|
-
var
|
|
2148
|
-
var
|
|
2149
|
-
var
|
|
2147
|
+
var Rs = { allowedHeaders: ["CF-RAY", "CF-Worker"] };
|
|
2148
|
+
var ne;
|
|
2149
|
+
var Je = class {
|
|
2150
2150
|
constructor(e = {}) {
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2151
|
+
Ee(this, "name", Je.id);
|
|
2152
|
+
jt(this, ne, void 0);
|
|
2153
|
+
qt(this, ne, { ...Rs, ...e });
|
|
2154
2154
|
}
|
|
2155
2155
|
setupOnce(e, n) {
|
|
2156
2156
|
n().getClient() && e((s) => {
|
|
2157
2157
|
let { sdkProcessingMetadata: i } = s;
|
|
2158
|
-
return !n().getIntegration(
|
|
2158
|
+
return !n().getIntegration(Je) || !i || ("request" in i && i.request instanceof Request && (s.request = xs(i.request, nt(this, ne)), s.user = Is(s.user ?? {}, i.request, nt(this, ne))), "requestData" in i && (s.request ? s.request.data = i.requestData : s.request = { data: i.requestData })), s;
|
|
2159
2159
|
});
|
|
2160
2160
|
}
|
|
2161
2161
|
};
|
|
2162
|
-
var
|
|
2163
|
-
|
|
2164
|
-
function
|
|
2162
|
+
var We = Je;
|
|
2163
|
+
ne = /* @__PURE__ */ new WeakMap(), Ee(We, "id", "RequestData");
|
|
2164
|
+
function Is(t, e, n) {
|
|
2165
2165
|
let r = e.headers.get("CF-Connecting-IP"), { allowedIps: s } = n, i = { ...t };
|
|
2166
|
-
return !("ip_address" in t) && r && s !== void 0 &&
|
|
2166
|
+
return !("ip_address" in t) && r && s !== void 0 && As(r, s) && (i.ip_address = r), Object.keys(i).length > 0 ? i : void 0;
|
|
2167
2167
|
}
|
|
2168
|
-
function
|
|
2168
|
+
function xs(t, e) {
|
|
2169
2169
|
let n = t.headers.get("cookie"), r;
|
|
2170
2170
|
if (n) try {
|
|
2171
|
-
r =
|
|
2171
|
+
r = Ns(n);
|
|
2172
2172
|
} catch {
|
|
2173
2173
|
}
|
|
2174
2174
|
let s = {};
|
|
@@ -2182,18 +2182,18 @@ function ys(t, e) {
|
|
|
2182
2182
|
l < 0 ? i.url = t.url : (i.url = t.url.substr(0, l), i.query_string = t.url.substr(l + 1));
|
|
2183
2183
|
}
|
|
2184
2184
|
let { allowedHeaders: o, allowedCookies: a, allowedSearchParams: c } = e;
|
|
2185
|
-
if (o !== void 0 && i.headers ? (i.headers =
|
|
2185
|
+
if (o !== void 0 && i.headers ? (i.headers = Mt(i.headers, o), Object.keys(i.headers).length === 0 && delete i.headers) : delete i.headers, a !== void 0 && i.cookies ? (i.cookies = Mt(i.cookies, a), Object.keys(i.cookies).length === 0 && delete i.cookies) : delete i.cookies, c !== void 0) {
|
|
2186
2186
|
let u = Object.fromEntries(new URLSearchParams(i.query_string)), l = new URLSearchParams();
|
|
2187
|
-
Object.keys(
|
|
2187
|
+
Object.keys(Mt(u, c)).forEach((d) => {
|
|
2188
2188
|
l.set(d, u[d]);
|
|
2189
2189
|
}), i.query_string = l.toString();
|
|
2190
2190
|
} else delete i.query_string;
|
|
2191
2191
|
return i;
|
|
2192
2192
|
}
|
|
2193
|
-
function
|
|
2193
|
+
function As(t, e) {
|
|
2194
2194
|
return typeof e == "boolean" ? e : e instanceof RegExp ? e.test(t) : Array.isArray(e) ? e.map((r) => r.toLowerCase()).includes(t) : false;
|
|
2195
2195
|
}
|
|
2196
|
-
function
|
|
2196
|
+
function Mt(t, e) {
|
|
2197
2197
|
let n = () => false;
|
|
2198
2198
|
if (typeof e == "boolean") return e ? t : {};
|
|
2199
2199
|
if (e instanceof RegExp) n = (r) => e.test(r);
|
|
@@ -2203,7 +2203,7 @@ function Ct(t, e) {
|
|
|
2203
2203
|
} else return {};
|
|
2204
2204
|
return Object.keys(t).filter(n).reduce((r, s) => (r[s] = t[s], r), {});
|
|
2205
2205
|
}
|
|
2206
|
-
function
|
|
2206
|
+
function Ns(t) {
|
|
2207
2207
|
if (typeof t != "string") return {};
|
|
2208
2208
|
try {
|
|
2209
2209
|
return t.split(";").map((e) => e.split("=")).reduce((e, [n, r]) => (e[decodeURIComponent(n.trim())] = decodeURIComponent(r.trim()), e), {});
|
|
@@ -2211,7 +2211,7 @@ function Ts(t) {
|
|
|
2211
2211
|
return {};
|
|
2212
2212
|
}
|
|
2213
2213
|
}
|
|
2214
|
-
function
|
|
2214
|
+
function ws(t, e) {
|
|
2215
2215
|
let n = {};
|
|
2216
2216
|
return t.forEach((r) => {
|
|
2217
2217
|
n[r.name] = r, r.setupOnce((s) => {
|
|
@@ -2219,22 +2219,22 @@ function bs(t, e) {
|
|
|
2219
2219
|
}, () => e);
|
|
2220
2220
|
}), n;
|
|
2221
2221
|
}
|
|
2222
|
-
var
|
|
2222
|
+
var Ut = class extends ge {
|
|
2223
2223
|
#e = null;
|
|
2224
2224
|
constructor(e) {
|
|
2225
2225
|
e._metadata = e._metadata || {}, e._metadata.sdk = e._metadata.sdk || { name: "toucan-js", packages: [{ name: "npm:toucan-js", version: "3.3.1" }], version: "3.3.1" }, super(e);
|
|
2226
2226
|
}
|
|
2227
2227
|
setupIntegrations() {
|
|
2228
|
-
this._isEnabled() && !this._integrationsInitialized && this.#e && (this._integrations =
|
|
2228
|
+
this._isEnabled() && !this._integrationsInitialized && this.#e && (this._integrations = ws(this._options.integrations, this.#e), this._integrationsInitialized = true);
|
|
2229
2229
|
}
|
|
2230
2230
|
eventFromException(e, n) {
|
|
2231
|
-
return b(
|
|
2231
|
+
return b(ys(this.#e, this._options.stackParser, e, n));
|
|
2232
2232
|
}
|
|
2233
2233
|
eventFromMessage(e, n = "info", r) {
|
|
2234
|
-
return b(
|
|
2234
|
+
return b(Ss(this._options.stackParser, e, n, r, this._options.attachStacktrace));
|
|
2235
2235
|
}
|
|
2236
2236
|
_prepareEvent(e, n, r) {
|
|
2237
|
-
return e.platform = e.platform || "javascript", this.getOptions().request && (e.sdkProcessingMetadata =
|
|
2237
|
+
return e.platform = e.platform || "javascript", this.getOptions().request && (e.sdkProcessingMetadata = Vn(e.sdkProcessingMetadata, ["request", this.getOptions().request])), this.getOptions().requestData && (e.sdkProcessingMetadata = Vn(e.sdkProcessingMetadata, ["requestData", this.getOptions().requestData])), super._prepareEvent(e, n, r);
|
|
2238
2238
|
}
|
|
2239
2239
|
getSdk() {
|
|
2240
2240
|
return this.#e;
|
|
@@ -2249,8 +2249,8 @@ var Pt = class extends me {
|
|
|
2249
2249
|
this.getOptions().enabled = e;
|
|
2250
2250
|
}
|
|
2251
2251
|
};
|
|
2252
|
-
function
|
|
2253
|
-
let [e, n] =
|
|
2252
|
+
function Ds(t) {
|
|
2253
|
+
let [e, n] = lt(t);
|
|
2254
2254
|
return [e, (s) => {
|
|
2255
2255
|
let i = n(s);
|
|
2256
2256
|
if (i) {
|
|
@@ -2260,28 +2260,28 @@ function Rs(t) {
|
|
|
2260
2260
|
return i;
|
|
2261
2261
|
}];
|
|
2262
2262
|
}
|
|
2263
|
-
function
|
|
2264
|
-
if (t) return
|
|
2263
|
+
function Os(t) {
|
|
2264
|
+
if (t) return mt(t, ".js");
|
|
2265
2265
|
}
|
|
2266
|
-
var
|
|
2267
|
-
function
|
|
2266
|
+
var vs = we(Ds(Os));
|
|
2267
|
+
function ks(t) {
|
|
2268
2268
|
function e({ body: n }) {
|
|
2269
2269
|
try {
|
|
2270
2270
|
let s = (t.fetcher ?? fetch)(t.url, { method: "POST", headers: t.headers, body: n }).then((i) => ({ statusCode: i.status, headers: { "retry-after": i.headers.get("Retry-After"), "x-sentry-rate-limits": i.headers.get("X-Sentry-Rate-Limits") } }));
|
|
2271
2271
|
return t.context && t.context.waitUntil(s), s;
|
|
2272
2272
|
} catch (r) {
|
|
2273
|
-
return
|
|
2273
|
+
return Y(r);
|
|
2274
2274
|
}
|
|
2275
2275
|
}
|
|
2276
|
-
return
|
|
2276
|
+
return Pt(t, e);
|
|
2277
2277
|
}
|
|
2278
|
-
var
|
|
2278
|
+
var ze = class extends W {
|
|
2279
2279
|
constructor(e) {
|
|
2280
|
-
if (e.defaultIntegrations = e.defaultIntegrations === false ? [] : [...Array.isArray(e.defaultIntegrations) ? e.defaultIntegrations : [new
|
|
2281
|
-
let r =
|
|
2280
|
+
if (e.defaultIntegrations = e.defaultIntegrations === false ? [] : [...Array.isArray(e.defaultIntegrations) ? e.defaultIntegrations : [new We(e.requestDataOptions), new qe()]], e.release === void 0) {
|
|
2281
|
+
let r = gs();
|
|
2282
2282
|
r !== void 0 && (e.release = r);
|
|
2283
2283
|
}
|
|
2284
|
-
let n = new
|
|
2284
|
+
let n = new Ut({ ...e, transport: ks, integrations: kt(e), stackParser: dt(e.stackParser || vs), transportOptions: { ...e.transportOptions, context: e.context } });
|
|
2285
2285
|
super(n), n.setSdk(this), n.setupIntegrations();
|
|
2286
2286
|
}
|
|
2287
2287
|
setRequestBody(e) {
|
|
@@ -2294,21 +2294,21 @@ var We = class extends j {
|
|
|
2294
2294
|
return e.status === "in_progress" && this.setContext("monitor", { slug: e.monitorSlug }), this.getClient().captureCheckIn(e, n, r);
|
|
2295
2295
|
}
|
|
2296
2296
|
};
|
|
2297
|
-
function
|
|
2297
|
+
function Qn(t, e, n, r, s, i, o, a) {
|
|
2298
2298
|
if (!(n && r && s)) return;
|
|
2299
|
-
let c = new
|
|
2299
|
+
let c = new ze({ dsn: n, request: t, context: e, sampleRate: 1, requestDataOptions: { allowedHeaders: ["user-agent", "cf-challenge", "accept-encoding", "accept-language", "cf-ray", "content-length", "content-type", "host"], allowedSearchParams: /(.*)/ }, transportOptions: { headers: { "CF-Access-Client-ID": r, "CF-Access-Client-Secret": s } } });
|
|
2300
2300
|
return i && (c.setTag("colo", i.coloId), c.setTag("metal", i.metalId)), o && a && (c.setTag("accountId", o), c.setTag("scriptId", a)), c.setUser({ id: o?.toString() }), c;
|
|
2301
2301
|
}
|
|
2302
|
-
function
|
|
2302
|
+
function Cs() {
|
|
2303
2303
|
return { addLogs: () => {
|
|
2304
2304
|
}, setTags: () => {
|
|
2305
2305
|
}, end: () => {
|
|
2306
2306
|
}, isRecording: true };
|
|
2307
2307
|
}
|
|
2308
|
-
function
|
|
2309
|
-
return { enterSpan: (t, e, ...n) => e(
|
|
2308
|
+
function er() {
|
|
2309
|
+
return { enterSpan: (t, e, ...n) => e(Cs(), ...n), getSpanContext: () => ({ traceId: "test-trace", spanId: "test-span", parentSpanId: "test-parent-span", traceFlags: 0 }), runWithSpanContext: (t, e, ...n) => e(...n), traceId: "test-trace", spanId: "test-span", parentSpanId: "test-parent-span", cfTraceIdHeader: "test-trace:test-span:0" };
|
|
2310
2310
|
}
|
|
2311
|
-
var
|
|
2311
|
+
var Ke = class {
|
|
2312
2312
|
constructor(e) {
|
|
2313
2313
|
this.data = {};
|
|
2314
2314
|
this.readyAnalytics = e;
|
|
@@ -2323,33 +2323,59 @@ var Je = class {
|
|
|
2323
2323
|
this.readyAnalytics && this.readyAnalytics.logEvent({ version: 1, accountId: this.data.accountId, indexId: this.data.scriptId?.toString(), doubles: [this.data.requestTime ?? -1, this.data.coloId ?? -1, this.data.metalId ?? -1, this.data.coloTier ?? -1], blobs: [this.data.hostname?.substring(0, 256), this.data.userAgent?.substring(0, 256), this.data.htmlHandling, this.data.notFoundHandling, this.data.error?.substring(0, 256), this.data.version, this.data.coloRegion] });
|
|
2324
2324
|
}
|
|
2325
2325
|
};
|
|
2326
|
-
var
|
|
2326
|
+
var Ze = class {
|
|
2327
2327
|
constructor(e) {
|
|
2328
2328
|
this.data = e;
|
|
2329
2329
|
}
|
|
2330
|
-
async
|
|
2331
|
-
let n = await
|
|
2332
|
-
return r ?
|
|
2330
|
+
async getWithBinarySearch(e) {
|
|
2331
|
+
let n = await nr(e), r = Lt(new Uint8Array(this.data, 20), n);
|
|
2332
|
+
return r ? rr(r) : null;
|
|
2333
|
+
}
|
|
2334
|
+
async getWithInterpolationSearch(e) {
|
|
2335
|
+
let n = await nr(e), r = Ms(new Uint8Array(this.data, 20), n);
|
|
2336
|
+
return r ? rr(r) : null;
|
|
2333
2337
|
}
|
|
2334
2338
|
};
|
|
2335
|
-
var
|
|
2339
|
+
var nr = async (t) => {
|
|
2336
2340
|
let n = new TextEncoder().encode(t), r = await crypto.subtle.digest("SHA-256", n.buffer);
|
|
2337
2341
|
return new Uint8Array(r, 0, 16);
|
|
2338
2342
|
};
|
|
2339
|
-
var
|
|
2343
|
+
var Lt = (t, e) => {
|
|
2340
2344
|
if (t.byteLength === 0) return false;
|
|
2341
2345
|
let n = t.byteOffset + (t.byteLength / 40 >> 1) * 40, r = new Uint8Array(t.buffer, n, 16);
|
|
2342
2346
|
if (r.byteLength !== e.byteLength) throw new TypeError("Search value and current value are of different lengths");
|
|
2343
|
-
let s =
|
|
2347
|
+
let s = Bt(e, r);
|
|
2344
2348
|
if (s < 0) {
|
|
2345
2349
|
let i = t.byteOffset, o = n - t.byteOffset;
|
|
2346
|
-
return
|
|
2350
|
+
return Lt(new Uint8Array(t.buffer, i, o), e);
|
|
2347
2351
|
} else if (s > 0) {
|
|
2348
2352
|
let i = n + 40, o = t.buffer.byteLength - n - 40;
|
|
2349
|
-
return
|
|
2353
|
+
return Lt(new Uint8Array(t.buffer, i, o), e);
|
|
2350
2354
|
} else return new Uint8Array(t.buffer, n, 40);
|
|
2351
2355
|
};
|
|
2352
|
-
var
|
|
2356
|
+
var Xe = (t) => {
|
|
2357
|
+
let e = new DataView(t.buffer, t.byteOffset);
|
|
2358
|
+
return (e.getBigUint64(0) << 64n) + e.getBigUint64(8);
|
|
2359
|
+
};
|
|
2360
|
+
var Ms = (t, e) => {
|
|
2361
|
+
if (t.byteLength === 0) return false;
|
|
2362
|
+
let n = 0, r = t.byteLength / 40 - 1;
|
|
2363
|
+
if (r === n) {
|
|
2364
|
+
let i = new Uint8Array(t.buffer, t.byteOffset, 16);
|
|
2365
|
+
if (i.byteLength !== e.byteLength) throw new TypeError("Search value and current value are of different lengths");
|
|
2366
|
+
return Bt(i, e) === 0 ? new Uint8Array(t.buffer, t.byteOffset, 40) : false;
|
|
2367
|
+
}
|
|
2368
|
+
let s = Xe(e);
|
|
2369
|
+
for (; n <= r; ) {
|
|
2370
|
+
let i = new Uint8Array(t.buffer, t.byteOffset + n * 40, 16), o = new Uint8Array(t.buffer, t.byteOffset + r * 40, 16), a = Math.floor(Number(BigInt(n) + BigInt(r - n) * (s - Xe(i)) / (Xe(o) - Xe(i)))), c = new Uint8Array(t.buffer, t.byteOffset + a * 40, 16);
|
|
2371
|
+
if (c.byteLength !== e.byteLength) throw new TypeError("Search value and current value are of different lengths");
|
|
2372
|
+
let u = Bt(c, e);
|
|
2373
|
+
if (u === 0) return new Uint8Array(t.buffer, t.byteOffset + a * 40, 40);
|
|
2374
|
+
u < 0 ? n = a + 1 : r = a - 1;
|
|
2375
|
+
}
|
|
2376
|
+
return false;
|
|
2377
|
+
};
|
|
2378
|
+
var Bt = (t, e) => {
|
|
2353
2379
|
if (t.byteLength < e.byteLength) return -1;
|
|
2354
2380
|
if (t.byteLength > e.byteLength) return 1;
|
|
2355
2381
|
for (let [n, r] of t.entries()) {
|
|
@@ -2358,54 +2384,69 @@ var vs = (t, e) => {
|
|
|
2358
2384
|
}
|
|
2359
2385
|
return 0;
|
|
2360
2386
|
};
|
|
2361
|
-
var
|
|
2362
|
-
var
|
|
2387
|
+
var rr = (t) => [...t.slice(16, 16 + 16)].map((n) => n.toString(16).padStart(2, "0")).join("");
|
|
2388
|
+
var Gt = (t) => {
|
|
2363
2389
|
let e;
|
|
2364
2390
|
return t?.run_worker_first !== void 0 ? e = t?.run_worker_first : t?.serve_directly !== void 0 ? e = !t.serve_directly : e = false, { html_handling: t?.html_handling ?? "auto-trailing-slash", not_found_handling: t?.not_found_handling ?? "none", run_worker_first: e, serve_directly: !e };
|
|
2365
2391
|
};
|
|
2366
|
-
var
|
|
2367
|
-
|
|
2392
|
+
var Qe = class {
|
|
2393
|
+
constructor(e) {
|
|
2394
|
+
this.data = {};
|
|
2395
|
+
this.readyAnalytics = e;
|
|
2396
|
+
}
|
|
2397
|
+
setData(e) {
|
|
2398
|
+
this.data = { ...this.data, ...e };
|
|
2399
|
+
}
|
|
2400
|
+
getData(e) {
|
|
2401
|
+
return this.data[e];
|
|
2402
|
+
}
|
|
2403
|
+
write() {
|
|
2404
|
+
this.readyAnalytics && this.readyAnalytics.logEvent({ version: 1, accountId: this.data.accountId, indexId: this.data.experimentName, doubles: [this.data.manifestReadTime ?? -1], blobs: [this.data.manifestReadMethod] });
|
|
2405
|
+
}
|
|
2406
|
+
};
|
|
2407
|
+
var sr = "public, max-age=0, must-revalidate";
|
|
2408
|
+
function ir(t, e, n) {
|
|
2368
2409
|
let r = new Headers({ "Content-Type": e, ETag: `"${t}"` });
|
|
2369
|
-
return
|
|
2410
|
+
return Us(n) && r.append("Cache-Control", sr), r;
|
|
2370
2411
|
}
|
|
2371
|
-
function
|
|
2412
|
+
function Us(t) {
|
|
2372
2413
|
return !t.headers.has("Authorization") && !t.headers.has("Range");
|
|
2373
2414
|
}
|
|
2374
|
-
var
|
|
2375
|
-
let { pathname: i, search: o } = new URL(t.url), a =
|
|
2415
|
+
var or = async (t, e, n, r, s) => {
|
|
2416
|
+
let { pathname: i, search: o } = new URL(t.url), a = Ft(i);
|
|
2376
2417
|
a = a.replace(/\/+/g, "/");
|
|
2377
|
-
let c = await
|
|
2378
|
-
if (!c) return e.JAEGER.enterSpan("no_intent", (
|
|
2418
|
+
let c = await et(a, n, r);
|
|
2419
|
+
if (!c) return e.JAEGER.enterSpan("no_intent", (I) => (I.setTags({ decodedPathname: a, configuration: JSON.stringify(n), status: 404 }), new se()));
|
|
2379
2420
|
let u = t.method.toUpperCase();
|
|
2380
|
-
if (!["GET", "HEAD"].includes(u)) return e.JAEGER.enterSpan("method_not_allowed", (
|
|
2381
|
-
let l = c.redirect ?? a, d =
|
|
2382
|
-
if (d !== i && c.asset || c.redirect) return e.JAEGER.enterSpan("redirect", (
|
|
2383
|
-
if (!c.asset) return e.JAEGER.enterSpan("unknown_action", (
|
|
2384
|
-
let p = await e.JAEGER.enterSpan("getByETag", async (
|
|
2385
|
-
return [
|
|
2386
|
-
|
|
2387
|
-
let
|
|
2421
|
+
if (!["GET", "HEAD"].includes(u)) return e.JAEGER.enterSpan("method_not_allowed", (I) => (I.setTags({ method: u, status: 405 }), new Se()));
|
|
2422
|
+
let l = c.redirect ?? a, d = $s(l);
|
|
2423
|
+
if (d !== i && c.asset || c.redirect) return e.JAEGER.enterSpan("redirect", (I) => (I.setTags({ originalPath: i, location: d !== i ? d : c.redirect ?? "<unknown>", status: 307 }), new be(d + o)));
|
|
2424
|
+
if (!c.asset) return e.JAEGER.enterSpan("unknown_action", (I) => (I.setTags({ pathname: i, status: 500 }), new F(new Error("Unknown action"))));
|
|
2425
|
+
let p = await e.JAEGER.enterSpan("getByETag", async (I) => (I.setTags({ pathname: i, eTag: c.asset.eTag, status: c.asset.status }), await s(c.asset.eTag))), m = ir(c.asset.eTag, p.contentType, t), k = `"${c.asset.eTag}"`, ur = `W/${k}`, $t = t.headers.get("If-None-Match") || "";
|
|
2426
|
+
return [ur, k].includes($t) ? e.JAEGER.enterSpan("matched_etag", (I) => (I.setTags({ matchedEtag: $t, status: 304 }), new Te(null, { headers: m }))) : e.JAEGER.enterSpan("response", (I) => {
|
|
2427
|
+
I.setTags({ etag: c.asset.eTag, status: c.asset.status, head: u === "HEAD" });
|
|
2428
|
+
let Ht = u === "HEAD" ? null : p.readableStream;
|
|
2388
2429
|
switch (c.asset.status) {
|
|
2389
2430
|
case 404:
|
|
2390
|
-
return new
|
|
2431
|
+
return new se(Ht, { headers: m });
|
|
2391
2432
|
case 200:
|
|
2392
|
-
return new
|
|
2433
|
+
return new ye(Ht, { headers: m });
|
|
2393
2434
|
}
|
|
2394
2435
|
});
|
|
2395
2436
|
};
|
|
2396
|
-
var
|
|
2437
|
+
var et = async (t, e, n, r = false) => {
|
|
2397
2438
|
switch (e.html_handling) {
|
|
2398
2439
|
case "auto-trailing-slash":
|
|
2399
|
-
return
|
|
2440
|
+
return Ls(t, e, n, r);
|
|
2400
2441
|
case "force-trailing-slash":
|
|
2401
|
-
return
|
|
2442
|
+
return Bs(t, e, n, r);
|
|
2402
2443
|
case "drop-trailing-slash":
|
|
2403
|
-
return
|
|
2444
|
+
return Gs(t, e, n, r);
|
|
2404
2445
|
case "none":
|
|
2405
|
-
return
|
|
2446
|
+
return Fs(t, e, n);
|
|
2406
2447
|
}
|
|
2407
2448
|
};
|
|
2408
|
-
var
|
|
2449
|
+
var Ls = async (t, e, n, r) => {
|
|
2409
2450
|
let s = null, i = null, o = await n(t);
|
|
2410
2451
|
if (t.endsWith("/index")) {
|
|
2411
2452
|
if (o) return { asset: { eTag: o, status: 200 }, redirect: null };
|
|
@@ -2421,9 +2462,9 @@ var Ps = async (t, e, n, r) => {
|
|
|
2421
2462
|
if (s = await _(t, t.slice(0, -5), e, n, r)) return s;
|
|
2422
2463
|
if (s = await _(`${t.slice(0, -5)}/index.html`, `${t.slice(0, -5)}/`, e, n, r)) return s;
|
|
2423
2464
|
}
|
|
2424
|
-
return o ? { asset: { eTag: o, status: 200 }, redirect: null } : (i = await n(`${t}.html`)) ? { asset: { eTag: i, status: 200 }, redirect: null } : (s = await _(`${t}/index.html`, `${t}/`, e, n, r)) ? s :
|
|
2465
|
+
return o ? { asset: { eTag: o, status: 200 }, redirect: null } : (i = await n(`${t}.html`)) ? { asset: { eTag: i, status: 200 }, redirect: null } : (s = await _(`${t}/index.html`, `${t}/`, e, n, r)) ? s : tt(t, e, n);
|
|
2425
2466
|
};
|
|
2426
|
-
var
|
|
2467
|
+
var Bs = async (t, e, n, r) => {
|
|
2427
2468
|
let s = null, i = null, o = await n(t);
|
|
2428
2469
|
if (t.endsWith("/index")) {
|
|
2429
2470
|
if (o) return { asset: { eTag: o, status: 200 }, redirect: null };
|
|
@@ -2440,9 +2481,9 @@ var Ms = async (t, e, n, r) => {
|
|
|
2440
2481
|
if (o) return { asset: { eTag: o, status: 200 }, redirect: null };
|
|
2441
2482
|
if (s = await _(`${t.slice(0, -5)}/index.html`, `${t.slice(0, -5)}/`, e, n, r)) return s;
|
|
2442
2483
|
}
|
|
2443
|
-
return o ? { asset: { eTag: o, status: 200 }, redirect: null } : (s = await _(`${t}.html`, `${t}/`, e, n, r)) || (s = await _(`${t}/index.html`, `${t}/`, e, n, r)) ? s :
|
|
2484
|
+
return o ? { asset: { eTag: o, status: 200 }, redirect: null } : (s = await _(`${t}.html`, `${t}/`, e, n, r)) || (s = await _(`${t}/index.html`, `${t}/`, e, n, r)) ? s : tt(t, e, n);
|
|
2444
2485
|
};
|
|
2445
|
-
var
|
|
2486
|
+
var Gs = async (t, e, n, r) => {
|
|
2446
2487
|
let s = null, i = null, o = await n(t);
|
|
2447
2488
|
if (t.endsWith("/index")) {
|
|
2448
2489
|
if (o) return { asset: { eTag: o, status: 200 }, redirect: null };
|
|
@@ -2469,13 +2510,13 @@ var Us = async (t, e, n, r) => {
|
|
|
2469
2510
|
if (s = await _(t, t.slice(0, -5), e, n, r)) return s;
|
|
2470
2511
|
if (s = await _(`${t.slice(0, -5)}/index.html`, t.slice(0, -5), e, n, r)) return s;
|
|
2471
2512
|
}
|
|
2472
|
-
return o ? { asset: { eTag: o, status: 200 }, redirect: null } : (i = await n(`${t}.html`)) ? { asset: { eTag: i, status: 200 }, redirect: null } : (i = await n(`${t}/index.html`)) ? { asset: { eTag: i, status: 200 }, redirect: null } :
|
|
2513
|
+
return o ? { asset: { eTag: o, status: 200 }, redirect: null } : (i = await n(`${t}.html`)) ? { asset: { eTag: i, status: 200 }, redirect: null } : (i = await n(`${t}/index.html`)) ? { asset: { eTag: i, status: 200 }, redirect: null } : tt(t, e, n);
|
|
2473
2514
|
};
|
|
2474
|
-
var
|
|
2515
|
+
var Fs = async (t, e, n) => {
|
|
2475
2516
|
let r = await n(t);
|
|
2476
|
-
return r ? { asset: { eTag: r, status: 200 }, redirect: null } :
|
|
2517
|
+
return r ? { asset: { eTag: r, status: 200 }, redirect: null } : tt(t, e, n);
|
|
2477
2518
|
};
|
|
2478
|
-
var
|
|
2519
|
+
var tt = async (t, e, n) => {
|
|
2479
2520
|
switch (e.not_found_handling) {
|
|
2480
2521
|
case "single-page-application": {
|
|
2481
2522
|
let r = await n("/index.html");
|
|
@@ -2498,26 +2539,26 @@ var Qe = async (t, e, n) => {
|
|
|
2498
2539
|
var _ = async (t, e, n, r, s) => {
|
|
2499
2540
|
if (s) return null;
|
|
2500
2541
|
if (!await r(e)) {
|
|
2501
|
-
let i = await
|
|
2542
|
+
let i = await et(e, n, r, true);
|
|
2502
2543
|
if (i?.asset && i.asset.eTag === await r(t)) return { asset: null, redirect: e };
|
|
2503
2544
|
}
|
|
2504
2545
|
return null;
|
|
2505
2546
|
};
|
|
2506
|
-
var
|
|
2547
|
+
var Ft = (t) => t.split("/").map((e) => {
|
|
2507
2548
|
try {
|
|
2508
2549
|
return decodeURIComponent(e);
|
|
2509
2550
|
} catch {
|
|
2510
2551
|
return e;
|
|
2511
2552
|
}
|
|
2512
2553
|
}).join("/");
|
|
2513
|
-
var
|
|
2554
|
+
var $s = (t) => t.split("/").map((e) => {
|
|
2514
2555
|
try {
|
|
2515
2556
|
return encodeURIComponent(e);
|
|
2516
2557
|
} catch {
|
|
2517
2558
|
return e;
|
|
2518
2559
|
}
|
|
2519
2560
|
}).join("/");
|
|
2520
|
-
async function
|
|
2561
|
+
async function ar(t, e, n, r = 1) {
|
|
2521
2562
|
let s = 0;
|
|
2522
2563
|
for (; s <= r; ) try {
|
|
2523
2564
|
let i = await t.getWithMetadata(e, { type: "stream", cacheTtl: 31536e3 });
|
|
@@ -2526,29 +2567,33 @@ async function tr(t, e, n, r = 1) {
|
|
|
2526
2567
|
return o.value !== null && n && n.captureException(new Error(`Initial request for asset ${e} failed, but subsequent request succeeded.`)), o;
|
|
2527
2568
|
}
|
|
2528
2569
|
return i;
|
|
2529
|
-
} catch {
|
|
2530
|
-
if (s >= r)
|
|
2570
|
+
} catch (i) {
|
|
2571
|
+
if (s >= r) {
|
|
2572
|
+
let o = `KV GET ${e} failed.`;
|
|
2573
|
+
throw i instanceof Error && (o = `KV GET ${e} failed: ${i.message}`), new Error(o);
|
|
2574
|
+
}
|
|
2531
2575
|
await new Promise((o) => setTimeout(o, Math.pow(2, s++) * 1e3));
|
|
2532
2576
|
}
|
|
2533
2577
|
}
|
|
2534
|
-
var
|
|
2578
|
+
var cr = class extends Hs {
|
|
2535
2579
|
async fetch(t) {
|
|
2536
|
-
let e, n = new
|
|
2580
|
+
let e, n = new Ke(this.env.ANALYTICS), r = new re(this.env.UNSAFE_PERFORMANCE), s = r.now();
|
|
2537
2581
|
try {
|
|
2538
|
-
this.env.JAEGER || (this.env.JAEGER =
|
|
2539
|
-
let i =
|
|
2540
|
-
return this.env.COLO_METADATA && this.env.VERSION_METADATA && this.env.CONFIG && n.setData({ accountId: this.env.CONFIG.account_id, scriptId: this.env.CONFIG.script_id, coloId: this.env.COLO_METADATA.coloId, metalId: this.env.COLO_METADATA.metalId, coloTier: this.env.COLO_METADATA.coloTier, coloRegion: this.env.COLO_METADATA.coloRegion, version: this.env.VERSION_METADATA.id, hostname: a.hostname, htmlHandling: i.html_handling, notFoundHandling: i.not_found_handling, userAgent: o }), await this.env.JAEGER.enterSpan("handleRequest", async (c) => (c.setTags({ hostname: a.hostname, eyeballPath: a.pathname, env: this.env.ENVIRONMENT, version: this.env.VERSION_METADATA?.id }),
|
|
2582
|
+
this.env.JAEGER || (this.env.JAEGER = er()), e = Qn(t, this.ctx, this.env.SENTRY_DSN, this.env.SENTRY_ACCESS_CLIENT_ID, this.env.SENTRY_ACCESS_CLIENT_SECRET, this.env.COLO_METADATA, this.env.CONFIG?.account_id, this.env.CONFIG?.script_id);
|
|
2583
|
+
let i = Gt(this.env.CONFIG), o = t.headers.get("user-agent") ?? "UA UNKNOWN", a = new URL(t.url);
|
|
2584
|
+
return this.env.COLO_METADATA && this.env.VERSION_METADATA && this.env.CONFIG && n.setData({ accountId: this.env.CONFIG.account_id, scriptId: this.env.CONFIG.script_id, coloId: this.env.COLO_METADATA.coloId, metalId: this.env.COLO_METADATA.metalId, coloTier: this.env.COLO_METADATA.coloTier, coloRegion: this.env.COLO_METADATA.coloRegion, version: this.env.VERSION_METADATA.id, hostname: a.hostname, htmlHandling: i.html_handling, notFoundHandling: i.not_found_handling, userAgent: o }), await this.env.JAEGER.enterSpan("handleRequest", async (c) => (c.setTags({ hostname: a.hostname, eyeballPath: a.pathname, env: this.env.ENVIRONMENT, version: this.env.VERSION_METADATA?.id }), or(t, this.env, i, this.unstable_exists.bind(this), this.unstable_getByETag.bind(this))));
|
|
2541
2585
|
} catch (i) {
|
|
2542
|
-
|
|
2543
|
-
|
|
2586
|
+
return this.handleError(e, n, i);
|
|
2587
|
+
} finally {
|
|
2588
|
+
this.submitMetrics(n, r, s);
|
|
2544
2589
|
}
|
|
2545
2590
|
}
|
|
2546
2591
|
handleError(t, e, n) {
|
|
2547
2592
|
try {
|
|
2548
|
-
let r = new
|
|
2593
|
+
let r = new F(n);
|
|
2549
2594
|
return t && t.captureException(n), n instanceof Error && e.setData({ error: n.message }), r;
|
|
2550
2595
|
} catch (r) {
|
|
2551
|
-
return console.error("Error handling error", r), new
|
|
2596
|
+
return console.error("Error handling error", r), new F(r);
|
|
2552
2597
|
}
|
|
2553
2598
|
}
|
|
2554
2599
|
submitMetrics(t, e, n) {
|
|
@@ -2559,11 +2604,11 @@ var nr = class extends Bs {
|
|
|
2559
2604
|
}
|
|
2560
2605
|
}
|
|
2561
2606
|
async unstable_canFetch(t) {
|
|
2562
|
-
let e = new URL(t.url), n =
|
|
2563
|
-
return await
|
|
2607
|
+
let e = new URL(t.url), n = Ft(e.pathname);
|
|
2608
|
+
return await et(n, { ...Gt(this.env.CONFIG), not_found_handling: "none" }, this.unstable_exists.bind(this)) !== null;
|
|
2564
2609
|
}
|
|
2565
2610
|
async unstable_getByETag(t) {
|
|
2566
|
-
let e = await
|
|
2611
|
+
let e = await ar(this.env.ASSETS_KV_NAMESPACE, t);
|
|
2567
2612
|
if (!e || !e.value) throw new Error(`Requested asset ${t} exists in the asset manifest but not in the KV namespace.`);
|
|
2568
2613
|
return { readableStream: e.value, contentType: e.metadata?.contentType ?? "application/octet-stream" };
|
|
2569
2614
|
}
|
|
@@ -2572,15 +2617,27 @@ var nr = class extends Bs {
|
|
|
2572
2617
|
return e ? this.unstable_getByETag(e) : null;
|
|
2573
2618
|
}
|
|
2574
2619
|
async unstable_exists(t) {
|
|
2575
|
-
|
|
2620
|
+
let e = new Qe(this.env.EXPERIMENT_ANALYTICS), n = new re(this.env.UNSAFE_PERFORMANCE), r = 0, s = "binary";
|
|
2621
|
+
Math.random() < r && (s = "interpolation"), e.setData({ manifestReadMethod: s }), this.env.COLO_METADATA && this.env.VERSION_METADATA && this.env.CONFIG && e.setData({ accountId: this.env.CONFIG.account_id, experimentName: "manifest-read-timing" });
|
|
2622
|
+
let i = n.now();
|
|
2623
|
+
try {
|
|
2624
|
+
let o = new Ze(this.env.ASSETS_MANIFEST);
|
|
2625
|
+
return s === "interpolation" ? await o.getWithInterpolationSearch(t) : await o.getWithBinarySearch(t);
|
|
2626
|
+
} finally {
|
|
2627
|
+
e.setData({ manifestReadTime: n.now() - i }), e.write();
|
|
2628
|
+
}
|
|
2576
2629
|
}
|
|
2577
2630
|
};
|
|
2578
2631
|
|
|
2632
|
+
// src/constants.ts
|
|
2633
|
+
var MODULE_TYPES = ["CompiledWasm"];
|
|
2634
|
+
|
|
2579
2635
|
// src/shared.ts
|
|
2580
2636
|
var UNKNOWN_HOST = "http://localhost";
|
|
2637
|
+
var MODULE_PATTERN = `__CLOUDFLARE_MODULE__(${MODULE_TYPES.join("|")})__(.*?)__`;
|
|
2581
2638
|
|
|
2582
2639
|
// src/asset-workers/asset-worker.ts
|
|
2583
|
-
var CustomAssetWorker = class extends
|
|
2640
|
+
var CustomAssetWorker = class extends cr {
|
|
2584
2641
|
async fetch(request) {
|
|
2585
2642
|
const response = await super.fetch(request);
|
|
2586
2643
|
const modifiedResponse = new Response(response.body, response);
|