Add some audit logs.

This commit is contained in:
James Cole
2024-01-04 08:32:42 +01:00
parent 82749cea07
commit 84ae6a633e

View File

@@ -21,36 +21,42 @@ class IsValidZeroOrMoreAmount implements ValidationRule
// must not be empty: // must not be empty:
if($this->emptyString($value)) { if($this->emptyString($value)) {
$fail('validation.filled')->translate(); $fail('validation.filled')->translate();
Log::info(sprintf('IsValidZeroOrMoreAmount: "%s" cannot be empty.', $value)); $message = sprintf('IsValidZeroOrMoreAmount: "%s" cannot be empty.', $value);
Log::info($message);
Log::channel('audit')->info($message);
return; return;
} }
// must be a number: // must be a number:
if(!$this->isValidNumber($value)) { if(!$this->isValidNumber($value)) {
$fail('validation.numeric')->translate(); $fail('validation.numeric')->translate();
Log::info(sprintf('IsValidZeroOrMoreAmount: "%s" is not a number.', $value)); $message = sprintf('IsValidZeroOrMoreAmount: "%s" is not a number.', $value);
Log::info($message);
Log::channel('audit')->info($message);
return; return;
} }
// must not be scientific notation: // must not be scientific notation:
if($this->scientificNumber($value)) { if($this->scientificNumber($value)) {
$fail('validation.scientific_notation')->translate(); $fail('validation.scientific_notation')->translate();
Log::info(sprintf('IsValidZeroOrMoreAmount: "%s" cannot be in the scientific notation.', $value)); $message = sprintf('IsValidZeroOrMoreAmount: "%s" cannot be in the scientific notation.', $value);
Log::info($message);
Log::channel('audit')->info($message);
return; return;
} }
// must be zero or more // must be zero or more
if(!$this->zeroOrMore($value)) { if(!$this->zeroOrMore($value)) {
$fail('validation.more_than_zero_correct')->translate(); $fail('validation.more_than_zero_correct')->translate();
Log::info(sprintf('IsValidZeroOrMoreAmount: "%s" must be zero or more.', $value)); $message = sprintf('IsValidZeroOrMoreAmount: "%s" must be zero or more.', $value);
Log::info($message);
Log::channel('audit')->info($message);
return; return;
} }
// must be less than 100 million and 1709: // must be less than 100 million and 1709:
if($this->moreThanLots($value)) { if($this->moreThanLots($value)) {
Log::info(sprintf('IsValidPositiveAmount: "%s" must be less than %s.', $value, self::BIG_AMOUNT));
$fail('validation.lte.numeric')->translate(['value' => self::BIG_AMOUNT]); $fail('validation.lte.numeric')->translate(['value' => self::BIG_AMOUNT]);
$message = sprintf('IsValidPositiveAmount: "%s" must be less than %s.', $value, self::BIG_AMOUNT);
Log::info($message);
Log::channel('audit')->info($message);
} }
Log::info(sprintf('IsValidZeroOrMoreAmount: "%s" is a valid positive amount.', $value)); Log::info(sprintf('IsValidZeroOrMoreAmount: "%s" is a valid positive amount.', $value));
} }