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

69 lines
1.8 KiB
TypeScript
Raw Normal View History

2020-02-11 23:52:36 -08:00
import {
IExecuteFunctions,
IHookFunctions,
} from 'n8n-core';
import {
IDataObject,
} 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 = this.getCredentials('moceanApi');
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
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) {
if (error.statusCode === 401) {
// Return a clear error
throw new Error('Authentication failed.');
2020-02-11 23:52:36 -08:00
}
if (error.response && error.response.body && error.response.body.message) {
// Try to return the error prettier
let errorMessage = error.response.body.message;
2020-02-11 23:52:36 -08:00
if (error.response.body.more_info) {
errorMessage += `errorMessage (${error.response.body.more_info})`;
2020-02-11 23:52:36 -08:00
}
throw new Error(`Mocean error response [${error.statusCode}]: ${errorMessage}`);
2020-02-11 23:52:36 -08:00
}
// If that data does not exist for some reason return the actual error
throw error;
}
}