2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IDataObject,
|
2020-10-28 15:03:29 -07:00
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
2024-12-16 05:44:52 -08:00
|
|
|
INodePropertyOptions,
|
2023-03-09 09:13:15 -08:00
|
|
|
JsonObject,
|
2024-12-16 05:44:52 -08:00
|
|
|
IHttpRequestOptions,
|
2024-02-14 07:29:09 -08:00
|
|
|
IHttpRequestMethods,
|
2023-03-09 09:13:15 -08:00
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2020-10-28 15:03:29 -07:00
|
|
|
|
2024-12-16 05:44:52 -08:00
|
|
|
import type { CustomField } from './v2/MailerLite.Interface';
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function mailerliteApiRequest(
|
2023-08-16 06:52:41 -07:00
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
2024-02-14 07:29:09 -08:00
|
|
|
method: IHttpRequestMethods,
|
2022-08-17 08:50:24 -07:00
|
|
|
path: string,
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
2022-11-08 06:28:21 -08:00
|
|
|
_option = {},
|
2022-08-17 08:50:24 -07:00
|
|
|
): Promise<any> {
|
2024-12-16 05:44:52 -08:00
|
|
|
const options: IHttpRequestOptions = {
|
2020-10-28 15:03:29 -07:00
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
2024-12-16 05:44:52 -08:00
|
|
|
url:
|
|
|
|
this.getNode().typeVersion === 1
|
|
|
|
? `https://api.mailerlite.com/api/v2${path}`
|
|
|
|
: `https://connect.mailerlite.com/api${path}`,
|
2020-10-28 15:03:29 -07:00
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
try {
|
2023-02-27 19:39:43 -08:00
|
|
|
if (Object.keys(body as IDataObject).length === 0) {
|
2020-10-28 15:03:29 -07:00
|
|
|
delete options.body;
|
|
|
|
}
|
2024-12-16 05:44:52 -08:00
|
|
|
return await this.helpers.httpRequestWithAuthentication.call(this, 'mailerLiteApi', options);
|
2020-10-28 15:03:29 -07:00
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-10-28 15:03:29 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function mailerliteApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
2024-02-14 07:29:09 -08:00
|
|
|
method: IHttpRequestMethods,
|
2022-08-17 08:50:24 -07:00
|
|
|
endpoint: string,
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-10-28 15:03:29 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
query.limit = 1000;
|
|
|
|
query.offset = 0;
|
|
|
|
|
2024-12-16 05:44:52 -08:00
|
|
|
if (this.getNode().typeVersion === 1) {
|
|
|
|
do {
|
|
|
|
responseData = await mailerliteApiRequest.call(this, method, endpoint, body, query);
|
|
|
|
returnData.push(...(responseData as IDataObject[]));
|
|
|
|
query.offset += query.limit;
|
|
|
|
} while (responseData.length !== 0);
|
|
|
|
} else {
|
|
|
|
do {
|
|
|
|
responseData = await mailerliteApiRequest.call(this, method, endpoint, body, query);
|
|
|
|
returnData.push(...(responseData.data as IDataObject[]));
|
|
|
|
query.cursor = responseData.meta.next_cursor;
|
|
|
|
} while (responseData.links.next !== null);
|
|
|
|
}
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getCustomFields(
|
|
|
|
this: ILoadOptionsFunctions,
|
|
|
|
): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const endpoint = '/fields';
|
|
|
|
const fieldsResponse = await mailerliteApiRequest.call(this, 'GET', endpoint);
|
|
|
|
|
|
|
|
if (this.getNode().typeVersion === 1) {
|
|
|
|
const fields = fieldsResponse as CustomField[];
|
|
|
|
fields.forEach((field) => {
|
|
|
|
returnData.push({
|
|
|
|
name: field.key,
|
|
|
|
value: field.key,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const fields = (fieldsResponse as IDataObject).data as CustomField[];
|
|
|
|
fields.forEach((field) => {
|
|
|
|
returnData.push({
|
|
|
|
name: field.name,
|
|
|
|
value: field.key,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-10-28 15:03:29 -07:00
|
|
|
return returnData;
|
|
|
|
}
|