express-json-refiner

Express JSON refiner middleware by scope api (admin, member...)
Dynamicaly reduce your json response by context's scope of api.
About
The motivation with this module is to provide a way to filter your json response attributes based on context of your apis.
You may have public/private/admin
... API and want to deal with response json objects and its visible attributes.
Example
API focused on 'user' is giving json results (or array) like:
{
field1: '',
field2: '',
field3: '',
field4: ''
}
And for some reasons depending on context whether it is a public
API or member
API you may just want to expose :
{
field1: '',
field3: ''
}
So, idea is to provide your rules by this way, I give more details below:
- Case1 : no routes defined
var userAccessRule = {
model: {field1: '', field2: '', field3: '', field4: ''},
fields: {
public: ['field1', 'field3'],
member: ['field2', 'field3'],
admin: ['field1', 'field2', 'field3', 'field4']
}
};
var userAccessRule = {
model: {field1: '', field2: '', field3: '', field4: ''},
routes: ['/api1/admin/user/*', '/api1/member/user/*'],
fields: {
public: ['field1', 'field3'],
member: ['field2', 'field3'],
admin: ['field1', 'field2', 'field3', 'field4']
}
};
How to use
In context of Express:
var refiner = require('express-json-refiner');
var load = require('express-load');
var app = express();
app.configure(function() {
...
app.use(refiner.digest);
...
});
load('model').then('access').into(app);
var opts = {
debug: false,
rules: app.access
};
refiner.init(opts, app);
app.get('/api1/admin', function(req, res){
var o = {'field1': '1', 'field2': '2', 'field3': '3'};
req.api = {model: 'api1', scope:'public'};
req.api = {scope:'public'};
res.json(o);
});
scope
can be set globaly for instance by this way, example made with passport-http-bearer
var checkAdminAccess = function (req, res, next) {
if (!req.user || req.user.role !== "admin") {
var err = new Error('not allowed!');
err.status = 403;
next(err);
return;
}
req.api = {scope:'admin'};
next();
};
app.all('/api/v1/admin/*', passport.authenticate('bearer', { session: false }), checkAdminAccess);
Do not hesitate look at test folder hierarchy files.
Installation
Using npm:
npm install express-json-refiner
Build
You can run the tests by running
npm install
or
npm test
assuming you already have grunt
installed, otherwise you also need to do:
npm install -g grunt-cli
License
The MIT License (MIT)
Copyright (c) 2014 Julien Valéry
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.