1.0.0 • Published 11 months ago

egg-plugin-validate v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

egg-plugin-validate

An egg plugin for validating parameters, Forked from egg-validate, And added two built-in custom rules for object and array

NPM version Codacy Badge Known Vulnerabilities npm download License

Sonar

See parameter for more information such as custom rule.

Install

# use pnpm
$ pnpm install egg-plugin-validate

# use yarn
$ yarn add egg-plugin-validate

Usage

// {app_root}/config/plugin.js
exports.validate = {
  enable: true,
  package: 'egg-plugin-validate'
}

Configurations

egg-plugin-validate support all parameter's configurations, check parameter documents to get more information.

// {app_root}/config/config.default.js
exports.validate = {
  // convert: false,
  // validateRoot: false,
}

Validate Request Body

// {app_root}/app/controller/home.js
const { Controller } = require('egg')

class HomeController extends Controller {
  async index() {
    const { ctx, app } = this
    ctx.validate({ id: 'id' }) // will throw if invalid
    // or
    const errors = app.validator.validate({ id: 'id' }, ctx.request.body)
  }
}

module.exports = HomeController

Extend Rules

  • {app_root}/app.js
app.validator.addRule('object', (rule, value) => {
  try {
    JSON.parse(value)
  } catch (err) {
    return 'must be json string'
  }
})

Change logs

Change logs

Questions & Suggestions

Please open an issue here.

License

MIT