關於Laravel的二、三事(1)一次請求的生命週期
最初,一次請求將會到達public/index.php,這個檔案的內容非常簡單:
require __DIR__.'/../bootstrap/autoload.php';
$app = require_once __DIR__.'/../bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
首先載入了兩個檔案bootstrap/autoload.php和bootstrap/app.php,首先來看autoload.php的內容:
define('LARAVEL_START', microtime(true));
require __DIR__.'/../vendor/autoload.php';
$compiledPath = __DIR__.'/cache/compiled.php';
if (file_exists($compiledPath)) {
require $compiledPath;
}
/vendor/autoload.php檔案是composer提供的一個載入檔案,引入這個檔案之後我們就可以方便的使用其他類了。
之後是/cache/compile.php檔案,包含了常用的類,以提升處理請求的效能。
再來看bootstrap/app.php:
$app = new Illuminate\Foundation\Application(
realpath(__DIR__.'/../')
);
$app->singleton(
Illuminate\Contracts\Http\Kernel::class,
App\Http\Kernel::class
);
$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Console\Kernel::class
);
$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class
);
return $app;
主要是返回一些環境配置資訊和各種中介軟體和簡寫的資訊。
之後index.php建立了一個Kernel例項,開啟Illuminate\Contracts\Http\Kernel::class,程式碼如下:
class Kernel extends HttpKernel
{
protected $middleware = [
\Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
];
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
],
'api' => [
'throttle:60,1',
],
];
protected $routeMiddleware = [
'auth' => \App\Http\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'can' => \Illuminate\Foundation\Http\Middleware\Authorize::class,
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
];
}
定義了一系列中介軟體的陣列,這些中介軟體將會在處理請求時被執行
EncryptCookies::class用於處理對於cookies的加密解密;
AddQueuedCookiesToResponse::class用於給Response的header新增cookies資訊;
StartSession::class用於首次請求時建立session資訊,處理請求時驗證session的有效性,在請求結束時儲存session資訊;
ShareErrorsFromSession::class返回session的錯誤資訊;
VerifyCsrfToken::class驗證CSRF令牌;
路由中介軟體:
Illuminate\Support\Facades\Auth\Authenticate::class用於驗證發出的請求型別;
Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class用基本的Auth進行驗證;
Illuminate\Foundation\Http\Middleware\Authorize::class將請求與模型繫結;
App\Http\Middleware\RedirectIfAuthenticated::class驗證後重定向;
Illuminate\Routing\Middleware\ThrottleRequests::class用於請求頻率的限制。
然後是對請求的捕捉,捕捉之後交給kernel::handle():
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Exception $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
} catch (Throwable $e) {
$this->reportException($e = new FatalThrowableError($e));
$response = $this->renderException($request, $e);
}
$this->app['events']->fire('kernel.handled', [$request, $response]);
return $response;
}
首先是接收引數,然後通過路由轉發請求。
public function terminate($request, $response)
{
$middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
$this->gatherRouteMiddlewares($request),
$this->middleware
);
foreach ($middlewares as $middleware) {
list($name, $parameters) = $this->parseMiddleware($middleware);
$instance = $this->app->make($name);
if (method_exists($instance, 'terminate')) {
$instance->terminate($request, $response);
}
}
$this->app->terminate();
}
通過kernel::gatherRouteMiddlewares()獲取獲取所有路由,並且對應要使用的中介軟體,然後對所有的中介軟體進行解析並進行處理,執行完之後終結請求。
相關文章
- 關於activity的生命週期1
- 37. 請求的生命週期
- Laravel 請求生命週期Laravel
- Laravel 請求週期Laravel
- 關於Laravel的二、三事(1)簡單的路由Laravel路由
- Envoy 代理中的請求的生命週期
- 一條HTTP請求的生命週期(二)-- TCP, 本文基於 RFC793HTTPTCP
- Laravel的生命週期Laravel
- 關於Fragment的生命週期Fragment
- Laravel 請求生命週期--簡化版Laravel
- DRF請求的生命週期:三年程式設計師的實戰感悟程式設計師
- View生命週期與Activity生命週期的關係View
- Laravel框架生命週期Laravel框架
- laravel中的$request物件構造及請求生命週期Laravel物件
- 深度挖掘 Laravel 生命週期Laravel
- Laravel 生命週期介紹Laravel
- 品牌生命週期和產品生命週期之間的關係
- 關於Spring生命週期控制的介面:SmartLifecycleSpring
- 2018.03.05 Android 記一次關於Fragment生命週期的討論。AndroidFragment
- 關於兩次http請求,後一次請求影響前一次請求的問題HTTP
- 關於Fragment可見與不可見時的生命週期Fragment
- React生命週期以及注意事項React
- Spring原始碼:Bean的生命週期(二)Spring原始碼Bean
- Spark記錄(二):Spark程式的生命週期Spark
- Flutter 的生命週期Flutter
- SQL的生命週期SQL
- vue的生命週期Vue
- Fragment的生命週期Fragment
- App的生命週期APP
- View的生命週期View
- Servlet的生命週期Servlet
- bean的生命週期Bean
- Angular元件——元件生命週期(二)Angular元件
- 基於三維地籍的全生命週期“一碼管地”
- 擼擼Android的羊毛(二)----Activity生命週期Android
- Android 之 Activity 生命週期的淺析(二)Android
- Vue生命週期activated之返回上一頁不重新請求資料Vue
- Android RxJava+Retrofit完美封裝(快取,請求,生命週期管理)AndroidRxJava封裝快取