2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2020-07-23 18:08:34 -07:00
|
|
|
|
2023-03-09 09:13:15 -08:00
|
|
|
import type { IDataObject, IExecuteFunctions, IHookFunctions, JsonObject } from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2020-06-03 07:24:17 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to Dropbox
|
|
|
|
*
|
|
|
|
*/
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function dropboxApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: object,
|
|
|
|
query: IDataObject = {},
|
|
|
|
headers: object = {},
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-06-03 07:24:17 -07:00
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers,
|
|
|
|
method,
|
2020-07-23 18:20:21 -07:00
|
|
|
qs: query,
|
2020-06-03 07:24:17 -07:00
|
|
|
body,
|
|
|
|
uri: endpoint,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!Object.keys(body).length) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
2020-07-23 18:08:34 -07:00
|
|
|
Object.assign(options, option);
|
2020-06-04 08:16:33 -07:00
|
|
|
|
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
|
|
|
|
|
2020-06-03 07:24:17 -07:00
|
|
|
try {
|
|
|
|
if (authenticationMethod === 'accessToken') {
|
2022-08-01 13:47:55 -07:00
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'dropboxApi', options);
|
2020-06-03 07:24:17 -07:00
|
|
|
} else {
|
2020-06-25 20:37:26 -07:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'dropboxOAuth2Api', options);
|
2020-06-03 07:24:17 -07:00
|
|
|
}
|
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-06-03 07:24:17 -07:00
|
|
|
}
|
|
|
|
}
|
2021-03-11 00:16:05 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function dropboxpiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | IHookFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
headers: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2021-03-11 00:16:05 -08:00
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
const paginationEndpoint: IDataObject = {
|
2022-08-01 13:47:55 -07:00
|
|
|
folder: 'https://api.dropboxapi.com/2/files/list_folder/continue',
|
|
|
|
search: 'https://api.dropboxapi.com/2/files/search/continue_v2',
|
2021-03-11 00:16:05 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
do {
|
2023-02-27 19:39:43 -08:00
|
|
|
responseData = await dropboxApiRequest.call(
|
|
|
|
this,
|
|
|
|
method,
|
|
|
|
endpoint,
|
|
|
|
body as IDataObject,
|
|
|
|
query,
|
|
|
|
headers,
|
|
|
|
);
|
2021-03-11 00:16:05 -08:00
|
|
|
const cursor = responseData.cursor;
|
|
|
|
if (cursor !== undefined) {
|
|
|
|
endpoint = paginationEndpoint[resource] as string;
|
|
|
|
body = { cursor };
|
|
|
|
}
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
2022-08-01 13:47:55 -07:00
|
|
|
} while (responseData.has_more !== false);
|
2021-03-11 00:16:05 -08:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
export async function getRootDirectory(this: IHookFunctions | IExecuteFunctions) {
|
2022-08-01 13:47:55 -07:00
|
|
|
return dropboxApiRequest.call(
|
|
|
|
this,
|
|
|
|
'POST',
|
|
|
|
'https://api.dropboxapi.com/2/users/get_current_account',
|
|
|
|
{},
|
|
|
|
);
|
2021-03-11 00:16:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function simplify(data: IDataObject[]) {
|
|
|
|
const results = [];
|
|
|
|
for (const element of data) {
|
|
|
|
const { '.tag': key } = element?.metadata as IDataObject;
|
|
|
|
const metadata = (element?.metadata as IDataObject)[key as string] as IDataObject;
|
|
|
|
delete element.metadata;
|
|
|
|
Object.assign(element, metadata);
|
|
|
|
if ((element?.match_type as IDataObject)['.tag']) {
|
|
|
|
element.match_type = (element?.match_type as IDataObject)['.tag'] as string;
|
|
|
|
}
|
|
|
|
results.push(element);
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2021-08-20 09:57:30 -07:00
|
|
|
export async function getCredentials(this: IExecuteFunctions) {
|
2021-03-25 15:25:05 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
|
|
|
|
if (authenticationMethod === 'accessToken') {
|
2022-08-01 13:47:55 -07:00
|
|
|
return (await this.getCredentials('dropboxApi')) as IDataObject;
|
2021-03-25 15:25:05 -07:00
|
|
|
} else {
|
2022-08-01 13:47:55 -07:00
|
|
|
return (await this.getCredentials('dropboxOAuth2Api')) as IDataObject;
|
2021-03-25 15:25:05 -07:00
|
|
|
}
|
|
|
|
}
|