Struct multer::Constraints
source · pub struct Constraints { /* private fields */ }
Expand description
Represents some rules to be applied on the stream and field’s content size to prevent DoS attacks.
It’s recommended to add some rules on field (specially text field) size to
avoid potential DoS attacks from attackers running the server out of memory.
This type provides some API to apply constraints on very granular level to
make multipart/form-data
safe. By default, it does not apply any
constraint.
Examples
use multer::{Multipart, Constraints, SizeLimit};
// Create some constraints to be applied to the fields to prevent DoS attack.
let constraints = Constraints::new()
// We only accept `my_text_field` and `my_file_field` fields,
// For any unknown field, we will throw an error.
.allowed_fields(vec!["my_text_field", "my_file_field"])
.size_limit(
SizeLimit::new()
// Set 15mb as size limit for the whole stream body.
.whole_stream(15 * 1024 * 1024)
// Set 10mb as size limit for all fields.
.per_field(10 * 1024 * 1024)
// Set 30kb as size limit for our text field only.
.for_field("my_text_field", 30 * 1024),
);
// Create a `Multipart` instance from a stream and the constraints.
let mut multipart = Multipart::with_constraints(some_stream, "X-BOUNDARY", constraints);
while let Some(field) = multipart.next_field().await.unwrap() {
let content = field.text().await.unwrap();
assert_eq!(content, "abcd");
}
Implementations§
source§impl Constraints
impl Constraints
sourcepub fn new() -> Constraints
pub fn new() -> Constraints
Creates a set of rules with default behaviour.
sourcepub fn size_limit(self, size_limit: SizeLimit) -> Constraints
pub fn size_limit(self, size_limit: SizeLimit) -> Constraints
Applies rules on field’s content length.
sourcepub fn allowed_fields<N: Into<String>>(
self,
allowed_fields: Vec<N>
) -> Constraints
pub fn allowed_fields<N: Into<String>>( self, allowed_fields: Vec<N> ) -> Constraints
Specify which fields should be allowed, for any unknown field, the
next_field
will throw an error.
Trait Implementations§
source§impl Debug for Constraints
impl Debug for Constraints
source§impl Default for Constraints
impl Default for Constraints
source§fn default() -> Constraints
fn default() -> Constraints
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for Constraints
impl Send for Constraints
impl Sync for Constraints
impl Unpin for Constraints
impl UnwindSafe for Constraints
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more