This package is used to perform input validation to express app using a Swagger (Open API) definition and ajv
Table of Contents
npm install --save express-ajv-swagger-validation
var swaggerValidator = require('express-ajv-swagger-validation');
This Middleware validate the request body, headers, path parameters and query parameters according to the path definition in the swagger file.
Please make sure to use this middleware inside route definition in order to have req.route.path
assign to the most accurate express route.
Init the middleware with the swagger definition.
The function return Promise.
PathToSwaggerFile
– Path to the swagger definitionoptions
– Additional options for the middleware.
Options currently supports:
-
formats
- Array of formats that can be added toajv
configuration, each element in the array should includename
andpattern
. -
beautifyErrors
- Boolean that indicates if to beautify the errors, in this case it will create a string from the Ajv error.- Examples:
query/limit should be <= 100
- query parampath/petId should NOT be shorter than 3 characters
- path param not in formatbody/[0].test.field1 should be string
- Item in an array bodybody/test should have required property 'field1'
- nested fieldbody should have required property 'name'
- Missing field in body
You can see more examples in the tests
- Examples:
-
firstError
- Boolean that indicates if to return only the first error.
formats: [
{ name: 'double', pattern: /\d+\.(\d+)+/ },
{ name: 'int64', pattern: /^\d{1,19}$/ },
{ name: 'int32', pattern: /^\d{1,10}$/ }
]
swaggerValidator.init('test/unit-tests/input-validation/pet-store-swagger.yaml')
.then(function () {
var app = express();
app.use(bodyParser.json());
app.get('/pets', swaggerValidator.validate, function (req, res, next) {
res.json({ result: 'OK' });
});
app.post('/pets', swaggerValidator.validate, function (req, res, next) {
res.json({ result: 'OK' });
});
app.get('/pets/:petId', swaggerValidator.validate, function (req, res, next) {
res.json({ result: 'OK' });
});
app.use(function (err, req, res, next) {
if (err instanceof swaggerValidator.InputValidationError) {
res.status(400).json({ more_info: JSON.stringify(err.errors) });
}
});
var server = app.listen(serverPort, function () {
});
});
- Objects - it is important to set any objects with the property
type: object
inside your swagger file, although it isn't a must in the Swagger (OpenAPI) spec in order to validate it accurately with ajv it must be marked asobject
- multipart/form-data (files) supports is based on
express/multer
Using mocha, istanbul and mochawesome
npm test