ユーザー登録のバリデーションを設定したいのですが、うまくいきません。$validation 配列に電子メール、ロール、およびパスワードのフィールドしかない場合(他のフィールドは削除します)、機能し、新しいユーザーが保存されます。他のフィールドを追加しようとすると失敗し、「ユーザーを保存できませんでした。もう一度やり直してください」というエラー メッセージが表示されます。
re_password チェックだと確信しています。その検証を削除すると、機能します。ただし、re_password の検証では、パスワードが異なる場合にエラーが表示されるため、どこを見ればよいかわかりません。
これが私のユーザーテーブルです
id | email | password | location | website | role | created | modified
検証要件は次のとおりです。新しいユーザーを保存するには、電子メール、パスワード、役割以外をすべて削除する必要があります。
public $validate = array(
'email' => 'email'
,
'password' => array(
'required' => array(
'rule' => array('minLength', '8'),
'message' => 'A password with a minimum length of 8 characters is required'
)
),
're_password' => array(
'required' => array(
'rule' => array('equalTo', 'password' ),
'message' => 'Both password fields must be filled out'
)
),
'role' => array(
'valid' => array(
'rule' => array('inList', array('admin', 'author')),
'message' => 'Please enter a valid role',
'allowEmpty' => false
)
),
'location' => array(
'valid' => array(
'rule' => array('notEmpty'),
'message' => 'Please select a location'
)
)
);
フォームは次のとおりです(オプション配列は上にあります。表示する必要はないと考えられます)
echo $this->Form->input('email');
echo $this->Form->input('password');
echo $this->Form->input('re_password', array('type'=>'password', 'label'=>'Re-Enter Password', 'value'=>'', 'autocomplete'=>'off'));
echo $this->Form->input('location', array('options' => $options, 'label' => 'Select Nearest Location'));
echo $this->Form->input('website',array('label'=>'Enter your website, such as www.example.com. '));
echo $this->Form->input('role', array('type' => 'hidden', 'default' => 'user'));
User モデルの re_password チェック関数は次のとおりです。
function check_user_password($userid) {
$salt = Configure::read('Security.salt');
$this->User->id = $userid;
$hashed_password = $this->User->field('password');
// check password
if($hashed_password == md5($data['User']['re_password'].$salt)) {
return true;
} else {
return false;
}
}
最後に、UsersController の add 関数です。
public function add() {
if ($this->request->is('post')) {
$this->User->create(); //create initiates a form on User/add.ctp
if ($this->User->save($this->request->data)) { //save the form data
$this->Session->setFlash(__('The user has been saved'));
$this->redirect(array('controller' => 'demos', 'action' => 'index'));
} else {
$this->Session->setFlash(__('The user could not be saved. Please, try again.'));
}
}
}
他に見るべきものがあれば教えてください