-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathHighlight.js
More file actions
446 lines (373 loc) · 15.1 KB
/
Highlight.js
File metadata and controls
446 lines (373 loc) · 15.1 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
/**
@class
<p>Allows to highlight search results on one or more fields. In order to
perform highlighting, the actual content of the field is required. If the
field in question is stored (has store set to yes in the mapping), it will
be used, otherwise, the actual _source will be loaded and the relevant
field will be extracted from it.</p>
<p>If no term_vector information is provided (by setting it to
with_positions_offsets in the mapping), then the plain highlighter will be
used. If it is provided, then the fast vector highlighter will be used.
When term vectors are available, highlighting will be performed faster at
the cost of bigger index size.</p>
<p>See http://www.elasticsearch.org/guide/reference/api/search/highlighting.html</p>
@name ejs.Highlight
@ejs request
@desc
<p>Allows to highlight search results on one or more fields.</p>
@param {(String|String[])} fields An optional field or array of fields to highlight.
*/
ejs.Highlight = function (fields) {
var highlight = {
fields: {}
},
addOption = function (field, option, val) {
if (field == null) {
highlight[option] = val;
} else {
if (!has(highlight.fields, field)) {
highlight.fields[field] = {};
}
highlight.fields[field][option] = val;
}
};
if (fields != null) {
if (isString(fields)) {
highlight.fields[fields] = {};
} else if (isArray(fields)) {
each(fields, function (field) {
highlight.fields[field] = {};
});
}
}
return {
/**
Allows you to set the fields that will be highlighted. You can
specify a single field or an array of fields. All fields are
added to the current list of fields.
@member ejs.Highlight
@param {(String|String[])} vals A field name or array of field names.
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
fields: function (vals) {
if (vals == null) {
return highlight.fields;
}
if (isString(vals)) {
if (!has(highlight.fields, vals)) {
highlight.fields[vals] = {};
}
} else if (isArray(vals)) {
each(vals, function (field) {
if (!has(highlight.fields, field)) {
highlight.fields[field] = {};
}
});
}
},
/**
Sets the pre tags for highlighted fragments. You can apply the
tags to a specific field by passing the field name in to the
<code>oField</code> parameter.
@member ejs.Highlight
@param {(String|String[])} tags A single tag or an array of tags.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
preTags: function (tags, oField) {
if (tags === null && oField != null) {
return highlight.fields[oField].pre_tags;
} else if (tags == null) {
return highlight.pre_tags;
}
if (isString(tags)) {
addOption(oField, 'pre_tags', [tags]);
} else if (isArray(tags)) {
addOption(oField, 'pre_tags', tags);
}
return this;
},
/**
Sets the post tags for highlighted fragments. You can apply the
tags to a specific field by passing the field name in to the
<code>oField</code> parameter.
@member ejs.Highlight
@param {(String|String[])} tags A single tag or an array of tags.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
postTags: function (tags, oField) {
if (tags === null && oField != null) {
return highlight.fields[oField].post_tags;
} else if (tags == null) {
return highlight.post_tags;
}
if (isString(tags)) {
addOption(oField, 'post_tags', [tags]);
} else if (isArray(tags)) {
addOption(oField, 'post_tags', tags);
}
return this;
},
/**
Sets the order of highlight fragments. You can apply the option
to a specific field by passing the field name in to the
<code>oField</code> parameter. Valid values for order are:
score - the score calculated by Lucene's highlighting framework.
@member ejs.Highlight
@param {String} o The order. Currently only "score".
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
order: function (o, oField) {
if (o === null && oField != null) {
return highlight.fields[oField].order;
} else if (o == null) {
return highlight.order;
}
o = o.toLowerCase();
if (o === 'score') {
addOption(oField, 'order', o);
}
return this;
},
/**
Sets the schema to be used for the tags. Valid values are:
styled - 10 <em> pre tags with css class of hltN, where N is 1-10
@member ejs.Highlight
@param {String} s The schema. Currently only "styled".
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
tagsSchema: function (s) {
if (s == null) {
return highlight.tags_schema;
}
s = s.toLowerCase();
if (s === 'styled') {
highlight.tags_schema = s;
}
return this;
},
/**
Enables highlights in documents matched by a filter.
You can apply the option to a specific field by passing the field
name in to the <code>oField</code> parameter. Defaults to false.
@member ejs.Highlight
@param {Boolean} trueFalse If filtered docs should be highlighted.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
highlightFilter: function (trueFalse, oField) {
if (trueFalse === null && oField != null) {
return highlight.fields[oField].highlight_filter;
} else if (trueFalse == null) {
return highlight.highlight_filter;
}
addOption(oField, 'highlight_filter', trueFalse);
return this;
},
/**
Sets the size of each highlight fragment in characters.
You can apply the option to a specific field by passing the field
name in to the <code>oField</code> parameter. Default: 100
@member ejs.Highlight
@param {Integer} size The fragment size in characters.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
fragmentSize: function (size, oField) {
if (size === null && oField != null) {
return highlight.fields[oField].fragment_size;
} else if (size == null) {
return highlight.fragment_size;
}
addOption(oField, 'fragment_size', size);
return this;
},
/**
Sets the number of highlight fragments.
You can apply the option to a specific field by passing the field
name in to the <code>oField</code> parameter. Default: 5
@member ejs.Highlight
@param {Integer} cnt The fragment size in characters.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
numberOfFragments: function (cnt, oField) {
if (cnt === null && oField != null) {
return highlight.fields[oField].number_of_fragments;
} else if (cnt == null) {
return highlight.number_of_fragments;
}
addOption(oField, 'number_of_fragments', cnt);
return this;
},
/**
Sets highlight encoder. Valid values are:
default - the default, no encoding
html - to encode html characters if you use html tags
@member ejs.Highlight
@param {String} e The encoder. default or html
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
encoder: function (e) {
if (e == null) {
return highlight.encoder;
}
e = e.toLowerCase();
if (e === 'default' || e === 'html') {
highlight.encoder = e;
}
return this;
},
/**
When enabled it will cause a field to be highlighted only if a
query matched that field. false means that terms are highlighted
on all requested fields regardless if the query matches
specifically on them. You can apply the option to a specific
field by passing the field name in to the <code>oField</code>
parameter. Defaults to false.
@member ejs.Highlight
@param {Boolean} trueFalse If filtered docs should be highlighted.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
requireFieldMatch: function (trueFalse, oField) {
if (trueFalse === null && oField != null) {
return highlight.fields[oField].require_field_match;
} else if (trueFalse == null) {
return highlight.require_field_match;
}
addOption(oField, 'require_field_match', trueFalse);
return this;
},
/**
Sets the max number of characters to scan while looking for the
start of a boundary character. You can apply the option to a
specific field by passing the field name in to the
<code>oField</code> parameter. Default: 20
@member ejs.Highlight
@param {Integer} cnt The max characters to scan.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
boundaryMaxScan: function (cnt, oField) {
if (cnt === null && oField != null) {
return highlight.fields[oField].boundary_max_scan;
} else if (cnt == null) {
return highlight.boundary_max_scan;
}
addOption(oField, 'boundary_max_scan', cnt);
return this;
},
/**
Set's the boundary characters. When highlighting a field that is
mapped with term vectors, boundary_chars can be configured to
define what constitutes a boundary for highlighting. It’s a single
string with each boundary character defined in it. You can apply
the option to a specific field by passing the field name in to
the <code>oField</code> parameter. It defaults to ".,!? \t\n".
@member ejs.Highlight
@param {String} charStr The boundary chars in a string.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
boundaryChars: function (charStr, oField) {
if (charStr === null && oField != null) {
return highlight.fields[oField].boundary_chars;
} else if (charStr == null) {
return highlight.boundary_chars;
}
addOption(oField, 'boundary_chars', charStr);
return this;
},
/**
Sets the highligher type. You can apply the option
to a specific field by passing the field name in to the
<code>oField</code> parameter. Valid values for order are:
plain - the slower Lucene standard highligher
postings - the postings highligher
fvh - the fast vector based highligher
@member ejs.Highlight
@param {String} t The highligher.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
type: function (t, oField) {
if (t === null && oField != null) {
return highlight.fields[oField].type;
} else if (t == null) {
return highlight.type;
}
t = t.toLowerCase();
if (t === 'fvh' || t === 'plain' ||
t === 'postings') {
addOption(oField, 'type', t);
}
return this;
},
/**
Sets the fragmenter type. You can apply the option
to a specific field by passing the field name in to the
<code>oField</code> parameter. Valid values for order are:
simple - breaks text up into same-size fragments with no concerns
over spotting sentence boundaries.
span - breaks text up into same-size fragments but does not split
up Spans.
@member ejs.Highlight
@param {String} f The fragmenter.
@param {String} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
fragmenter: function (f, oField) {
if (f === null && oField != null) {
return highlight.fields[oField].fragmenter;
} else if (f == null) {
return highlight.fragmenter;
}
f = f.toLowerCase();
if (f === 'simple' || f === 'span') {
addOption(oField, 'fragmenter', f);
}
return this;
},
/**
Sets arbitrary options that can be passed to the highlighter
implementation in use.
@since elasticsearch 0.90.1
@member ejs.Highlight
@param {String} opts A map/object of option name and values.
@param {Object} oField An optional field name
@returns {Object} returns <code>this</code> so that calls can be chained.
*/
options: function (opts, oField) {
if (opts === null && oField != null) {
return highlight.fields[oField].options;
} else if (opts == null) {
return highlight.options;
}
if (!isObject(opts) || isArray(opts) || isEJSObject(opts)) {
throw new TypeError('Parameter must be an object');
}
addOption(oField, 'options', opts);
return this;
},
/**
The type of ejs object. For internal use only.
@member ejs.Highlight
@returns {String} the type of object
*/
_type: function () {
return 'highlight';
},
/**
Retrieves the internal <code>script</code> object. This is typically used by
internal API functions so use with caution.
@member ejs.Highlight
@returns {String} returns this object's internal object representation.
*/
toJSON: function () {
return highlight;
}
};
};