2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUrl } from 'request';
|
2019-11-12 12:48:45 -08:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IDataObject,
|
2019-11-12 12:48:45 -08:00
|
|
|
IExecuteFunctions,
|
2020-05-22 06:47:47 -07:00
|
|
|
IExecuteSingleFunctions,
|
2019-11-12 12:48:45 -08:00
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
2023-03-09 09:13:15 -08:00
|
|
|
JsonObject,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError, NodeOperationError } from 'n8n-workflow';
|
2022-08-17 08:50:24 -07:00
|
|
|
|
2023-01-13 09:11:56 -08:00
|
|
|
async function getMetadata(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
oauthTokenData: IDataObject,
|
|
|
|
) {
|
|
|
|
const credentials = await this.getCredentials('mailchimpOAuth2Api');
|
|
|
|
const options: OptionsWithUrl = {
|
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
Authorization: `OAuth ${oauthTokenData.access_token}`,
|
|
|
|
},
|
|
|
|
method: 'GET',
|
|
|
|
url: credentials.metadataUrl as string,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
return this.helpers.request(options);
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function mailchimpApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
endpoint: string,
|
|
|
|
method: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
2022-11-08 06:28:21 -08:00
|
|
|
_headers?: object,
|
2022-08-17 08:50:24 -07:00
|
|
|
): Promise<any> {
|
2020-06-04 06:54:39 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
|
2019-11-15 12:44:46 -08:00
|
|
|
|
|
|
|
const host = 'api.mailchimp.com/3.0';
|
2019-11-12 12:48:45 -08:00
|
|
|
|
2020-06-04 06:54:39 -07:00
|
|
|
const options: OptionsWithUrl = {
|
|
|
|
headers: {
|
2022-08-17 08:50:24 -07:00
|
|
|
Accept: 'application/json',
|
2020-06-04 06:54:39 -07:00
|
|
|
},
|
2019-11-12 12:48:45 -08:00
|
|
|
method,
|
2020-05-22 06:47:47 -07:00
|
|
|
qs,
|
2020-06-04 06:54:39 -07:00
|
|
|
body,
|
2022-12-29 03:20:43 -08:00
|
|
|
url: '',
|
2019-11-15 12:44:46 -08:00
|
|
|
json: true,
|
2019-11-12 12:48:45 -08:00
|
|
|
};
|
|
|
|
|
2023-02-27 19:39:43 -08:00
|
|
|
if (Object.keys(body as IDataObject).length === 0) {
|
2020-06-04 06:54:39 -07:00
|
|
|
delete options.body;
|
2019-11-12 12:48:45 -08:00
|
|
|
}
|
2020-06-04 06:54:39 -07:00
|
|
|
|
2019-11-12 12:48:45 -08:00
|
|
|
try {
|
2020-06-13 19:37:03 -07:00
|
|
|
if (authenticationMethod === 'apiKey') {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('mailchimpApi');
|
2020-06-04 06:54:39 -07:00
|
|
|
if (!(credentials.apiKey as string).includes('-')) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'The API key is not valid!');
|
2020-06-04 06:54:39 -07:00
|
|
|
}
|
|
|
|
const datacenter = (credentials.apiKey as string).split('-').pop();
|
|
|
|
options.url = `https://${datacenter}.${host}${endpoint}`;
|
feat: Add more credentials tests (#3668)
* ✨ Add injection to notion,
Add test to notion in cred
* 🔥 Remove unuse method
* 🎨 Move testing from node file to cred file
* ✨ Add injection and testing in facebook graph
* Add cred injec with testing
* Add Cred injection and cred test
* Add cred injection, and cred testing for typeform, fix issue in clickup
* Add cred injection, move testing inside creds
* Add cred injection and cred testing to SendGrid
* Add cred injection and cred testing to woocommerce
* Add cred injection, add cred test to gitlab
* 🔥 Fix duplicated imports in Mautic cred
* 🔥 removed unused credentials testing in node
* Add cred injection, cred testing, handles slash trailing for Grafana node
* Add cred injection, cred testing to shopify
* Add cred injection , add cred testing to stripe
* changed cred injection, add testing to cred for mattermost
* add cred injection and testing for dropbox
* Add cred injection, cred testing to webflow
* ✨ Add cred injection and cred test to nocodb
* ✨ Add cred injection, cred testing to mailchimp
* 🐛 fix a bug In credentials testing
* ✨ Add cred injection, cred testing to sms77
* ✨ Add cred injection, cred testing to ActiveCampaign
* Add cred injection, cred testing to TheHive
* ✨ Add cred injection, add cred testing to ApiTemplateio
* ✨ Add cred injection, add cred testing for zoom
* ✨ Add cred injection, cred testing to rocketchat
* ✨ Add cred injection, add cred test to getResponse
* 🔥 Remove useless authentcate creds and testing from facebookGraphApp
* 🔥 Remove useless imports in FacebookGrappApp credentials file
* 🔥 Removed useless imports and if statement
* 🐛 Add version to header when testing cred
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: Jan Oberhauser <janober@users.noreply.github.com>
2022-07-15 07:20:41 -07:00
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'mailchimpApi', options);
|
2020-06-04 06:54:39 -07:00
|
|
|
} else {
|
2022-04-14 23:00:47 -07:00
|
|
|
const credentials = await this.getCredentials('mailchimpOAuth2Api');
|
2020-06-13 19:37:03 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { api_endpoint } = await getMetadata.call(
|
|
|
|
this,
|
|
|
|
credentials.oauthTokenData as IDataObject,
|
|
|
|
);
|
2020-06-13 19:37:03 -07:00
|
|
|
|
|
|
|
options.url = `${api_endpoint}/3.0${endpoint}`;
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'mailchimpOAuth2Api', options, {
|
2022-08-17 08:50:24 -07:00
|
|
|
tokenType: 'Bearer',
|
|
|
|
});
|
2020-06-04 06:54:39 -07:00
|
|
|
}
|
2019-11-12 12:48:45 -08:00
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2019-11-12 12:48:45 -08:00
|
|
|
}
|
|
|
|
}
|
2019-11-14 15:44:07 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function mailchimpApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
endpoint: string,
|
|
|
|
method: string,
|
|
|
|
propertyName: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-05-22 06:47:47 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
query.offset = 0;
|
|
|
|
query.count = 500;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await mailchimpApiRequest.call(this, endpoint, method, body, query);
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
2020-05-22 06:47:47 -07:00
|
|
|
query.offset += query.count;
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData[propertyName] && responseData[propertyName].length !== 0);
|
2020-05-22 06:47:47 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export function validateJSON(json: string | undefined): any {
|
2019-11-14 15:44:07 -08:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = '';
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2020-06-13 19:37:03 -07:00
|
|
|
|
2020-10-05 15:44:52 -07:00
|
|
|
export const campaignFieldsMetadata = [
|
|
|
|
'*',
|
|
|
|
'campaigns.id',
|
|
|
|
'campaigns.web_id',
|
|
|
|
'campaigns.type',
|
|
|
|
'campaigns.create_time',
|
|
|
|
'campaigns.archive_url',
|
|
|
|
'campaigns.long_archive_url',
|
|
|
|
'campaigns.status',
|
|
|
|
'campaigns.emails_sent',
|
|
|
|
'campaigns.send_time',
|
|
|
|
'campaigns.content_type',
|
|
|
|
'campaigns.needs_block_refresh',
|
|
|
|
'campaigns.resendable',
|
|
|
|
'campaigns.recipients',
|
|
|
|
'campaigns.recipients.list_id',
|
|
|
|
'campaigns.recipients.list_is_active',
|
|
|
|
'campaigns.recipients.list_name',
|
|
|
|
'campaigns.recipients.segment_text',
|
|
|
|
'campaigns.recipients.recipient_count',
|
|
|
|
'campaigns.settings',
|
|
|
|
'campaigns.settings.subject_line',
|
|
|
|
'campaigns.settings.preview_text',
|
|
|
|
'campaigns.settings.title',
|
|
|
|
'campaigns.settings.from_name',
|
|
|
|
'campaigns.settings.reply_to',
|
|
|
|
'campaigns.settings.use_conversation',
|
|
|
|
'campaigns.settings.to_name',
|
|
|
|
'campaigns.settings.folder_id',
|
|
|
|
'campaigns.settings.authenticate',
|
|
|
|
'campaigns.settings.auto_footer',
|
|
|
|
'campaigns.settings.inline_css',
|
|
|
|
'campaigns.settings.auto_tweet',
|
|
|
|
'campaigns.settings.fb_comments',
|
|
|
|
'campaigns.settings.timewarp',
|
|
|
|
'campaigns.settings.template_id',
|
|
|
|
'campaigns.settings.drag_and_drop',
|
|
|
|
'campaigns.tracking',
|
|
|
|
'campaigns.tracking.opens',
|
|
|
|
'campaigns.tracking.html_clicks',
|
|
|
|
'campaigns.tracking.text_clicks',
|
|
|
|
'campaigns.tracking.goal_tracking',
|
|
|
|
'campaigns.tracking.ecomm360',
|
|
|
|
'campaigns.tracking.google_analytics',
|
|
|
|
'campaigns.tracking.clicktale',
|
|
|
|
'campaigns.report_summary',
|
|
|
|
'campaigns.report_summary.opens',
|
|
|
|
'campaigns.report_summary.unique_opens',
|
|
|
|
'campaigns.report_summary.open_rate',
|
|
|
|
'campaigns.report_summary.clicks',
|
|
|
|
'campaigns.report_summary.subscriber_clicks',
|
|
|
|
'campaigns.report_summary.click_rate',
|
|
|
|
'campaigns.report_summary.click_rate.ecommerce',
|
|
|
|
'campaigns.report_summary.click_rate.ecommerce.total_orders',
|
|
|
|
'campaigns.report_summary.click_rate.ecommerce.total_spent',
|
|
|
|
'campaigns.report_summary.click_rate.ecommerce.total_revenue',
|
|
|
|
'campaigns.report_summary.delivery_status.enabled',
|
|
|
|
'campaigns._links',
|
|
|
|
];
|