CakePHP 服務(wù)

cakephp 服務(wù)

 

本章介紹了有關(guān) cakephp 中可用的身份驗證過程的信息。

 

身份驗證

身份驗證是識別正確用戶的過程。 cakephp 支持三種類型的身份驗證。

  • formauthenticate-它允許您根據(jù)表單 post 數(shù)據(jù)對用戶進(jìn)行身份驗證。通常,這是用戶輸入信息的登錄表單。這是默認(rèn)的身份驗證方法。
  • basicauthenticate-它允許您使用基本 http 身份驗證對用戶進(jìn)行身份驗證
  • digestauthenticate-它允許您使用 digest http 身份驗證對用戶進(jìn)行身份驗證。

 

formauthentication 示例

在 config/routes.php 文件中進(jìn)行更改,如以下代碼所示。

config/routes.php

use cake\core\plugin;
use cake\routing\routebuilder;
use cake\routing\router;
router::defaultrouteclass('dashedroute');
router::scope('/', function (routebuilder $routes) {
   $routes--->connect('/auth',['controller'=>'authexs','action'=>'index']);
   $routes->connect('/login',['controller'=>'authexs','action'=>'login']);
   $routes->connect('/logout',['controller'=>'authexs','action'=>'logout']);
   $routes->fallbacks('dashedroute');
});
plugin::routes();

更改 appcontroller.php 文件的代碼,如下程序所示。

src/controller/appcontroller.php

namespace app\controller;
use cake\controller\controller;
use cake\event\event;
use cake\controller\component\authcomponent;
class appcontroller extends controller {
   public function initialize() {
      parent::initialize();
      $this--->loadcomponent('requesthandler');
      $this->loadcomponent('flash');
         $this->loadcomponent('auth', [
            'authenticate' => [
               'form' => [
                  'fields' => [
               'username' => 'username',
               'password' => 'password'
            ]
         ]
      ],
      'loginaction' => [
         'controller' => 'authexs',
         'action' => 'login'
      ],
      'loginredirect' => [
         'controller' => 'authexs',
         'action' => 'index'
      ],
      'logoutredirect' => [
         'controller' => 'authexs',
         'action' => 'login'
      ]
   ]);
}
public function beforefilter(event $event) {
      $this->auth->allow(['index','view']);
      $this->set('loggedin', $this->auth->user());
   }
}

在 src/controller/authexscontroller.php 中創(chuàng)建 authexscontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。

src/controller/authexscontroller.php

namespace app\controller;
use app\controller\appcontroller;
use cake\orm\tableregistry;
use cake\datasource\connectionmanager;
use cake\event\event;
use cake\auth\defaultpasswordhasher;
class authexscontroller extends appcontroller {
   var $components = array('auth');
   public function index(){
   }
   public function login(){
      if($this--->request->is('post')) {
         $user = $this->auth->identify();
         if($user){
            $this->auth->setuser($user);
            return $this->redirect($this->auth->redirecturl());
         } else
         $this->flash->error('your username or password is incorrect.');
      }
   }
   public function logout(){
      return $this->redirect($this->auth->logout());
   } 
}
?>

在 src/template 創(chuàng)建一個目錄 authexs 并在該目錄下創(chuàng)建一個名為 login.phpview 文件>.將以下代碼復(fù)制到該文件中。

src/template/authexs/login.php

   echo $this--->form->create();
   echo $this->form->control('username');
   echo $this->form->control('password');
   echo $this->form->button('submit');
   echo $this->form->end();
?>

創(chuàng)建另一個名為 logout.php 的 view 文件。 在該文件中復(fù)制以下代碼。

src/template/authexs/logout.php

you are successfully logged out.

創(chuàng)建另一個名為 index.php 的 view 文件。 在該文件中復(fù)制以下代碼。

src/template/authexs/index.php

you are successfully logged in. 
 
   echo $this--->html->link('logout',[
      "controller" => "authexs","action" => "logout"
   ]); 
?>

通過訪問以下 url 執(zhí)行上述示例。

http://localhost/cakephp4/auth

 

輸出

由于身份驗證已經(jīng)實施,一旦您嘗試訪問上述網(wǎng)址,您將被重定向到如下所示的登錄頁面。

提供正確的憑據(jù)后,您將登錄并重定向到如下所示的屏幕。

點擊 注銷鏈接后,您將再次被重定向到登錄屏幕。

下一節(jié):cakephp 錯誤和異常處理

cakephp 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频