2020-01-20 19:00:27 -08:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IWebhookFunctions,
|
|
|
|
} from 'n8n-core';
|
2022-11-08 06:28:21 -08:00
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
2020-01-20 19:00:27 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function salesmateApiRequest(
|
|
|
|
this:
|
|
|
|
| IHookFunctions
|
|
|
|
| IExecuteFunctions
|
|
|
|
| IExecuteSingleFunctions
|
|
|
|
| ILoadOptionsFunctions
|
|
|
|
| IWebhookFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
2022-11-08 06:28:21 -08:00
|
|
|
_option: IDataObject = {},
|
2022-08-17 08:50:24 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('salesmateApi');
|
2020-01-20 19:00:27 -08:00
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
2022-08-17 08:50:24 -07:00
|
|
|
sessionToken: credentials.sessionToken,
|
2020-01-20 19:00:27 -08:00
|
|
|
'x-linkname': credentials.url,
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2022-08-17 08:50:24 -07:00
|
|
|
uri: uri || `https://apis.salesmate.io${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-01-20 19:00:27 -08:00
|
|
|
};
|
|
|
|
if (!Object.keys(body).length) {
|
2020-01-21 08:00:40 -08:00
|
|
|
delete options.body;
|
2020-01-20 19:00:27 -08:00
|
|
|
}
|
|
|
|
try {
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-01-20 19:00:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function salesmateApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-01-20 19:00:27 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.pageNo = 1;
|
|
|
|
query.rows = 25;
|
|
|
|
do {
|
|
|
|
responseData = await salesmateApiRequest.call(this, method, resource, body, query);
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName].data);
|
|
|
|
query.pageNo++;
|
|
|
|
} while (
|
|
|
|
responseData[propertyName].totalPages !== undefined &&
|
|
|
|
query.pageNo <= responseData[propertyName].totalPages
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
export function validateJSON(json: string | undefined): any {
|
2020-01-20 19:00:27 -08:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2020-01-22 00:17:29 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts data from the Salesmate format into a simple object
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
export function simplifySalesmateData(data: IDataObject[]): IDataObject {
|
|
|
|
const returnData: IDataObject = {};
|
|
|
|
|
|
|
|
for (const item of data) {
|
|
|
|
returnData[item.fieldName as string] = item.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|