-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhelper.js
289 lines (261 loc) · 7.26 KB
/
helper.js
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
(function() {
const originalConsole = {
log: console.log.bind(console),
info: console.info.bind(console),
warn: console.warn.bind(console),
error: console.error.bind(console),
};
function throttle(fn, timeout) {
let id;
let args;
let once;
const execute = () => {
id = undefined;
fn(...args);
};
const tFn = (...a) => {
args = a;
if (!id) {
const tm = once ? timeout : 0;
once = true;
id = setTimeout(execute, tm);
}
};
tFn.cancel = () => {
if (id) {
clearTimeout(id);
id = undefined;
once = undefined;
}
};
return tFn;
}
// adapted from http://stackoverflow.com/a/2401861/128511
function getBrowser() {
const userAgent = navigator.userAgent;
let m = userAgent.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
if (/trident/i.test(m[1])) {
m = /\brv[ :]+(\d+)/g.exec(userAgent) || [];
return {
name: 'IE',
version: m[1],
};
}
if (m[1] === 'Chrome') {
const temp = userAgent.match(/\b(OPR|Edge)\/(\d+)/);
if (temp) {
return {
name: temp[1].replace('OPR', 'Opera'),
version: temp[2],
};
}
}
m = m[2] ? [m[1], m[2]] : [navigator.appName, navigator.appVersion, '-?'];
const version = userAgent.match(/version\/(\d+)/i);
if (version) {
m.splice(1, 1, version[1]);
}
return {
name: m[0],
version: m[1],
};
}
function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
}
function unifyStack(error) {
if (!error?.stack) {
return '';
}
const re = new RegExp(`(^\\w+: ${escapeRegExp(error.message || error.reason)})\n`)
const m = re.exec(error?.stack);
return m ? error.stack.substr(m[1].length).trim() : error.stack;
}
/*
Examples of stacks. Ideally I'd like to automatic this.
Could maybe just scan from the top line down for the second
match (need to remove ourselves). The problem is chrome shows
the error message as the first line, safari and firefox don't show
the message at all. If the message ended in `:num:num` then we'd
have no idea if it was Safari/Firefox or a user's message.
We can test for that though. Just put our message in an Error
and then check if it exists in the stack. Otherwise we need
a RegEx that parses lines in both browser. Not sure why
the Chrome regex checks for not containing ')'
chrome:
Error: msg
at https://jsgistrunner.devcomments.org/user-jsgist.html:24:13
firefox:
@https://jsgistrunner.devcomments.org/user-jsgist.html:24:13
safari:
module code@https://jsgistrunner.devcomments.org/user-jsgist.html:24:22
evaluate@[native code]
moduleEvaluation@[native code]
[native code]
promiseReactionJob@[native code]
*/
/**
* @typedef {Object} StackInfo
* @property {string} url Url of line
* @property {number} lineNo line number of error
* @property {number} colNo column number of error
* @property {string} [funcName] name of function
*/
/**
* @parameter {string} stack A stack string as in `(new Error()).stack`
* @returns {StackInfo}
*/
const parseStack = function() {
const browser = getBrowser();
let matcher;
if ((/chrome|opera/i).test(browser.name)) {
matcher = function(line, stack) {
const m = /at ([^(]+)*\(*(.*?):(\d+):(\d+)/.exec(line);
if (m) {
let userFnName = m[1];
let url = m[2];
const lineNo = parseInt(m[3]);
const colNo = parseInt(m[4]);
if (url === '') {
url = userFnName;
userFnName = '';
}
return {
url: url,
lineNo: lineNo,
colNo: colNo,
funcName: userFnName,
stack,
};
}
return undefined;
};
} else if ((/firefox|safari/i).test(browser.name)) {
matcher = function(line, stack) {
const m = /@(.*?):(\d+):(\d+)/.exec(line);
if (m) {
const url = m[1];
const lineNo = parseInt(m[2]);
const colNo = parseInt(m[3]);
return {
url: url,
lineNo: lineNo,
colNo: colNo,
stack,
};
}
return undefined;
};
}
return function stackParser(error, lineNdx = 2) {
const stack = unifyStack(error);
if (matcher) {
const lines = stack.split('\n').slice(lineNdx);
try {
for (const line of lines) {
const result = matcher(line, stack);
if (result) {
return result;
}
}
} catch (e) {
// do nothing
}
}
return {stack};
};
}();
const queueMessage = (() => {
const maxDuration = 100;
let msgQueue = [];
let lastSendTime = -100;
const sendMessages = () => {
if (msgQueue.length === 0) {
return;
}
const msgToSend = msgQueue;
msgQueue = [];
window.parent.postMessage({
type: 'infoMessages',
data: msgToSend,
});
};
const throttledSendMessages = throttle(sendMessages, maxDuration);
const pumpMessages = () => {
const now = performance.now();
const elapsed = now - lastSendTime;
if (elapsed > maxDuration) {
sendMessages();
lastSendTime = performance.now();
} else {
throttledSendMessages();
}
};
return function queueMessage(msg) {
msgQueue.push(msg);
pumpMessages();
}
})();
function sendMsgInfo(type, e, msgType) {
const {
message: msg,
url,
lineNo,
colNo,
stack,
} = e;
queueMessage({
type,
data: {msg, url, lineNo, colNo, stack, type: msgType},
}, '*');
}
window.addEventListener('error', function(e) {
originalConsole.error(e.error || e);
const {url, lineNo, colNo, stack} = parseStack(e.error, 0) || {};
sendMsgInfo('jsError', {
url: e.filename || url,
message: e.message || e.error?.message,
stack,
lineNo: e.lineno || lineNo,
colNo: e.colno || colNo,
});
});
window.addEventListener('unhandledrejection', function(e) {
originalConsole.error(e.reason || e);
const {url, lineNo, colNo, stack} = parseStack(e.reason, 0) || {};
sendMsgInfo('jsUnhandledRejection', {
url: e.filename || url,
message: e.message || e.reason?.message,
stack,
lineNo: e.lineno || lineNo,
colNo: e.colno || colNo,
});
});
// TODO: implement the console.log rules where the first string
// is a format string and various codes use the following arguments
function formatArgs(args) {
return args.join(' ');
}
function sendLog(type, args) {
const error = new Error('--');
const {url, lineNo, colNo, stack} = parseStack(error) || {};
sendMsgInfo('jsLog', {
url,
lineNo,
colNo,
message: formatArgs(args),
stack,
}, type);
}
function makeLogFn(type) {
const origFn = console[type].bind(console);
console[type] = function(...args) {
origFn(...args);
sendLog(type, args);
};
}
makeLogFn('log');
makeLogFn('warn');
makeLogFn('error');
makeLogFn('info');
})();