deduceType($value, $attribute); switch ($type) { case 'numeric': return $value; case 'array': return count($value); case 'file': return $value->getSize() / 1024; default: return mb_strlen($value); } } /** * Deduce the value type of an attribute. * * @param $value * * @return string */ protected function deduceType($value, $attribute = null) { if (is_numeric($value)) { return $this->guessType($value, $attribute); } elseif (is_array($value)) { return 'array'; } elseif ($value instanceof File) { return 'file'; } return 'string'; } /** * Guess the real type by examining rules. * * @param mixed $value * @param string|null $attribute * @return string */ protected function guessType($value, $attribute) { if ($attribute && in_array('string', $this->rules[$attribute])) { return 'string'; } return 'numeric'; } /** * Check if parameter should be converted to boolean. * * @param string $parameter * @return bool */ protected function shouldConvertToBoolean($parameter) { return in_array('boolean', Arr::get($this->rules, $parameter, [])); } /** * Convert the given values to boolean if they are string "true" / "false". * * @param array $values * * @return array */ protected function convertValuesToBoolean($values) { return array_map(function ($value) { if ($value === 'true') { return true; } elseif ($value === 'false') { return false; } return $value; }, $values); } /** * Convert the given values to null if they are string "null". * * @param array $values * @return array */ protected function convertValuesToNull($values) { return array_map(function ($value) { return Str::lower($value) === 'null' ? null : $value; }, $values); } /** * Validate that a required attribute exists. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validateRequired($attribute, $value) { if (is_null($value)) { return false; } elseif (is_string($value) && trim($value) === '') { return false; } elseif ((is_array($value) || $value instanceof Countable) && count($value) < 1) { return false; } elseif ($value instanceof File) { return (string) $value->getPath() != ''; } return true; } /** * Validate that an attribute exists when another attribute has a given value. * * @param string $attribute * @param mixed $value * @param mixed $parameters * * @return bool */ protected function validateRequiredIf($attribute, $value, $parameters) { $this->requireParameterCount(2, $parameters, 'required_if'); if (preg_match('/\.\d\./', $attribute, $matches)) { $parameters[0] = str_replace(['.*.'], $matches, $parameters[0]); } $other = Arr::get($this->data, $parameters[0]); $values = array_slice($parameters, 1); if (is_bool($other)) { $values = $this->convertValuesToBoolean($values); } if (in_array($other, $values)) { return $this->validateRequired($attribute, $value); } return true; } /** * Validate that an attribute is a valid e-mail address. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validateEmail($attribute, $value) { return ! ! is_email($value); } /** * Validate the size of an attribute. * * @param string $attribute * @param mixed $value * @param array $parameters * * @return bool */ protected function validateSize($attribute, $value, $parameters) { $this->requireParameterCount(1, $parameters, 'size'); return $this->getSize($attribute, $value) == $parameters[0]; } /** * Validate the size of an attribute is greater than a minimum value. * * @param string $attribute * @param mixed $value * @param array $parameters * * @return bool */ protected function validateMin($attribute, $value, $parameters) { $this->requireParameterCount(1, $parameters, 'min'); return $this->getSize($attribute, $value) >= $parameters[0]; } /** * Validate the size of an attribute is less than a maximum value. * * @param string $attribute * @param mixed $value * @param array $parameters * * @return bool */ protected function validateMax($attribute, $value, $parameters) { $this->requireParameterCount(1, $parameters, 'max'); return $this->getSize($attribute, $value) <= $parameters[0]; } /** * Validate that two attributes match. * * @param string $attribute * @param mixed $value * @param array $parameters * * @return bool */ protected function validateSame($attribute, $value, $parameters) { $this->requireParameterCount(1, $parameters, 'same'); $other = @$this->data[$parameters[0]]; return $value === $other; } /** * Validate that an attribute is a valid URL. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validateUrl($attribute, $value) { return (bool) Str::isUrl($value); } /** * Validate that an attribute is a string. * * @param string $attribute * @param mixed $value * @return bool */ public function validateString($attribute, $value) { return is_string($value); } /** * Validate that an attribute is a integer. * * @param string $attribute * @param mixed $value * @return bool */ public function validateInt($attribute, $value) { return $this->validateInteger($attribute, $value); } /** * Validate that an attribute is a integer. * * @param string $attribute * @param mixed $value * @return bool */ public function validateInteger($attribute, $value) { return is_int($value); } /** * Validate that an attribute has a given number of decimal places. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ public function validateDecimal($attribute, $value, $parameters) { $this->requireParameterCount(1, $parameters, 'decimal'); if (!$this->validateNumeric($attribute, $value)) { return false; } $matches = []; if (preg_match('/^[+-]?\d*\.?(\d*)$/', $value, $matches) !== 1) { return false; } $decimals = strlen(end($matches)); if (!isset($parameters[1])) { return $decimals == $parameters[0]; } return $decimals >= $parameters[0] && $decimals <= $parameters[1]; } /** * Validate that an attribute is numeric. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validateNumeric($attribute, $value) { return is_numeric($value); } /** * Validate that an attribute is a valid date. * * @param string $attribute * @param mixed $value * @return bool */ public function validateDate($attribute, $value) { if ($value instanceof DateTimeInterface) { return true; } try { if ((!is_string($value) && !is_numeric($value)) || strtotime($value) === false) { return false; } } catch (Exception $e) { return false; } $date = date_parse($value); return checkdate($date['month'], $date['day'], $date['year']); } /** * Validate that an attribute matches a date format. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ public function validateDateFormat($attribute, $value, $parameters) { $this->requireParameterCount(1, $parameters, 'date_format'); if (!is_string($value) && !is_numeric($value)) { return false; } foreach ($parameters as $format) { try { $date = DateTime::createFromFormat('!'.$format, $value); if ($date && $date->format($format) == $value) { return true; } } catch (ValueError $e) { return false; } } return false; } /** * Validate that an attribute is alphabetic. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validateAlpha($attribute, $value) { return is_string($value) && preg_match('/^[\pL\pM]+$/u', $value); } /** * Validate that an attribute is alphanum. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validateAlphanum($attribute, $value) { if (! is_string($value) && ! is_numeric($value)) { return false; } return preg_match('/^[\pL\pM\pN]+$/u', $value) > 0; } /** * Validate that an attribute is alphanum and -_. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validateAlphadash($attribute, $value) { if (! is_string($value) && ! is_numeric($value)) { return false; } return preg_match('/^[\pL\pM\pN_-]+$/u', $value) > 0; } /** * Validate the guessed extension of a file upload is in a set of file extensions. * * @param string $attribute * @param mixed $value * @param array $parameters * * @return bool */ protected function validateMimes($attribute, $value, $parameters) { if (! $this->isValidFileInstance($value)) { return false; } if ($this->shouldBlockPhpUpload($value, $parameters)) { return false; } /** * @var $value \FluentBoards\Framework\Validator\Contracts\File */ return $value->getPath() != '' && in_array( $value->guessExtension(), $parameters ); } /** * Validate the MIME type of a file upload attribute is in a set of MIME types. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ protected function validateMimetypes($attribute, $value, $parameters) { if (! $this->isValidFileInstance($value)) { return false; } if ($this->shouldBlockPhpUpload($value, $parameters)) { return false; } return $value->getPath() != '' && ( in_array($value->getMimeType(), $parameters) || in_array(explode('/', $value->getMimeType())[0].'/*', $parameters) ); } /** * Check that the given value is a valid file instance. * * @param mixed $value * * @return bool */ public function isValidFileInstance($value) { return $value instanceof File && $value->isValid(); } /** * Check if PHP uploads are explicitly allowed. * * @param mixed $value * @param array $parameters * * @return bool */ protected function shouldBlockPhpUpload($value, $parameters) { if (in_array('php', $parameters)) { return false; } /** * @var $value \FluentBoards\Framework\Validator\Contracts\File */ return strtolower($value->getClientOriginalExtension()) === 'php'; } /** * Validate that an attribute exists even if not filled. * * @param string $attribute * @param mixed $value * * @return bool */ protected function validatePresent($attribute, $value) { return Arr::has($this->data, $attribute); } /** * Validate that an attribute has a given number of digits. * * @param string $attribute * @param mixed $value * @param array $parameters * * @return bool */ public function validateDigits($attribute, $value, $parameters) { $this->requireParameterCount(1, $parameters, 'digits'); return $this->validateNumeric($attribute, $value) && strlen((string) $value) == $parameters[0]; } /** * Validate that an attribute is an array. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ public function validateArray($attribute, $value, $parameters = []) { if (! is_array($value)) { return false; } if (empty($parameters)) { return true; } return empty(array_diff_key($value, array_fill_keys($parameters, ''))); } /** * Validate that an array has all of the given keys. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ public function validateRequiredArrayKeys($attribute, $value, $parameters) { if (!is_array($value)) { return false; } foreach ($parameters as $param) { if (!Arr::exists($value, $param)) { return false; } } return true; } /** * Validate that an attribute passes a regular expression check. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ public function validateRegex($attribute, $value, $parameters) { if (! is_string($value) && ! is_numeric($value)) { return false; } $this->requireParameterCount(1, $parameters, 'regex'); return preg_match($parameters[0], $value) > 0; } /** * Validate an attribute is contained within a list of values. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ public function validateIn($attribute, $value, $parameters) { if (is_array($value) && $this->hasRule($attribute, 'Array')) { foreach ($value as $element) { if (is_array($element)) { return false; } } return count(array_diff($value, $parameters)) === 0; } return !is_array($value) && in_array((string) $value, $parameters); } /** * Validate an attribute is not contained within a list of values. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ public function validateNotIn($attribute, $value, $parameters) { return !$this->validateIn($attribute, $value, $parameters); } }