cakephp电话号码验证

时间:2013-06-27 08:31:22

标签: cakephp cakephp-2.0 cakephp-2.1

我是cakephp 2.x的新手,所以我不知道该怎么做..我想从他的电子邮件地址和电话号码登录用户..我的意图是如果数据库中的数字是这个“12345”并且用户正试图通过这个号码“+12345”登录他可以登录系统..我已经编写了一个代码,但我不知道如何使用它或者在auth组件中调整我的代码作为auth组件是自动记录用户..

这是我的控制器

 public function beforeFilter() {
    parent::beforeFilter();


    $this->Auth->authenticate = array(
        'Authenticate.Cookie' => array(
            'fields' => array(
                'username' => 'email',
                'password' => 'password'
            ),
            'userModel' => 'User',
            'scope' => array('User.active' => 1)
        ),
        'Authenticate.MultiColumn' => array(
            'fields' => array(
                'username' => 'email',
                'password' => 'password'
            ),
            'columns' => array('email', 'mobileNo'),
            'userModel' => 'User',
        )
    );
 }




public function login() {


    if ($this->Auth->login() || $this->Auth->loggedIn()) {
        $this->redirect('/users/dashboard');
    }else{
    $this->layout='logindefault';
    $this->set('title_for_layout', 'Account Login');
    /*$this->Auth->logout();
     $cookie = $this->Cookie->read('Auth.User'); */


    if ($this->request->is('post')) {




        if ($this->Auth->login() || $this->Auth->loggedIn()) {
            if ($this->Session->check('Auth.User')){


            $this->_setCookie($this->Auth->user('idUser'));
            $this->redirect('/users/dashboard');

        } }else {
            $this->Session->setFlash('Incorrect Email/Password Combination');
        }
    }}
}

这是我想添加的代码..

    $mobileNo='+123456789';
   if (strpos($mobileNo,'+') !== false) {
      $mobileNo=str_replace("+", "",$mobileNo);
   }

>

2 个答案:

答案 0 :(得分:0)

文档(http://book.cakephp.org/2.0/en/models/data-validation.html#custom-validation-rules)包含自定义验证规则的示例。

但是您的用例与验证无关(对于登录,没有正常的验证,只能应用“范围”)。 它关于定制登录的数据。 您可以使用login()方法在Auth-> login()调用之前修改传入数据,也可以使用新的2.x方式:使用自定义身份验证适配器。

// in your AppController::beforeFilter() method
$this->Auth->authorize = array('PhoneNumber');

然后应将您的PhoneNumber适配器称为PhoneNumberAuthenticate,并将其置于/ Controller / Component / Auth。

有关其他适配器如何工作并将其应用于您自己的适配器的详细信息,请参阅https://github.com/ceeram/Authenticate

但由于您还使用“电子邮件”登录,因此您可能最好在登录方法中使用替换选项:

public function login() {
    $this->request->data['User']['email'] = $this->_replace($this->request->data['User']['email']);
    if ($this->Auth->login()) {...}

使用包含替换代码的_replace()。

答案 1 :(得分:0)

我已经完成了这项工作

我在$ this-> Auth-> login()之前添加此行    $ this-> request-> data ['User'] ['email'] = $ mobileNo;

源:string concatenation when user log in Cakephp