mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
d3fecb9f6d
* Centralized error throwing for encryption key * Unifying the error message used by cli and core packages * Improvements to error messages to make it more DRY * Removed unnecessary throw * Throwing error when credential does not exist to simplify node behavior (#3112) Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
import { OptionsWithUri } from 'request';
|
|
import {
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
IWebhookFunctions,
|
|
} from 'n8n-core';
|
|
import { IDataObject, NodeApiError, NodeOperationError, } from 'n8n-workflow';
|
|
|
|
export async function salesmateApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IWebhookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
const credentials = await this.getCredentials('salesmateApi');
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
'sessionToken': credentials.sessionToken,
|
|
'x-linkname': credentials.url,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
method,
|
|
qs,
|
|
body,
|
|
uri: uri ||`https://apis.salesmate.io${resource}`,
|
|
json: true,
|
|
};
|
|
if (!Object.keys(body).length) {
|
|
delete options.body;
|
|
}
|
|
try {
|
|
return await this.helpers.request!(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
export async function salesmateApiRequestAllItems(this: IHookFunctions | IExecuteFunctions| ILoadOptionsFunctions, propertyName: string, method: string, resource: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
/**
|
|
* Converts data from the Salesmate format into a simple object
|
|
*
|
|
* @export
|
|
* @param {IDataObject[]} data
|
|
* @returns {IDataObject}
|
|
*/
|
|
export function simplifySalesmateData(data: IDataObject[]): IDataObject {
|
|
const returnData: IDataObject = {};
|
|
|
|
for (const item of data) {
|
|
returnData[item.fieldName as string] = item.value;
|
|
}
|
|
|
|
return returnData;
|
|
}
|