ホームページ  >  記事  >  バックエンド開発  >  Laravelフレームワークのユーザーログイン認証

Laravelフレームワークのユーザーログイン認証

巴扎黑
巴扎黑オリジナル
2018-05-15 09:22:481887ブラウズ

この記事では、Laravelフレームワークのユーザーログイン認証の実装方法を主に紹介し、Laravelフレームワークのユーザーログイン認証の原理、実装方法、および関連する注意事項をサンプルの形式で分析します。 Laravel フレームワークのユーザー ログイン認証の実装方法について説明します。参考までに皆さんと共有してください。詳細は次のとおりです:

ユーザーがlaravelにログインしているかどうかを検出するには、次のコードがあります:

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

Auth::guest はどのように呼び出されますか? ?

Laravel は Facade モードを使用します。関連するファサード クラスは、laravel/framework/src/Illuminate/Support/Facades フォルダーで定義されています。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

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 フレームワークでは、Facade が定義されています。モードはリフレクションを使用します。実際には、app['auth'] のメソッドを呼び出します。いつ app['auth'] が作成されましたか? AuthServiceProvider::register code>メソッドが登録されます:

rrreee

それでは、なぜ最終的に転送されるのでしょうか? スタックを見てください: 🎜rrreee🎜 ドライバーコードを見てください: 🎜rrreee🎜 getDefaultDrive メソッド 🎜rrreee🎜 は、構成ファイルで構成されているドライバーを最終的に呼び出します。🎜rrreee🎜 で構成されている場合は、🎜rrreee🎜 を呼び出します。そのため、Auth:: guest は最終的に Guard::guest メソッドを呼び出します🎜🎜 ここのロジックは最初にセッションからユーザー情報を取得しますが、奇妙なことに、セッションはユーザー ID のみを保存し、その後これを使用します。データベースからユーザー情報を取得するためのID🎜rrreee

以上がLaravelフレームワークのユーザーログイン認証の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。