Add Pushcut Node & Trigger (#1075)

*  Pushcut Node & Trigger

*  Small improvements

Co-authored-by: Jan <janober@users.noreply.github.com>
This commit is contained in:
Ricardo Espinoza
2020-12-12 02:58:58 -05:00
committed by GitHub
parent 45d413de22
commit 23b61475d9
6 changed files with 415 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
import {
OptionsWithUri,
} from 'request';
import {
IExecuteFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
import {
IDataObject,
IHookFunctions,
} from 'n8n-workflow';
export async function pushcutApiRequest(this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions, method: string, path: string, body: any = {}, qs: IDataObject = {}, uri?: string | undefined, option = {}): Promise<any> { // tslint:disable-line:no-any
const credentials = this.getCredentials('pushcutApi') as IDataObject;
const options: OptionsWithUri = {
headers: {
'API-Key': credentials.apiKey,
},
method,
body,
qs,
uri: uri || `https://api.pushcut.io/v1${path}`,
json: true,
};
try {
if (Object.keys(body).length === 0) {
delete options.body;
}
if (Object.keys(option).length !== 0) {
Object.assign(options, option);
}
//@ts-ignore
return await this.helpers.request.call(this, options);
} catch (error) {
if (error.response && error.response.body && error.response.body.error) {
const message = error.response.body.error;
// Try to return the error prettier
throw new Error(
`Pushcut error response [${error.statusCode}]: ${message}`
);
}
throw error;
}
}