mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-22 08:56:39 -06:00
68 lines
2.3 KiB
PHP
68 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Rules;
|
|
|
|
use FireflyIII\Support\Validation\ValidatesAmountsTrait;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class IsValidPositiveAmount implements ValidationRule
|
|
{
|
|
use ValidatesAmountsTrait;
|
|
|
|
/**
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
|
*/
|
|
public function validate(string $attribute, mixed $value, \Closure $fail): void
|
|
{
|
|
$value = (string)$value;
|
|
// must not be empty:
|
|
if ($this->emptyString($value)) {
|
|
$fail('validation.filled')->translate();
|
|
$message = sprintf('IsValidPositiveAmount: "%s" cannot be empty.', $value);
|
|
Log::debug($message);
|
|
Log::channel('audit')->info($message);
|
|
|
|
return;
|
|
}
|
|
|
|
// must be a number:
|
|
if (!$this->isValidNumber($value)) {
|
|
$fail('validation.numeric')->translate();
|
|
$message = sprintf('IsValidPositiveAmount: "%s" is not a number.', $value);
|
|
Log::debug($message);
|
|
Log::channel('audit')->info($message);
|
|
|
|
return;
|
|
}
|
|
// must not be scientific notation:
|
|
if ($this->scientificNumber($value)) {
|
|
$fail('validation.scientific_notation')->translate();
|
|
$message = sprintf('IsValidPositiveAmount: "%s" cannot be in the scientific notation.', $value);
|
|
Log::debug($message);
|
|
Log::channel('audit')->info($message);
|
|
|
|
return;
|
|
}
|
|
// must be more than zero:
|
|
if ($this->lessOrEqualToZero($value)) {
|
|
$fail('validation.more_than_zero')->translate();
|
|
$message = sprintf('IsValidPositiveAmount: "%s" must be more than zero.', $value);
|
|
Log::debug($message);
|
|
Log::channel('audit')->info($message);
|
|
|
|
return;
|
|
}
|
|
// must be less than a large number
|
|
if ($this->moreThanLots($value)) {
|
|
$fail('validation.lte.numeric')->translate(['value' => self::BIG_AMOUNT]);
|
|
$message = sprintf('IsValidPositiveAmount: "%s" must be less than %s.', $value, self::BIG_AMOUNT);
|
|
Log::debug($message);
|
|
Log::channel('audit')->info($message);
|
|
}
|
|
Log::debug(sprintf('IsValidPositiveAmount: "%s" is a valid positive amount.', $value));
|
|
}
|
|
}
|