first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,184 @@
|
||||
import type {
|
||||
IExecuteFunctions,
|
||||
IDataObject,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeConnectionTypes, NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
import {
|
||||
endOfDayDataFields,
|
||||
endOfDayDataOperations,
|
||||
exchangeFields,
|
||||
exchangeOperations,
|
||||
tickerFields,
|
||||
tickerOperations,
|
||||
} from './descriptions';
|
||||
import {
|
||||
format,
|
||||
marketstackApiRequest,
|
||||
marketstackApiRequestAllItems,
|
||||
validateTimeOptions,
|
||||
} from './GenericFunctions';
|
||||
import type { EndOfDayDataFilters, Operation, Resource } from './types';
|
||||
|
||||
export class Marketstack implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Marketstack',
|
||||
name: 'marketstack',
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
icon: { light: 'file:marketstack.svg', dark: 'file:marketstack.dark.svg' },
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
description: 'Consume Marketstack API',
|
||||
defaults: {
|
||||
name: 'Marketstack',
|
||||
},
|
||||
usableAsTool: true,
|
||||
inputs: [NodeConnectionTypes.Main],
|
||||
outputs: [NodeConnectionTypes.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'marketstackApi',
|
||||
required: true,
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Resource',
|
||||
name: 'resource',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: 'End-of-Day Data',
|
||||
value: 'endOfDayData',
|
||||
description: 'Stock market closing data',
|
||||
},
|
||||
{
|
||||
name: 'Exchange',
|
||||
value: 'exchange',
|
||||
description: 'Stock market exchange',
|
||||
},
|
||||
{
|
||||
name: 'Ticker',
|
||||
value: 'ticker',
|
||||
description: 'Stock market symbol',
|
||||
},
|
||||
],
|
||||
default: 'endOfDayData',
|
||||
required: true,
|
||||
},
|
||||
...endOfDayDataOperations,
|
||||
...endOfDayDataFields,
|
||||
...exchangeOperations,
|
||||
...exchangeFields,
|
||||
...tickerOperations,
|
||||
...tickerFields,
|
||||
],
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
|
||||
const resource = this.getNodeParameter('resource', 0) as Resource;
|
||||
const operation = this.getNodeParameter('operation', 0) as Operation;
|
||||
|
||||
let responseData: any;
|
||||
const returnData: INodeExecutionData[] = [];
|
||||
|
||||
for (let i = 0; i < items.length; i++) {
|
||||
try {
|
||||
if (resource === 'endOfDayData') {
|
||||
if (operation === 'getAll') {
|
||||
// ----------------------------------
|
||||
// endOfDayData: getAll
|
||||
// ----------------------------------
|
||||
|
||||
const qs: IDataObject = {
|
||||
symbols: this.getNodeParameter('symbols', i),
|
||||
};
|
||||
|
||||
const { latest, specificDate, dateFrom, dateTo, ...rest } = this.getNodeParameter(
|
||||
'filters',
|
||||
i,
|
||||
) as EndOfDayDataFilters;
|
||||
|
||||
validateTimeOptions.call(this, [
|
||||
latest !== undefined && latest,
|
||||
specificDate !== undefined,
|
||||
dateFrom !== undefined && dateTo !== undefined,
|
||||
]);
|
||||
|
||||
if (Object.keys(rest).length) {
|
||||
Object.assign(qs, rest);
|
||||
}
|
||||
|
||||
let endpoint: string;
|
||||
|
||||
if (latest) {
|
||||
endpoint = '/eod/latest';
|
||||
} else if (specificDate) {
|
||||
endpoint = `/eod/${format(specificDate)}`;
|
||||
} else {
|
||||
if (!dateFrom || !dateTo) {
|
||||
throw new NodeOperationError(
|
||||
this.getNode(),
|
||||
'Please enter a start and end date to filter by timeframe.',
|
||||
{ itemIndex: i },
|
||||
);
|
||||
}
|
||||
endpoint = '/eod';
|
||||
qs.date_from = format(dateFrom);
|
||||
qs.date_to = format(dateTo);
|
||||
}
|
||||
|
||||
responseData = await marketstackApiRequestAllItems.call(this, 'GET', endpoint, {}, qs);
|
||||
}
|
||||
} else if (resource === 'exchange') {
|
||||
if (operation === 'get') {
|
||||
// ----------------------------------
|
||||
// exchange: get
|
||||
// ----------------------------------
|
||||
|
||||
const exchange = this.getNodeParameter('exchange', i);
|
||||
const endpoint = `/exchanges/${exchange}`;
|
||||
|
||||
responseData = await marketstackApiRequest.call(this, 'GET', endpoint);
|
||||
}
|
||||
} else if (resource === 'ticker') {
|
||||
if (operation === 'get') {
|
||||
// ----------------------------------
|
||||
// ticker: get
|
||||
// ----------------------------------
|
||||
|
||||
const symbol = this.getNodeParameter('symbol', i);
|
||||
const endpoint = `/tickers/${symbol}`;
|
||||
|
||||
responseData = await marketstackApiRequest.call(this, 'GET', endpoint);
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
if (this.continueOnFail()) {
|
||||
const executionErrorData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray({ error: error.message }),
|
||||
{ itemData: { item: i } },
|
||||
);
|
||||
returnData.push(...executionErrorData);
|
||||
continue;
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
||||
{ itemData: { item: i } },
|
||||
);
|
||||
|
||||
returnData.push(...executionData);
|
||||
}
|
||||
|
||||
return [returnData];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user