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.
npm install clydeio-request-size-limiter --save
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, a413
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, an400
error code is returned.encoding
- The requested encoding. By default, aBuffer
instance will be returned. Default encoding isutf8
. You can use any type of encoding supported by iconv-lite.
{
"prefilters" : [
{
"id" : "size-limiter",
"path" : "clydeio-request-size-limiter",
"config" : {
"limit" : "100b"
}
}
...
]
}
{
"prefilters" : [
{
"id" : "size-limiter",
"path" : "clydeio-request-size-limiter",
"config" : {
"length" : 1024
}
}
...
]
}
- It must be configured as a global or provider's prefilter. It has no sense as a postfilter.
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.