-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path6-hide-symbols.js
198 lines (154 loc) · 5.74 KB
/
6-hide-symbols.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
'use strict';
// If an ordinary user wants to overwrite a secret field,
// we can not throw error or forbid it,
// since then he will understand that the field is occupied.
// Instead, all calls to the secret field, after being recorded by the ordinary user,
// will be redirected to a specially created field simulating a secret field,
// and storing information that the user tried to write to the secret field
function hideSymbol(obj, symbol) {
obj = {
realObj: Object.assign(obj),
simulateSecretField: undefined
};
// As a result, the field obj.simulateSecretField in the object itself remained free
// And the user can use it as a normal fieldw
obj = new Proxy(obj, {
ownKeys: (target) => {
if (symbol in target.realObj) {
let properties = Reflect.ownKeys(target.realObj);
const indexField = properties.indexOf(symbol);
properties.splice(indexField, 1);
if (target.simulateSecretField) {
properties = properties.concat(symbol);
}
return properties;
} else {
return Reflect.ownKeys(target);
}
},
get: (target, property) => {
if (property === symbol && target.simulateSecretField) {
return target.simulateSecretField;
}
if (property === symbol && target.simulateSecretField === undefined) {
return undefined;
}
return target.realObj[property];
},
set: (target, property, value) => {
if (property === symbol) {
return Reflect.set(target, 'simulateSecretField', value);
} else {
return Reflect.set(target.realObj, property, value);
}
},
getOwnPropertyDescriptor: (target, property) => {
if (property === symbol && target.simulateSecretField) {
return Object.getOwnPropertyDescriptor(target, 'simulateSecretField');
}
if (property === symbol && target.simulateSecretField === undefined) {
return undefined;
}
return Reflect.getOwnPropertyDescriptor(target.realObj, property);
},
enumerate: (target) => {
return target.keys[Symbol.iterator];
},
deleteProperty(target, property) {
if (property !== symbol) {
delete target.realObj[property];
} else if (property === symbol && target.simulateSecretField) {
target.simulateSecretField = undefined;
}
return true;
},
});
return obj;
}
// Usage:
// we have added an opcional method _debugOutputSecretField,
// to check at the end of the work that the information in the secret field was left
// This is the only way to verify this information
// (This field should not be in a real project)
let obj = {
name: 'Marcus Aurelius',
born: 121,
[Symbol.for('secret')]: 'some secret information',
[Symbol.for('notsecret')]: 'some not secret information',
get getter() {
return 'GETTER';
},
set setter(value) {},
get _debugOutputSecretField() {
return this[Symbol.for('secret')];
}
};
// We must completely hide the field obj[Symbol.for('secret')]
console.log('\n\nBEFORE PROXYING:\n\n');
console.log('\x1b[4mfor in:\x1b[0m');
for (const i in obj) {
console.log(i);
}
console.log('\x1b[4mconsole.log("obj"):\x1b[0m');
console.log(obj);
console.log('\x1b[4mconsole.dir("obj"):\x1b[0m');
console.dir(obj, {
showHidden: true,
depth: null
});
console.log('\x1b[4mconsole.log(Object.getOwnPropertyNames):\x1b[0m');
console.log(Object.getOwnPropertyNames(obj));
console.log('\x1b[4mconsole.log(Object.getOwnPropertySymbols):\x1b[0m');
console.log(Object.getOwnPropertySymbols(obj));
console.log(
'\x1b[4mconsole.log(Object.getOwnPropertyDescriptor(obj, Symbol.for("secret")))\x1b[0m'
);
console.log(Object.getOwnPropertyDescriptor(obj, Symbol.for('secret')));
console.log('\x1b[4mconsole.log(Object.keys(obj)):\x1b[0m');
console.log(Object.keys(obj));
console.log('\x1b[4mconsole.log(obj[Symbol.for("secret")]):\x1b[0m');
console.log(obj[Symbol.for('secret')]);
console.log('\x1b[4mconsole.log(Object.entries(obj)):\x1b[0m');
console.log(Object.entries(obj));
// proxying:
obj = hideSymbol(obj, Symbol.for('secret'));
console.log('\n\nAFTER PROXYING:\n\n');
console.log('\x1b[4mfor in:\x1b[0m');
for (const i in obj) {
console.log(i);
}
console.log('\x1b[4mconsole.log("obj"):\x1b[0m');
console.log(obj);
console.log('\x1b[4mconsole.dir("obj"):\x1b[0m');
console.dir(obj, {
showHidden: true,
depth: null
});
console.log('\x1b[4mconsole.log(Object.getOwnPropertyNames):\x1b[0m');
console.log(Object.getOwnPropertyNames(obj));
console.log('\x1b[4mconsole.log(Object.getOwnPropertySymbols):\x1b[0m');
console.log(Object.getOwnPropertySymbols(obj));
console.log(
'\x1b[4mconsole.log(Object.getOwnPropertyDescriptor(obj, Symbol.for("secret")))\x1b[0m'
);
console.log(Object.getOwnPropertyDescriptor(obj, Symbol.for('secret')));
console.log('\x1b[4mconsole.log(Object.keys(obj)):\x1b[0m');
console.log(Object.keys(obj));
console.log('\x1b[4mconsole.log(obj[Symbol.for("secret")])\x1b[0m');
console.log(obj[Symbol.for('secret')]);
console.log('\x1b[4mconsole.log(Object.entries(obj)):\x1b[0m');
console.log(Object.entries(obj));
// overwrite:
console.log('\n\nOVERWRITE SECRET FIELD:\n\n');
console.log('\x1b[4m[Symbol.for("secret")] = "overwrite value"\x1b[0m');
obj[Symbol.for('secret')] = 'overwrite value';
console.log('\x1b[4mconsole.log("obj"):\x1b[0m');
console.log(obj);
console.log('\x1b[4mconsole.log(Object.getOwnPropertySymbols):\x1b[0m');
console.log(Object.getOwnPropertySymbols(obj));
console.log('\x1b[4mconsole.log(obj[Symbol.for("secret")])\x1b[0m');
console.log(obj[Symbol.for('secret')]);
// in fact, in the secret field our line is still stored
console.log('\n\nREAL VALUE OF obj[Symbol.for("secret")]:\n\n');
console.log('\x1b[4mconsole.log(obj._debugOutputSecretField):\x1b[0m');
console.log(obj._debugOutputSecretField);