2020-08-10 09:19:26 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
OptionsWithUrl,
|
2020-08-10 09:19:56 -07:00
|
|
|
} from 'request';
|
2020-08-10 09:19:26 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError, NodeOperationError,
|
2020-08-10 09:19:56 -07:00
|
|
|
} from 'n8n-workflow';
|
2020-08-10 09:19:26 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
createHmac,
|
|
|
|
} from 'crypto';
|
|
|
|
|
|
|
|
import * as qs from 'qs';
|
|
|
|
|
2020-08-10 09:19:56 -07:00
|
|
|
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
|
2020-08-10 09:19:26 -07:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('unleashedSoftwareApi');
|
2020-08-10 09:19:26 -07:00
|
|
|
|
|
|
|
if (credentials === undefined) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
2020-08-10 09:19:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-08-10 09:19:26 -07:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 09:33:36 -07:00
|
|
|
|
2020-08-10 09:19:56 -07:00
|
|
|
export async function unleashedApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
2020-08-10 09:19:26 -07:00
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
2020-08-10 09:19:56 -07:00
|
|
|
let pageNumber = 1;
|
2020-08-10 09:19:26 -07:00
|
|
|
|
|
|
|
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.
|
2020-08-10 09:19:56 -07:00
|
|
|
export function convertNETDates(item: { [key: string]: any }) { // tslint:disable-line:no-any
|
|
|
|
Object.keys(item).forEach(path => {
|
|
|
|
const type = typeof item[path] as string;
|
2020-08-10 09:19:26 -07:00
|
|
|
if (type === 'string') {
|
2020-08-10 09:19:56 -07:00
|
|
|
const value = item[path] as string;
|
2020-08-10 09:19:26 -07:00
|
|
|
const a = /\/Date\((\d*)\)\//.exec(value);
|
|
|
|
if (a) {
|
|
|
|
item[path] = new Date(+a[1]);
|
|
|
|
}
|
|
|
|
} if (type === 'object' && item[path]) {
|
|
|
|
convertNETDates(item[path]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|