-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathes.js
84 lines (69 loc) · 1.81 KB
/
es.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
'use strict';
let AWS = require('aws-sdk');
let aws4 = require('aws4');
let got = require('got');
const region = process.env.region;
const host = process.env.host || '%ES_DOMAIN%';
const awsConfig = new AWS.Config({region});
function request(options) {
const opts = Object.assign({
host,
region: awsConfig.region,
protocol: 'https:',
headers: {
'Accept': '*/*',
'Content-Type':"application/json"
},
json: true
}, options);
try {
var testJSON = JSON.parse(opts.body);
console.log("Valid JSON")
} catch(e) {
opts.body = JSON.stringify(opts.body);
console.log("Needed Encoding")
}
aws4.sign(opts, awsConfig.credentials);
const method = opts.method;
const path = opts.path;
const body = opts.body;
console.log(JSON.stringify({method, path, host, body}), 'Performing request');
console.log(opts);
return Promise.resolve(got(opts)).then(resp => resp.body).catch((err) => {
console.log("Got Request Error", err);
});
}
const es = {};
const METHODS = [
'get',
'post',
'put',
'delete'
];
METHODS.forEach(method => {
es[method] = (path, body) => {
if (!body) {
body = {};
}
return request({
path,
method: method.toUpperCase(),
body: body
})
}
});
es.bulk = ops => request({
path: '/_bulk',
method: 'POST',
body: ops.map(op => `${JSON.stringify(op)}\n`).join('')
});
es.getRecord = function (index, type, id) {
es.get(`${index}/${type}/${id}`);
};
es.indexRecord = function (index, type, id, body) {
es.put(`/${index}/${type}/${id}`, body);
};
es.deleteRecord = function (index, type, id) {
es.delete(`/${index}/${type}/${id}`);
};
module.exports = es;