hapi-sanitize-payload

3.0.0 • Public • Published

hapi-sanitize-payload

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.
  • fieldOverrides - an object where each key is a property and its value is an object of options (pruneMethod, replaceValue, and stripNull). The options value overrides the default options for that given property.
  • nestedOverrides - an object where each key is a property and its value is an object of options (pruneMethod, replaceValue, and stripNull). The options value overrides the default options applied to the nested object of that property. The default options for that property are considered the options after the fieldOverrides are applied.

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...
  }
)();

Readme

Keywords

Package Sidebar

Install

npm i hapi-sanitize-payload

Weekly Downloads

344

Version

3.0.0

License

MIT

Unpacked Size

23.2 kB

Total Files

14

Last publish

Collaborators

  • erik.forsman-lob
  • jkleung11
  • tanya.sah
  • hunteryoakum
  • rdimouro7373
  • lobstertroy
  • joshnkoy
  • michel_lob
  • haroutrs
  • kjones_lob
  • eamon-barisone
  • nathanielwaldschmidtlob
  • zach.reed
  • richpodrazalob
  • kencrim
  • jorgelob
  • nick-place-lob
  • andrew.guterres
  • ajorczak
  • hanqingchen-lob
  • juan.frissdekereki
  • mmorgan-lob
  • karankwatra-lob
  • joey-bates-lob
  • luke.birdeau
  • mg-lob
  • vmangwani
  • sachinlob
  • nick.perri
  • siddharthpant92
  • bethqiang
  • kplob
  • samkitsheth95
  • erin-doyle
  • rich_seviora_lob
  • jfdavidson
  • meussdorffer
  • shannamurry
  • davidnutting-lob
  • amaan_lob
  • team.platform.lob.com
  • elijah-lob
  • jlowsley-lob
  • barnabygo
  • james.cho
  • douglaje
  • lob-owner
  • graeme.lowe.lob