模型中的简单验证规则

时间:2014-12-30 05:27:12

标签: php laravel laravel-4 validationrules

我在这里提到Laravel 4.2 Validation Rules - Current Password Must Match DB Value

以下是我的密码确认规则:

 public static $ruleschangepwd = array(
    'OldPassword' =>  array( 'required'),  // need to have my rule here
    'NewPassword' => 'required|confirmed|alphaNum|min:5|max:10'
    );

但我在模型中有我的规则

正如我在问题中看到下面给出的自定义规则

Validator::extend('hashmatch', function($attribute, $value, $parameters)
{
    return Hash::check($value, Auth::user()->$parameters[0]);
});
$messages = array(
    'hashmatch' => 'Your current password must match your account password.'
);
$rules = array(
    'current_password' => 'required|hashmatch:password',
    'password'         => 'required|confirmed|min:4|different:current_password'
);

是否可以拥有这样的规则?

 'OldPassword' =>  array( 'required', 'match:Auth::user()->password') 

像这样或任何简单的自定义规则比上面给出的那样?

注意:由于我在模型中执行此操作,因此无法在我的模型中实现上述自定义规则。 (或者,如果我可以,我怎么能在模型中做到这一点)

更新:

我可以使用这样的东西

'OldPassword' =>  array( 'required' , 'same|Auth::user()->password'),

但我应该

Hash::check('plain text password', 'bcrypt hash')

1 个答案:

答案 0 :(得分:0)

您必须使用自定义规则扩展验证程序。但是,如果您在模型中包含规则,则应该没有问题。您可以在任何地方扩展验证器,规则将全局可用。

我建议您将新文件添加到项目app/validators.php

然后在app/start/global.php

的底部添加此行
require app_path().'/validators.php';

现在在validators.php内定义验证规则

Validator::extend('match_auth_user_password', function($attribute, $value, $parameters){
    return Hash::check($value, Auth::user()->password);
}

(我更改了名称以便更具描述性。你显然可以使用你喜欢的名字)

然后在您的规则中添加match_auth_user_password

public static $ruleschangepwd = array(
    'OldPassword' =>  'required|match_auth_user_password',
    'NewPassword' => 'required|confirmed|alphaNum|min:5|max:10'
);