Inspired by the validator crate. The Sanitizer crate is a collection of methods and a macro to sanitize struct fields, leveraging the macros of rust, it follows the elegant approach by the validator crate.
[dependencies]
sanitizer = { version = "0.1", features = ["derive"] }
Then to use the crate
use sanitizer::prelude::*;
#[derive(Debug, Sanitize)]
struct SignupData {
#[sanitize(trim, lower_case)]
mail: String,
#[sanitize(clamp(1, 60))]
age: u8,
#[sanitize]
user: User,
}
#[derive(Debug, Sanitize)]
struct User {
id: u64,
#[sanitize(trim, clamp(50))]
name: String,
}
fn main() {
let instance = SignupData::new();
instance.sanitize();
}
If you do not want to use the derive macro, then the sanitizer crate provides structures and methods for sanitizing ints
let int: u8 = 50;
let mut instance = IntSanitizer::from(int);
instance.clamp(99, 101);
assert_eq!(99, instance.get());
and strings
let mut sanitize = StringSanitizer::from(" some_string12 ");
sanitize.trim().numeric();
assert_eq!("12", sanitize.get());
Removes whitespace from ends.
Removes any character that is not a numeric.
Removes any character that is not an alphanumeric.
Converts string input to lowercase.
Converts string input to UPPERCASE.
Converts string input to camelCase.
Converts string input to snake_case.
Converts string input to SCREAMING_SNAKE_CASE using the Inflector crate.
Converts string input to E164 International Phone Number format. This panics if the phone number is not a valid one.
Limit an valid integer field with the given min and max.
Limit a string input length to the following number
Use a custom function to sanitize a field differently. For example
#[derive(Sanitize)]
struct SanitizerTest {
#[sanitize(custom(func_string))]
field_string: String,
}
fn func_string(field: &str) -> String {
let mut sanitizer = StringSanitizer::from(field);
sanitizer.trim();
sanitizer.get()
}
#[test]
fn sanitizer_check_custom_functions() {
let mut instance = SanitizerTest {
field_string: String::from("Hello "),
};
instance.sanitize();
assert_eq!(instance.field_string, String::from("Hello"));
}
#[derive(Sanitize)]
struct First {
#[sanitize(trim)]
name: String,
#[sanitize]
info: OtherInfo,
}
#[derive(Sanitize)]
struct OtherInfo {
#[sanitize(numeric)]
id: String,
#[sanitize(lower_case, trim)]
email: String,
}
The sanitize
method of First
will call the sanitizer method of OtherInfo
automatically,
if you would like to individually snaitize OtherInfo
then you can just call snaitize
on one of its instance.
dashxhq/sanitizer is licensed under the MIT License.