blob: b6ceff903b60e23ddefb4dd54e27e5afdf4b92d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?php
/**
* TEmailAddressValidator class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Revision: $ $Date: $
* @package System.Web.UI.WebControls
*/
/**
* Using TRegularExpressionValidator class
*/
Prado::using('System.Web.UI.WebControls.TRegularExpressionValidator');
/**
* TEmailAddressValidator class
*
* TEmailAddressValidator validates whether the value of an associated
* input component is a valid email address. It will check MX record
* if checkdnsrr() is available in the installed PHP.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
* @package System.Web.UI.WebControls
* @since 3.0
*/
class TEmailAddressValidator extends TRegularExpressionValidator
{
/**
* Regular expression used to validate the email address
*/
const EMAIL_REGEXP="\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*";
/**
* @return string the regular expression that determines the pattern used to validate a field.
*/
public function getRegularExpression()
{
$regex=parent::getRegularExpression();
return $regex===''?self::EMAIL_REGEXP:$regex;
}
/**
* Returns an array of javascript validator options.
* @return array javascript validator options.
*/
public function evaluateIsValid()
{
$valid=parent::evaluateIsValid();
if($valid && function_exists('checkdnsrr'))
{
if(($value=$this->getValidationValue($this->getValidationTarget()))!=='')
{
if(($pos=strpos($value,'@'))!==false)
{
$domain=substr($value,$pos+1);
return $domain===''?false:checkdnsrr($domain,'MX');
}
else
return false;
}
}
return $valid;
}
}
?>
|