mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
08ba9a36a4
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
78 lines
1.8 KiB
TypeScript
78 lines
1.8 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
IHttpRequestMethods,
|
|
IRequestOptions,
|
|
ILoadOptionsFunctions,
|
|
INodeExecutionData,
|
|
JsonObject,
|
|
} from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
export async function brandfetchApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: IHttpRequestMethods,
|
|
resource: string,
|
|
body: any = {},
|
|
qs: IDataObject = {},
|
|
uri?: string,
|
|
option: IDataObject = {},
|
|
): Promise<any> {
|
|
try {
|
|
let options: IRequestOptions = {
|
|
method: method as IHttpRequestMethods,
|
|
qs,
|
|
body,
|
|
url: uri || `https://api.brandfetch.io/v2${resource}`,
|
|
json: true,
|
|
};
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
if (this.getNodeParameter('operation', 0) === 'logo' && options.json === false) {
|
|
delete options.headers;
|
|
}
|
|
|
|
if (!Object.keys(body as IDataObject).length) {
|
|
delete options.body;
|
|
}
|
|
if (!Object.keys(qs).length) {
|
|
delete options.qs;
|
|
}
|
|
|
|
const response = await this.helpers.requestWithAuthentication.call(
|
|
this,
|
|
'brandfetchApi',
|
|
options,
|
|
);
|
|
|
|
if (response.statusCode && response.statusCode !== 200) {
|
|
throw new NodeApiError(this.getNode(), response as JsonObject);
|
|
}
|
|
|
|
return response;
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
|
}
|
|
}
|
|
|
|
export async function fetchAndPrepareBinaryData(
|
|
this: IExecuteFunctions,
|
|
imageType: string,
|
|
imageFormat: string,
|
|
logoFormats: IDataObject,
|
|
domain: string,
|
|
newItem: INodeExecutionData,
|
|
) {
|
|
const data = await brandfetchApiRequest.call(this, 'GET', '', {}, {}, logoFormats.src as string, {
|
|
json: false,
|
|
encoding: null,
|
|
});
|
|
|
|
newItem.binary![`${imageType}_${imageFormat}`] = await this.helpers.prepareBinaryData(
|
|
Buffer.from(data),
|
|
`${imageType}_${domain}.${imageFormat}`,
|
|
);
|
|
}
|