2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2020-04-26 10:51:20 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-04-26 10:51:20 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { IDataObject, IHookFunctions, IWebhookFunctions } from 'n8n-workflow';
|
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2020-04-26 10:51:20 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function surveyMonkeyApiRequest(
|
|
|
|
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-06-10 03:48:21 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0);
|
2020-04-26 10:51:20 -07:00
|
|
|
|
|
|
|
const endpoint = 'https://api.surveymonkey.com/v3';
|
|
|
|
|
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs: query,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `${endpoint}${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-04-26 10:51:20 -07:00
|
|
|
};
|
2020-06-10 03:48:21 -07:00
|
|
|
|
2020-04-26 10:51:20 -07:00
|
|
|
if (!Object.keys(body).length) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
if (!Object.keys(query).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
options = Object.assign({}, options, option);
|
2020-06-10 03:48:21 -07:00
|
|
|
|
2020-04-26 10:51:20 -07:00
|
|
|
try {
|
2022-08-17 08:50:24 -07:00
|
|
|
if (authenticationMethod === 'accessToken') {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('surveyMonkeyApi');
|
2020-06-10 03:48:21 -07:00
|
|
|
// @ts-ignore
|
2022-12-02 12:54:28 -08:00
|
|
|
options.headers.Authorization = `bearer ${credentials.accessToken}`;
|
2020-06-10 03:48:21 -07:00
|
|
|
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.request(options);
|
2020-06-10 03:48:21 -07:00
|
|
|
} else {
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.requestOAuth2?.call(this, 'surveyMonkeyOAuth2Api', options);
|
2020-06-10 03:48:21 -07:00
|
|
|
}
|
2020-04-26 10:51:20 -07:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-04-26 10:51:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function surveyMonkeyRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-04-26 10:51:20 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.page = 1;
|
|
|
|
query.per_page = 100;
|
|
|
|
let uri: string | undefined;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await surveyMonkeyApiRequest.call(this, method, endpoint, body, query, uri);
|
|
|
|
uri = responseData.links.next;
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData.links.next);
|
2020-04-26 10:51:20 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function idsExist(ids: string[], surveyIds: string[]) {
|
|
|
|
for (const surveyId of surveyIds) {
|
|
|
|
if (!ids.includes(surveyId)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|