Add is_min & is_max to validator

This commit is contained in:
Starbeamrainbowlabs 2019-06-13 21:53:26 +01:00
parent bbf3d02b5d
commit 7710331f1e
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 32 additions and 1 deletions

View File

@ -51,6 +51,37 @@ class Validator {
"Error: The field $key in your request isn't a number."
);
}
/**
* Ensures that the value associated with the given key is at most a given
* value.
* @param string $key The key to test the value of.
* @param int|float $max The maximum value allowed.
* @return void
*/
public function is_max(string $key, $max) {
$this->add_test(
$key,
function($data) use($max) { return floatval($data) <= $max; },
400,
"Error: The field $key in your request must be at most $max."
);
}
/**
* Ensures that the value associated with the given key is at least a given
* value.
* @param string $key The key to test the value of.
* @param int|float $min The minimum value allowed.
* @return void
*/
public function is_min(string $key, $min) {
$this->add_test(
$key,
function($data) use($min) { return floatval($data) >= $min; },
400,
"Error: The field $key in your request must be at least $min."
);
}
/**
* Checks that the value associated with the given key is a least a given
* number of characters long.