notifier.js
45 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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
// Airbrake JavaScript Notifier Bundle
(function(window, document, undefined) {
// Domain Public by Eric Wendelin http://eriwen.com/ (2008)
// Luke Smith http://lucassmith.name/ (2008)
// Loic Dachary <loic@dachary.org> (2008)
// Johan Euphrosine <proppy@aminche.com> (2008)
// Øyvind Sean Kinsey http://kinsey.no/blog (2010)
// Victor Homyakov (2010)
//
// Information and discussions
// http://jspoker.pokersource.info/skin/test-printstacktrace.html
// http://eriwen.com/javascript/js-stack-trace/
// http://eriwen.com/javascript/stacktrace-update/
// http://pastie.org/253058
//
// guessFunctionNameFromLines comes from firebug
//
// Software License Agreement (BSD License)
//
// Copyright (c) 2007, Parakey Inc.
// All rights reserved.
//
// Redistribution and use of this software in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above
// copyright notice, this list of conditions and the
// following disclaimer.
//
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the
// following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// * Neither the name of Parakey Inc. nor the names of its
// contributors may be used to endorse or promote products
// derived from this software without specific prior
// written permission of Parakey Inc.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
// IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/**
* Main function giving a function stack trace with a forced or passed in Error
*
* @cfg {Error} e The error to create a stacktrace from (optional)
* @cfg {Boolean} guess If we should try to resolve the names of anonymous functions
* @return {Array} of Strings with functions, lines, files, and arguments where possible
*/
function printStackTrace(options) {
options = options || {guess: true};
var ex = options.e || null, guess = !!options.guess;
var p = new printStackTrace.implementation(), result = p.run(ex);
return (guess) ? p.guessAnonymousFunctions(result) : result;
}
if (typeof module !== "undefined" && module.exports) {
module.exports = printStackTrace;
}
printStackTrace.implementation = function() {
};
printStackTrace.implementation.prototype = {
/**
* @param {Error} ex The error to create a stacktrace from (optional)
* @param {String} mode Forced mode (optional, mostly for unit tests)
*/
run: function(ex, mode) {
ex = ex || this.createException();
// examine exception properties w/o debugger
//for (var prop in ex) {alert("Ex['" + prop + "']=" + ex[prop]);}
mode = mode || this.mode(ex);
if (mode === 'other') {
return this.other(arguments.callee);
} else {
return this[mode](ex);
}
},
createException: function() {
try {
this.undef();
} catch (e) {
return e;
}
},
/**
* Mode could differ for different exception, e.g.
* exceptions in Chrome may or may not have arguments or stack.
*
* @return {String} mode of operation for the exception
*/
mode: function(e) {
if (e['arguments'] && e.stack) {
return 'chrome';
} else if (e.stack && e.sourceURL) {
return 'safari';
} else if (e.stack && e.number) {
return 'ie';
} else if (typeof e.message === 'string' && typeof window !== 'undefined' && window.opera) {
// e.message.indexOf("Backtrace:") > -1 -> opera
// !e.stacktrace -> opera
if (!e.stacktrace) {
return 'opera9'; // use e.message
}
// 'opera#sourceloc' in e -> opera9, opera10a
if (e.message.indexOf('\n') > -1 && e.message.split('\n').length > e.stacktrace.split('\n').length) {
return 'opera9'; // use e.message
}
// e.stacktrace && !e.stack -> opera10a
if (!e.stack) {
return 'opera10a'; // use e.stacktrace
}
// e.stacktrace && e.stack -> opera10b
if (e.stacktrace.indexOf("called from line") < 0) {
return 'opera10b'; // use e.stacktrace, format differs from 'opera10a'
}
// e.stacktrace && e.stack -> opera11
return 'opera11'; // use e.stacktrace, format differs from 'opera10a', 'opera10b'
} else if (e.stack && !e.fileName) {
// Chrome 27 does not have e.arguments as earlier versions,
// but still does not have e.fileName as Firefox
return 'chrome';
} else if (e.stack) {
return 'firefox';
}
return 'other';
},
/**
* Given a context, function name, and callback function, overwrite it so that it calls
* printStackTrace() first with a callback and then runs the rest of the body.
*
* @param {Object} context of execution (e.g. window)
* @param {String} functionName to instrument
* @param {Function} callback function to call with a stack trace on invocation
*/
instrumentFunction: function(context, functionName, callback) {
context = context || window;
var original = context[functionName];
context[functionName] = function instrumented() {
callback.call(this, printStackTrace().slice(4));
return context[functionName]._instrumented.apply(this, arguments);
};
context[functionName]._instrumented = original;
},
/**
* Given a context and function name of a function that has been
* instrumented, revert the function to it's original (non-instrumented)
* state.
*
* @param {Object} context of execution (e.g. window)
* @param {String} functionName to de-instrument
*/
deinstrumentFunction: function(context, functionName) {
if (context[functionName].constructor === Function &&
context[functionName]._instrumented &&
context[functionName]._instrumented.constructor === Function) {
context[functionName] = context[functionName]._instrumented;
}
},
/**
* Given an Error object, return a formatted Array based on Chrome's stack string.
*
* @param e - Error object to inspect
* @return Array<String> of function calls, files and line numbers
*/
chrome: function(e) {
var stack = (e.stack + '\n').replace(/^\S[^\(]+?[\n$]/gm, '').
replace(/^\s+(at eval )?at\s+/gm, '').
replace(/^([^\(]+?)([\n$])/gm, '{anonymous}()@$1$2').
replace(/^Object.<anonymous>\s*\(([^\)]+)\)/gm, '{anonymous}()@$1').split('\n');
stack.pop();
return stack;
},
/**
* Given an Error object, return a formatted Array based on Safari's stack string.
*
* @param e - Error object to inspect
* @return Array<String> of function calls, files and line numbers
*/
safari: function(e) {
return e.stack.replace(/\[native code\]\n/m, '')
.replace(/^(?=\w+Error\:).*$\n/m, '')
.replace(/^@/gm, '{anonymous}()@')
.split('\n');
},
/**
* Given an Error object, return a formatted Array based on IE's stack string.
*
* @param e - Error object to inspect
* @return Array<String> of function calls, files and line numbers
*/
ie: function(e) {
var lineRE = /^.*at (\w+) \(([^\)]+)\)$/gm;
return e.stack.replace(/at Anonymous function /gm, '{anonymous}()@')
.replace(/^(?=\w+Error\:).*$\n/m, '')
.replace(lineRE, '$1@$2')
.split('\n');
},
/**
* Given an Error object, return a formatted Array based on Firefox's stack string.
*
* @param e - Error object to inspect
* @return Array<String> of function calls, files and line numbers
*/
firefox: function(e) {
return e.stack.replace(/(?:\n@:0)?\s+$/m, '').replace(/^[\(@]/gm, '{anonymous}()@').split('\n');
},
opera11: function(e) {
var ANON = '{anonymous}', lineRE = /^.*line (\d+), column (\d+)(?: in (.+))? in (\S+):$/;
var lines = e.stacktrace.split('\n'), result = [];
for (var i = 0, len = lines.length; i < len; i += 2) {
var match = lineRE.exec(lines[i]);
if (match) {
var location = match[4] + ':' + match[1] + ':' + match[2];
var fnName = match[3] || "global code";
fnName = fnName.replace(/<anonymous function: (\S+)>/, "$1").replace(/<anonymous function>/, ANON);
result.push(fnName + '@' + location + ' -- ' + lines[i + 1].replace(/^\s+/, ''));
}
}
return result;
},
opera10b: function(e) {
// "<anonymous function: run>([arguments not available])@file://localhost/G:/js/stacktrace.js:27\n" +
// "printStackTrace([arguments not available])@file://localhost/G:/js/stacktrace.js:18\n" +
// "@file://localhost/G:/js/test/functional/testcase1.html:15"
var lineRE = /^(.*)@(.+):(\d+)$/;
var lines = e.stacktrace.split('\n'), result = [];
for (var i = 0, len = lines.length; i < len; i++) {
var match = lineRE.exec(lines[i]);
if (match) {
var fnName = match[1]? (match[1] + '()') : "global code";
result.push(fnName + '@' + match[2] + ':' + match[3]);
}
}
return result;
},
/**
* Given an Error object, return a formatted Array based on Opera 10's stacktrace string.
*
* @param e - Error object to inspect
* @return Array<String> of function calls, files and line numbers
*/
opera10a: function(e) {
// " Line 27 of linked script file://localhost/G:/js/stacktrace.js\n"
// " Line 11 of inline#1 script in file://localhost/G:/js/test/functional/testcase1.html: In function foo\n"
var ANON = '{anonymous}', lineRE = /Line (\d+).*script (?:in )?(\S+)(?:: In function (\S+))?$/i;
var lines = e.stacktrace.split('\n'), result = [];
for (var i = 0, len = lines.length; i < len; i += 2) {
var match = lineRE.exec(lines[i]);
if (match) {
var fnName = match[3] || ANON;
result.push(fnName + '()@' + match[2] + ':' + match[1] + ' -- ' + lines[i + 1].replace(/^\s+/, ''));
}
}
return result;
},
// Opera 7.x-9.2x only!
opera9: function(e) {
// " Line 43 of linked script file://localhost/G:/js/stacktrace.js\n"
// " Line 7 of inline#1 script in file://localhost/G:/js/test/functional/testcase1.html\n"
var ANON = '{anonymous}', lineRE = /Line (\d+).*script (?:in )?(\S+)/i;
var lines = e.message.split('\n'), result = [];
for (var i = 2, len = lines.length; i < len; i += 2) {
var match = lineRE.exec(lines[i]);
if (match) {
result.push(ANON + '()@' + match[2] + ':' + match[1] + ' -- ' + lines[i + 1].replace(/^\s+/, ''));
}
}
return result;
},
// Safari 5-, IE 9-, and others
other: function(curr) {
var ANON = '{anonymous}', fnRE = /function\s*([\w\-$]+)?\s*\(/i, stack = [], fn, args, maxStackSize = 10;
while (curr && curr['arguments'] && stack.length < maxStackSize) {
fn = fnRE.test(curr.toString()) ? RegExp.$1 || ANON : ANON;
args = Array.prototype.slice.call(curr['arguments'] || []);
stack[stack.length] = fn + '(' + this.stringifyArguments(args) + ')';
curr = curr.caller;
}
return stack;
},
/**
* Given arguments array as a String, substituting type names for non-string types.
*
* @param {Arguments,Array} args
* @return {String} stringified arguments
*/
stringifyArguments: function(args) {
var result = [];
var slice = Array.prototype.slice;
for (var i = 0; i < args.length; ++i) {
var arg = args[i];
if (arg === undefined) {
result[i] = 'undefined';
} else if (arg === null) {
result[i] = 'null';
} else if (arg.constructor) {
if (arg.constructor === Array) {
if (arg.length < 3) {
result[i] = '[' + this.stringifyArguments(arg) + ']';
} else {
result[i] = '[' + this.stringifyArguments(slice.call(arg, 0, 1)) + '...' + this.stringifyArguments(slice.call(arg, -1)) + ']';
}
} else if (arg.constructor === Object) {
result[i] = '#object';
} else if (arg.constructor === Function) {
result[i] = '#function';
} else if (arg.constructor === String) {
result[i] = '"' + arg + '"';
} else if (arg.constructor === Number) {
result[i] = arg;
}
}
}
return result.join(',');
},
sourceCache: {},
/**
* @return the text from a given URL
*/
ajax: function(url) {
var req = this.createXMLHTTPObject();
if (req) {
try {
req.open('GET', url, false);
//req.overrideMimeType('text/plain');
//req.overrideMimeType('text/javascript');
req.send(null);
//return req.status == 200 ? req.responseText : '';
return req.responseText;
} catch (e) {
}
}
return '';
},
/**
* Try XHR methods in order and store XHR factory.
*
* @return <Function> XHR function or equivalent
*/
createXMLHTTPObject: function() {
var xmlhttp, XMLHttpFactories = [
function() {
return new XMLHttpRequest();
}, function() {
return new ActiveXObject('Msxml2.XMLHTTP');
}, function() {
return new ActiveXObject('Msxml3.XMLHTTP');
}, function() {
return new ActiveXObject('Microsoft.XMLHTTP');
}
];
for (var i = 0; i < XMLHttpFactories.length; i++) {
try {
xmlhttp = XMLHttpFactories[i]();
// Use memoization to cache the factory
this.createXMLHTTPObject = XMLHttpFactories[i];
return xmlhttp;
} catch (e) {
}
}
},
/**
* Given a URL, check if it is in the same domain (so we can get the source
* via Ajax).
*
* @param url <String> source url
* @return <Boolean> False if we need a cross-domain request
*/
isSameDomain: function(url) {
return typeof location !== "undefined" && url.indexOf(location.hostname) !== -1; // location may not be defined, e.g. when running from nodejs.
},
/**
* Get source code from given URL if in the same domain.
*
* @param url <String> JS source URL
* @return <Array> Array of source code lines
*/
getSource: function(url) {
// TODO reuse source from script tags?
if (!(url in this.sourceCache)) {
this.sourceCache[url] = this.ajax(url).split('\n');
}
return this.sourceCache[url];
},
guessAnonymousFunctions: function(stack) {
for (var i = 0; i < stack.length; ++i) {
var reStack = /\{anonymous\}\(.*\)@(.*)/,
reRef = /^(.*?)(?::(\d+))(?::(\d+))?(?: -- .+)?$/,
frame = stack[i], ref = reStack.exec(frame);
if (ref) {
var m = reRef.exec(ref[1]);
if (m) { // If falsey, we did not get any file/line information
var file = m[1], lineno = m[2], charno = m[3] || 0;
if (file && this.isSameDomain(file) && lineno) {
var functionName = this.guessAnonymousFunction(file, lineno, charno);
stack[i] = frame.replace('{anonymous}', functionName);
}
}
}
}
return stack;
},
guessAnonymousFunction: function(url, lineNo, charNo) {
var ret;
try {
ret = this.findFunctionName(this.getSource(url), lineNo);
} catch (e) {
ret = 'getSource failed with url: ' + url + ', exception: ' + e.toString();
}
return ret;
},
findFunctionName: function(source, lineNo) {
// FIXME findFunctionName fails for compressed source
// (more than one function on the same line)
// function {name}({args}) m[1]=name m[2]=args
var reFunctionDeclaration = /function\s+([^(]*?)\s*\(([^)]*)\)/;
// {name} = function ({args}) TODO args capture
// /['"]?([0-9A-Za-z_]+)['"]?\s*[:=]\s*function(?:[^(]*)/
var reFunctionExpression = /['"]?([$_A-Za-z][$_A-Za-z0-9]*)['"]?\s*[:=]\s*function\b/;
// {name} = eval()
var reFunctionEvaluation = /['"]?([$_A-Za-z][$_A-Za-z0-9]*)['"]?\s*[:=]\s*(?:eval|new Function)\b/;
// Walk backwards in the source lines until we find
// the line which matches one of the patterns above
var code = "", line, maxLines = Math.min(lineNo, 20), m, commentPos;
for (var i = 0; i < maxLines; ++i) {
// lineNo is 1-based, source[] is 0-based
line = source[lineNo - i - 1];
commentPos = line.indexOf('//');
if (commentPos >= 0) {
line = line.substr(0, commentPos);
}
// TODO check other types of comments? Commented code may lead to false positive
if (line) {
code = line + code;
m = reFunctionExpression.exec(code);
if (m && m[1]) {
return m[1];
}
m = reFunctionDeclaration.exec(code);
if (m && m[1]) {
//return m[1] + "(" + (m[2] || "") + ")";
return m[1];
}
m = reFunctionEvaluation.exec(code);
if (m && m[1]) {
return m[1];
}
}
}
return '(?)';
}
};// Airbrake JavaScript Notifier
(function() {
"use strict";
var NOTICE_XML = '<?xml version="1.0" encoding="UTF-8"?>' +
'<notice version="2.0">' +
'<api-key>{key}</api-key>' +
'<notifier>' +
'<name>airbrake_js</name>' +
'<version>0.2.0</version>' +
'<url>http://airbrake.io</url>' +
'</notifier>' +
'<error>' +
'<class>{exception_class}</class>' +
'<message><![CDATA[{exception_message}]]></message>' +
'<backtrace>{backtrace_lines}</backtrace>' +
'</error>' +
'<request>' +
'<url><![CDATA[{request_url}]]></url>' +
'<component>{request_component}</component>' +
'<action>{request_action}</action>' +
'{request}' +
'</request>' +
'<server-environment>' +
'<project-root>{project_root}</project-root>' +
'<environment-name>{environment}</environment-name>' +
'<app-version>{appVersion}</app-version>' +
'</server-environment>' +
'<current-user>' +
'<id>{user_id}</id>' +
'<name>{user_name}</name>' +
'<email>{user_email}</email>' +
'</current-user>' +
'</notice>',
REQUEST_VARIABLE_GROUP_XML = '<{group_name}>{inner_content}</{group_name}>',
REQUEST_VARIABLE_XML = '<var key="{key}">{value}</var>',
BACKTRACE_LINE_XML = '<line method="{function}" file="{file}" number="{line}" />',
Config,
Global,
Util,
_publicAPI,
NOTICE_JSON = {
"notifier": {
"name": "airbrake_js",
"version": "0.2.0",
"url": "http://airbrake.io"
},
"error": [
{
"type": "{exception_class}",
"message": "{exception_message}",
"backtrace": []
}
],
"context": {
"language": "JavaScript",
"environment": "{environment}",
"version": "1.1.1",
"url": "{request_url}",
"rootDirectory": "{project_root}",
"action": "{request_action}",
"app-version": "{appVersion}",
"userId": "{user_id}",
"userName": "{user_name}",
"userEmail": "{user_email}"
},
"environment": {},
//"session": "",
"params": {}
};
Util = {
/*
* Merge a number of objects into one.
*
* Usage example:
* var obj1 = {
* a: 'a'
* },
* obj2 = {
* b: 'b'
* },
* obj3 = {
* c: 'c'
* },
* mergedObj = Util.merge(obj1, obj2, obj3);
*
* mergedObj is: {
* a: 'a',
* b: 'b',
* c: 'c'
* }
*
*/
merge: (function() {
function processProperty (key, dest, src) {
if (src.hasOwnProperty(key)) {
dest[key] = src[key];
}
}
return function() {
var objects = Array.prototype.slice.call(arguments),
obj,
key,
result = {};
while (obj = objects.shift()) {
for (key in obj) {
processProperty(key, result, obj);
}
}
return result;
};
})(),
/*
* Replace &, <, >, ', " characters with correspondent HTML entities.
*/
escape: function (text) {
return text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>')
.replace(/'/g, ''').replace(/"/g, '"');
},
/*
* Remove leading and trailing space characters.
*/
trim: function (text) {
return text.toString().replace(/^\s+/, '').replace(/\s+$/, '');
},
/*
* Fill 'text' pattern with 'data' values.
*
* e.g. Utils.substitute('<{tag}></{tag}>', {tag: 'div'}, true) will return '<div></div>'
*
* emptyForUndefinedData - a flag, if true, all matched {<name>} without data.<name> value specified will be
* replaced with empty string.
*/
substitute: function (text, data, emptyForUndefinedData) {
return text.replace(/{([\w_.-]+)}/g, function(match, key) {
return (key in data) ? data[key] : (emptyForUndefinedData ? '' : match);
});
},
/*
* Perform pattern rendering for an array of data objects.
* Returns a concatenation of rendered strings of all objects in array.
*/
substituteArr: function (text, dataArr, emptyForUndefinedData) {
var _i = 0, _l = 0,
returnStr = '';
for (_i = 0, _l = dataArr.length; _i < _l; _i += 1) {
returnStr += this.substitute(text, dataArr[_i], emptyForUndefinedData);
}
return returnStr;
},
/*
* Add hook for jQuery.fn.on function, to manualy call window.Airbrake.captureException() method
* for every exception occurred.
*
* Let function 'f' be binded as an event handler:
*
* $(window).on 'click', f
*
* If an exception is occurred inside f's body, it will be catched here
* and forwarded to captureException method.
*
* processjQueryEventHandlerWrapping is called every time window.Airbrake.setTrackJQ method is used,
* if it switches previously setted value.
*/
processjQueryEventHandlerWrapping: function () {
if (Config.options.trackJQ === true) {
Config.jQuery_fn_on_original = Config.jQuery_fn_on_original || jQuery.fn.on;
jQuery.fn.on = function () {
var args = Array.prototype.slice.call(arguments),
fnArgIdx = 4;
// Search index of function argument
while((--fnArgIdx > -1) && (typeof args[fnArgIdx] !== 'function'));
// If the function is not found, then subscribe original event handler function
if (fnArgIdx === -1) {
return Config.jQuery_fn_on_original.apply(this, arguments);
}
// If the function is found, then subscribe wrapped event handler function
args[fnArgIdx] = (function (fnOriginHandler) {
return function() {
try {
fnOriginHandler.apply(this, arguments);
} catch (e) {
Global.captureException(e);
}
};
})(args[fnArgIdx]);
// Call original jQuery.fn.on, with the same list of arguments, but
// a function replaced with a proxy.
return Config.jQuery_fn_on_original.apply(this, args);
};
} else {
// Recover original jQuery.fn.on if Config.options.trackJQ is set to false
(typeof Config.jQuery_fn_on_original === 'function') && (jQuery.fn.on = Config.jQuery_fn_on_original);
}
},
isjQueryPresent: function () {
// Currently only 1.7.x version supported
return (typeof jQuery === 'function') && ('fn' in jQuery) && ('jquery' in jQuery.fn)
&& (jQuery.fn.jquery.indexOf('1.7') === 0)
},
/*
* Make first letter in a string capital. e.g. 'guessFunctionName' -> 'GuessFunctionName'
* Is used to generate getter and setter method names.
*/
capitalizeFirstLetter: function (str) {
return str.charAt(0).toUpperCase() + str.slice(1);
},
/*
* Generate public API from an array of specifically formated objects, e.g.
*
* - this will generate 'setEnvironment' and 'getEnvironment' API methods for configObj.xmlData.environment variable:
* {
* variable: 'environment',
* namespace: 'xmlData'
* }
*
* - this will define 'method' function as 'captureException' API method
* {
* methodName: 'captureException',
* method: (function (...) {...});
* }
*
*/
generatePublicAPI: (function () {
function _generateSetter (variable, namespace, configObj) {
return function (value) {
configObj[namespace][variable] = value;
};
}
function _generateGetter (variable, namespace, configObj) {
return function (value) {
return configObj[namespace][variable];
};
}
/*
* publicAPI: array of specifically formated objects
* configObj: inner configuration object
*/
return function (publicAPI, configObj) {
var _i = 0, _m = null, _capitalized = '',
returnObj = {};
for (_i = 0; _i < publicAPI.length; _i += 1) {
_m = publicAPI[_i];
switch (true) {
case (typeof _m.variable !== 'undefined') && (typeof _m.methodName === 'undefined'):
_capitalized = Util.capitalizeFirstLetter(_m.variable)
returnObj['set' + _capitalized] = _generateSetter(_m.variable, _m.namespace, configObj);
returnObj['get' + _capitalized] = _generateGetter(_m.variable, _m.namespace, configObj);
break;
case (typeof _m.methodName !== 'undefined') && (typeof _m.method !== 'undefined'):
returnObj[_m.methodName] = _m.method
break;
default:
}
}
return returnObj;
};
} ())
};
/*
* The object to store settings. Allocated from the Global (windows scope) so that users can change settings
* only through the methods, rather than through a direct change of the object fileds. So that we can to handle
* change settings event (in setter method).
*/
Config = {
xmlData: {
environment: 'environment'
},
options: {
trackJQ: false, // jQuery.fn.jquery
host: 'api.airbrake.io',
errorDefaults: {},
guessFunctionName: false,
requestType: 'GET', // Can be 'POST' or 'GET'
outputFormat: 'XML' // Can be 'XML' or 'JSON'
}
};
/*
* The public API definition object. If no 'methodName' and 'method' values specified,
* getter and setter for 'variable' will be defined.
*/
_publicAPI = [
{
variable: 'environment',
namespace: 'xmlData'
}, {
variable: 'key',
namespace: 'xmlData'
}, {
variable: 'host',
namespace: 'options'
},{
variable: 'projectId',
namespace: 'options'
},{
variable: 'errorDefaults',
namespace: 'options'
}, {
variable: 'guessFunctionName',
namespace: 'options'
}, {
variable: 'outputFormat',
namespace: 'options'
}, {
methodName: 'setCurrentUser',
method: (function (value) {
for (var key in value) {
if (value.hasOwnProperty(key)) {
Config.xmlData['user_' + key] = value[key];
}
}
})
}, {
methodName: 'setTrackJQ',
variable: 'trackJQ',
namespace: 'options',
method: (function (value) {
if (!Util.isjQueryPresent()) {
throw Error('Please do not call \'Airbrake.setTrackJQ\' if jQuery does\'t present');
}
value = !!value;
if (Config.options.trackJQ === value) {
return;
}
Config.options.trackJQ = value;
Util.processjQueryEventHandlerWrapping();
})
}, {
methodName: 'captureException',
method: (function (e) {
new Notifier().notify({
message: e.message,
stack: e.stack
});
})
}, {
variable: 'appVersion',
namespace: 'xmlData'
}
];
// Share to global scope as Airbrake ("window.Hoptoad" for backward compatibility)
Global = window.Airbrake = window.Hoptoad = Util.generatePublicAPI(_publicAPI, Config);
Global._filters = [];
Global.addFilter = function (cb) {
Global._filters.push(cb);
};
function Notifier() {
this.options = Util.merge({}, Config.options);
this.xmlData = Util.merge(this.DEF_XML_DATA, Config.xmlData);
}
Notifier.prototype = {
constructor: Notifier,
VERSION: '0.2.0',
ROOT: window.location.protocol + '//' + window.location.host,
BACKTRACE_MATCHER: /^(.*)\@(.*)\:(\d+)$/,
backtrace_filters: [/notifier\.js/],
DEF_XML_DATA: {
request: {}
},
notify: (function () {
/*
* Emit GET request via <iframe> element.
* Data is transmited as a part of query string.
*/
function _sendGETRequest (url, data) {
var request = document.createElement('iframe');
request.style.display = 'none';
request.src = url + '?data=' + data;
// When request has been sent, delete iframe
request.onload = function () {
// To avoid infinite progress indicator
setTimeout(function() {
document.body.removeChild(request);
}, 0);
};
document.body.appendChild(request);
}
/*
* Cross-domain AJAX POST request.
*
* It requires a server setup as described in Cross-Origin Resource Sharing spec:
* http://www.w3.org/TR/cors/
*/
function _sendPOSTRequest (url, data) {
var request = new XMLHttpRequest();
request.open('POST', url, true);
request.setRequestHeader('Content-Type', 'application/json');
request.send(data);
}
return function (error) {
var outputData = '', jsonData,
url = '';
//
/*
* Should be changed to url = '//' + ...
* to use the protocol of current page (http or https). Only sends 'secure' if page is secure.
* XML uses V2 API. http://collect.airbrake.io/notifier_api/v2/notices
*/
switch (this.options['outputFormat']) {
case 'XML':
jsonData = this.generateDataJSON(error);
if (this.shouldSendData(jsonData)){
outputData = encodeURIComponent(this.generateXML(jsonData));
url = ('https:' == document.location.protocol ? 'https://' : 'http://') + this.options.host + '/notifier_api/v2/notices';
_sendGETRequest(url, outputData);
}
break;
case 'JSON':
/*
* JSON uses API V3. Needs project in URL.
* http://collect.airbrake.io/api/v3/projects/[PROJECT_ID]/notices?key=[API_KEY]
* url = window.location.protocol + '://' + this.options.host + '/api/v3/projects' + this.options.projectId + '/notices?key=' + this.options.key;
*/
jsonData = this.generateDataJSON(error);
if (this.shouldSendData(jsonData)){
outputData = JSON.stringify(this.generateJSON(jsonData));
url = ('https:' == document.location.protocol ? 'https://' : 'http://') + this.options.host + '/api/v3/projects/' + this.options.projectId + '/notices?key=' + this.xmlData.key;
_sendPOSTRequest(url, outputData);
}
break;
default:
}
};
} ()),
/*
* Generate inner JSON representation of exception data that can be rendered as XML or JSON.
*/
generateDataJSON: (function () {
/*
* Generate variables array for inputObj object.
*
* e.g.
*
* _generateVariables({a: 'a'}) -> [{key: 'a', value: 'a'}]
*
*/
function _generateVariables (inputObj) {
var key = '', returnArr = [];
for (key in inputObj) {
if (inputObj.hasOwnProperty(key)) {
returnArr.push({
key: key,
value: inputObj[key]
});
}
}
return returnArr;
}
/*
* Generate Request part of notification.
*/
function _composeRequestObj (methods, errorObj) {
var _i = 0,
returnObj = {},
type = '';
for (_i = 0; _i < methods.length; _i += 1) {
type = methods[_i];
if (typeof errorObj[type] !== 'undefined') {
returnObj[type] = _generateVariables(errorObj[type]);
}
}
return returnObj;
}
return function (errorWithoutDefaults) {
/*
* A constructor line:
*
* this.xmlData = Util.merge(this.DEF_XML_DATA, Config.xmlData);
*/
var outputData = this.xmlData,
error = Util.merge(this.options.errorDefaults, errorWithoutDefaults),
component = error.component || '',
request_url = (error.url || '' + location.href),
methods = ['cgi-data', 'params', 'session'],
_outputData = null;
_outputData = {
request_url: request_url,
request_action: (error.action || ''),
request_component: component,
request: (function () {
if (request_url || component) {
error['cgi-data'] = error['cgi-data'] || {};
error['cgi-data'].HTTP_USER_AGENT = navigator.userAgent;
return Util.merge(outputData.request, _composeRequestObj(methods, error));
} else {
return {}
}
} ()),
project_root: this.ROOT,
exception_class: (error.type || errorWithoutDefaults.type ||
(errorWithoutDefaults.constructor.name != "Object" ? errorWithoutDefaults.constructor.name : 'Error')),
exception_message: (error.message || errorWithoutDefaults.message || 'Unknown error.'),
backtrace_lines: this.generateBacktrace(errorWithoutDefaults)
}
outputData = Util.merge(outputData, _outputData);
return outputData;
};
} ()),
/*
* Generate XML notification from inner JSON representation.
* NOTICE_XML is used as pattern.
*/
generateXML: (function () {
function _generateRequestVariableGroups (requestObj) {
var _group = '',
returnStr = '';
for (_group in requestObj) {
if (requestObj.hasOwnProperty(_group)) {
returnStr += Util.substitute(REQUEST_VARIABLE_GROUP_XML, {
group_name: _group,
inner_content: Util.substituteArr(REQUEST_VARIABLE_XML, requestObj[_group], true)
}, true);
}
}
return returnStr;
}
return function (JSONdataObj) {
JSONdataObj.request = _generateRequestVariableGroups(JSONdataObj.request);
JSONdataObj.backtrace_lines = Util.substituteArr(BACKTRACE_LINE_XML, JSONdataObj.backtrace_lines, true);
return Util.substitute(NOTICE_XML, JSONdataObj, true);
};
} ()),
/*
* Generate JSON notification from inner JSON representation.
* NOTICE_JSON is used as pattern.
*/
generateJSON: function (JSONdataObj) {
// Pattern string is JSON.stringify(NOTICE_JSON)
// The rendered string is parsed back as JSON.
var outputJSON = JSON.parse(Util.substitute(JSON.stringify(NOTICE_JSON), JSONdataObj, true));
// REMOVED - Request from JSON.
outputJSON.request = Util.merge(outputJSON.request, JSONdataObj.request);
outputJSON.error.backtrace = JSONdataObj.backtrace_lines;
return outputJSON;
},
generateBacktrace: function (error) {
var backtrace = [],
file,
i,
matches,
stacktrace;
error = error || {};
if (typeof error.stack !== 'string') {
try {
(0)();
} catch (e) {
error.stack = e.stack;
}
}
stacktrace = this.getStackTrace(error);
for (i = 0; i < stacktrace.length; i++) {
matches = stacktrace[i].match(this.BACKTRACE_MATCHER);
if (matches && this.validBacktraceLine(stacktrace[i])) {
file = matches[2].replace(this.ROOT, '[PROJECT_ROOT]');
if (i === 0 && matches[2].match(document.location.href)) {
// backtrace.push('<line method="" file="internal: " number=""/>');
backtrace.push({
// Updated to fit in with V3 new terms for Backtrace data.
'function': '',
file: 'internal: ',
line: ''
});
}
// backtrace.push('<line method="' + Util.escape(matches[1]) + '" file="' + Util.escape(file) +
// '" number="' + matches[3] + '" />');
backtrace.push({
'function': Util.escape(matches[1]),
file: Util.escape(file),
line: matches[3]
});
}
}
return backtrace;
},
getStackTrace: function (error) {
var i,
stacktrace = printStackTrace({
e: error,
guess: this.options.guessFunctionName
});
for (i = 0; i < stacktrace.length; i++) {
if (stacktrace[i].match(/\:\d+$/)) {
continue;
}
// Special case for sprocket coffee stacktrace:
// "Function.foo (http://host/file.js?body=1:666:42)" becomes "Function.foo @http://host/file.js?body=1:666"
if (stacktrace[i].match(/\([^\s]+:(\d+):(\d+)\)$/)) {
stacktrace[i] = stacktrace[i].replace(/\((.+):(\d+):(\d+)\)$/, '@$1:$2')
continue;
}
if (stacktrace[i].indexOf('@') === -1) {
stacktrace[i] += '@unsupported.js';
}
stacktrace[i] += ':0';
}
return stacktrace;
},
validBacktraceLine: function (line) {
for (var i = 0; i < this.backtrace_filters.length; i++) {
if (line.match(this.backtrace_filters[i])) {
return false;
}
}
return true;
},
shouldSendData: function (jsonData) {
var shouldSend = true, i;
for ( i = 0; i < Global._filters.length; i++ ) {
if ( ! Global._filters[i](jsonData) ){
shouldSend = false;
}
}
return shouldSend;
}
};
var oldOnerror = window.onerror;
window.onerror = function (message, file, line, code, error) {
setTimeout(function () {
var e = error || {stack: '()@' + file + ':' + line}
e.message = message
new Notifier().notify(e);
}, 0);
if (oldOnerror) {
return oldOnerror(message, file, line, code, error);
}
return true;
};
})();
})(window, document);