forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexceptionless.ts
More file actions
92 lines (79 loc) · 3.47 KB
/
exceptionless.ts
File metadata and controls
92 lines (79 loc) · 3.47 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
import * as TraceKit from 'TraceKit';
import { Configuration } from './configuration/Configuration';
import { IConfigurationSettings } from './configuration/IConfigurationSettings';
import { SettingsManager } from './configuration/SettingsManager';
import { ExceptionlessClient } from './ExceptionlessClient';
import { DefaultErrorParser } from './services/DefaultErrorParser';
import { DefaultModuleCollector } from './services/DefaultModuleCollector';
import { DefaultRequestInfoCollector } from './services/DefaultRequestInfoCollector';
import { BrowserStorage } from './storage/BrowserStorage';
import { BrowserStorageProvider } from './storage/BrowserStorageProvider';
import { DefaultSubmissionAdapter } from './submission/DefaultSubmissionAdapter';
import { Utils } from './Utils';
(function init() {
function getDefaultsSettingsFromScriptTag(): IConfigurationSettings {
if (!document || !document.getElementsByTagName) {
return null;
}
const scripts = document.getElementsByTagName('script');
// tslint:disable-next-line:prefer-for-of
for (let index = 0; index < scripts.length; index++) {
if (scripts[index].src && scripts[index].src.indexOf('/exceptionless') > -1) {
return Utils.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();
}
if (typeof document === 'undefined') {
return;
}
/*
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();
}
}
*/
Configuration.prototype.useLocalStorage = function() {
if (BrowserStorage.isAvailable()) {
this.storage = new BrowserStorageProvider();
SettingsManager.applySavedServerSettings(this);
this.changed();
}
};
const defaults = Configuration.defaults;
const settings = getDefaultsSettingsFromScriptTag();
if (settings && (settings.apiKey || settings.serverUrl)) {
defaults.apiKey = settings.apiKey;
defaults.serverUrl = settings.serverUrl;
}
defaults.errorParser = new DefaultErrorParser();
defaults.moduleCollector = new DefaultModuleCollector();
defaults.requestInfoCollector = new DefaultRequestInfoCollector();
defaults.submissionAdapter = new DefaultSubmissionAdapter();
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;
})();
// tslint:disable-next-line:prefer-const
declare var $;