mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
77 lines
1.7 KiB
TypeScript
77 lines
1.7 KiB
TypeScript
import type { OptionsWithUri } from 'request';
|
|
|
|
import type {
|
|
IDataObject,
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
JsonObject,
|
|
} from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
export async function netlifyApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
|
|
body: any = {},
|
|
query: IDataObject = {},
|
|
uri?: string,
|
|
option: IDataObject = {},
|
|
): Promise<any> {
|
|
const options: OptionsWithUri = {
|
|
method,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
qs: query,
|
|
body,
|
|
uri: uri || `https://api.netlify.com/api/v1${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
if (!Object.keys(body as IDataObject).length) {
|
|
delete options.body;
|
|
}
|
|
|
|
if (Object.keys(option)) {
|
|
Object.assign(options, option);
|
|
}
|
|
|
|
try {
|
|
const credentials = await this.getCredentials('netlifyApi');
|
|
|
|
options.headers!.Authorization = `Bearer ${credentials.accessToken}`;
|
|
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
|
}
|
|
}
|
|
|
|
export async function netlifyRequestAllItems(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
|
|
body: any = {},
|
|
query: IDataObject = {},
|
|
): Promise<any> {
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
query.page = 0;
|
|
query.per_page = 100;
|
|
|
|
do {
|
|
responseData = await netlifyApiRequest.call(this, method, endpoint, body, query, undefined, {
|
|
resolveWithFullResponse: true,
|
|
});
|
|
query.page++;
|
|
returnData.push.apply(returnData, responseData.body as IDataObject[]);
|
|
} while (responseData.headers.link.includes('next'));
|
|
|
|
return returnData;
|
|
}
|