dynalite
Version:
An implementation of Amazon's DynamoDB built on LevelDB
116 lines (108 loc) • 3.44 kB
JavaScript
var validations = require('./index')
exports.types = {
ReturnConsumedCapacity: {
type: 'String',
enum: [ 'INDEXES', 'TOTAL', 'NONE' ],
},
TableName: {
type: 'String',
notNull: true,
regex: '[a-zA-Z0-9_.-]+',
lengthGreaterThanOrEqual: 3,
lengthLessThanOrEqual: 255,
},
ReturnItemCollectionMetrics: {
type: 'String',
enum: [ 'SIZE', 'NONE' ],
},
ReturnValues: {
type: 'String',
enum: [ 'ALL_NEW', 'UPDATED_OLD', 'ALL_OLD', 'NONE', 'UPDATED_NEW' ],
},
Key: {
type: 'Map<AttributeValue>',
notNull: true,
children: 'AttrStruct<ValueStruct>',
},
ConditionalOperator: {
type: 'String',
enum: [ 'OR', 'AND' ],
},
Expected: {
type: 'Map<ExpectedAttributeValue>',
children: {
type: 'ValueStruct<ExpectedAttributeValue>',
children: {
AttributeValueList: {
type: 'List',
children: 'AttrStruct<ValueStruct>',
},
ComparisonOperator: {
type: 'String',
enum: [ 'IN', 'NULL', 'BETWEEN', 'LT', 'NOT_CONTAINS', 'EQ', 'GT', 'NOT_NULL', 'NE', 'LE', 'BEGINS_WITH', 'GE', 'CONTAINS' ],
},
Exists: 'Boolean',
Value: 'AttrStruct<FieldStruct>',
},
},
},
AttributeUpdates: {
type: 'Map<AttributeValueUpdate>',
children: {
type: 'ValueStruct<AttributeValueUpdate>',
children: {
Action: 'String',
Value: 'AttrStruct<FieldStruct>',
},
},
},
ConditionExpression: {
type: 'String',
},
UpdateExpression: {
type: 'String',
},
ExpressionAttributeValues: {
type: 'Map<AttributeValue>',
children: 'AttrStruct<ValueStruct>',
},
ExpressionAttributeNames: {
type: 'Map<java.lang.String>',
children: 'String',
},
}
exports.custom = function (data) {
var msg = validations.validateExpressionParams(data,
[ 'UpdateExpression', 'ConditionExpression' ],
[ 'AttributeUpdates', 'Expected' ])
if (msg) return msg
for (var key in data.Key) {
msg = validations.validateAttributeValue(data.Key[key])
if (msg) return msg
}
for (key in data.AttributeUpdates) {
if (data.AttributeUpdates[key].Value != null) {
msg = validations.validateAttributeValue(data.AttributeUpdates[key].Value)
if (msg) return msg
}
if (data.AttributeUpdates[key].Value == null && data.AttributeUpdates[key].Action != 'DELETE')
return 'One or more parameter values were invalid: ' +
'Only DELETE action is allowed when no attribute value is specified'
if (data.AttributeUpdates[key].Value != null && data.AttributeUpdates[key].Action == 'DELETE') {
var type = Object.keys(data.AttributeUpdates[key].Value)[0]
if (type != 'SS' && type != 'NS' && type != 'BS')
return 'One or more parameter values were invalid: ' +
'DELETE action with value is not supported for the type ' + type
}
if (data.AttributeUpdates[key].Value != null && data.AttributeUpdates[key].Action == 'ADD') {
type = Object.keys(data.AttributeUpdates[key].Value)[0]
if (type != 'L' && type != 'SS' && type != 'NS' && type != 'BS' && type != 'N')
return 'One or more parameter values were invalid: ' +
'ADD action is not supported for the type ' + type
}
}
msg = validations.validateAttributeConditions(data)
if (msg) return msg
msg = validations.validateExpressions(data)
if (msg) return msg
}