2020-01-15 05:55:46 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
2020-10-01 05:01:39 -07:00
|
|
|
IExecuteSingleFunctions,
|
2020-01-15 05:55:46 -08:00
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject, JsonObject, NodeApiError } from 'n8n-workflow';
|
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
|
|
|
import { OptionsWithUri } from 'request';
|
2020-02-10 14:04:15 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function mauticApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query?: IDataObject,
|
|
|
|
uri?: string,
|
|
|
|
): Promise<any> {
|
2020-06-10 14:37:01 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0, 'credentials') as string;
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
const options: OptionsWithUri = {
|
2020-06-10 14:37:01 -07:00
|
|
|
headers: {},
|
2020-01-15 05:55:46 -08:00
|
|
|
method,
|
|
|
|
qs: query,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `/api${endpoint}`,
|
2020-01-15 05:55:46 -08:00
|
|
|
body,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-01-15 05:55:46 -08:00
|
|
|
};
|
2020-06-10 14:37:01 -07:00
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
try {
|
2020-06-10 14:37:01 -07:00
|
|
|
let returnData;
|
|
|
|
|
|
|
|
if (authenticationMethod === 'credentials') {
|
2022-07-24 09:10:26 -07:00
|
|
|
const credentials = await this.getCredentials('mauticApi');
|
|
|
|
const baseUrl = credentials.url as string;
|
|
|
|
|
|
|
|
options.uri = `${baseUrl.endsWith('/') ? baseUrl.slice(0, -1) : baseUrl}${options.uri}`;
|
2020-06-10 14:37:01 -07:00
|
|
|
//@ts-ignore
|
2022-07-24 09:10:26 -07:00
|
|
|
returnData = await this.helpers.requestWithAuthentication.call(this, 'mauticApi', options);
|
2020-06-10 14:37:01 -07:00
|
|
|
} else {
|
2022-04-14 23:00:47 -07:00
|
|
|
const credentials = await this.getCredentials('mauticOAuth2Api');
|
|
|
|
const baseUrl = credentials.url as string;
|
2020-06-10 14:37:01 -07:00
|
|
|
|
2022-04-01 08:31:43 -07:00
|
|
|
options.uri = `${baseUrl.endsWith('/') ? baseUrl.slice(0, -1) : baseUrl}${options.uri}`;
|
2020-06-10 14:37:01 -07:00
|
|
|
//@ts-ignore
|
2022-08-17 08:50:24 -07:00
|
|
|
returnData = await this.helpers.requestOAuth2.call(this, 'mauticOAuth2Api', options, {
|
|
|
|
includeCredentialsOnRefreshOnBody: true,
|
|
|
|
});
|
2020-06-10 14:37:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (returnData.errors) {
|
2020-02-10 14:04:15 -08:00
|
|
|
// They seem to to sometimes return 200 status but still error.
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), returnData);
|
2020-02-10 14:04:15 -08:00
|
|
|
}
|
2020-01-15 05:55:46 -08:00
|
|
|
|
2020-02-10 14:04:15 -08:00
|
|
|
return returnData;
|
|
|
|
} catch (error) {
|
2022-02-28 00:04:55 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-01-15 05:55:46 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to paginated mautic endpoint
|
|
|
|
* and return all results
|
|
|
|
*/
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function mauticApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-01-15 05:55:46 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.limit = 30;
|
|
|
|
query.start = 0;
|
|
|
|
|
|
|
|
do {
|
2020-01-15 18:53:43 -08:00
|
|
|
responseData = await mauticApiRequest.call(this, method, endpoint, body, query);
|
|
|
|
const values = Object.values(responseData[propertyName]);
|
2022-01-21 01:42:14 -08:00
|
|
|
//@ts-ignore
|
|
|
|
returnData.push.apply(returnData, values);
|
|
|
|
query.start += query.limit;
|
2020-01-15 05:55:46 -08:00
|
|
|
} while (
|
|
|
|
responseData.total !== undefined &&
|
2022-08-17 08:50:24 -07:00
|
|
|
returnData.length - parseInt(responseData.total, 10) < 0
|
2020-10-23 00:31:32 -07:00
|
|
|
);
|
2020-01-15 05:55:46 -08:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export function validateJSON(json: string | undefined): any {
|
2020-01-15 05:55:46 -08:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|