RAML Sanitize
Strict sanitization of RAML parameters into correct values and types. Allows for types to be plugged in dynamically.
Why?
This module sanitizes values using the RAML parameter syntax. You should use this if you need to convert any request parameters (usually strings) into the corresponding JavaScript types. For example, form request bodies, query parameters and headers all have no concept of types. After running sanitization, you can use raml-validate to validate the strict values.
Installation
npm install raml-sanitize --save
Usage
The module exports a function that needs to be invoked to get a sanitization instance.
var sanitize = require('raml-sanitize')();
var user = sanitize({
username: {
type: 'string'
},
password: {
type: 'string'
},
birthday: {
type: 'date',
default: new Date()
}
});
user({
username: 'blakeembrey',
password: 'hunter2'
});
Type sanitization
The module comes with built-in type sanitization of all RAML parameters - string
, number
, integer
, date
and boolean
. To add a new type sanitization, add a new property with the corresponding name to the sanitize.TYPES
object.
Rule sanitization
The module can be extended with rule sanitization by adding properties to the sanitize.RULES
object. A few core rules are implemented by default and can not be overriden - repeat
, default
and type
.
Empty values
Empty values are automatically allowed to pass through sanitization. The only values considered to be empty are undefined
and null
.
Default values
When the value is empty and a default
value has been provided, it will return the default value instead.
Repeated values
When the repeat flag is set to true
, the return value will always be an array. If the value is not an array, it will be wrapped in an array. If the value is empty, an empty array will be returned.
Caveats
Empty Values
Any empty values (null
and undefined
) will be returned.
Numbers
Only valid JavaScript numbers will be correctly sanitized. Any invalid or infinite number will return NaN
.
Integers
Only valid integers and valid JavaScript numbers will sanitize. Any invalid integer or infinite number will return NaN
.
Booleans
Only false
, 0
, "false"
, "0"
and ""
will return false
. Everything else is considered true
.
Dates
Date sanitization will always return a date object. In the case of an invalid date, you will receive an invalid date object.
License
Apache 2.0