Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Sponsored by |
celebrate is an express middleware function that wraps the joi validation library. This allows you to use this middleware in any single route, or globally, and ensure that all of your inputs are correct before any handler function. The middleware allows you to validate req.params
, req.headers
, and req.query
.
The middleware will also validate:
req.body
— provided you are using body-parser
req.cookies
— provided you are using cookie-parser
req.signedCookies
— provided you are using cookie-parser
celebrate lists joi as a formal dependency. This means that celebrate will always use a predictable, known version of joi during the validation and compilation steps. There are two reasons for this:
Wondering why another joi middleware library for express? Full blog post here.
celebrate is tested and has full compatibility with express 4 and 5. It likely works correctly with express 3, but including it in the test matrix was more trouble than it's worth. This is primarily because express 3 exposes route parameters as an array rather than an object.
If you use any of joi's updating validation APIs (default
, rename
, etc.) celebrate
will override the source value with the changes applied by joi.
For example, if you validate req.query
and have a default
value in your joi schema, if the incoming req.query
is missing a value for default, during validation celebrate
will overrite the original req.query
with the result of joi.validate
. This is done so that once req
has been validated, you can be sure all the inputs are valid and ready to consume in your handler functions and you don't need to re-write all your handlers to look for the query values in res.locals.*
.
Example of using celebrate on a single POST route to validate req.body
.
const express = require('express');
const BodyParser = require('body-parser');
const { celebrate, Joi, errors, Segments } = require('celebrate');
const app = express();
app.use(BodyParser.json());
app.post('/signup', celebrate({
[Segments.BODY]: Joi.object().keys({
name: Joi.string().required(),
age: Joi.number().integer(),
role: Joi.string().default('admin')
}),
[Segments.QUERY]: {
token: Joi.string().token().required()
}
}), (req, res) => {
// At this point, req.body has been validated and
// req.body.role is equal to req.body.role if provided in the POST or set to 'admin' by joi
});
app.use(errors());
Example of using celebrate to validate all incoming requests to ensure the token
header is present and matches the supplied regular expression.
const express = require('express');
const { celebrate, Joi, errors, Segments } = require('celebrate');
const app = express();
// validate all incoming request headers for the token header
// if missing or not the correct format, respond with an error
app.use(celebrate({
[Segments.HEADERS]: Joi.object({
token: Joi.string().required().regex(/abc\d{3}/)
}).unknown()
}));
app.get('/', (req, res) => { res.send('hello world'); });
app.get('/foo', (req, res) => { res.send('a foo request'); });
app.use(errors());
celebrate does not have a default export. The following methods encompass the public API.
celebrate(schema, [joiOptions], [celebrateOptions])
Returns a function
with the middleware signature ((req, res, next)
).
schema
- an object
where key
can be one of the values from Segments
and the value
is a joi validation schema. Only the keys specified will be validated against the incoming request object. If you omit a key, that part of the req
object will not be validated. A schema must contain at least one valid key.[joiOptions]
- optional object
containing joi options that are passed directly into the validate
function. Defaults to { warnings: true }
.[celebrateOptions]
- an optional object
with the following keys. Defaults to {}
.
reqContext
- bool
value that instructs joi to use the incoming req
object as the context
value during joi validation. If set, this will trump the value of joiOptions.context
. This is useful if you want to validate part of the request object against another part of the request object. See the tests for more details.errors()
Returns a function
with the error handler signature ((err, req, res, next)
). This should be placed with any other error handling middleware to catch celebrate errors. If the incoming err
object is an error originating from celebrate, errors()
will respond with a 400 status code and the joi validation message. Otherwise, it will call next(err)
and will pass the error along and will need to be processed by another error handler.
If the error format does not suite your needs, you are encouraged to write your own and check isCelebrate(err)
to format celebrate errors to your liking.
Errors origintating from celebrate()
are CelebrateError
) objects.
Joi
celebrate exports the version of joi it is using internally. For maximum compatibility, you should use this version when creating schemas used with celebrate.
Segments
An enum containing all the segments of req
objects that celebrate can valiate against.
{
BODY: 'body',
COOKIES: 'cookies',
HEADERS: 'headers',
PARAMS: 'params',
QUERY: 'query',
SIGNEDCOOKIES: 'signedCookies',
}
CelebrateError(err, segment, [opts])
A factory function for creating celebrate errors.
err
- a Joi validation error objectsegment
- A Segment
indicating the step where the validation failed.[opts]
- optional object
with the following keys
celebrated
- bool
that, when true
, adds Symbol('celebrated'): true
to the result object. This indicates this error as originating from celebrate
. You'd likely want to set this to true
if you want the celebrate error handler to handle errors originating from the format
function that you call in user-land code. Defaults to false
. const result = Joi.validate(req.params.id, Joi.string().valid('foo'), { abortEarly: false });
const err = CelebrateError(result.error, Segments.PARAMS);
isCelebrate(err)
Returns true
if the provided err
object originated from the celebrate
middleware, and false
otherwise. Useful if you want to write your own error handler for celebrate errors.
err
- an error objectcelebrate validates request values in the following order:
req.headers
req.params
req.query
req.cookies
(assuming cookie-parser
is being used)req.signedCookies
(assuming cookie-parser
is being used)req.body
(assuming body-parser
is being used)If any of the configured validation rules fail, the entire request will be considered invalid and the rest of the validation will be short-circuited and the validation error will be passed into next
.
Before opening issues on this repo, make sure your joi schema is correct and working as you intended. The bulk of this code is just exposing the joi API as express middleware. All of the heavy lifting still happens inside joi. You can go here to verify your joi schema easily.
FAQs
A joi validation middleware for Express.
The npm package celebrate receives a total of 50,232 weekly downloads. As such, celebrate popularity was classified as popular.
We found that celebrate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.