2022-08-17 08:50:24 -07:00
|
|
|
import { IExecuteFunctions, IHookFunctions } from 'n8n-core';
|
2020-02-11 23:52:36 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject, JsonObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
2020-02-11 23:52:36 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to Twilio
|
|
|
|
*
|
|
|
|
* @param {IHookFunctions} this
|
|
|
|
* @param {string} method
|
|
|
|
* @param {string} url
|
|
|
|
* @param {object} body
|
|
|
|
* @returns {Promise<any>}
|
|
|
|
*/
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function moceanApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: IDataObject,
|
|
|
|
query?: IDataObject,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('moceanApi');
|
2020-02-11 23:52:36 -08:00
|
|
|
|
|
|
|
if (query === undefined) {
|
|
|
|
query = {};
|
2020-02-14 21:39:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
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';
|
2020-02-14 21:39:53 -08:00
|
|
|
} 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-14 21:39:53 -08:00
|
|
|
}
|
|
|
|
|
2020-02-11 23:52:36 -08:00
|
|
|
const options = {
|
|
|
|
method,
|
|
|
|
form: body,
|
|
|
|
qs: query,
|
|
|
|
uri: `https://rest.moceanapi.com${endpoint}`,
|
2020-02-14 21:39:53 -08:00
|
|
|
json: true,
|
2020-02-11 23:52:36 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
return await this.helpers.request(options);
|
|
|
|
} catch (error) {
|
2022-08-17 08:50:24 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-02-11 23:52:36 -08:00
|
|
|
}
|
2020-02-14 21:39:53 -08:00
|
|
|
}
|