GithubHelp home page GithubHelp logo

isabella232 / hapi-sanitize-payload Goto Github PK

View Code? Open in Web Editor NEW

This project forked from defra/hapi-sanitize-payload

0.0 0.0 0.0 29 KB

Hapi plugin to sanitize the request payload

License: MIT License

JavaScript 100.00%

hapi-sanitize-payload's Introduction

hapi-sanitize-payload npm version Build Status

A plugin to recursively sanitize or prune values in a request.payload object.

Currently uses the following rules:

  • Removes null characters (ie. \0) from string values
  • Deletes from the payload keys with a value of empty string (ie. ''), or optionally replaces them with a different value
  • Deletes from the payload keys with a value consisting entirely of whitespace (ie. ' \t\n '), or optionally replaces them with a different value
  • Deletes whitespace from ends of string (ie. ' text ' becomes 'text')
  • Optionally deletes/replaces null values

Registering the plugin

const registerPlugins = async (server) => {
  await server.register([
    { plugin: require('hapi-sanitize-payload'), options: { pruneMethod: 'delete' } }
  ]);
};

Options

  • enabled - whether or not the plugin is enabled.
  • pruneMethod - the method the sanitizer uses when a value that is to be pruned is encountered. Defaults to 'delete'. The value must be one of:
    • 'delete' - the key will be removed from the payload entirely (ie. { a: '', b: 'b' } ➡️ { b: 'b' }).
    • 'replace' - the key will be preserved, but its value will be replaced with the value of replaceValue.
  • replaceValue - valid only when pruneMethod is set to 'replace', this value will be used as the replacement of any pruned values (ie. if configured as null, then { a: '', b: 'b' } ➡️ { a: null, b: 'b' }).
  • stripNull - a boolean value to signify whether or not null properties should be pruned with the same pruneMethod and replaceValue as above. Defaults to false.

Each of the above options can be configured on a route-by-route basis via the sanitize plugin object.

const registerRoutes = (server) => {
  server.route({
    method: 'POST',
    path: '/users',
    handler: () => {
      // handler logic
    },
    options: {
      plugins: {
        sanitize: { enabled: false }
      }
    }
  });
};

Setting up the server.

(async () => {
  try {
    const server = new Hapi.Server();

    await registerPlugins(server);
    registerRoutes(server);

    await server.start();
  } catch (err) {
    // Insert your preferred error handling here...
  }
)();

hapi-sanitize-payload's People

Contributors

charlesbjohnson avatar dmlittle avatar robinjoseph08 avatar siddhantdange avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.