Clickup OAuth2 support (#649)

* OAuth2 credentials, genericFunctions needed config, UI options for oauth2 support

*  Added options to decide when to to send the bearer

* Fixed "undefined property split" issue

*  Small fix

*  Improvements to ClickUp-Node

*  Improvements

Co-authored-by: Rupenieks <ru@myos,co>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Ricardo Espinoza <ricardo@n8n.io>
This commit is contained in:
Rupenieks
2020-09-16 09:16:06 +02:00
committed by GitHub
parent 7c54cf6ac2
commit 266112a8cb
7 changed files with 152 additions and 10 deletions

View File

@@ -12,17 +12,12 @@ import {
import {
IDataObject,
IOAuth2Options,
} from 'n8n-workflow';
export async function clickupApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IWebhookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
const credentials = this.getCredentials('clickUpApi');
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
const options: OptionsWithUri = {
headers: {
Authorization: credentials.accessToken,
'Content-Type': 'application/json',
},
method,
@@ -31,15 +26,39 @@ export async function clickupApiRequest(this: IHookFunctions | IExecuteFunctions
uri: uri ||`https://api.clickup.com/api/v2${resource}`,
json: true
};
try {
return await this.helpers.request!(options);
} catch (error) {
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
if (authenticationMethod === 'accessToken') {
const credentials = this.getCredentials('clickUpApi');
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
options.headers!['Authorization'] = credentials.accessToken;
return await this.helpers.request!(options);
} else {
const oAuth2Options: IOAuth2Options = {
keepBearer: false,
tokenType: 'Bearer',
};
// @ts-ignore
return await this.helpers.requestOAuth2!.call(this, 'clickUpOAuth2Api', options, oAuth2Options);
}
} catch(error) {
let errorMessage = error;
if (error.err) {
errorMessage = error.err;
}
throw new Error('ClickUp Error: ' + errorMessage);
}
}
export async function clickupApiRequestAllItems(this: IHookFunctions | IExecuteFunctions| ILoadOptionsFunctions, propertyName: string ,method: string, resource: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any