Easy, rich and fully validated logoran routing.
- built in input validation using joi
- built in output validation using joi
- built in body parsing using co-body and await-busboy
- built on the great logoran-router
- Module options support
- internationalization supoort
- exposed route definitions for later analysis
- string path support
- regexp-like path support
- multiple method support
- multiple middleware support
- xml type support
- multiple types support
- ignore output validate support
- continue on error support
- router prefixing support
- router level middleware support
- meta data support
- HTTP 405 and 501 support
NodeJS >= 7.6
is required.
const logoran = require('logoran');
const router = require('logoran-joi-router');
const Joi = router.Joi;
const public = router();
public.get('/', async (ctx) => {
ctx.body = 'hello joi-router!';
});
public.route({
method: 'post',
path: '/signup',
validate: {
body: {
name: Joi.string().max(100),
email: Joi.string().lowercase().email(),
password: Joi.string().max(100),
_csrf: Joi.string().token()
},
type: 'form',
output: {
200: {
body: {
userId: Joi.string(),
name: Joi.string()
}
}
}
},
handler: async (ctx) => {
const user = await createUser(ctx.request.body);
ctx.status = 201;
ctx.body = user;
}
});
const app = new logoran();
app.use(public.middleware());
app.listen(3000);
logoran-joi-router
returns a constructor which you use to define your routes.
The design is such that you construct multiple router instances, one for
each section of your application which you then add as logoran middleware.
const router = require('logoran-joi-router');
const Joi = router.Joi;
const pub = router();
const admin = router();
const auth = router();
// add some routes ..
pub.get('/some/path', async () => {});
admin.get('/admin', async () => {});
auth.post('/auth', async () => {});
const app = logoran();
logoran.use(pub.middleware());
logoran.use(admin.middleware());
logoran.use(auth.middleware());
app.listen();
joi extensions for validate, 'joi-date-extensions', 'joi-enum-extensions' is used for default.
joi i18n locate support directory.
default locate for i18n support. default use locale in env.
i18n language file suffix in directory. default ['js', 'json'].
user i18n indicate in cookie name.
user i18n indicate in query parameter.
ignore output joi validate option.
const router = require('logoran-joi-router');
const public = router(['joi-extension-name'], 'i18n-locale-dir', 'zh_CN', ['json'], 'i18n-cookie-name', 'i18n-query-parameter', true);
or
const router = require('logoran-joi-router');
const public = router({[
extensions: 'joi-extension-name'],
directory: 'i18n-locale-dir',
defaultLocale: 'zh_CN',
suffix: ['json'],
cookie: 'i18n-cookie-name',
queryParameter: 'i18n-query-parameter',
igonreOutValid: true
});
It is HIGHLY RECOMMENDED you use this bundled version of Joi to avoid bugs related to passing an object created with a different release of Joi into the router.
const logoran = require('logoran');
const router = require('logoran-joi-router');
const Joi = router.Joi;
use joi-x-i18n for internationalization support, default support de_DE en_US es_ES fr_FR pt_BR ru_RU tr_TR and zh_CN language, and support use defined locate and language in module options.
const router = require('logoran-joi-router');
const public = router({[
directory: 'local-dir-i18n',
defaultLocale: 'zh_CN',
suffix: ['json'],
cookie: 'i18n-cookie-name',
queryParameter: 'i18n-query-parameter'
});
Adds a new route to the router. route()
accepts an object or array of objects
describing route behavior.
const router = require('logoran-joi-router');
const public = router();
public.route({
method: 'post',
path: '/signup',
validate: {
header: joiObject,
query: joiObject,
params: joiObject,
body: joiObject,
maxBody: '64kb',
output: { '400-600': { body: joiObject } },
type: 'form',
failure: 400,
continueOnError: false
},
handler: async (ctx) => {
await createUser(ctx.request.body);
ctx.status = 201;
},
meta: { 'this': { is: 'stored internally with the route definition' }}
});
or
const router = require('logoran-joi-router');
const public = router();
const routes = [
{
method: 'post',
path: '/users',
handler: async (ctx) => {}
},
{
method: 'get',
path: '/users',
handler: async (ctx) => {}
}
];
public.route(routes);
method
: required HTTP method like "get", "post", "put", etcpath
: required stringvalidate
header
: object which conforms to Joi validationquery
: object which conforms to Joi validationparams
: object which conforms to Joi validationbody
: object which conforms to Joi validationmaxBody
: max incoming body size for forms or json or xml inputxmlRoot
: body xml format get the root name or ignore, only effective xml format incoming body, default falsexmlArray
: xml format always set sub as array or not, or explicit list the node name which is array no matter single or multiple sub node it has, only effective xml format incoming body. default falsefailure
: HTTP response code to use when input validation fails. default400
type
: if validating the request body, this is required. eitherform
,json
,xml
,multipart
,stream
or array of themoutput
: see output validationcontinueOnError
: if validation fails, this flags determines iflogoran-joi-router
should continue processing the middleware stack or stop and respond with an error immediately. useful when you want your route to handle the error response. defaultfalse
handler
: required async function or functionmeta
: meta data about this route.logoran-joi-router
ignores this but stores it along with all other route data
logoran-joi-router
supports the traditional router.get()
, router.post()
type APIs
as well.
const router = require('logoran-joi-router');
const admin = router();
// signature: router.method(path [, config], handler [, handler])
admin.put('/thing', handler);
admin.get('/thing', middleware, handler);
admin.post('/thing', config, handler);
admin.delete('/thing', config, middleware, handler);
When you need to run middleware before all routes, OR, if you just need to run middleware before a specific path, this method is for you.
const router = require('logoran-joi-router');
const users = router();
users.get('/something', async (ctx, next) => {
console.log('this logs before your /something handlers');
await next();
console.log('this logs after your /something handlers');
});
users.use(async (ctx, next) => {
console.log('this logs before all other handlers');
await next();
console.log('this logs after all other handlers');
});
It doesn't matter if you define your routes before or after you call .use()
,
the middleware passed to .use()
will run before your routes and only when
the path matches.
To run middleware before a specific route, also pass the optional path
:
const router = require('logoran-joi-router');
const users = router();
users.get('/:id', handler);
users.use('/:id', runThisBeforeHandler);
Defines a route prefix for all defined routes. This is handy in "mounting" scenarios.
const router = require('logoran-joi-router');
const users = router();
users.get('/:id', handler);
// GET /users/3 -> 404
// GET /3 -> 200
users.prefix('/user');
// GET /users/3 -> 200
// GET /3 -> 404
Defines middleware for named route parameters. Useful for auto-loading or validation.
See logoran-router
const router = require('logoran-joi-router');
const users = router();
const findUser = (id) => {
// stub
return Promise.resolve('Cheddar');
};
users.param('user', async (id, ctx, next) => {
const user = await findUser(id);
if (!user) return ctx.status = 404;
ctx.user = user;
await next();
});
users.get('/users/:user', (ctx) => {
ctx.body = `Hello ${ctx.user}`;
});
// GET /users/3 -> 'Hello Cheddar'
Defines middleware factory for follow matched route. Useful for auto-loading or validation.
See logoran-router
const router = require('logoran-joi-router');
const users = router();
const findUser = (id) => {
// stub
return Promise.resolve('Cheddar');
};
users.follow( (matched) => {
// matched.path === '/users/:user'
// matched.path is the full path of url
// matched.metheds is the allowed http methods
// matched.name is the name of the request
// matched.stack is the all middlewares
return async (ctx, next) => {
const user = await findUser(ctx.params.user);
if (!user) return ctx.status = 404;
ctx.user = user;
await next();
};
// or return middleware and position.
// return [(ctx, next) => {
// ctx.user = users[ctx.params.user];
// if (!ctx.user) return ctx.status = 404;
// return next();
// }, 0];
});
users.get('/users/:user', (ctx) => {
ctx.body = `Hello ${ctx.user}`;
});
// GET /users/3 -> 'Hello Cheddar'
Generates routing middleware to be used with logoran
. If this middleware is
never added to your logoran
application, your routes will not work.
const router = require('logoran-joi-router');
const public = router();
public.get('/home', homepage);
const app = logoran();
app.use(public.middleware()); // wired up
app.listen();
The route definition for the currently matched route is available
via ctx.state.route
. This object is not the exact same route
definition object which was passed into logoran-joi-router, nor is it
used internally - any changes made to this object will
not have an affect on your running application but is available
to meet your introspection needs.
const router = require('logoran-joi-router');
const public = router();
public.get('/hello', async (ctx) => {
console.log(ctx.state.route);
});
When using the validate.type
option, logoran-joi-router
adds a few new properties
to ctx.request
to faciliate input validation.
The ctx.request.body
property will be set when either of the following
validate.type
s are set:
- json
- form
- xml
When validate.type
is set to json
, the incoming data must be JSON. If it is not,
validation will fail and the response status will be set to 400 or the value of
validate.failure
if specified. If successful, ctx.request.body
will be set to the
parsed request input.
admin.route({
method: 'post',
path: '/blog',
validate: { type: 'json' },
handler: async (ctx) => {
console.log(ctx.request.body); // the incoming json as an object
}
});
When validate.type
is set to form
, the incoming data must be form data
(x-www-form-urlencoded). If it is not, validation will fail and the response
status will be set to 400 or the value of validate.failure
if specified.
If successful, ctx.request.body
will be set to the parsed request input.
admin.route({
method: 'post',
path: '/blog',
validate: { type: 'form' },
handler: async (ctx) => {
console.log(ctx.request.body) // the incoming form as an object
}
});
When validate.type
is set to xml
, the incoming data must be xml format. If
it is not, validation will fail and the response status will be set to 400 or
the value of validate.failure
if specified. If successful, ctx.request.body
will be set to the parsed request input.
admin.route({
method: 'post',
path: '/blog',
validate: { type: 'xml' },
handler: async (ctx) => {
console.log(ctx.request.body) // the incoming form as an object
}
});
where validate.type
is set to [json
, form
, xml
], the incoming data must be JSON
or form data(x-www-form-urlencoded). If it is not, validation will fail and the response
status will be set to 400 or the value of validate.failure
if specified. If successful,
ctx.request.body
will be set to the parsed request input.
admin.route({
method: 'post',
path: '/blog',
validate: { type: ['json', 'form', 'xml'] },
handler: async (ctx) => {
console.log(ctx.request.body) // the incoming form as an object
}
});
The ctx.request.parts
property will be set when either of the following
validate.type
s are set:
- stream
- multipart
When validate.type
is set to multipart
, the incoming data must be multipart data.
If it is not, validation will fail and the response
status will be set to 400 or the value of validate.failure
if specified.
If successful, ctx.request.parts
will be set to an
await-busboy object.
admin.route({
method: 'post',
path: '/blog',
validate: { type: 'multipart' },
handler: async (ctx) => {
const parts = ctx.request.parts;
let part;
try {
while ((part = await parts)) {
// do something with the incoming part stream
part.pipe(someOtherStream);
}
} catch (err) {
// handle the error
}
console.log(parts.field.name); // form data
}
});
Note: if you do not specify a value for validate.type
, the
incoming payload will not be parsed or validated. It is up to you to
parse the incoming data however you see fit.
admin.route({
method: 'post',
path: '/blog',
validate: { },
handler: async (ctx) => {
console.log(ctx.request.body, ctx.request.parts); // undefined undefined
}
})
Validating the output body and/or headers your service generates on a per-status-code basis is supported. This comes in handy when contracts between your API and client are strict e.g. any change in response schema could break your downstream clients. In a very active codebase, this feature buys you stability. If the output is invalid, an HTTP status 500 will be used.
Let's look at some examples:
router.route({
method: 'post',
path: '/user',
validate: {
output: {
200: { // individual status code
body: {
userId: Joi.string(),
name: Joi.string()
}
}
}
},
handler: handler
});
router.route({
method: 'post',
path: '/user',
validate: {
output: {
'200,201': { // multiple individual status codes
body: {
userId: Joi.string(),
name: Joi.string()
}
}
}
},
handler: handler
});
router.route({
method: 'post',
path: '/user',
validate: {
output: {
'200-299': { // status code range
body: {
userId: Joi.string(),
name: Joi.string()
}
}
}
},
handler: handler
});
You are free to mix and match ranges and individual status codes.
router.route({
method: 'post',
path: '/user',
validate: {
output: {
'200,201,300-600': { // mix it up
body: {
userId: Joi.string(),
name: Joi.string()
}
}
}
},
handler: handler
});
Validating your output headers is also supported via the headers
property:
router.route({
method: 'post',
path: '/user',
validate: {
output: {
'200,201': {
body: {
userId: Joi.string(),
name: Joi.string()
},
headers: Joi.object({ // validate headers too
authorization: Joi.string().required()
}).options({
allowUnknown: true
})
},
'500-600': {
body: { // this rule only runs when a status 500 - 600 is used
error_code: Joi.number(),
error_msg: Joi.string()
}
}
}
},
handler: handler
});
Each router exposes it's route definitions through it's routes
property.
This is helpful when you'd like to introspect the previous definitions and
take action e.g. to generate API documentation etc.
const router = require('logoran-joi-router');
const admin = router();
admin.post('/thing', { validate: { type: 'multipart' }}, handler);
console.log(admin.routes);
// [ { path: '/thing',
// method: [ 'post' ],
// handler: [ [Function] ],
// validate: { type: 'multipart' } } ]
Sometimes you need RegExp
-like syntax support for your route definitions.
Because path-to-regexp
supports it, so do we!
const router = require('logoran-joi-router');
const admin = router();
admin.get('/blog/:year(\\d{4})-:day(\\d{2})-:article(\\d{3})', async (ctx, next) => {
console.log(ctx.request.params) // { year: '2017', day: '01', article: '011' }
});
Defining a route for multiple HTTP methods in a single shot is supported.
const router = require('logoran-joi-router');
const admin = router();
admin.route({
path: '/',
method: ['POST', 'PUT'],
handler: fn
});
Often times you may need to add additional, route specific middleware to a single route.
const router = require('logoran-joi-router');
const admin = router();
admin.route({
path: '/',
method: ['POST', 'PUT'],
handler: [ yourMiddleware, yourHandler ]
});
Defining a route for multiple incoming type in validate is supported.
const router = require('logoran-joi-router');
const admin = router();
admin.route({
path: '/',
method: ['POST', 'PUT'],
handler: [ yourMiddleware, yourHandler ]
validate: {
type: ['form', 'json', 'xml'],
body: joi
}
});
Defining a route for multiple incoming type in validate is supported.
const router = require('logoran-joi-router');
const admin = router();
admin.route({
path: '/',
method: ['POST', 'PUT'],
handler: [ yourMiddleware, yourHandler ]
validate: {
type: ['form', 'json', 'xml'],
body: joi,
output: {
ignore: true
}
}
});
You may want to bundle and nest middleware in different ways for reuse and organization purposes.
const router = require('logoran-joi-router');
const admin = router();
const commonMiddleware = [ yourMiddleware, someOtherMiddleware ];
admin.route({
path: '/',
method: ['POST', 'PUT'],
handler: [ commonMiddleware, yourHandler ]
});
This also works with the .get(),post(),put(),delete(), etc HTTP method helpers.
const router = require('logoran-joi-router');
const admin = router();
const commonMiddleware = [ yourMiddleware, someOtherMiddleware ];
admin.get('/', commonMiddleware, yourHandler);
By default, logoran-joi-router
stops processing the middleware stack when either
input validation fails. This means your route will not be reached. If
this isn't what you want, for example, if you're writing a web app which needs
to respond with custom html describing the errors, set the validate.continueOnError
flag to true. You can find out if validation failed by checking ctx.invalid
.
admin.route({
method: 'post',
path: '/add',
validate: {
type: 'form',
body: {
id: Joi.string().length(10)
},
continueOnError: true
},
handler: async (ctx) => {
if (ctx.invalid) {
console.log(ctx.invalid.header);
console.log(ctx.invalid.query);
console.log(ctx.invalid.params);
console.log(ctx.invalid.body);
console.log(ctx.invalid.type);
}
ctx.body = await render('add', { errors: ctx.invalid });
}
});
npm test
runs tests + code coverage + lintnpm run lint
runs lint onlynpm run lint-fix
runs lint and attempts to fix syntax issuesnpm run test-cov
runs tests + test coveragenpm run open-cov
opens test coverage results in your browsernpm run test-only
runs tests only