Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit fa1823e

Browse files
committed
feat(minErr): set max depth for angular error JSON stringify
closes #15402
1 parent 6e91f9c commit fa1823e

File tree

3 files changed

+27
-16
lines changed

3 files changed

+27
-16
lines changed

src/Angular.js

+18-10
Original file line numberDiff line numberDiff line change
@@ -815,9 +815,13 @@ function arrayRemove(array, value) {
815815
</file>
816816
</example>
817817
*/
818-
function copy(source, destination) {
818+
function copy(source, destination, maxDepth) {
819819
var stackSource = [];
820820
var stackDest = [];
821+
var currentDepth = 0;
822+
if (!isNumber(maxDepth)) {
823+
maxDepth = NaN;
824+
}
821825

822826
if (destination) {
823827
if (isTypedArray(destination) || isArrayBuffer(destination)) {
@@ -840,43 +844,47 @@ function copy(source, destination) {
840844

841845
stackSource.push(source);
842846
stackDest.push(destination);
843-
return copyRecurse(source, destination);
847+
return copyRecurse(source, destination, currentDepth);
844848
}
845849

846-
return copyElement(source);
850+
return copyElement(source, currentDepth);
847851

848-
function copyRecurse(source, destination) {
852+
function copyRecurse(source, destination, currentDepth) {
853+
currentDepth++;
854+
if (currentDepth > maxDepth) {
855+
return '...';
856+
}
849857
var h = destination.$$hashKey;
850858
var key;
851859
if (isArray(source)) {
852860
for (var i = 0, ii = source.length; i < ii; i++) {
853-
destination.push(copyElement(source[i]));
861+
destination.push(copyElement(source[i], currentDepth));
854862
}
855863
} else if (isBlankObject(source)) {
856864
// createMap() fast path --- Safe to avoid hasOwnProperty check because prototype chain is empty
857865
for (key in source) {
858-
destination[key] = copyElement(source[key]);
866+
destination[key] = copyElement(source[key], currentDepth);
859867
}
860868
} else if (source && typeof source.hasOwnProperty === 'function') {
861869
// Slow path, which must rely on hasOwnProperty
862870
for (key in source) {
863871
if (source.hasOwnProperty(key)) {
864-
destination[key] = copyElement(source[key]);
872+
destination[key] = copyElement(source[key], currentDepth);
865873
}
866874
}
867875
} else {
868876
// Slowest path --- hasOwnProperty can't be called as a method
869877
for (key in source) {
870878
if (hasOwnProperty.call(source, key)) {
871-
destination[key] = copyElement(source[key]);
879+
destination[key] = copyElement(source[key], currentDepth);
872880
}
873881
}
874882
}
875883
setHashKey(destination, h);
876884
return destination;
877885
}
878886

879-
function copyElement(source) {
887+
function copyElement(source, currentDepth) {
880888
// Simple values
881889
if (!isObject(source)) {
882890
return source;
@@ -905,7 +913,7 @@ function copy(source, destination) {
905913
stackDest.push(destination);
906914

907915
return needsRecurse
908-
? copyRecurse(source, destination)
916+
? copyRecurse(source, destination, currentDepth)
909917
: destination;
910918
}
911919

src/minErr.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ function minErr(module, ErrorConstructor) {
3434
ErrorConstructor = ErrorConstructor || Error;
3535
return function() {
3636
var SKIP_INDEXES = 2;
37+
var MAX_DEPTH = 3;
3738

3839
var templateArgs = arguments,
3940
code = templateArgs[0],
@@ -46,7 +47,7 @@ function minErr(module, ErrorConstructor) {
4647
shiftedIndex = index + SKIP_INDEXES;
4748

4849
if (shiftedIndex < templateArgs.length) {
49-
return toDebugString(templateArgs[shiftedIndex]);
50+
return toDebugString(templateArgs[shiftedIndex], MAX_DEPTH);
5051
}
5152

5253
return match;
@@ -57,7 +58,7 @@ function minErr(module, ErrorConstructor) {
5758

5859
for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') {
5960
message += paramPrefix + 'p' + (i - SKIP_INDEXES) + '=' +
60-
encodeURIComponent(toDebugString(templateArgs[i]));
61+
encodeURIComponent(toDebugString(templateArgs[i], MAX_DEPTH));
6162
}
6263

6364
return new ErrorConstructor(message);

src/stringify.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
/* global toDebugString: true */
44

5-
function serializeObject(obj) {
5+
function serializeObject(obj, maxDepth) {
66
var seen = [];
7-
7+
if (maxDepth > 0) {
8+
obj = copy(obj, null, maxDepth);
9+
}
810
return JSON.stringify(obj, function(key, val) {
911
val = toJsonReplacer(key, val);
1012
if (isObject(val)) {
@@ -17,13 +19,13 @@ function serializeObject(obj) {
1719
});
1820
}
1921

20-
function toDebugString(obj) {
22+
function toDebugString(obj, maxDepth) {
2123
if (typeof obj === 'function') {
2224
return obj.toString().replace(/ \{[\s\S]*$/, '');
2325
} else if (isUndefined(obj)) {
2426
return 'undefined';
2527
} else if (typeof obj !== 'string') {
26-
return serializeObject(obj);
28+
return serializeObject(obj, maxDepth);
2729
}
2830
return obj;
2931
}

0 commit comments

Comments
 (0)