2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2022-09-27 02:05:51 -07:00
|
|
|
DeclarativeRestApiSettings,
|
|
|
|
IDataObject,
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecutePaginationFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
IHttpRequestOptions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
INodeExecutionData,
|
|
|
|
JsonObject,
|
|
|
|
PreSendAction,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError, NodeOperationError } from 'n8n-workflow';
|
|
|
|
import type { OptionsWithUri } from 'request';
|
2022-09-27 02:05:51 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A custom API request function to be used with the resourceLocator lookup queries.
|
|
|
|
*/
|
|
|
|
export async function apiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: object,
|
|
|
|
query?: IDataObject,
|
2022-10-19 08:51:09 -07:00
|
|
|
): Promise<any> {
|
2023-01-19 04:37:19 -08:00
|
|
|
query = query || {};
|
2022-09-27 02:05:51 -07:00
|
|
|
|
|
|
|
type N8nApiCredentials = {
|
|
|
|
apiKey: string;
|
|
|
|
baseUrl: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
const credentials = (await this.getCredentials('n8nApi')) as N8nApiCredentials;
|
|
|
|
const baseUrl = credentials.baseUrl;
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs: query,
|
2022-10-19 08:51:09 -07:00
|
|
|
uri: `${baseUrl.replace(new RegExp('/$'), '')}/${endpoint}`,
|
2022-09-27 02:05:51 -07:00
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'n8nApi', options);
|
2022-09-27 02:05:51 -07:00
|
|
|
} catch (error) {
|
|
|
|
if (error instanceof NodeApiError) {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-19 08:51:09 -07:00
|
|
|
export async function apiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: object,
|
|
|
|
query?: IDataObject,
|
|
|
|
): Promise<any> {
|
2023-01-19 04:37:19 -08:00
|
|
|
query = query || {};
|
2022-10-19 08:51:09 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let nextCursor: string | undefined = undefined;
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
do {
|
|
|
|
query.cursor = nextCursor;
|
|
|
|
query.limit = 100;
|
|
|
|
responseData = await apiRequest.call(this, method, endpoint, body, query);
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData.data as IDataObject[]);
|
2022-10-19 08:51:09 -07:00
|
|
|
nextCursor = responseData.nextCursor as string | undefined;
|
|
|
|
} while (nextCursor);
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-09-27 02:05:51 -07:00
|
|
|
/**
|
|
|
|
* Get a cursor-based paginator to use with n8n 'getAll' type endpoints.
|
|
|
|
*
|
|
|
|
* It will look up a 'nextCursor' in the response and if the node has
|
|
|
|
* 'returnAll' set to true, will consecutively include it as the 'cursor' query
|
|
|
|
* parameter for the next request, effectively getting everything in slices.
|
|
|
|
*
|
|
|
|
* Prequisites:
|
|
|
|
* - routing.send.paginate must be set to true, for all requests to go through here
|
|
|
|
* - node is expected to have a boolean parameter 'returnAll'
|
|
|
|
* - no postReceive action setting the rootProperty, to get the items mapped
|
|
|
|
*
|
|
|
|
* @returns A ready-to-use cursor-based paginator function.
|
|
|
|
*/
|
|
|
|
export const getCursorPaginator = () => {
|
|
|
|
return async function cursorPagination(
|
|
|
|
this: IExecutePaginationFunctions,
|
|
|
|
requestOptions: DeclarativeRestApiSettings.ResultOptions,
|
|
|
|
): Promise<INodeExecutionData[]> {
|
|
|
|
if (!requestOptions.options.qs) {
|
|
|
|
requestOptions.options.qs = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
let executions: INodeExecutionData[] = [];
|
|
|
|
let responseData: INodeExecutionData[];
|
|
|
|
let nextCursor: string | undefined = undefined;
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', true) as boolean;
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
const extractItems = (page: INodeExecutionData) => {
|
|
|
|
const items = page.json.data as IDataObject[];
|
|
|
|
if (items) {
|
|
|
|
// Extract the items themselves
|
|
|
|
executions = executions.concat(items.map((item) => ({ json: item })));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-09-27 02:05:51 -07:00
|
|
|
do {
|
|
|
|
requestOptions.options.qs.cursor = nextCursor;
|
|
|
|
responseData = await this.makeRoutingRequest(requestOptions);
|
|
|
|
|
|
|
|
// Check for another page of items
|
|
|
|
const lastItem = responseData[responseData.length - 1].json;
|
|
|
|
nextCursor = lastItem.nextCursor as string | undefined;
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
responseData.forEach(extractItems);
|
2022-09-27 02:05:51 -07:00
|
|
|
|
|
|
|
// If we don't return all, just return the first page
|
|
|
|
} while (returnAll && nextCursor);
|
|
|
|
|
|
|
|
return executions;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper function to parse a node parameter as JSON and set it in the request body.
|
|
|
|
* Throws a NodeOperationError is the content is not valid JSON or it cannot be set.
|
|
|
|
*
|
|
|
|
* Currently, parameters with type 'json' are not validated automatically.
|
|
|
|
* Also mapping the value for 'body.data' declaratively has it treated as a string,
|
|
|
|
* but some operations (e.g. POST /credentials) don't work unless it is set as an object.
|
|
|
|
* To get the JSON-body operations to work consistently, we need to parse and set the body
|
|
|
|
* manually.
|
|
|
|
*
|
|
|
|
* @param parameterName The name of the node parameter to parse
|
|
|
|
* @param setAsBodyProperty An optional property name to set the parsed data into
|
|
|
|
* @returns The requestOptions with its body replaced with the contents of the parameter
|
|
|
|
*/
|
|
|
|
export const parseAndSetBodyJson = (
|
|
|
|
parameterName: string,
|
|
|
|
setAsBodyProperty?: string,
|
|
|
|
): PreSendAction => {
|
|
|
|
return async function (
|
|
|
|
this: IExecuteSingleFunctions,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<IHttpRequestOptions> {
|
|
|
|
try {
|
|
|
|
const rawData = this.getNodeParameter(parameterName, '{}') as string;
|
|
|
|
const parsedObject = JSON.parse(rawData);
|
|
|
|
|
|
|
|
// Set the parsed object to either as the request body directly, or as its sub-property
|
|
|
|
if (setAsBodyProperty === undefined) {
|
|
|
|
requestOptions.body = parsedObject;
|
|
|
|
} else {
|
|
|
|
requestOptions.body = Object.assign({}, requestOptions.body, {
|
|
|
|
[setAsBodyProperty]: parsedObject,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
2022-12-16 09:47:20 -08:00
|
|
|
new Error(`The '${parameterName}' property must be valid JSON, but cannot be parsed`, {
|
|
|
|
cause: err,
|
|
|
|
}),
|
2022-09-27 02:05:51 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return requestOptions;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper function to prepare the workflow object data for creation. It only sets
|
|
|
|
* known workflow properties, for pre-emptively avoiding a HTTP 400 Bad Request
|
|
|
|
* response until we have a better client-side schema validation mechanism.
|
|
|
|
*
|
|
|
|
* NOTE! This expects the requestOptions.body to already be set as an object,
|
|
|
|
* so take care to first call parseAndSetBodyJson().
|
|
|
|
*/
|
|
|
|
export const prepareWorkflowCreateBody: PreSendAction = async function (
|
|
|
|
this: IExecuteSingleFunctions,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<IHttpRequestOptions> {
|
|
|
|
const body = requestOptions.body as IDataObject;
|
|
|
|
const newBody: IDataObject = {};
|
|
|
|
|
2023-01-19 04:37:19 -08:00
|
|
|
newBody.name = body.name || 'My workflow';
|
|
|
|
newBody.nodes = body.nodes || [];
|
|
|
|
newBody.settings = body.settings || {};
|
|
|
|
newBody.connections = body.connections || {};
|
|
|
|
newBody.staticData = body.staticData || null;
|
2022-09-27 02:05:51 -07:00
|
|
|
|
|
|
|
requestOptions.body = newBody;
|
|
|
|
|
|
|
|
return requestOptions;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper function to prepare the workflow object data for update.
|
|
|
|
*
|
|
|
|
* NOTE! This expects the requestOptions.body to already be set as an object,
|
|
|
|
* so take care to first call parseAndSetBodyJson().
|
|
|
|
*/
|
|
|
|
export const prepareWorkflowUpdateBody: PreSendAction = async function (
|
|
|
|
this: IExecuteSingleFunctions,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<IHttpRequestOptions> {
|
|
|
|
const body = requestOptions.body as IDataObject;
|
|
|
|
const newBody: IDataObject = {};
|
|
|
|
|
|
|
|
if (body.name) {
|
|
|
|
newBody.name = body.name;
|
|
|
|
}
|
|
|
|
if (body.nodes) {
|
|
|
|
newBody.nodes = body.nodes;
|
|
|
|
}
|
|
|
|
if (body.settings) {
|
|
|
|
newBody.settings = body.settings;
|
|
|
|
}
|
|
|
|
if (body.connections) {
|
|
|
|
newBody.connections = body.connections;
|
|
|
|
}
|
|
|
|
if (body.staticData) {
|
|
|
|
newBody.staticData = body.staticData;
|
|
|
|
}
|
|
|
|
|
|
|
|
requestOptions.body = newBody;
|
|
|
|
|
|
|
|
return requestOptions;
|
|
|
|
};
|