mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
73 lines
1.8 KiB
TypeScript
73 lines
1.8 KiB
TypeScript
import type { OptionsWithUri } from 'request';
|
|
|
|
import type { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
export async function wordpressApiRequest(
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
resource: string,
|
|
|
|
body: any = {},
|
|
qs: IDataObject = {},
|
|
uri?: string,
|
|
option: IDataObject = {},
|
|
): Promise<any> {
|
|
const credentials = await this.getCredentials('wordpressApi');
|
|
|
|
let options: OptionsWithUri = {
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
'User-Agent': 'n8n',
|
|
},
|
|
method,
|
|
qs,
|
|
body,
|
|
uri: uri || `${credentials.url}/wp-json/wp/v2${resource}`,
|
|
json: true,
|
|
};
|
|
options = Object.assign({}, options, option);
|
|
if (Object.keys(options.body).length === 0) {
|
|
delete options.body;
|
|
}
|
|
try {
|
|
const credentialType = 'wordpressApi';
|
|
return await this.helpers.requestWithAuthentication.call(this, credentialType, options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
export async function wordpressApiRequestAllItems(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
|
|
body: any = {},
|
|
query: IDataObject = {},
|
|
): Promise<any> {
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
|
|
query.per_page = 10;
|
|
query.page = 0;
|
|
|
|
do {
|
|
query.page++;
|
|
responseData = await wordpressApiRequest.call(this, method, endpoint, body, query, undefined, {
|
|
resolveWithFullResponse: true,
|
|
});
|
|
returnData.push.apply(returnData, responseData.body);
|
|
} while (
|
|
responseData.headers['x-wp-totalpages'] !== undefined &&
|
|
responseData.headers['x-wp-totalpages'] !== '0' &&
|
|
parseInt(responseData.headers['x-wp-totalpages'], 10) !== query.page
|
|
);
|
|
|
|
return returnData;
|
|
}
|