2020-07-23 18:08:34 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError,
|
2020-07-23 18:08:34 -07:00
|
|
|
} from 'n8n-workflow';
|
2020-06-03 07:24:17 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to Dropbox
|
|
|
|
*
|
|
|
|
* @param {IHookFunctions} this
|
|
|
|
* @param {string} method
|
|
|
|
* @param {string} url
|
|
|
|
* @param {object} body
|
|
|
|
* @returns {Promise<any>}
|
|
|
|
*/
|
2021-03-11 00:16:05 -08:00
|
|
|
export async function dropboxApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: object, query: IDataObject = {}, headers: object = {}, option: IDataObject = {}): Promise<any> {// tslint:disable-line:no-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') {
|
feat: Add more credentials tests (#3668)
* ✨ Add injection to notion,
Add test to notion in cred
* 🔥 Remove unuse method
* 🎨 Move testing from node file to cred file
* ✨ Add injection and testing in facebook graph
* Add cred injec with testing
* Add Cred injection and cred test
* Add cred injection, and cred testing for typeform, fix issue in clickup
* Add cred injection, move testing inside creds
* Add cred injection and cred testing to SendGrid
* Add cred injection and cred testing to woocommerce
* Add cred injection, add cred test to gitlab
* 🔥 Fix duplicated imports in Mautic cred
* 🔥 removed unused credentials testing in node
* Add cred injection, cred testing, handles slash trailing for Grafana node
* Add cred injection, cred testing to shopify
* Add cred injection , add cred testing to stripe
* changed cred injection, add testing to cred for mattermost
* add cred injection and testing for dropbox
* Add cred injection, cred testing to webflow
* ✨ Add cred injection and cred test to nocodb
* ✨ Add cred injection, cred testing to mailchimp
* 🐛 fix a bug In credentials testing
* ✨ Add cred injection, cred testing to sms77
* ✨ Add cred injection, cred testing to ActiveCampaign
* Add cred injection, cred testing to TheHive
* ✨ Add cred injection, add cred testing to ApiTemplateio
* ✨ Add cred injection, add cred testing for zoom
* ✨ Add cred injection, cred testing to rocketchat
* ✨ Add cred injection, add cred test to getResponse
* 🔥 Remove useless authentcate creds and testing from facebookGraphApp
* 🔥 Remove useless imports in FacebookGrappApp credentials file
* 🔥 Removed useless imports and if statement
* 🐛 Add version to header when testing cred
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: Jan Oberhauser <janober@users.noreply.github.com>
2022-07-15 07:20:41 -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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-06-03 07:24:17 -07:00
|
|
|
}
|
|
|
|
}
|
2021-03-11 00:16:05 -08:00
|
|
|
|
|
|
|
export async function dropboxpiRequestAllItems(this: IExecuteFunctions | IHookFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}, headers: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
const paginationEndpoint: IDataObject = {
|
|
|
|
'folder': 'https://api.dropboxapi.com/2/files/list_folder/continue',
|
|
|
|
'search': 'https://api.dropboxapi.com/2/files/search/continue_v2',
|
|
|
|
};
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
do {
|
|
|
|
responseData = await dropboxApiRequest.call(this, method, endpoint, body, query, headers);
|
|
|
|
const cursor = responseData.cursor;
|
|
|
|
if (cursor !== undefined) {
|
|
|
|
endpoint = paginationEndpoint[resource] as string;
|
|
|
|
body = { cursor };
|
|
|
|
}
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
|
|
|
} while (
|
|
|
|
responseData.has_more !== false
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getRootDirectory(this: IHookFunctions | IExecuteFunctions) {
|
|
|
|
return dropboxApiRequest.call(this, 'POST', 'https://api.dropboxapi.com/2/users/get_current_account', {});
|
|
|
|
}
|
|
|
|
|
|
|
|
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') {
|
2021-08-20 09:57:30 -07:00
|
|
|
return await this.getCredentials('dropboxApi') as IDataObject;
|
2021-03-25 15:25:05 -07:00
|
|
|
} else {
|
2021-08-20 09:57:30 -07:00
|
|
|
return await this.getCredentials('dropboxOAuth2Api') as IDataObject;
|
2021-03-25 15:25:05 -07:00
|
|
|
}
|
|
|
|
}
|
2021-03-11 00:16:05 -08:00
|
|
|
|