n8n/packages/nodes-base/nodes/Zoom/GenericFunctions.ts

82 lines
2.1 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2020-06-16 17:46:38 -07:00
import type {
IExecuteFunctions,
IExecuteSingleFunctions,
ILoadOptionsFunctions,
IDataObject,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-06-18 12:29:16 -07:00
export async function zoomApiRequest(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
body: object = {},
query: object = {},
headers: IDataObject | undefined = undefined,
option: IDataObject = {},
) {
2020-06-18 12:29:16 -07:00
const authenticationMethod = this.getNodeParameter('authentication', 0, 'accessToken') as string;
2020-06-16 17:46:38 -07:00
let options: OptionsWithUri = {
method,
headers: headers || {
2020-10-22 06:46:03 -07:00
'Content-Type': 'application/json',
2020-06-16 17:46:38 -07:00
},
body,
qs: query,
2020-06-18 12:29:16 -07:00
uri: `https://api.zoom.us/v2${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-06-16 17:46:38 -07:00
};
options = Object.assign({}, options, option);
if (Object.keys(body).length === 0) {
delete options.body;
}
if (Object.keys(query).length === 0) {
delete options.qs;
}
2020-06-24 16:28:08 -07:00
2020-06-16 17:46:38 -07:00
try {
if (authenticationMethod === 'accessToken') {
return await this.helpers.requestWithAuthentication.call(this, 'zoomApi', options);
2020-06-16 17:46:38 -07:00
} else {
2020-06-18 12:29:16 -07:00
return await this.helpers.requestOAuth2.call(this, 'zoomOAuth2Api', options);
2020-06-16 17:46:38 -07:00
}
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2020-06-16 17:46:38 -07:00
}
}
async function wait() {
return new Promise((resolve, _reject) => {
setTimeout(() => {
resolve(true);
}, 1000);
});
}
2020-06-16 17:46:38 -07:00
export async function zoomApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
2020-07-14 04:59:37 -07:00
body: IDataObject = {},
2020-10-22 09:00:28 -07:00
query: IDataObject = {},
) {
2020-06-16 17:46:38 -07:00
const returnData: IDataObject[] = [];
let responseData;
2020-06-23 20:29:47 -07:00
query.page_number = 0;
2020-06-16 17:46:38 -07:00
do {
responseData = await zoomApiRequest.call(this, method, endpoint, body, query);
2020-06-23 20:29:47 -07:00
query.page_number++;
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
2020-06-23 20:29:47 -07:00
// zoom free plan rate limit is 1 request/second
// TODO just wait when the plan is free
await wait();
} while (responseData.page_count !== responseData.page_number);
2020-06-16 17:46:38 -07:00
return returnData;
}