zoukankan      html  css  js  c++  java
  • 详解yii用户登录体系

    二登录验证
    yii提供了CUserIdentity类,这个类一般用于验证用户名和密码的类.
    继承后我们需要重写其中的authenticate()方法来实现我们自己的验证方法.具体代码如下:
    class UserIdentity extends CUserIdentity 

    private $_id; 
    public function authenticate() 

    $record=User::model()->findByAttributes(array('username'=>$this->username)); 
    if($record===null) 
    $this->errorCode=self::ERROR_USERNAME_INVALID; 
    else if($record->password!==md5($this->password)) 
    $this->errorCode=self::ERROR_PASSWORD_INVALID; 
    else 

    $this->_id=$record->id; 
    $this->setState('title', $record->title); 
    $this->errorCode=self::ERROR_NONE; 

    return !$this->errorCode; 


    public function getId() 

    return $this->_id; 

    }
    在用户登陆时则调用如下代码:
    $identity=new UserIdentity($username,$password);
    if($identity->authenticate()) 
    Yii::app()->user->login($identity); 
    else 
    echo $identity->errorMessage;
    在用户退出是调用了Yii::app()->user->logout();

    三CWebuser记录session的值
    在验证用户名和密码成功后yii调用cwebuser的login方法
    login($identity,$duration=0)
    {
    $id=$identity->getId();
    $states=$identity->getPersistentStates();
    if($this->beforeLogin($id,$states,false))
    {
    $this->changeIdentity($id,$identity->getName(),$states);

    if($duration>0)
    {
    if($this->allowAutoLogin)
    $this->saveToCookie($duration);
    else
    throw new CException(Yii::t('yii','{class}.allowAutoLogin must be set true in order to use cookie-based authentication.',
    array('{class}'=>get_class($this))));
    }

    $this->afterLogin(false);
    }
    }
    在changeIdentity方法中调用了:
    $this->setId($id);--
    $this->setName($name);--
    //分别将__id和__name保存到session中
    public function setState($key,$value,$defaultValue=null)
    {
    $key=$this->getStateKeyPrefix().$key;//获取app的编号
    if($value===$defaultValue)
    unset($_SESSION[$key]);
    else
    $_SESSION[$key]=$value;
    }

    $this->loadIdentityStates($states);
    Meet so Meet. C plusplus I-PLUS....
  • 相关阅读:
    静态包含与动态包含
    REST风格下如何放行静态资源
    java迭代器
    es6之扩展运算符 三个点(...)
    关于Echarts配置项的工作记录
    vscode中vue代码格式化的相关配置
    v-loading
    git中Please enter a commit message to explain why this merge is necessary.
    slot
    slot的使用方法
  • 原文地址:https://www.cnblogs.com/iplus/p/4489988.html
Copyright © 2011-2022 走看看