| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 | <?php namespace System;class Validator {	/**	 * The array being validated.	 *	 * @var array	 */	public $attributes;	/**	 * The validation rules.	 *	 * @var array	 */	public $rules;	/**	 * The validation messages.	 *	 * @var array	 */	public $messages;	/**	 * The post-validation error messages.	 *	 * @var array	 */	public $errors;	/**	 * The language that should be used when retrieving error messages.	 *	 * @var string	 */	public $language;	/**	 * The "size" related validation rules.	 *	 * @var array	 */	protected $size_rules = array('size', 'between', 'min', 'max');	/**	 * Create a new validator instance.	 *	 * @param  array  $attributes	 * @param  array  $rules	 * @param  array  $messages	 * @return void	 */	public function __construct($attributes, $rules, $messages = array())	{		foreach ($rules as $key => &$rule)		{			$rule = (is_string($rule)) ? explode('|', $rule) : $rule;		}		$this->attributes = $attributes;		$this->rules = $rules;		$this->messages = $messages;	}	/**	 * Factory for creating new validator instances.	 *	 * @param  array      $attributes	 * @param  array      $rules	 * @param  array      $messages	 * @return Validator	 */	public static function make($attributes, $rules, $messages = array())	{		return new static($attributes, $rules, $messages);	}	/**	 * Validate the target array using the specified validation rules.	 *	 * @return bool	 */	public function invalid()	{		return ! $this->valid();	}	/**	 * Validate the target array using the specified validation rules.	 *	 * @return bool	 */	public function valid()	{		$this->errors = new Messages;		foreach ($this->rules as $attribute => $rules)		{			foreach ($rules as $rule)			{				$this->check($attribute, $rule);			}		}		return count($this->errors->messages) == 0;	}	/**	 * Evaluate an attribute against a validation rule.	 *	 * @param  string  $attribute	 * @param  string  $rule	 * @return void	 */	protected function check($attribute, $rule)	{		list($rule, $parameters) = $this->parse($rule);		if ( ! method_exists($this, $validator = 'validate_'.$rule))		{			throw new \Exception("Validation rule [$rule] doesn't exist.");		}		// No validation will be run for attributes that do not exist unless the rule being validated		// is "required" or "accepted". No other rules have implicit "required" checks.		if ( ! static::validate_required($attribute) and ! in_array($rule, array('required', 'accepted')))		{			return;		}		if ( ! $this->$validator($attribute, $parameters))		{			$this->errors->add($attribute, $this->format_message($this->get_message($attribute, $rule), $attribute, $rule, $parameters));		}	}	/**	 * Validate that a required attribute exists in the attributes array.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_required($attribute)	{		if ( ! array_key_exists($attribute, $this->attributes))		{			return false;		}		if (is_string($this->attributes[$attribute]) and trim($this->attributes[$attribute]) === '')		{			return false;		}		return true;	}	/**	 * Validate that an attribute has a matching confirmation attribute.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_confirmed($attribute)	{		return array_key_exists($attribute.'_confirmation', $this->attributes) and $this->attributes[$attribute] == $this->attributes[$attribute.'_confirmation'];	}	/**	 * Validate that an attribute was "accepted".	 *	 * This validation rule implies the attribute is "required".	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_accepted($attribute)	{		return static::validate_required($attribute) and ($this->attributes[$attribute] == 'yes' or $this->attributes[$attribute] == '1');	}	/**	 * Validate that an attribute is numeric.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_numeric($attribute)	{		return is_numeric($this->attributes[$attribute]);	}	/**	 * Validate that an attribute is an integer.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_integer($attribute)	{		return filter_var($this->attributes[$attribute], FILTER_VALIDATE_INT) !== false;	}	/**	 * Validate the size of an attribute.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_size($attribute, $parameters)	{		return $this->get_size($attribute) == $parameters[0];	}	/**	 * Validate the size of an attribute is between a set of values.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_between($attribute, $parameters)	{		return $this->get_size($attribute) >= $parameters[0] and $this->get_size($attribute) <= $parameters[1];	}	/**	 * Validate the size of an attribute is greater than a minimum value.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_min($attribute, $parameters)	{		return $this->get_size($attribute) >= $parameters[0];	}	/**	 * Validate the size of an attribute is less than a maximum value.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_max($attribute, $parameters)	{		return $this->get_size($attribute) <= $parameters[0];	}	/**	 * Get the size of an attribute.	 *	 * @param  string  $attribute	 * @return mixed	 */	protected function get_size($attribute)	{		if (is_numeric($this->attributes[$attribute]))		{			return $this->attributes[$attribute];		}		return (array_key_exists($attribute, $_FILES)) ? $this->attributes[$attribute]['size'] / 1000 : Str::length(trim($this->attributes[$attribute]));	}	/**	 * Validate an attribute is contained within a list of values.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_in($attribute, $parameters)	{		return in_array($this->attributes[$attribute], $parameters);	}	/**	 * Validate an attribute is not contained within a list of values.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_not_in($attribute, $parameters)	{		return ! in_array($this->attributes[$attribute], $parameters);	}	/**	 * Validate the uniqueness of an attribute value on a given database table.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_unique($attribute, $parameters)	{		if ( ! isset($parameters[1]))		{			$parameters[1] = $attribute;		}		return DB\Manager::connection()->table($parameters[0])->where($parameters[1], '=', $this->attributes[$attribute])->count() == 0;	}	/**	 * Validate than an attribute is a valid e-mail address.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_email($attribute)	{		return filter_var($this->attributes[$attribute], FILTER_VALIDATE_EMAIL) !== false;	}	/**	 * Validate than an attribute is a valid URL.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_url($attribute)	{		return filter_var($this->attributes[$attribute], FILTER_VALIDATE_URL) !== false;	}	/**	 * Validate that an attribute is an active URL.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_active_url($attribute)	{		$url = str_replace(array('http://', 'https://', 'ftp://'), '', Str::lower($this->attributes[$attribute]));				return checkdnsrr($url);	}	/**	 * Validate the MIME type of a file is an image MIME type.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_image($attribute)	{		return static::validate_mimes($attribute, array('jpg', 'png', 'gif', 'bmp'));	}	/**	 * Validate than an attribute contains only alphabetic characters.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_alpha($attribute)	{		return preg_match('/^([a-z])+$/i', $this->attributes[$attribute]);	}	/**	 * Validate than an attribute contains only alpha-numeric characters.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_alpha_num($attribute)	{		return preg_match('/^([a-z0-9])+$/i', $this->attributes[$attribute]);	}	/**	 * Validate than an attribute contains only alpha-numeric characters, dashes, and underscores.	 *	 * @param  string  $attribute	 * @return bool	 */	protected function validate_alpha_dash($attribute)	{		return preg_match('/^([-a-z0-9_-])+$/i', $this->attributes[$attribute]);		}	/**	 * Validate the MIME type of a file upload attribute is in a set of MIME types.	 *	 * @param  string  $attribute	 * @param  array   $parameters	 * @return bool	 */	protected function validate_mimes($attribute, $parameters)	{		foreach ($parameters as $extension)		{			if (File::is($extension, $this->attributes[$attribute]['tmp_name']))			{				return true;			}		}		return false;	}	/**	 * Get the proper error message for an attribute and rule.	 *	 * Developer specified attribute specific rules take first priority.	 * Developer specified error rules take second priority.	 *	 * If the message has not been specified by the developer, the default will be used	 * from the validation language file.	 *	 * @param  string  $attribute	 * @param  string  $rule	 * @return string	 */	protected function get_message($attribute, $rule)	{		if (array_key_exists($attribute.'_'.$rule, $this->messages))		{			return $this->messages[$attribute.'_'.$rule];		}		elseif (array_key_exists($rule, $this->messages))		{			return $this->messages[$rule];		}		else		{			$message = Lang::line('validation.'.$rule)->get($this->language);			// For "size" rules that are validating strings or files, we need to adjust			// the default error message appropriately.			if (in_array($rule, $this->size_rules) and ! is_numeric($this->attributes[$attribute]))			{				return (array_key_exists($attribute, $_FILES))                                                 ? rtrim($message, '.').' '.Lang::line('validation.kilobytes')->get($this->language).'.'                                                 : rtrim($message, '.').' '.Lang::line('validation.characters')->get($this->language).'.';			}			return $message;		}	}	/**	 * Replace all error message place-holders with actual values.	 *	 * @param  string  $message	 * @param  string  $attribute	 * @param  string  $rule	 * @param  array   $parameters	 * @return string	 */	protected function format_message($message, $attribute, $rule, $parameters)	{		$display = Lang::line('attributes.'.$attribute)->get($this->language, function() use ($attribute) { return str_replace('_', ' ', $attribute); });		$message = str_replace(':attribute', $display, $message);		if (in_array($rule, $this->size_rules))		{			$max = ($rule == 'between') ? $parameters[1] : $parameters[0];			$message = str_replace(':size', $parameters[0], str_replace(':min', $parameters[0], str_replace(':max', $max, $message)));		}		elseif (in_array($rule, array('in', 'not_in', 'mimes')))		{			$message = str_replace(':values', implode(', ', $parameters), $message);		}		return $message;	}	/**	 * Determine if an attribute has a rule assigned to it.	 *	 * @param  string  $attribute	 * @param  array   $rules	 * @return bool	 */	protected function has_rule($attribute, $rules)	{		foreach ($this->rules[$attribute] as $rule)		{			list($rule, $parameters) = $this->parse($rule);			if (in_array($rule, $rules)) return true;		}		return false;	}	/**	 * Extract the rule name and parameters from a rule.	 *	 * @param  string  $rule	 * @return array	 */	protected function parse($rule)	{		$parameters = (($colon = strpos($rule, ':')) !== false) ? explode(',', substr($rule, $colon + 1)) : array();		return array(is_numeric($colon) ? substr($rule, 0, $colon) : $rule, $parameters);	}	/**	 * Set the language that should be used when retrieving error messages.	 *	 * @param  string     $language	 * @return Validator	 */	public function lang($language)	{		$this->language = $language;		return $this;	}}
 |