2015-03-20 16 views
8

tôi muốn thực hiện chức năng đăng ký trong ứng dụng của mình, cách tạo mật khẩu băm bằng yii2.nơi để đặt chức năng beforesave trong yii2, cách truy cập trong bộ điều khiển

đây là user.php tôi

<?php 

namespace app\models; 

use Yii; 
use yii\base\NotSupportedException; 
use yii\db\ActiveRecord; 
use yii\base\Security; 
use yii\web\IdentityInterface; 
/** 
* This is the model class for table "users". 
* 
* @property string $userid 
* @property string $username 
* @property string $password 
*/ 

class User extends ActiveRecord implements IdentityInterface 
    { 

     public static function tableName() 
     { 
      return 'users'; 
     } 

     /** 
     * @inheritdoc 
     */ 
     public function rules() 
     { 
      return [ 
       [['username', 'password', 'password_hash','auth_key', 'password_reset_token'], 'required'], 
       [['username', 'password'], 'string', 'max' => 45], 
       [['auth_key'], 'string', 'max' => 32], 
       [['password_reset_token', 'password_hash'], 'string', 'max' => 255], 
       [['username'], 'unique'] 
      ]; 
     } 

     /** 
     * @inheritdoc 
     */ 
     public function attributeLabels() 
     { 
      return [ 
       'id' => 'ID', 
       'username' => 'Username', 
       'password' => 'Password', 
       'password_hash' => 'Password hash', 
       'auth_key' => 'Auth Key', 
       'password_reset_token' => 'Password Reset Token', 
      ]; 
     }  
     /** INCLUDE USER LOGIN VALIDATION FUNCTIONS**/ 
      /** 
     * @inheritdoc 
     */ 


     public static function findIdentity($id) 
     { 
      return static::findOne($id); 
     } 


     public static function findIdentityByAccessToken($token, $type = null) 
     { 
       return static::findOne(['access_token' => $token]); 
     } 


     /** 
     * Finds user by username 
     * 
     * @param string  $username 
     * @return static|null 
     */ 
     public static function findByUsername($username) 
     { 
      return static::findOne(['username' => $username]); 
     } 

     /** 
     * Finds user by password reset token 
     * 
     * @param string  $token password reset token 
     * @return static|null 
     */ 
     public static function findByPasswordResetToken($token) 
     { 
      $expire = \Yii::$app->params['user.passwordResetTokenExpire']; 
      $parts = explode('_', $token); 
      $timestamp = (int) end($parts); 
      if ($timestamp + $expire < time()) { 
       // token expired 
       return null; 
      } 

      return static::findOne([ 
       'password_reset_token' => $token 
      ]); 
     } 

     /** 
     * @inheritdoc 
     */ 
     public function getId() 
     { 
      return $this->getPrimaryKey(); 
     } 

     /** 
     * @inheritdoc 
     */ 
     public function getAuthKey() 
     { 
      return $this->auth_key; 
     } 

     /** 
     * @inheritdoc 
     */ 
     public function validateAuthKey($authKey) 
     { 
      return $this->getAuthKey() === $authKey; 
     } 

     /** 
     * Validates password 
     * 
     * @param string $password password to validate 
     * @return boolean if password provided is valid for current user 
     */ 
     public function validatePassword($password) 
     { 
      return $this->password === $password;//sha1($password); 
     } 

     /** 
     * Generates password hash from password and sets it to the model 
     * 
     * @param string $password 
     */ 
     public function setPassword($password) 
     { 
      $this->password_hash = Yii::$app->getSecurity()->generatePasswordHash($password);//Security::generatePasswordHash($password); 
     } 

     /** 
     * Generates "remember me" authentication key 
     */ 
     public function generateAuthKey() 
     { 
      $this->auth_key = Security::generateRandomKey(); 
     } 

     /** 
     * Generates new password reset token 
     */ 
     public function generatePasswordResetToken() 
     { 
      $this->password_reset_token = Security::generateRandomKey() . '_' . time(); 
     } 

     /** 
     * Removes password reset token 
     */ 
     public function removePasswordResetToken() 
     { 
      $this->password_reset_token = null; 
     } 

    } 

đây là UserController.php tôi

public function actionCreate() 
    { 
$model = new User; 
if ($model->load(Yii::$app->request->post()) && $model->save()) { 
      return $this->redirect(['view', 'id' => $model->id]); 
     } else { 
      return $this->render('create', [ 
       'model' => $model, 
      ]); 
     } 
    } 
} 

tôi muốn sử dụng setPassword chức năng trong mô hình người dùng, nơi mà tôi phải đưa chức năng beforesave và tôi cần phải thay đổi actionCreate function?

cảm ơn sự giúp đỡ.

Trả lời

13

Bạn nên đặt nó trong mô hình của mình, bởi vì phương pháp này nằm ở yii\db\BaseActiveRecord. Ghi đè lên nó như đã đề cập trong tài liệu chính thức:

/** 
* @inheritdoc 
*/ 
public function beforeSave($insert) 
{ 
    if (parent::beforeSave($insert)) { 
     // Place your custom code here 

     return true; 
    } else { 
     return false; 
    } 
} 

tài liệu chính thức:

+0

nó được thực hiện bro. tôi có vấn đề mới. tôi cố gắng sử dụng md5 hoặc sha1 để mã hóa mật khẩu, nhưng khi xác thực giá trị hàm mật khẩu của sha1 thì khác với cơ sở dữ liệu. – randawahyup

+0

Nếu vấn đề hiện tại được mô tả trong câu hỏi này được giải quyết, vui lòng đánh dấu câu trả lời là được chấp nhận (bạn cũng có thể nâng cấp nó khi bạn có đủ danh tiếng) .. – arogachev

+0

oh ok bro: D bạn có thể giúp bro này không? http://stackoverflow.com/questions/29163843/validate-password-for-login-always-false-using-yii-2 – randawahyup

Các vấn đề liên quan