mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
7ce7285f7a
* Changes to types so that credentials can be always loaded from DB This first commit changes all return types from the execute functions and calls to get credentials to be async so we can use await. This is a first step as previously credentials were loaded in memory and always available. We will now be loading them from the DB which requires turning the whole call chain async. * Fix updated files * Removed unnecessary credential loading to improve performance * Fix typo * ⚡ Fix issue * Updated new nodes to load credentials async * ⚡ Remove not needed comment Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
|
|
import {
|
|
OptionsWithUrl,
|
|
} from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject, NodeApiError, NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
createHmac,
|
|
} from 'crypto';
|
|
|
|
import * as qs from 'qs';
|
|
|
|
export async function unleashedApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, path: string, body: any = {}, query: IDataObject = {}, pageNumber?: number, headers?: object): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const paginatedPath = pageNumber ? `/${path}/${pageNumber}` : `/${path}`;
|
|
|
|
const options: OptionsWithUrl = {
|
|
headers: {
|
|
'Accept': 'application/json',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
method,
|
|
qs: query,
|
|
body,
|
|
url: `https://api.unleashedsoftware.com/${paginatedPath}`,
|
|
json: true,
|
|
};
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
delete options.body;
|
|
}
|
|
|
|
const credentials = await this.getCredentials('unleashedSoftwareApi');
|
|
|
|
if (credentials === undefined) {
|
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
|
}
|
|
|
|
const signature = createHmac('sha256', (credentials.apiKey as string))
|
|
.update(qs.stringify(query))
|
|
.digest('base64');
|
|
|
|
options.headers = Object.assign({}, headers, {
|
|
'api-auth-id': credentials.apiId,
|
|
'api-auth-signature': signature,
|
|
});
|
|
|
|
try {
|
|
return await this.helpers.request!(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
export async function unleashedApiRequestAllItems(this: 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 pageNumber = 1;
|
|
|
|
query.pageSize = 1000;
|
|
|
|
do {
|
|
responseData = await unleashedApiRequest.call(this, method, endpoint, body, query, pageNumber);
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
|
pageNumber++;
|
|
|
|
} while (
|
|
(responseData.Pagination.PageNumber as number) < (responseData.Pagination.NumberOfPages as number)
|
|
);
|
|
return returnData;
|
|
}
|
|
|
|
//.NET code is serializing dates in the following format: "/Date(1586833770780)/"
|
|
//which is useless on JS side and could not treated as a date for other nodes
|
|
//so we need to convert all of the fields that has it.
|
|
export function convertNETDates(item: { [key: string]: any }) { // tslint:disable-line:no-any
|
|
Object.keys(item).forEach(path => {
|
|
const type = typeof item[path] as string;
|
|
if (type === 'string') {
|
|
const value = item[path] as string;
|
|
const a = /\/Date\((\d*)\)\//.exec(value);
|
|
if (a) {
|
|
item[path] = new Date(+a[1]);
|
|
}
|
|
} if (type === 'object' && item[path]) {
|
|
convertNETDates(item[path]);
|
|
}
|
|
});
|
|
}
|