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 相关文章推荐
php 中include()与require()的对比
Oct 09 PHP
php基础知识:类与对象(5) static
Dec 13 PHP
PHP 危险函数解释 分析
Apr 22 PHP
PHP 实用代码收集
Jan 22 PHP
fetchAll()与mysql_fetch_array()的区别详解
Jun 05 PHP
PHP多例模式介绍
Jun 24 PHP
json的键名为数字时的调用方式(示例代码)
Nov 15 PHP
PHP正则表达式 /i, /is, /s, /isU等介绍
Oct 23 PHP
php简单定时执行任务的实现方法
Feb 23 PHP
PHP 读取文本文件内容并分页显示
Jan 02 PHP
PHP开发的微信现金红包功能示例
Jun 29 PHP
PHP日志LOG类定义与用法示例
Sep 06 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
中国的第一台收音机
2021/03/01 无线电
深入了解php4(2)--重访过去
2006/10/09 PHP
PHP实现模仿socket请求返回页面的方法
2014/11/04 PHP
php mysql procedure实现获取多个结果集的方法【基于thinkPHP】
2016/11/09 PHP
常见的5个PHP编码小陋习以及优化实例讲解
2021/02/27 PHP
IE和Firefox下javascript的兼容写法小结
2008/12/10 Javascript
jquery text()要注意啦
2009/10/30 Javascript
javascript基础知识大全 便于大家学习,也便于我自己查看
2012/08/17 Javascript
使用jQuery fancybox插件打造一个实用的数据传输模态弹出窗体
2013/01/15 Javascript
jQuery学习笔记(4)--Jquery中获取table中某列值的具体思路
2013/04/10 Javascript
JQUERY实现网页右下角固定位置展开关闭特效的方法
2015/07/27 Javascript
JavaScript如何实现在文本框(密码框)输入提示语
2015/12/25 Javascript
详解Bootstrap按钮
2016/01/04 Javascript
JS常见创建类的方法小结【工厂方式,构造器方式,原型方式,联合方式等】
2017/04/01 Javascript
Vue渲染函数详解
2017/09/15 Javascript
js实现随机点名系统(实例讲解)
2017/10/18 Javascript
AngularJS实现的锚点楼层跳转功能示例
2018/01/02 Javascript
Node.js Express安装与使用教程
2018/05/11 Javascript
微信小程序用户位置权限的获取方法(拒绝后提醒)
2018/11/15 Javascript
基于vue手写tree插件的那点事儿
2019/08/20 Javascript
使用nodejs实现JSON文件自动转Excel的工具(推荐)
2020/06/24 NodeJs
python解决网站的反爬虫策略总结
2016/10/26 Python
numpy中实现二维数组按照某列、某行排序的方法
2018/04/04 Python
几行Python代码爬取3000+上市公司的信息
2019/01/24 Python
django框架防止XSS注入的方法分析
2019/06/21 Python
pd.DataFrame统计各列数值多少的实例
2019/12/05 Python
flask框架渲染Jinja模板与传入模板变量操作详解
2020/01/25 Python
python实现超级玛丽游戏
2020/03/18 Python
python BeautifulSoup库的安装与使用
2020/12/17 Python
HTML5 Canvas 旋转风车绘制
2017/08/18 HTML / CSS
英国网上购买肉类网站:Great British Meat
2018/10/17 全球购物
《忆江南》教学反思
2014/04/07 职场文书
《棉鞋里的阳光》教学反思
2014/04/24 职场文书
交通事故调解协议书
2015/05/20 职场文书
家庭经济困难证明
2015/06/23 职场文书
2016中考冲刺决心书
2015/09/22 职场文书