2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IDataObject,
|
2020-01-23 07:13:57 -08:00
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
2024-02-14 07:29:09 -08:00
|
|
|
IHttpRequestMethods,
|
2020-01-23 07:13:57 -08:00
|
|
|
ILoadOptionsFunctions,
|
2024-02-14 07:29:09 -08:00
|
|
|
IRequestOptions,
|
2023-03-09 09:13:15 -08:00
|
|
|
JsonObject,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2020-01-23 07:13:57 -08:00
|
|
|
|
|
|
|
export async function disqusApiRequest(
|
2023-08-16 06:52:41 -07:00
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
2024-02-14 07:29:09 -08:00
|
|
|
method: IHttpRequestMethods,
|
2022-08-01 13:47:55 -07:00
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
|
|
|
const credentials = (await this.getCredentials('disqusApi')) as IDataObject;
|
2020-01-23 07:13:57 -08:00
|
|
|
qs.api_key = credentials.accessToken;
|
|
|
|
|
2020-01-23 14:50:22 -08:00
|
|
|
// Convert to query string into a format the API can read
|
|
|
|
const queryStringElements: string[] = [];
|
|
|
|
for (const key of Object.keys(qs)) {
|
|
|
|
if (Array.isArray(qs[key])) {
|
2022-08-01 13:47:55 -07:00
|
|
|
(qs[key] as string[]).forEach((value) => {
|
2020-01-23 14:50:22 -08:00
|
|
|
queryStringElements.push(`${key}=${value}`);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
queryStringElements.push(`${key}=${qs[key]}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-14 07:29:09 -08:00
|
|
|
let options: IRequestOptions = {
|
2020-01-23 07:13:57 -08:00
|
|
|
method,
|
|
|
|
body,
|
2020-01-23 14:50:22 -08:00
|
|
|
uri: `https://disqus.com/api/3.0/${uri}?${queryStringElements.join('&')}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-01-23 07:13:57 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
options = Object.assign({}, options, option);
|
2023-02-27 19:39:43 -08:00
|
|
|
if (Object.keys(options.body as IDataObject).length === 0) {
|
2020-01-23 07:13:57 -08:00
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
try {
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.request(options);
|
2020-01-23 07:13:57 -08:00
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-01-23 07:13:57 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to paginated flow endpoint
|
|
|
|
* and return all results
|
|
|
|
*/
|
|
|
|
export async function disqusApiRequestAllItems(
|
2023-08-16 06:52:41 -07:00
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
2024-02-14 07:29:09 -08:00
|
|
|
method: IHttpRequestMethods,
|
2022-08-01 13:47:55 -07:00
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-01-23 07:13:57 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
try {
|
|
|
|
do {
|
|
|
|
responseData = await disqusApiRequest.call(this, method, qs, uri, body, option);
|
|
|
|
qs.cursor = responseData.cursor.id;
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData.response as IDataObject[]);
|
2022-08-01 13:47:55 -07:00
|
|
|
} while (responseData.cursor.more === true && responseData.cursor.hasNext === true);
|
2020-01-23 07:13:57 -08:00
|
|
|
return returnData;
|
2022-08-01 13:47:55 -07:00
|
|
|
} catch (error) {
|
2020-01-23 07:13:57 -08:00
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|