yii検証コードの使用と検証プロセス
5388 ワード
このプロセスを実現するには、いくつかのステップが必要です.
最初のステップはコントロールの操作です
操作するコントローラに次のコードを追加します.
2つ目はviewの操作です
認証コードを表示する場所に次のコードを追加します.
3つ目はLoginFormの操作です
第4歩、検証の過程を実現して、それでは具体的に私の自分の書く1つの方式を見て、第3部ですでに書きました
validateVerifyCodeです.コントロールで呼び出すことができます.
私の呼び出しは次のとおりです.
This entry was posted in PHP and tagged 認証コードの使用 検証プロセス
最初のステップはコントロールの操作です
操作するコントローラに次のコードを追加します.
public function actions(){
return array(
// captcha action renders the CAPTCHA image displayed on the contact page
'captcha'=>array(
'class'=>'CCaptchaAction',
'backColor'=>0xFFFFFF,
'maxLength'=>'8', //
'minLength'=>'7', //
'height'=>'40',
'width'=>'230',
),
);
}
public function accessRules(){
return array(
array('allow',
'actions'=>array('captcha'),
'users'=>array('*'),
),
);
}
2つ目はviewの操作です
認証コードを表示する場所に次のコードを追加します.
<div class="control-group">
<?php $this->widget('CCaptcha',array(
'showRefreshButton'=>true,
'clickableImage'=>false,
'buttonLabel'=>' ',
'imageOptions'=>array(
'alt'=>' ',
'title'=>' ',
'style'=>'cursor:pointer',
'padding'=>'10')
)); ?>
</div>
3つ目はLoginFormの操作です
<?php
/**
* LoginForm class.
* LoginForm is the data structure for keeping
* user login form data. It is used by the 'login' action of 'SiteController'.
*/
class LoginForm extends CFormModel
{
public $username;
public $password;
public $rememberMe;
public $verifyCode;
private $_identity;
/**
* Declares the validation rules.
* The rules state that username and password are required,
* and password needs to be authenticated.
*/
public function rules(){
return array(
// username and password are required
// array('username, password', 'required'),
array('username','required','message'=>' '),
array('password','required','message'=>' '),
array('verifyCode','required','message'=>' '),
array('verifyCode','captcha', 'on'=>'login','allowEmpty'=>!Yii::app()->admin->isGuest),
// rememberMe needs to be a boolean
array('rememberMe', 'boolean'),
// password needs to be authenticated
array('password', 'authenticate'),
);
}
/**
* Declares attribute labels.
*/
public function attributeLabels()
{
return array(
'rememberMe'=>' ',
'verifyCode' =>' '
);
}
/**
* Authenticates the password.
* This is the 'authenticate' validator as declared in rules().
*/
public function authenticate($attribute,$params)
{
if(!$this->hasErrors())
{
$this->_identity=new UserIdentity($this->username,$this->password);
if(!$this->_identity->authenticate())
$this->addError('password',' .');
}
}
public function validateVerifyCode($verifyCode){
if(strtolower($this->verifyCode) === strtolower($verifyCode)){
return true;
}else{
$this->addError('verifyCode',' .');
}
}
/**
* Logs in the user using the given username and password in the model.
* @return boolean whether login is successful
*/
public function login(){
if($this->_identity===null){
$this->_identity=new UserIdentity($this->username,$this->password);
$this->_identity->authenticate();
}
if($this->_identity->errorCode===UserIdentity::ERROR_NONE){
$duration=$this->rememberMe ? 3600*24*30 : 0; // 30 days
Yii::app()->user->login($this->_identity,$duration);
return true;
}else{
return false;
}
}
}
第4歩、検証の過程を実現して、それでは具体的に私の自分の書く1つの方式を見て、第3部ですでに書きました
validateVerifyCodeです.コントロールで呼び出すことができます.
私の呼び出しは次のとおりです.
public function actionLogin(){
$model=new LoginForm;
if(isset($_POST['ajax']) && $_POST['ajax']==='login-form'){
echo CActiveForm::validate($model);
Yii::app()->end();
}
if(isset($_POST['LoginForm'])){
$model->attributes=$_POST['LoginForm'];
// validate user input and redirect to the previous page if valid
if($model->validate() &&
$model->validateVerifyCode($this->createAction('captcha')->getVerifyCode()) &&
$model->login()){
$this->redirect(CController::createUrl('default/index'));
}
}
$this->render('login',array('model'=>$model));
}
This entry was posted in PHP and tagged 認証コードの使用 検証プロセス