forked from jeffdonthemic/node-red-contrib-elasticsearch-jd
-
Notifications
You must be signed in to change notification settings - Fork 5
/
search.js
82 lines (71 loc) · 2.59 KB
/
search.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
module.exports = function (RED) {
var elasticsearch = require('elasticsearch');
function Search(config) {
RED.nodes.createNode(this, config);
this.server = RED.nodes.getNode(config.server);
var node = this;
this.on('input', function (msg) {
var client = new elasticsearch.Client({
hosts: node.server.host.split(' '),
timeout: node.server.timeout,
requestTimeout: node.server.reqtimeout
});
var documentIndex = config.documentIndex;
var documentType = config.documentType;
var query = config.query;
var maxResults = config.maxResults;
var sort = config.sort;
var includeFields = config.includeFields;
// check for overriding message properties
if (msg.hasOwnProperty("documentIndex")) {
documentIndex = msg.documentIndex;
}
if (msg.hasOwnProperty("documentType")) {
documentType = msg.documentType;
}
if (msg.hasOwnProperty("query")) {
query = msg.query;
}
if (msg.hasOwnProperty("maxResults")) {
maxResults = msg.maxResults;
}
if (msg.hasOwnProperty("sort")) {
sort = msg.sort;
}
if (msg.hasOwnProperty("includeFields")) {
includeFields = msg.includeFields;
}
if (typeof includeFields !== "undefined" && includeFields.indexOf(",") > 0) {
includeFields = includeFields.split(",");
}
// construct the search params
var params = {
size: maxResults,
sort: sort,
_sourceInclude: includeFields
};
if (documentIndex !== '')
params.index = documentIndex;
if (documentType !== '')
params.type = documentType;
if (msg.hasOwnProperty("body")) {
params.body = msg.body;
} else {
params.body = {
query: {
query_string: {
query: query
}
}
};
}
client.search(params).then(function (resp) {
msg.payload = resp.hits;
node.send(msg);
}, function (err) {
node.error(err);
});
});
}
RED.nodes.registerType("es-search", Search);
};