2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IDataObject,
|
2020-12-15 07:56:28 -08:00
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
2024-09-23 13:19:16 -07:00
|
|
|
IHttpRequestMethods,
|
|
|
|
IRequestOptions,
|
2020-12-15 07:56:28 -08:00
|
|
|
ILoadOptionsFunctions,
|
2024-09-23 13:19:16 -07:00
|
|
|
INodeExecutionData,
|
2023-03-09 09:13:15 -08:00
|
|
|
JsonObject,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2022-08-01 13:47:55 -07:00
|
|
|
|
|
|
|
export async function brandfetchApiRequest(
|
2023-08-16 06:52:41 -07:00
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
2024-02-14 07:29:09 -08:00
|
|
|
method: IHttpRequestMethods,
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: string,
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-12-15 07:56:28 -08:00
|
|
|
try {
|
2024-02-14 07:29:09 -08:00
|
|
|
let options: IRequestOptions = {
|
2024-09-23 13:19:16 -07:00
|
|
|
method: method as IHttpRequestMethods,
|
2020-12-15 07:56:28 -08:00
|
|
|
qs,
|
|
|
|
body,
|
2024-09-23 13:19:16 -07:00
|
|
|
url: uri || `https://api.brandfetch.io/v2${resource}`,
|
2020-12-15 07:56:28 -08:00
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
|
|
|
|
if (this.getNodeParameter('operation', 0) === 'logo' && options.json === false) {
|
|
|
|
delete options.headers;
|
|
|
|
}
|
|
|
|
|
2023-02-27 19:39:43 -08:00
|
|
|
if (!Object.keys(body as IDataObject).length) {
|
2020-12-15 07:56:28 -08:00
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
if (!Object.keys(qs).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:19:16 -07:00
|
|
|
const response = await this.helpers.requestWithAuthentication.call(
|
|
|
|
this,
|
|
|
|
'brandfetchApi',
|
|
|
|
options,
|
|
|
|
);
|
2020-12-15 07:56:28 -08:00
|
|
|
|
|
|
|
if (response.statusCode && response.statusCode !== 200) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), response as JsonObject);
|
2020-12-15 07:56:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return response;
|
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-12-15 07:56:28 -08:00
|
|
|
}
|
|
|
|
}
|
2024-09-23 13:19:16 -07:00
|
|
|
|
|
|
|
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}`,
|
|
|
|
);
|
|
|
|
}
|