2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2020-04-20 07:35:58 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IDataObject,
|
2020-01-18 14:19:31 -08:00
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IWebhookFunctions,
|
2023-03-09 09:13:15 -08:00
|
|
|
IOAuth2Options,
|
|
|
|
JsonObject,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2021-04-16 09:33:36 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function clickupApiRequest(
|
|
|
|
this:
|
|
|
|
| IHookFunctions
|
|
|
|
| IExecuteFunctions
|
|
|
|
| IExecuteSingleFunctions
|
|
|
|
| ILoadOptionsFunctions
|
|
|
|
| IWebhookFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
2022-11-08 06:28:21 -08:00
|
|
|
_option: IDataObject = {},
|
2022-08-01 13:47:55 -07:00
|
|
|
): Promise<any> {
|
2020-01-18 18:36:57 -08:00
|
|
|
const options: OptionsWithUri = {
|
2020-01-18 14:19:31 -08:00
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `https://api.clickup.com/api/v2${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-01-18 14:19:31 -08:00
|
|
|
};
|
2020-09-16 00:16:06 -07:00
|
|
|
|
2020-01-18 14:19:31 -08:00
|
|
|
try {
|
2020-09-16 00:16:06 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
|
|
|
|
|
|
|
|
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, 'clickUpApi', options);
|
2020-09-16 00:16:06 -07:00
|
|
|
} else {
|
|
|
|
const oAuth2Options: IOAuth2Options = {
|
|
|
|
keepBearer: false,
|
|
|
|
tokenType: 'Bearer',
|
|
|
|
};
|
|
|
|
// @ts-ignore
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.requestOAuth2.call(
|
2022-08-01 13:47:55 -07:00
|
|
|
this,
|
|
|
|
'clickUpOAuth2Api',
|
|
|
|
options,
|
|
|
|
oAuth2Options,
|
|
|
|
);
|
2020-09-16 00:16:06 -07:00
|
|
|
}
|
2022-08-01 13:47:55 -07:00
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-01-18 14:19:31 -08:00
|
|
|
}
|
|
|
|
}
|
2020-01-30 09:21:52 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function clickupApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-01-30 09:21:52 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.page = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await clickupApiRequest.call(this, method, resource, body, query);
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
2020-01-30 09:21:52 -08:00
|
|
|
query.page++;
|
2023-03-30 04:59:59 -07:00
|
|
|
const limit = query.limit as number | undefined;
|
|
|
|
if (limit && limit <= returnData.length) {
|
2020-04-20 07:35:58 -07:00
|
|
|
return returnData;
|
|
|
|
}
|
2022-08-01 13:47:55 -07:00
|
|
|
} while (responseData[propertyName] && responseData[propertyName].length !== 0);
|
2020-01-30 09:21:52 -08:00
|
|
|
return returnData;
|
|
|
|
}
|
2020-02-03 09:51:22 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export function validateJSON(json: string | undefined): any {
|
2020-02-03 09:51:22 -08:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|