2020-08-04 12:07:54 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError, NodeOperationError,
|
2020-08-04 12:07:54 -07:00
|
|
|
} 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
|
|
|
|
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('contentfulApi');
|
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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
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;
|
|
|
|
}
|