CakePHP自定义验证 - 检查特定数量的大写,符号和数字

时间:2013-11-25 16:26:21

标签: php cakephp cakephp-2.0

正如标题所说,我需要验证密码字段,但它可以包含特定数量的大写字母,特殊字符和数字。所以我创建了这样的函数

function password_verification($password){
$errors[];
$min_password_length = ConfigOptions::getValue('password_minimum_length');// minimum password length
$special_characters = ConfigOptions::getValue('password_minimum_symbols');// Minimum symbols
$numbers = ConfigOptions::getValue('password_minimum_numbers');// minimum numbers
$length = strlen($password);// length of inserted password
preg_match_all("/[A-Z]/", $password, $caps_match);
$caps_count = count($caps_match [0]);// number of uppercase letters in password
preg_match_all("/[a-z]/", $password, $small_match);
$small_count = count($small_match [0]);// number of lowercase letters in password
preg_match_all("/[0-9]/", $password, $num_match);
$num_count = count($num_match [0]);// number of digits in password
preg_match_all("/[^a-zA-Z0-9]/", $password, $symb_match);
$symb_count = count($symb_match [0]);
if($min_password_length > $length) {
    $errors['password_length'] = __('Password cannot be shorter than '.$min_password_length.' characters');
}// if
if($uppercase > $caps_count) {
    $errors['password_uppercase'] = __('Password cannot have less than '.$uppercase.' uppercase letters');
}// if
if($special_characters > $symb_count) {
    $errors[] = __('Password cannot have less than '.$symb_count.' special characters');
}// if
if($numbers > $num_count) {
    $errors[] = __('Paswword cannot have less than '.$num_count.' numbers');
}// if
return $errors[];
}

我把它放在控制器中。但我想知道有没有办法将其用于模型验证。

1 个答案:

答案 0 :(得分:2)

为您的每个条件创建验证规则。以下是您需要在模型中添加内容的一般概念:

public $validate = array(
    'password' => array(
            'id_rule_1' => array(
                'rule' => 'isPasswordGreaterThanMinLenght'
            ),
            'id_rule_2' => array(
                'rule' => 'isCapsCountLimitReached'
            ),
        ));


public function isPasswordGreaterThanMinLenght($check){
    $min_password_length = ConfigOptions::getValue('password_minimum_length');// minimum password length
    $length = strlen($this->data['password']);// length of inserted password
    $this->validator()->getField('password')->getRule('id_rule_1')->message = 'Password cannot be shorter than '.$min_password_length.' characters';
    return ($min_password_length > $length);
}

public function isCapsCountLimitReached($check){
    $uppercase = '';//define uppercase here
    $password = $this->data['password'];
    preg_match_all("/[A-Z]/", $password, $caps_match);
    $caps_count = count($caps_match [0]);// number of uppercase letters in password
    $this->validator()->getField('password')->getRule('id_rule_2')->message = 'Password cannot have less than '.$uppercase.' uppercase letters';
    return ($uppercase > $caps_count);
}