clydeio-request-size-limiter

0.1.2 • Public • Published

Request Size Limiter Filter

Request size limiter filter for Clyde API gateway, which allows blocks request depending on its body's length.

Implementation is based on raw-body module.

Installation

npm install clydeio-request-size-limiter --save

Configuration

The filter wraps the raw-body module configuration options:

  • limit - The byte limit of the body. If the body ends up being larger than this limit, a 413 error code is returned. You can specify values in string format: 30kb, 1mb, ... (internally bytes module is used).
  • length - The length of the stream. If the contents of the stream do not add up to this length, an 400 error code is returned.
  • encoding - The requested encoding. By default, a Buffer instance will be returned. Default encoding is utf8. You can use any type of encoding supported by iconv-lite.

Examples

Block requests with body longer than 100 bytes:

{
  "prefilters" : [
    {
      "id" : "size-limiter",
      "path" : "clydeio-request-size-limiter",
      "config" : {
        "limit" : "100b"
      }
    }
    ...
  ]
}

Blocks request with content length different than 1kb

{
  "prefilters" : [
    {
      "id" : "size-limiter",
      "path" : "clydeio-request-size-limiter",
      "config" : {
        "length" : 1024
      }
    }
    ...
  ]
}

Notes

  • It must be configured as a global or provider's prefilter. It has no sense as a postfilter.

License

The MIT License (MIT)

Copyright (c) 2015 Antonio Santiago (@acanimal)

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.

Package Sidebar

Install

npm i clydeio-request-size-limiter

Weekly Downloads

1

Version

0.1.2

License

MIT

Last publish

Collaborators

  • acanimal