mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
6d64e84f5e
* Update icon, add cred injection and test, update url for integration
* ⚡ Fix error display for some edge cases
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
import { NodeApiError, NodeOperationError, } from 'n8n-workflow';
|
|
|
|
import {
|
|
OptionsWithUri,
|
|
} from 'request';
|
|
|
|
|
|
/**
|
|
* Make an API request to Twake
|
|
*
|
|
* @param {IHookFunctions} this
|
|
* @param {string} method
|
|
* @param {string} url
|
|
* @param {object} body
|
|
* @returns {Promise<any>}
|
|
*/
|
|
export async function twakeApiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: string, resource: string, body: object, query?: object, uri?: string): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const authenticationMethod = this.getNodeParameter('twakeVersion', 0, 'twakeCloudApi') as string;
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {},
|
|
method,
|
|
body,
|
|
qs: query,
|
|
uri: uri || `https://plugins.twake.app/plugins/n8n${resource}`,
|
|
json: true,
|
|
};
|
|
|
|
|
|
// if (authenticationMethod === 'cloud') {
|
|
// } else {
|
|
// const credentials = await this.getCredentials('twakeServerApi');
|
|
// options.auth = { user: credentials!.publicId as string, pass: credentials!.privateApiKey as string };
|
|
// options.uri = `${credentials!.hostUrl}/api/v1${resource}`;
|
|
// }
|
|
|
|
try {
|
|
return await this.helpers.requestWithAuthentication.call(this, 'twakeCloudApi', options);
|
|
} catch (error) {
|
|
if (error.error?.code === 'ECONNREFUSED') {
|
|
throw new NodeApiError(this.getNode(), error, { message: 'Twake host is not accessible!' });
|
|
}
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|