n8n/packages/nodes-base/nodes/Contentful/GenericFunctions.ts

66 lines
1.8 KiB
TypeScript
Raw Normal View History

2020-08-04 12:07:54 -07:00
import {
IExecuteFunctions,
IExecuteSingleFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
import {
OptionsWithUri,
} from 'request';
import {
IDataObject,
} from 'n8n-workflow';
export async function contentfulApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
const credentials = this.getCredentials('contentfulApi');
2020-07-09 02:36:28 -07:00
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
2020-08-04 12:07:54 -07:00
const source = this.getNodeParameter('source', 0) as string;
const isPreview = source === 'previewApi';
const options: OptionsWithUri = {
method,
qs,
body,
uri: uri ||`https://${isPreview ? 'preview' : 'cdn'}.contentful.com${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-08-04 12:07:54 -07:00
};
2020-07-09 03:10:22 -07:00
if (isPreview) {
2020-08-04 12:07:54 -07:00
qs.access_token = credentials.ContentPreviewaccessToken as string;
} else {
qs.access_token = credentials.ContentDeliveryaccessToken as string;
}
try {
return await this.helpers.request!(options);
} catch (error) {
throw new Error(`Contentful error response [${error.statusCode}]: ${error.error.message}`);
2020-07-09 03:10:22 -07:00
}
2020-08-04 12:07:54 -07:00
}
export async function contenfulApiRequestAllItems(this: ILoadOptionsFunctions | IExecuteFunctions, propertyName: string, method: string, resource: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
const returnData: IDataObject[] = [];
let responseData;
query.limit = 100;
query.skip = 0;
2020-07-09 02:36:28 -07:00
2020-08-04 12:07:54 -07:00
do {
responseData = await contentfulApiRequest.call(this, method, resource, body, query);
query.skip = (query.skip + 1) * query.limit;
returnData.push.apply(returnData, responseData[propertyName]);
} while (
returnData.length < responseData.total
);
2020-07-09 02:36:28 -07:00
2020-08-04 12:07:54 -07:00
return returnData;
}