Skip to content

Commit

Permalink
Fixes yiisoft#143. UrlValidator and EmailValidator IDN support.
Browse files Browse the repository at this point in the history
  • Loading branch information
resurtm committed May 15, 2013
1 parent 5dffc75 commit 8a5e1f4
Show file tree
Hide file tree
Showing 7 changed files with 96 additions and 9 deletions.
17 changes: 16 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,26 @@
"bin": [
"yii/yiic"
],
"repositories": [
{
"type": "package",
"package": {
"name": "bestiejs/punycode.js",
"version": "1.2.1",
"source": {
"url": "git://github.com/bestiejs/punycode.js.git",
"type": "git",
"reference": "1.2.1"
}
}
}
],
"require": {
"php": ">=5.3.0",
"michelf/php-markdown": "1.3",
"twig/twig": "1.12.*",
"smarty/smarty": "3.1.*",
"ezyang/htmlpurifier": "v4.5.0"
"ezyang/htmlpurifier": "v4.5.0",
"bestiejs/punycode.js": "1.2.1"
}
}
12 changes: 11 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions yii/assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,10 @@
),
'depends' => array('yii'),
),
'punycode' => array(
'sourcePath' => __DIR__ . '/vendor/bestiejs/punycode.js',
'js' => array(
'punycode.min.js',
),
),
);
26 changes: 23 additions & 3 deletions yii/assets/yii.validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,18 @@ yii.validation = (function ($) {
return;
}

var valid = value.match(options.pattern) && (!options.allowName || value.match(options.fullPattern));
var valid = true;

if (options.idn) {
var regexp = /^(.*)@(.*)$/, matches = regexp.exec(value);
if (matches === null) {
valid = false;
} else {
value = punycode.toASCII(matches[1]) + '@' + punycode.toASCII(matches[2]);
}
}

if (!valid) {
if (!valid || !(value.match(options.pattern) && (!options.allowName || value.match(options.fullPattern)))) {
messages.push(options.message);
}
},
Expand All @@ -126,7 +135,18 @@ yii.validation = (function ($) {
value = options.defaultScheme + '://' + value;
}

if (!value.match(options.pattern)) {
var valid = true;

if (options.idn) {
var regexp = /^([^:]+):\/\/([^\/]+)(.*)?/, matches = regexp.exec(value);
if (matches === null) {
valid = false;
} else {
value = matches[1] + '://' + punycode.toASCII(matches[2]) + matches[3];
}
}

if (!valid || !value.match(options.pattern)) {
messages.push(options.message);
}
},
Expand Down
21 changes: 18 additions & 3 deletions yii/validators/EmailValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ class EmailValidator extends Validator
* Defaults to false.
*/
public $checkPort = false;
/**
* @var boolean whether validation process should take into account IDN (internationalized domain
* names). Defaults to false meaning that validation of emails containing IDN will always fail.
*/
public $idn = false;


/**
* Initializes the validator.
Expand Down Expand Up @@ -81,10 +87,18 @@ public function validateAttribute($object, $attribute)
public function validateValue($value)
{
// make sure string length is limited to avoid DOS attacks
$valid = is_string($value) && strlen($value) <= 254
&& (preg_match($this->pattern, $value) || $this->allowName && preg_match($this->fullPattern, $value));
if (!is_string($value) || strlen($value) >= 255) {
return false;
}
if (($atPosition = strpos($value, '@')) === false) {
return false;
}
$domain = rtrim(substr($value, $atPosition + 1), '>');
if ($this->idn) {
$value = idn_to_ascii(ltrim(substr($value, 0, $atPosition), '<')) . '@' . idn_to_ascii($domain);
}
$valid = preg_match($this->pattern, $value) || $this->allowName && preg_match($this->fullPattern, $value);
if ($valid) {
$domain = rtrim(substr($value, strpos($value, '@') + 1), '>');
if ($this->checkMX && function_exists('checkdnsrr')) {
$valid = checkdnsrr($domain, 'MX');
}
Expand All @@ -111,6 +125,7 @@ public function clientValidateAttribute($object, $attribute)
'{attribute}' => $object->getAttributeLabel($attribute),
'{value}' => $object->$attribute,
))),
'idn' => (boolean)$this->idn,
);
if ($this->skipOnEmpty) {
$options['skipOnEmpty'] = 1;
Expand Down
14 changes: 13 additions & 1 deletion yii/validators/UrlValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ class UrlValidator extends Validator
* contain the scheme part.
**/
public $defaultScheme;
/**
* @var boolean whether validation process should take into account IDN (internationalized
* domain names). Defaults to false meaning that validation of URLs containing IDN will always
* fail.
*/
public $idn = false;


/**
Expand Down Expand Up @@ -87,6 +93,12 @@ public function validateValue($value)
$pattern = $this->pattern;
}

if ($this->idn) {
$value = preg_replace_callback('/:\/\/([^\/]+)/', function($matches) {
return '://' . idn_to_ascii($matches[1]);
}, $value);
}

if (preg_match($pattern, $value)) {
return true;
}
Expand Down Expand Up @@ -115,6 +127,7 @@ public function clientValidateAttribute($object, $attribute)
'{attribute}' => $object->getAttributeLabel($attribute),
'{value}' => $object->$attribute,
))),
'idn' => (boolean)$this->idn,
);
if ($this->skipOnEmpty) {
$options['skipOnEmpty'] = 1;
Expand All @@ -126,4 +139,3 @@ public function clientValidateAttribute($object, $attribute)
return 'yii.validation.url(value, messages, ' . Json::encode($options) . ');';
}
}

9 changes: 9 additions & 0 deletions yii/widgets/ActiveField.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
use yii\helpers\Html;
use yii\base\Model;
use yii\web\JsExpression;
use yii\validators\EmailValidator;
use yii\validators\UrlValidator;

/**
* @author Qiang Xue <[email protected]>
Expand Down Expand Up @@ -121,6 +123,13 @@ public function begin()
}
$options['class'] = implode(' ', $class);

foreach ($this->model->getActiveValidators($attribute) as $validator) {
if (($validator instanceof EmailValidator || $validator instanceof UrlValidator) && $validator->idn) {
$this->form->view->registerAssetBundle('punycode');
break;
}
}

return Html::beginTag($this->tag, $options);
}

Expand Down

0 comments on commit 8a5e1f4

Please sign in to comment.