|
| 1 | +import { migratePatchFunc, migrateWarn } from "../main.js"; |
| 2 | + |
| 3 | +function patchDataProto( original, options ) { |
| 4 | + var i, |
| 5 | + apiName = options.apiName, |
| 6 | + isInstanceMethod = options.isInstanceMethod, |
| 7 | + |
| 8 | + // `Object.prototype` keys are not enumerable so list the |
| 9 | + // official ones here. An alternative would be wrapping |
| 10 | + // data objects with a Proxy but that creates additional issues |
| 11 | + // like breaking object identity on subsequent calls. |
| 12 | + objProtoKeys = [ |
| 13 | + "__proto__", |
| 14 | + "__defineGetter__", |
| 15 | + "__defineSetter__", |
| 16 | + "__lookupGetter__", |
| 17 | + "__lookupSetter__", |
| 18 | + "hasOwnProperty", |
| 19 | + "isPrototypeOf", |
| 20 | + "propertyIsEnumerable", |
| 21 | + "toLocaleString", |
| 22 | + "toString", |
| 23 | + "valueOf" |
| 24 | + ], |
| 25 | + |
| 26 | + // Use a null prototype at the beginning so that we can define our |
| 27 | + // `__proto__` getter & setter. We'll reset the prototype afterwards. |
| 28 | + intermediateDataObj = Object.create( null ); |
| 29 | + |
| 30 | + for ( i = 0; i < objProtoKeys.length; i++ ) { |
| 31 | + ( function( key ) { |
| 32 | + Object.defineProperty( intermediateDataObj, key, { |
| 33 | + get: function() { |
| 34 | + migrateWarn( "data-null-proto", |
| 35 | + "Accessing properties from " + apiName + |
| 36 | + " inherited from Object.prototype is removed" ); |
| 37 | + return ( key + "__cache" ) in intermediateDataObj ? |
| 38 | + intermediateDataObj[ key + "__cache" ] : |
| 39 | + Object.prototype[ key ]; |
| 40 | + }, |
| 41 | + set: function( value ) { |
| 42 | + migrateWarn( "data-null-proto", |
| 43 | + "Setting properties from " + apiName + |
| 44 | + " inherited from Object.prototype is removed" ); |
| 45 | + intermediateDataObj[ key + "__cache" ] = value; |
| 46 | + } |
| 47 | + } ); |
| 48 | + } )( objProtoKeys[ i ] ); |
| 49 | + } |
| 50 | + |
| 51 | + Object.setPrototypeOf( intermediateDataObj, Object.prototype ); |
| 52 | + |
| 53 | + return function jQueryDataProtoPatched() { |
| 54 | + var result = original.apply( this, arguments ); |
| 55 | + |
| 56 | + if ( arguments.length !== ( isInstanceMethod ? 0 : 1 ) || result === undefined ) { |
| 57 | + return result; |
| 58 | + } |
| 59 | + |
| 60 | + // Insert an additional object in the prototype chain between `result` |
| 61 | + // and `Object.prototype`; that intermediate object proxies properties |
| 62 | + // to `Object.prototype`, warning about their usage first. |
| 63 | + Object.setPrototypeOf( result, intermediateDataObj ); |
| 64 | + |
| 65 | + return result; |
| 66 | + }; |
| 67 | +} |
| 68 | + |
| 69 | +// Yes, we are patching jQuery.data twice; here & above. This is necessary |
| 70 | +// so that each of the two patches can be independently disabled. |
| 71 | +migratePatchFunc( jQuery, "data", |
| 72 | + patchDataProto( jQuery.data, { |
| 73 | + apiName: "jQuery.data()", |
| 74 | + isPrivateData: false, |
| 75 | + isInstanceMethod: false |
| 76 | + } ), |
| 77 | + "data-null-proto" ); |
| 78 | +migratePatchFunc( jQuery.fn, "data", |
| 79 | + patchDataProto( jQuery.fn.data, { |
| 80 | + apiName: "jQuery.fn.data()", |
| 81 | + isPrivateData: true, |
| 82 | + isInstanceMethod: true |
| 83 | + } ), |
| 84 | + "data-null-proto" ); |
| 85 | + |
| 86 | +// TODO entry in warnings.md |
0 commit comments