You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					122 lines
				
				3.8 KiB
			
		
		
			
		
	
	
					122 lines
				
				3.8 KiB
			| 
											14 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
| 
											13 years ago
										 |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
| 
											14 years ago
										 |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
| 
											14 years ago
										 | namespace yii\validators;
 | ||
|  | 
 | ||
| 
											13 years ago
										 | use Yii;
 | ||
| 
											13 years ago
										 | use yii\helpers\Html;
 | ||
| 
											13 years ago
										 | use yii\web\JsExpression;
 | ||
| 
											13 years ago
										 | use yii\helpers\Json;
 | ||
| 
											13 years ago
										 | 
 | ||
| 
											14 years ago
										 | /**
 | ||
| 
											14 years ago
										 |  * EmailValidator validates that the attribute value is a valid email address.
 | ||
| 
											14 years ago
										 |  *
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
| 
											14 years ago
										 |  * @since 2.0
 | ||
| 
											14 years ago
										 |  */
 | ||
| 
											14 years ago
										 | class EmailValidator extends Validator
 | ||
| 
											14 years ago
										 | {
 | ||
|  | 	/**
 | ||
|  | 	 * @var string the regular expression used to validate the attribute value.
 | ||
|  | 	 * @see http://www.regular-expressions.info/email.html
 | ||
|  | 	 */
 | ||
|  | 	public $pattern = '/^[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$/';
 | ||
|  | 	/**
 | ||
|  | 	 * @var string the regular expression used to validate email addresses with the name part.
 | ||
| 
											14 years ago
										 | 	 * This property is used only when [[allowName]] is true.
 | ||
| 
											14 years ago
										 | 	 * @see allowName
 | ||
|  | 	 */
 | ||
|  | 	public $fullPattern = '/^[^@]*<[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?>$/';
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var boolean whether to allow name in the email address (e.g. "John Smith <john.smith@example.com>"). Defaults to false.
 | ||
| 
											14 years ago
										 | 	 * @see fullPattern
 | ||
|  | 	 */
 | ||
|  | 	public $allowName = false;
 | ||
|  | 	/**
 | ||
|  | 	 * @var boolean whether to check the MX record for the email address.
 | ||
|  | 	 * Defaults to false. To enable it, you need to make sure the PHP function 'checkdnsrr'
 | ||
|  | 	 * exists in your PHP installation.
 | ||
|  | 	 */
 | ||
|  | 	public $checkMX = false;
 | ||
|  | 	/**
 | ||
|  | 	 * @var boolean whether to check port 25 for the email address.
 | ||
|  | 	 * Defaults to false.
 | ||
|  | 	 */
 | ||
|  | 	public $checkPort = false;
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * Initializes the validator.
 | ||
|  | 	 */
 | ||
|  | 	public function init()
 | ||
|  | 	{
 | ||
|  | 		parent::init();
 | ||
|  | 		if ($this->message === null) {
 | ||
|  | 			$this->message = Yii::t('yii|{attribute} is not a valid email address.');
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Validates the attribute of the object.
 | ||
|  | 	 * If there is any error, the error message is added to the object.
 | ||
| 
											14 years ago
										 | 	 * @param \yii\base\Model $object the object being validated
 | ||
| 
											14 years ago
										 | 	 * @param string $attribute the attribute being validated
 | ||
|  | 	 */
 | ||
| 
											14 years ago
										 | 	public function validateAttribute($object, $attribute)
 | ||
| 
											14 years ago
										 | 	{
 | ||
|  | 		$value = $object->$attribute;
 | ||
| 
											14 years ago
										 | 		if (!$this->validateValue($value)) {
 | ||
| 
											13 years ago
										 | 			$this->addError($object, $attribute, $this->message);
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * Validates the given value.
 | ||
|  | 	 * @param mixed $value the value to be validated.
 | ||
|  | 	 * @return boolean whether the value is valid.
 | ||
| 
											14 years ago
										 | 	 */
 | ||
|  | 	public function validateValue($value)
 | ||
|  | 	{
 | ||
|  | 		// make sure string length is limited to avoid DOS attacks
 | ||
| 
											13 years ago
										 | 		$valid = is_string($value) && strlen($value) <= 254
 | ||
|  | 			&& (preg_match($this->pattern, $value) || $this->allowName && preg_match($this->fullPattern, $value));
 | ||
| 
											14 years ago
										 | 		if ($valid) {
 | ||
| 
											14 years ago
										 | 			$domain = rtrim(substr($value, strpos($value, '@') + 1), '>');
 | ||
| 
											13 years ago
										 | 			if ($this->checkMX && function_exists('checkdnsrr')) {
 | ||
|  | 				$valid = checkdnsrr($domain, 'MX');
 | ||
|  | 			}
 | ||
|  | 			if ($valid && $this->checkPort && function_exists('fsockopen')) {
 | ||
|  | 				$valid = fsockopen($domain, 25) !== false;
 | ||
|  | 			}
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											14 years ago
										 | 		return $valid;
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Returns the JavaScript needed for performing client-side validation.
 | ||
| 
											14 years ago
										 | 	 * @param \yii\base\Model $object the data object being validated
 | ||
| 
											14 years ago
										 | 	 * @param string $attribute the name of the attribute to be validated.
 | ||
|  | 	 * @return string the client-side validation script.
 | ||
|  | 	 */
 | ||
|  | 	public function clientValidateAttribute($object, $attribute)
 | ||
|  | 	{
 | ||
| 
											13 years ago
										 | 		$options = array(
 | ||
|  | 			'pattern' => new JsExpression($this->pattern),
 | ||
|  | 			'fullPattern' => new JsExpression($this->fullPattern),
 | ||
|  | 			'allowName' => $this->allowName,
 | ||
|  | 			'message' => Html::encode(strtr($this->message, array(
 | ||
|  | 				'{attribute}' => $object->getAttributeLabel($attribute),
 | ||
|  | 				'{value}' => $object->$attribute,
 | ||
|  | 			))),
 | ||
|  | 		);
 | ||
|  | 		if ($this->skipOnEmpty) {
 | ||
|  | 			$options['skipOnEmpty'] = 1;
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											14 years ago
										 | 
 | ||
| 
											13 years ago
										 | 		return 'yii.validation.email(value, messages, ' . Json::encode($options) . ');';
 | ||
| 
											14 years ago
										 | 	}
 | ||
|  | }
 |