mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
9118e090e7
* dynamodb: request item * dynamodb: query database * dynamodb: scans table * dynamodb: typehints in decodeItem * dynamodb: recursively decodes map and lists * dynamodb: cleanup interface, using additional-fields collection * dynamodb: using fixedCollection for ExpressionAttributeValues * dynamodb: converts spaces to tabs * dynamodb: scans with FilterExpression * dynamodb: fixes tslint * ⚡ Refactor node * 🔨 Refactor into separate dir * ⚡ Add table name loader * ✏️ Update operation descriptions * ⚡ Add partition key name param to delete * ⚡ Add params to get operation * 🔨 Refactor get operation per feedback * ⚡ Refactor for consistency * ⚡ Add createUpdate operation * aja * asasa * aja * aja * aja * ⚡ Improvements * ⚡ Lint node * ⚡ Lint description * 🔥 Remove unused option * ⚡ Apply David's feedback * ✏️ Add descriptions for specific attributes * 🔨 Rename return values * Implement define and automap * ⚡ Minior changes Co-authored-by: Michael Hirschler <michael.vhirsch@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
135 lines
3.2 KiB
TypeScript
135 lines
3.2 KiB
TypeScript
import {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
AdjustedPutItem,
|
|
AttributeValueType,
|
|
EAttributeValueType,
|
|
IAttributeNameUi,
|
|
IAttributeValue,
|
|
IAttributeValueUi,
|
|
IAttributeValueValue,
|
|
PutItemUi,
|
|
} from './types';
|
|
|
|
const addColon = (attribute: string) => attribute = attribute.charAt(0) === ':' ? attribute : `:${attribute}`;
|
|
|
|
const addPound = (key: string) => key = key.charAt(0) === '#' ? key : `#${key}`;
|
|
|
|
export function adjustExpressionAttributeValues(eavUi: IAttributeValueUi[]) {
|
|
const eav: IAttributeValue = {};
|
|
|
|
eavUi.forEach(({ attribute, type, value }) => {
|
|
eav[addColon(attribute)] = { [type]: value } as IAttributeValueValue;
|
|
});
|
|
|
|
return eav;
|
|
}
|
|
|
|
export function adjustExpressionAttributeName(eanUi: IAttributeNameUi[]) {
|
|
|
|
// tslint:disable-next-line: no-any
|
|
const ean: { [key: string]: any } = {};
|
|
|
|
eanUi.forEach(({ key, value }) => {
|
|
ean[addPound(key)] = { value } as IAttributeValueValue;
|
|
});
|
|
|
|
return ean;
|
|
}
|
|
|
|
export function adjustPutItem(putItemUi: PutItemUi) {
|
|
const adjustedPutItem: AdjustedPutItem = {};
|
|
|
|
Object.entries(putItemUi).forEach(([attribute, value]) => {
|
|
let type: string;
|
|
|
|
if (typeof value === 'boolean') {
|
|
type = 'BOOL';
|
|
} else if (typeof value === 'object' && !Array.isArray(value) && value !== null) {
|
|
type = 'M';
|
|
// @ts-ignore
|
|
} else if (isNaN(value)) {
|
|
type = 'S';
|
|
} else {
|
|
type = 'N';
|
|
}
|
|
|
|
adjustedPutItem[attribute] = { [type]: value.toString() };
|
|
});
|
|
|
|
return adjustedPutItem;
|
|
}
|
|
|
|
export function simplify(item: IAttributeValue): IDataObject {
|
|
const output: IDataObject = {};
|
|
|
|
for (const [attribute, value] of Object.entries(item)) {
|
|
const [type, content] = Object.entries(value)[0] as [AttributeValueType, string];
|
|
output[attribute] = decodeAttribute(type, content);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
function decodeAttribute(type: AttributeValueType, attribute: string) {
|
|
switch (type) {
|
|
case 'BOOL':
|
|
return Boolean(attribute);
|
|
case 'N':
|
|
return Number(attribute);
|
|
case 'S':
|
|
return String(attribute);
|
|
case 'SS':
|
|
case 'NS':
|
|
return attribute;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// tslint:disable-next-line: no-any
|
|
export function validateJSON(input: any): object {
|
|
try {
|
|
return JSON.parse(input);
|
|
} catch (error) {
|
|
throw new Error('Items must be a valid JSON');
|
|
}
|
|
}
|
|
|
|
export function copyInputItem(item: INodeExecutionData, properties: string[]): IDataObject {
|
|
// Prepare the data to insert and copy it to be returned
|
|
let newItem: IDataObject;
|
|
newItem = {};
|
|
for (const property of properties) {
|
|
if (item.json[property] === undefined) {
|
|
newItem[property] = null;
|
|
} else {
|
|
newItem[property] = JSON.parse(JSON.stringify(item.json[property]));
|
|
}
|
|
}
|
|
return newItem;
|
|
}
|
|
|
|
export function mapToAttributeValues(item: IDataObject): void {
|
|
for (const key of Object.keys(item)) {
|
|
if (!key.startsWith(':')) {
|
|
item[`:${key}`] = item[key];
|
|
delete item[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
export function decodeItem(item: IAttributeValue): IDataObject {
|
|
const _item: IDataObject = {};
|
|
for (const entry of Object.entries(item)) {
|
|
const [attribute, value]: [string, object] = entry;
|
|
const [type, content]: [string, object] = Object.entries(value)[0];
|
|
_item[attribute] = decodeAttribute(type as EAttributeValueType, content as unknown as string);
|
|
}
|
|
|
|
return _item;
|
|
}
|