laravel auth如何实现的
//\app\Http\Controllers\Auth\AuthController.php /** * Create a new authentication controller instance. * * @param \Illuminate\Contracts\Auth\Guard $auth * @param \Illuminate\Contracts\Auth\Registrar $registrar */ public function __construct(Guard $auth, Registrar $registrar,Request $request) { $this->auth = $auth; $this->registrar = $registrar; $this->request = $request; } public function postRegister() { $data = $this->request->all(); //调用App\Services\Registrar里的validator $validator = $this->registrar->validator($data); if ($validator->fails()) { $this->throwValidationException( $this->request, $validator ); } $this->auth->login($this->registrar->create($data));//这里的login哪里实现的? return redirect('/user'); } //\app\Providers\AppServiceProvider.php public function register() { //绑定实现Illuminate\Contracts\Auth\Registrar接口的类App\Services\Registrar,但没绑定auth的 $this->app->bind( 'Illuminate\Contracts\Auth\Registrar', 'App\Services\Registrar' ); }
回复内容:
//\app\Http\Controllers\Auth\AuthController.php /** * Create a new authentication controller instance. * * @param \Illuminate\Contracts\Auth\Guard $auth * @param \Illuminate\Contracts\Auth\Registrar $registrar */ public function __construct(Guard $auth, Registrar $registrar,Request $request) { $this->auth = $auth; $this->registrar = $registrar; $this->request = $request; } public function postRegister() { $data = $this->request->all(); //调用App\Services\Registrar里的validator $validator = $this->registrar->validator($data); if ($validator->fails()) { $this->throwValidationException( $this->request, $validator ); } $this->auth->login($this->registrar->create($data));//这里的login哪里实现的? return redirect('/user'); } //\app\Providers\AppServiceProvider.php public function register() { //绑定实现Illuminate\Contracts\Auth\Registrar接口的类App\Services\Registrar,但没绑定auth的 $this->app->bind( 'Illuminate\Contracts\Auth\Registrar', 'App\Services\Registrar' ); }
Login哪里实现\Illuminate\Auth\Guard
第430行
public function login(UserContract $user, $remember = false) { $this->updateSession($user->getAuthIdentifier()); // If the user should be permanently "remembered" by the application we will // queue a permanent cookie that contains the encrypted copy of the user // identifier. We will then decrypt this later to retrieve the users. if ($remember) { $this->createRememberTokenIfDoesntExist($user); $this->queueRecallerCookie($user); } // If we have an event dispatcher instance set we will fire an event so that // any listeners will hook into the authentication events and run actions // based on the login and logout events fired from the guard instances. $this->fireLoginEvent($user, $remember); $this->setUser($user); }
还有啥问题么= =?
看源代码:https://github.com/laravel/framework/tree/5.1/src/Illuminate/Auth
自己扩展:http://my.oschina.net/zgldh/blog/379461#OSC_h2_1
参考第三方实现:https://cartalyst.com/manual/sentinel/2.0

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
