mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
d43aad2ca3
* ✨ Add Brandfetch node * ⚡ Small improvement * ⚡ Add donwload field to logo operation * 🐛 Minor fixes * ⚡ Minor improvements to Brandfetch-Node Co-authored-by: Tanay Pant <tanaypant@protonmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import {
|
|
OptionsWithUri,
|
|
} from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function brandfetchApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
try {
|
|
const credentials = this.getCredentials('brandfetchApi');
|
|
if (credentials === undefined) {
|
|
throw new Error('No credentials got returned!');
|
|
}
|
|
let options: OptionsWithUri = {
|
|
headers: {
|
|
'x-api-key': credentials.apiKey,
|
|
},
|
|
method,
|
|
qs,
|
|
body,
|
|
uri: uri || `https://api.brandfetch.io/v1${resource}`,
|
|
json: true,
|
|
};
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
if (this.getNodeParameter('operation', 0) === 'logo' && options.json === false) {
|
|
delete options.headers;
|
|
}
|
|
|
|
if (!Object.keys(body).length) {
|
|
delete options.body;
|
|
}
|
|
if (!Object.keys(qs).length) {
|
|
delete options.qs;
|
|
}
|
|
|
|
const response = await this.helpers.request!(options);
|
|
|
|
if (response.statusCode && response.statusCode !== 200) {
|
|
throw new Error(`Brandfetch error response [${response.statusCode}]: ${response.response}`);
|
|
}
|
|
|
|
return response;
|
|
|
|
} catch (error) {
|
|
|
|
if (error.response && error.response.body && error.response.body.message) {
|
|
// Try to return the error prettier
|
|
const errorBody = error.response.body;
|
|
throw new Error(`Brandfetch error response [${error.statusCode}]: ${errorBody.message}`);
|
|
}
|
|
|
|
// Expected error data did not get returned so throw the actual error
|
|
throw error;
|
|
}
|
|
}
|