2020-10-23 00:31:32 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
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';
|
|
|
|
|
|
|
|
import {
|
2022-04-01 08:31:43 -07:00
|
|
|
ICredentialDataDecryptedObject,
|
|
|
|
ICredentialTestFunctions,
|
|
|
|
IDataObject,
|
|
|
|
JsonObject,
|
|
|
|
NodeApiError,
|
2020-01-15 05:55:46 -08:00
|
|
|
} from 'n8n-workflow';
|
2020-02-10 14:04:15 -08:00
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
export async function mauticApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any = {}, query?: IDataObject, uri?: string): Promise<any> { // tslint:disable-line:no-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,
|
2020-06-10 14:37:01 -07: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-02-10 14:04:15 -08:00
|
|
|
|
2020-06-10 14:37:01 -07:00
|
|
|
let returnData;
|
|
|
|
|
|
|
|
if (authenticationMethod === 'credentials') {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('mauticApi') as IDataObject;
|
2022-04-01 08:31:43 -07:00
|
|
|
const baseUrl = credentials!.url as string;
|
2020-06-10 14:37:01 -07:00
|
|
|
|
2020-10-23 00:31:32 -07:00
|
|
|
const base64Key = Buffer.from(`${credentials.username}:${credentials.password}`).toString('base64');
|
2020-06-10 14:37:01 -07:00
|
|
|
|
|
|
|
options.headers!.Authorization = `Basic ${base64Key}`;
|
|
|
|
|
2022-04-01 08:31:43 -07:00
|
|
|
options.uri = `${baseUrl.endsWith('/') ? baseUrl.slice(0, -1) : baseUrl}${options.uri}`;
|
2020-10-23 00:31:32 -07:00
|
|
|
|
2020-06-10 14:37:01 -07:00
|
|
|
//@ts-ignore
|
|
|
|
returnData = await this.helpers.request(options);
|
|
|
|
} else {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('mauticOAuth2Api') as IDataObject;
|
2022-04-01 08:31:43 -07:00
|
|
|
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
|
2020-12-12 08:00:57 -08: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
|
|
|
|
*/
|
|
|
|
export async function mauticApiRequestAllItems(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
let data: IDataObject[] = [];
|
|
|
|
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 06:09:24 -08:00
|
|
|
data = [];
|
2020-01-15 05:55:46 -08:00
|
|
|
} while (
|
|
|
|
responseData.total !== undefined &&
|
2022-01-21 01:42:14 -08: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
|
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2022-04-01 08:31:43 -07:00
|
|
|
|
|
|
|
export async function validateCredentials(this: ICredentialTestFunctions, decryptedCredentials: ICredentialDataDecryptedObject): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const credentials = decryptedCredentials;
|
|
|
|
|
|
|
|
const {
|
|
|
|
url,
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
} = credentials as {
|
|
|
|
url: string,
|
|
|
|
username: string,
|
|
|
|
password: string,
|
|
|
|
};
|
|
|
|
|
|
|
|
const base64Key = Buffer.from(`${username}:${password}`).toString('base64');
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
Authorization: `Basic ${base64Key}`,
|
|
|
|
},
|
|
|
|
uri: url.endsWith('/') ? `${url}api/users/self` : `${url}/api/users/self`,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
return await this.helpers.request(options);
|
|
|
|
}
|