mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import type { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
import type { IDataObject, IHttpRequestMethods, IHttpRequestOptions } from 'n8n-workflow';
|
|
|
|
import { get } from 'lodash';
|
|
|
|
export async function customerIoApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
body: object,
|
|
baseApi?: string,
|
|
_query?: IDataObject,
|
|
) {
|
|
const credentials = await this.getCredentials('customerIoApi');
|
|
const options: IHttpRequestOptions = {
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
method: method as IHttpRequestMethods,
|
|
body,
|
|
url: '',
|
|
json: true,
|
|
};
|
|
|
|
if (baseApi === 'tracking') {
|
|
const region = credentials.region;
|
|
options.url = `https://${region}/api/v1${endpoint}`;
|
|
} else if (baseApi === 'api') {
|
|
options.url = `https://api.customer.io/v1/api${endpoint}`;
|
|
} else if (baseApi === 'beta') {
|
|
options.url = `https://beta-api.customer.io/v1/api${endpoint}`;
|
|
}
|
|
|
|
return this.helpers.requestWithAuthentication.call(this, 'customerIoApi', options);
|
|
}
|
|
|
|
export function eventExists(currentEvents: string[], webhookEvents: IDataObject) {
|
|
for (const currentEvent of currentEvents) {
|
|
if (
|
|
get(webhookEvents, `${currentEvent.split('.')[0]}.${currentEvent.split('.')[1]}`) !== true
|
|
) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
export function validateJSON(json: string | undefined): any {
|
|
let result;
|
|
try {
|
|
result = JSON.parse(json!);
|
|
} catch (exception) {
|
|
result = undefined;
|
|
}
|
|
return result;
|
|
}
|