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

50 lines
1.3 KiB
TypeScript
Raw Normal View History

2020-02-11 23:52:36 -08:00
import {
IExecuteFunctions,
IHookFunctions,
} from 'n8n-core';
import {
IDataObject, JsonObject, NodeApiError, NodeOperationError,
2020-02-11 23:52:36 -08:00
} from 'n8n-workflow';
/**
* Make an API request to Twilio
*
* @param {IHookFunctions} this
* @param {string} method
* @param {string} url
* @param {object} body
* @returns {Promise<any>}
*/
export async function moceanApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: IDataObject, query?: IDataObject): Promise<any> { // tslint:disable-line:no-any
const credentials = await this.getCredentials('moceanApi');
2020-02-11 23:52:36 -08:00
if (query === undefined) {
query = {};
}
if (method === 'POST') {
body['mocean-api-key'] = credentials['mocean-api-key'];
2020-02-11 23:52:36 -08:00
body['mocean-api-secret'] = credentials['mocean-api-secret'];
body['mocean-resp-format'] = 'JSON';
} else if (method === 'GET') {
query['mocean-api-key'] = credentials['mocean-api-key'];
2020-02-11 23:52:36 -08:00
query['mocean-api-secret'] = credentials['mocean-api-secret'];
query['mocean-resp-format'] = 'JSON';
}
2020-02-11 23:52:36 -08:00
const options = {
method,
form: body,
qs: query,
uri: `https://rest.moceanapi.com${endpoint}`,
json: true,
2020-02-11 23:52:36 -08:00
};
try {
return await this.helpers.request(options);
} catch (error) {
throw new NodeApiError(this.getNode(), (error as JsonObject));
2020-02-11 23:52:36 -08:00
}
}