n8n/packages/nodes-base/nodes/ElasticSearch/GenericFunctions.ts

60 lines
1 KiB
TypeScript
Raw Normal View History

2021-05-14 07:50:58 -07:00
import {
OptionsWithUri,
} from 'request';
import {
IExecuteFunctions,
} from 'n8n-core';
import {
IDataObject,
NodeApiError,
} from 'n8n-workflow';
import {
2021-05-27 00:44:48 -07:00
ElasticsearchApiCredentials,
2021-05-14 07:50:58 -07:00
} from './types';
2021-05-27 00:44:48 -07:00
export async function elasticsearchApiRequest(
2021-05-14 07:50:58 -07:00
this: IExecuteFunctions,
2021-05-17 06:27:47 -07:00
method: 'GET' | 'PUT' | 'POST' | 'DELETE',
2021-05-14 07:50:58 -07:00
endpoint: string,
body: IDataObject = {},
qs: IDataObject = {},
) {
2021-05-17 06:27:47 -07:00
const {
username,
password,
baseUrl,
2021-05-27 00:44:48 -07:00
} = this.getCredentials('elasticsearchApi') as ElasticsearchApiCredentials;
2021-05-14 07:50:58 -07:00
const token = Buffer.from(`${username}:${password}`).toString('base64');
const options: OptionsWithUri = {
headers: {
Authorization: `Basic ${token}`,
'Content-Type': 'application/json',
},
method,
body,
qs,
uri: `${baseUrl}${endpoint}`,
json: true,
};
if (!Object.keys(body).length) {
delete options.body;
}
if (!Object.keys(qs).length) {
delete options.qs;
}
try {
2021-05-21 05:49:11 -07:00
// console.log(options);
2021-05-14 07:50:58 -07:00
return await this.helpers.request(options);
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}
}