-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnoeval.js
More file actions
240 lines (211 loc) · 5.43 KB
/
Copy pathnoeval.js
File metadata and controls
240 lines (211 loc) · 5.43 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
// module for parsing common map functions so we don't have to use eval
// designed to get the basic tests passing in Chrome apps and other
// environments where eval is disallowed
'use strict';
var coreRegex = new RegExp(
'^\\s*function\\s*\\(' + // function
'([^,)]+)?' + // doc
'(?:,[^,)]+)?' + // second arg after doc, e.g. emit
'\\)\\s*{\\s*' +
'(?:if\\s*\\(([^\\)]+)\\)' + // optional condition
'[\\s*{]+)?\\s*emit\\(' +
'([^,\\(]+)?' + // emitted key
'(?:,\\s*([^\\)]+)\\s*)?' + // optional emitted value
'\\)[;\\s}]+$');
var joinedDocRegex = new RegExp(
'\\s*{\\s*[\'"]?_id[\'"]?\\s*:\\s*([^}]+)}'
);
var numberRegex = new RegExp(
'^[\\d\\.e]+$'
);
var conditionRegex = new RegExp(
'\\s*([^\\s=!<>]+)\\s*(===|==|<|<=|>=|>|!=|!==)\\s*([^\\s=!<>]+)\\s*'
);
function tryJson(str) {
try {
return JSON.parse(str);
} catch (err) {
return undefined;
}
}
function parseSubElement(el, docName) {
var match;
if (docName && el === docName) {
// whole doc
return {
type: 'wholeDoc'
};
} else if (docName && el.substring(0, docName.length) === docName) {
if (el.charAt(docName.length) === '.') {
// simple field member like doc.foo
return {
type: 'field',
field: el.substring(docName.length + 1)
};
} else { // assume doc['foo bar']
return {
type: 'field',
field: el.substring(docName.length + 1, el.length - 1)
};
}
} else if (el.charAt(0) === "'" || el.charAt(0) === '"') {
// simple string like 'foo' or "bar"
return {
type: 'constant',
value: el.substring(1, el.length - 1)
};
} else if (el.match(numberRegex)) {
return parseFloat(el);
} else if (el === 'undefined') {
return undefined;
} else if ((match = el.match(joinedDocRegex))) {
var joinedDocVal = match[1];
return {
type: 'joinedVal',
value: parseSubElement(joinedDocVal, docName)
};
} else {
var json = tryJson(el);
if (typeof json !== 'undefined') {
return json;
}
}
throw new Error('unknown sub element: ' + el);
}
function parseElement(el, docName) {
if (!el) {
return undefined;
} else if (el.substring(0, 2) === '!!') {
return {
type: 'coerce',
boolean: true,
value: parseSubElement(el.substring(2), docName)
}; // e.g. !!doc.name
} else if (el.substring(0, 1) === '!') {
return {
type: 'coerce',
boolean: false,
value: parseSubElement(el.substring(1), docName)
}; // e.g. !doc.name
} else {
return parseSubElement(el, docName);
}
}
function parseCondition(str, docName) {
if (!str) {
return undefined;
}
var match = str.match(conditionRegex);
if (!match) {
// bare condition, like if (doc.foo)
return {
type: 'simple',
value: parseElement(str, docName)
};
}
var left = match[1];
var right = match[3];
var operator = match[2];
return {
type: 'expression',
left: parseElement(left, docName),
right: parseElement(right, docName),
operator: operator
};
}
function evalExpressionCondition(condition, doc) {
var left = evalValue(condition.left, doc);
var right = evalValue(condition.right, doc);
var operator = condition.operator;
switch (operator) {
case '===':
return left === right;
case '==':
/*jshint eqeqeq:false*/
return left == right;
case '<':
return left < right;
case '<=':
return left <= right;
case '>=':
return left >= right;
case '>':
return left > right;
case '!=':
/*jshint eqeqeq:false*/
return left != right;
case '!==':
return left !== right;
}
throw new Error('unknown operator: ' + operator);
}
function evalCondition(condition, doc) {
if (typeof condition === 'undefined') {
return true;
}
if (condition.type === 'expression') {
return evalExpressionCondition(condition, doc);
}
var result;
var conditionVal;
var shouldCoerce;
var coerceTo;
if (condition.value.type === 'coerce') {
shouldCoerce = true;
coerceTo = condition.value.boolean;
conditionVal = condition.value.value;
} else {
conditionVal = condition.value;
}
result = evalValue(conditionVal, doc);
if (shouldCoerce) {
result = coerceTo ? !!result : !result;
}
return result;
}
function parse(fun) {
var groups = fun.match(coreRegex);
if (!groups) {
return {error: true};
}
var docName = groups[1];
var condition = parseCondition(groups[2], docName);
var key = parseElement(groups[3], docName);
var value = parseElement(groups[4], docName);
return {
condition: condition,
key: key,
value: value
};
}
function evalValue(val, doc) {
if (!val) {
return undefined;
}
if (val.type === 'constant') {
return val.value;
} else if (val.type === 'wholeDoc') {
return doc;
} else if (val.type === 'joinedVal') {
return {_id: evalValue(val.value, doc)};
} else { // field
return doc[val.field];
}
}
function noeval(fun, emit) {
var mapFun = parse(fun);
return function (doc) {
if (mapFun.error) {
// user error for whatever reason
// just bail out and emit nothing
return;
}
var checkCondition = evalCondition(mapFun.condition, doc);
if (checkCondition) {
var key = evalValue(mapFun.key, doc);
var value = evalValue(mapFun.value, doc);
emit(key, value);
}
};
}
module.exports = noeval;