Laravel框架用户登陆身份验证实现方法详解


Posted in PHP onSeptember 14, 2017

本文实例讲述了Laravel框架用户登陆身份验证实现方法。分享给大家供大家参考,具体如下:

laravel中检测用户是否登录,有以下的代码:

if ( !Auth::guest() )
{
  return Redirect::to('/dashboard');
}

Auth::guest是如何调用的呢?

laravel用了Facade模式,相关门面类在laravel/framework/src/Illuminate/Support/Facades文件夹定义的,看下Auth类的定义:

class Auth extends Facade {
  /**
   * Get the registered name of the component.
   *
   * @return string
   */
  protected static function getFacadeAccessor() { return 'auth'; }
}

laravel框架中,Facade模式使用反射,相关方法其实调用app['auth']中的方法,app['auth']是什么时候创建的呢,

AuthServiceProvider::register方法会注册:

$this->app->bindShared('auth', function($app)
{
  // Once the authentication service has actually been requested by the developer
  // we will set a variable in the application indicating such. This helps us
  // know that we need to set any queued cookies in the after event later.
  $app['auth.loaded'] = true;
  return new AuthManager($app);
});

那为什么最终会调到哪里呢,看下堆栈:

Illuminate\Support\Facades\Auth::guest()
Illuminate\Support\Facades\Facade::__callStatic
Illuminate\Auth\AuthManager->guest()
Illuminate\Support\Manager->__call
public function __call($method, $parameters)
{
    return call_user_func_array(array($this->driver(), $method), $parameters);
}

看下driver的代码:

public function driver($driver = null)
{
    $driver = $driver ?: $this->getDefaultDriver();
    // If the given driver has not been created before, we will create the instances
    // here and cache it so we can return it next time very quickly. If there is
    // already a driver created by this name, we'll just return that instance.
    if ( ! isset($this->drivers[$driver]))
    {
      $this->drivers[$driver] = $this->createDriver($driver);
    }
    return $this->drivers[$driver];
}

没有会调用getDefaultDrive方法

/**
* Get the default authentication driver name.
*
* @return string
*/
public function getDefaultDriver()
{
    return $this->app['config']['auth.driver'];
}

最终调用的是配置文件中配置的driver,如果配的是

'driver' => 'eloquent'

则调用的是

public function createEloquentDriver()
{
    $provider = $this->createEloquentProvider();
    return new Guard($provider, $this->app['session.store']);
}

所以Auth::guest最终调用的是Guard::guest方法

这里的逻辑先从session中取用户信息,奇怪的是session里只保存的是用户ID,然后拿这个ID来从数据库中取用户信息

public function user()
{
    if ($this->loggedOut) return;
    // If we have already retrieved the user for the current request we can just
    // return it back immediately. We do not want to pull the user data every
    // request into the method because that would tremendously slow an app.
    if ( ! is_null($this->user))
    {
      return $this->user;
    }
    $id = $this->session->get($this->getName());
    // First we will try to load the user using the identifier in the session if
    // one exists. Otherwise we will check for a "remember me" cookie in this
    // request, and if one exists, attempt to retrieve the user using that.
    $user = null;
    if ( ! is_null($id))
    {
      //provider为EloquentUserProvider
     $user = $this->provider->retrieveByID($id);
    }
    // If the user is null, but we decrypt a "recaller" cookie we can attempt to
    // pull the user data on that cookie which serves as a remember cookie on
    // the application. Once we have a user we can return it to the caller.
    $recaller = $this->getRecaller();
    if (is_null($user) && ! is_null($recaller))
    {
      $user = $this->getUserByRecaller($recaller);
    }
    return $this->user = $user;
}

希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。

PHP 相关文章推荐
Mysql的常用命令
Oct 09 PHP
PHP 日期时间函数的高级应用技巧
Oct 10 PHP
PHP字符串 ==比较运算符的副作用
Oct 21 PHP
ThinkPHP中的create方法与自动令牌验证实例教程
Aug 22 PHP
php使用NumberFormatter格式化货币的方法
Mar 21 PHP
PHP+HTML+JavaScript+Css实现简单爬虫开发
Mar 28 PHP
PHP实现多关键字加亮功能
Oct 21 PHP
php微信公众号js-sdk开发应用
Nov 28 PHP
yii2使用GridView实现数据全选及批量删除按钮示例
Mar 01 PHP
PHP实现负载均衡的加权轮询方法分析
Aug 22 PHP
php中的钩子理解及应用实例分析
Aug 30 PHP
关于PhpStorm设置点击编辑文件自动定位源文件的实现方式
Dec 30 PHP
LNMP部署laravel以及xhprof安装使用教程
Sep 14 #PHP
Laravel框架实现redis集群的方法分析
Sep 14 #PHP
ThinkPHP开发--使用七牛云储存
Sep 14 #PHP
PHP使用微信开发模式实现搜索已发送图文及匹配关键字回复的方法
Sep 13 #PHP
PHP memcache在微信公众平台的应用方法示例
Sep 13 #PHP
深入解析Laravel5.5中的包自动发现Package Auto Discovery
Sep 13 #PHP
PHP 实现公历日期与农历日期的互转换
Sep 13 #PHP
You might like
php 使用file_get_contents读取大文件的方法
2014/11/13 PHP
PHP实用函数分享之去除多余的0
2015/02/06 PHP
基于CakePHP实现的简单博客系统实例
2015/06/28 PHP
麦鸡的TAB切换功能结合了javascript和css
2007/12/17 Javascript
按下Enter焦点移至下一个控件的实现js代码
2013/12/11 Javascript
jQuery对Select的操作大集合(收藏)
2013/12/28 Javascript
jquery选择器之基本过滤选择器详解
2014/01/27 Javascript
jQuery表单域属性过滤器用法分析
2015/02/10 Javascript
javascript倒计时效果实现
2015/11/12 Javascript
微信小程序 底部导航栏目开发资料
2016/12/05 Javascript
AngularJS 最常用的八种功能(基础知识)
2017/06/26 Javascript
webpack2.0配置postcss-loader的方法
2017/08/17 Javascript
vue实现tab切换外加样式切换方法
2018/03/16 Javascript
vue引入js数字小键盘的实现代码
2018/05/14 Javascript
layui多图上传实现删除功能的例子
2019/09/23 Javascript
JavaScript实现随机点名程序
2020/03/25 Javascript
[02:35]DOTA2超级联赛专访XB 难忘一年九冠称王
2013/06/20 DOTA
[57:50]DOTA2上海特级锦标赛主赛事日 - 4 胜者组决赛Secret VS Liquid第二局
2016/03/05 DOTA
浅谈Python中函数的参数传递
2016/06/21 Python
pytorch: tensor类型的构建与相互转换实例
2018/07/26 Python
python实现梯度下降算法
2020/03/24 Python
python 保存float类型的小数的位数方法
2018/10/17 Python
python抓取京东小米8手机配置信息
2018/11/13 Python
Python的log日志功能及设置方法
2019/07/11 Python
CSS3的column-fill属性对齐列内容高度的用法详解
2016/07/01 HTML / CSS
自动一体化专业求职信
2014/03/15 职场文书
教师产假请假条
2014/04/10 职场文书
本科生自荐信
2014/06/18 职场文书
法定代表人身份证明书(含说明)
2014/10/02 职场文书
先进工作者推荐材料
2014/12/23 职场文书
社区艾滋病宣传活动总结
2015/05/07 职场文书
2015年教学管理工作总结
2015/05/20 职场文书
仙境之桥观后感
2015/06/16 职场文书
爱国主义教育主题班会
2015/08/13 职场文书
vue实现可以快进后退的跑马灯组件
2022/04/08 Vue.js
解决springboot druid数据库连接失败后一直重连的方法
2022/04/19 Java/Android