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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.1 KiB
TypeScript
Raw Normal View History

import type { IExecuteFunctions, IHookFunctions, IDataObject, JsonObject } from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-02-11 23:52:36 -08:00
/**
* Make an API request to Twilio
*
*/
export async function moceanApiRequest(
this: IHookFunctions | IExecuteFunctions,
method: string,
endpoint: string,
body: IDataObject,
query?: IDataObject,
): Promise<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
}
}