Auth および ACL コンポーネントでCakePHP 1.2 を使用しています。
私のユーザー登録アクションでは、パスワードがハッシュ化されていません。具体的には、次の式です。
if ($this->data['User']['password'] !=
$this->Auth->password($this->data['User']['confirm_password']))
password
とに同じ値を送信しても、これは true と評価されますconfirm_password
。Auth->password
への呼び出しを削除すると、式が false と評価されるため、パスワードがハッシュされていないことはわかっています。
Auth モジュールがパスワードを自動的にハッシュすることを期待していました。私は何を間違っていますか?
これが私の見解です:
<?php
echo $form->create('User', array('action' => 'register'));
echo $form->input('email',
array('after' => $form->error(
'email_unique', 'This email is already registered.')));
echo $form->input('password');
echo $form->input('confirm_password', array('type' => 'password'));
echo $form->end('Register');
?>
ユーザーコントローラーからの登録アクションは次のとおりです。
function register(){
if ($this->data) {
if ($this->data['User']['password'] !=
$this->Auth->password($this->data['User']['confirm_password'])) {
$this->Session->setFlash(__('Password and Confirm Password must match.', true));
$this->data['User']['password'] = '';
$this->data['User']['confirm_password'] = '';
}
else{
$this->User->create();
if ($this->User->save($this->data)){
$this->redirect(array('action' => 'index'), null, true);
}
else {
$this->data['User']['password'] = '';
$this->data['User']['confirm_password'] = '';
$this->Session->setFlash(__('Some problem saving your information.', true));
}
}
}
}
そして、ここに私がandモジュールappController
を含める場所があります:Auth
Acl
class AppController extends Controller {
var $components = array('Acl', 'Auth');
function beforeFilter(){
if (isset($this->Auth)) {
$this->Auth->allow('display');
$this->Auth->fields =
array(
'username' => 'email',
'password' => 'password');
$this->Auth->authorize = 'actions';
}
}
}
私は何を間違っていますか?