forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrowserExceptionlessClient.ts
More file actions
99 lines (81 loc) · 3.52 KB
/
BrowserExceptionlessClient.ts
File metadata and controls
99 lines (81 loc) · 3.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import {
ExceptionlessClient,
parseQueryString
} from "@exceptionless/core";
import { BrowserConfiguration } from "./configuration/BrowserConfiguration.js";
import { BrowserErrorParser } from "./services/BrowserErrorParser.js";
import { BrowserModuleCollector } from "./services/BrowserModuleCollector.js";
import { BrowserRequestInfoCollector } from "./services/BrowserRequestInfoCollector.js";
import { BrowserFetchSubmissionClient } from "./submission/BrowserFetchSubmissionClient.js";
export class BrowserExceptionlessClient extends ExceptionlessClient {
constructor() {
super(new BrowserConfiguration());
}
public async startup(configurationOrApiKey?: (config: BrowserConfiguration) => void | string): Promise<void> {
if (configurationOrApiKey) {
const settings = this.getDefaultsSettingsFromScriptTag();
if (settings?.apiKey) {
this.config.apiKey = settings.apiKey;
}
if (settings?.serverUrl) {
this.config.serverUrl = settings.serverUrl;
}
if (settings?.serverUrl) {
this.config.serverUrl = settings.serverUrl;
}
if (settings?.includePrivateInformation) {
this.config.includePrivateInformation = settings.includePrivateInformation === "true";
}
this.config.services.errorParser = new BrowserErrorParser();
this.config.services.moduleCollector = new BrowserModuleCollector();
this.config.services.requestInfoCollector = new BrowserRequestInfoCollector();
this.config.services.submissionClient = new BrowserFetchSubmissionClient(this.config);
// TODO: Register platform specific plugins.
}
await super.startup(configurationOrApiKey);
}
private getDefaultsSettingsFromScriptTag(): { [key: string]: string } {
if (typeof document === "undefined" || !document || !document.getElementsByTagName) {
return null;
}
const scripts = document.getElementsByTagName("script");
for (let index = 0; index < scripts.length; index++) {
if (scripts[index].src?.includes("/exceptionless")) {
return parseQueryString(scripts[index].src.split("?").pop());
}
}
return null;
}
}
//function processUnhandledException(stackTrace: TraceKit.StackTrace, options?: any): void {
// const builder = ExceptionlessClient.default.createUnhandledException(new Error(stackTrace.message || (options || {}).status || "Script error"), "onerror");
// builder.pluginContextData["@@_TraceKit.StackTrace"] = stackTrace;
// builder.submit();
//}
/*
TODO: We currently are unable to parse string exceptions.
function processJQueryAjaxError(event, xhr, settings, error:string): void {
let client = ExceptionlessClient.default;
if (xhr.status === 404) {
client.submitNotFound(settings.url);
} else if (xhr.status !== 401) {
client.createUnhandledException(error, "JQuery.ajaxError")
.setSource(settings.url)
.setProperty("status", xhr.status)
.setProperty("request", settings.data)
.setProperty("response", xhr.responseText && xhr.responseText.slice && xhr.responseText.slice(0, 1024))
.submit();
}
}
*/
//TraceKit.report.subscribe(processUnhandledException);
//TraceKit.extendToAsynchronousCallbacks();
// window && window.addEventListener && window.addEventListener("beforeunload", function () {
// ExceptionlessClient.default.config.queue.process(true);
// });
// if (typeof $ !== "undefined" && $(document)) {
// $(document).ajaxError(processJQueryAjaxError);
// }
//(Error as any).stackTraceLimit = Infinity;
//declare var $;
// browser plugin startup method wires up all handlers?