2022-08-01 13:47:55 -07:00
|
|
|
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-08-04 12:07:54 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2020-08-04 12:07:54 -07:00
|
|
|
|
2022-11-08 06:28:21 -08:00
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
2020-08-04 12:07:54 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function contentfulApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
2022-11-08 06:28:21 -08:00
|
|
|
_option: IDataObject = {},
|
2022-08-01 13:47:55 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<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,
|
2022-08-01 13:47:55 -07:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function contenfulApiRequestAllItems(
|
|
|
|
this: ILoadOptionsFunctions | IExecuteFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-08-04 12:07:54 -07:00
|
|
|
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]);
|
2022-08-01 13:47:55 -07:00
|
|
|
} while (returnData.length < responseData.total);
|
2020-07-09 02:36:28 -07:00
|
|
|
|
2020-08-04 12:07:54 -07:00
|
|
|
return returnData;
|
|
|
|
}
|