feathers generate service
? What kind of service is it? Mongoose
? What is the name of the service? posts
? Which path should the service be registered on? /posts
? Does the service require authentication? Yes
2. Create Validator file
inside your new service folder create new file - [YOUR_SERVICE_NAME].validators.js
To connect the joi validator we use createModelFromJoi,
in this way we can validation the Mongoose models without the hassle of maintaining two schemas.
open src > models > posts.models.js
src\models\posts.model.js
// posts-model.js - A mongoose model
//
// See http://mongoosejs.com/docs/models.html
// for more of what you can do here.
const validator = require('./posts.validators.js');
const {createModelFromJoi} = require('feathers-mongoose-casl');
module.exports = function (app) {
return createModelFromJoi(app, 'posts', validator);
};
hooks.validateAbilities
This is a wrapper of Casl, in this hook, we will define abilities and block client without the ability to run this request
Casl will add to mongoose query object a relevant key value before making the request, and validate Abilities will remove fields from user request by id abilities
hooks.validateSchema
This hook will use JOI to validate request data follow the scheme
hooks.sanitizedData
This hook will remove data from response follow the user abilities
hook.authenticate
This is wrapper of - Feathers local, token, and OAuth authentication over REST and Websockets using JSON Web Tokens (JWT) with PassportJS.
Now you can see the posts service inside the dashboard
Anyone can read the posts title
User can create/update only if he the author
Only admin user can delete posts