Laravel的中间件是如何实现的?本文主要介绍了Laravel中间件实现原理,较为详细的分析了Laravel中间件的概念、原理及相关方法与使用技巧,需要的朋友可以参考下。希望对大家有所帮助。
具体如下:
#1 什么是中间件?
对于一个Web应用来说,在一个请求真正处理前,我们可能会对请求做各种各样的判断,然后才可以让它继续传递到更深层次中。而如果我们用if else这样子来,一旦需要判断的条件越来越来,会使得代码更加难以维护,系统间的耦合会增加,而中间件就可以解决这个问题。我们可以把这些判断独立出来做成中间件,可以很方便的过滤请求。
#2 Laravel中的中间件
在Laravel中,中间件的实现其实是依赖于Illuminate\Pipeline\Pipeline这个类实现的,我们先来看看触发中间件的代码。很简单,就是处理后把请求转交给一个闭包就可以继续传递了。
1 2 3 4 | public function handle( $request , Closure $next ) {
return $next ( $request );
}
|
Salin selepas log masuk
#3 中间件内部实现
上面说道,中间件是靠Pipeline来实现的,它的调用在Illuminate\Routing\Router中
1 2 3 4 5 6 7 8 9 | return ( new Pipeline( $this ->container))
->send( $request )
->through( $middleware )
->then( function ( $request ) use ( $route ) {
return $this ->prepareResponse(
$request ,
$route ->run( $request )
);
});
|
Salin selepas log masuk
可以看到,中间件执行过程调用了三个方法。再来看看这三个方法的代码:
send方法
1 2 3 4 | public function send( $passable ){
$this ->passable = $passable ;
return $this ;
}
|
Salin selepas log masuk
其实send方法没做什么事情,就是设置了需要在中间件中流水处理的对象,在这里就是HTTP请求实例。
through方法
1 2 3 4 | public function through( $pipes ){
$this ->pipes = is_array ( $pipes ) ? $pipes : func_get_args();
return $this ;
}
|
Salin selepas log masuk
through方法也很简单,就是设置一下需要经过哪些中间件处理。
then方法
真正难懂的来了,then方法代码很简洁,但是要理解可不容易。
1 2 3 4 5 6 7 8 9 10 11 | public function then(Closure $destination ){
$firstSlice = $this ->getInitialSlice( $destination );
$pipes = array_reverse ( $this ->pipes);
return call_user_func(
array_reduce ( $pipes , $this ->getSlice(), $firstSlice ), $this ->passable
);
}
|
Salin selepas log masuk
然后就没有然后了,这样就过完了所有中间件,是不是很优雅?
由于aray_reduce的第二个参数需要一个函数,我们这里重点看看getSlice()方法的源码
1 2 3 4 5 6 7 8 9 10 11 12 13 | protected function getSlice(){
return function ( $stack , $pipe ) {
return function ( $passable ) use ( $stack , $pipe ) {
if ( $pipe instanceof Closure) {
return call_user_func( $pipe , $passable , $stack );
} else {
list( $name , $parameters ) = $this ->parsePipeString( $pipe );
return call_user_func_array([ $this ->container->make( $name ), $this ->method],
array_merge ([ $passable , $stack ], $parameters ));
}
};
};
}
|
Salin selepas log masuk
看到可能会很头晕,闭包返回闭包的。简化一下就是getSlice()返回一个函数A,而函数A又返回了函数B。为什么要返回两个函数呢?因为我们中间在传递过程中是用$next($request)来传递对象的,而$next($request)这样的写法就表示是执行了这个闭包,这个闭包就是函数A,然后返回函数B,可以给下一个中间件继续传递。
再来简化一下代码就是:
1 2 3 4 5 | array_reduce ( $pipes , function ( $stack , $pipe ) {
return function ( $passable ) use ( $stack , $pipe ) {
};
}, $firstSlice );
|
Salin selepas log masuk
再来看这一段代码:
1 2 3 4 5 6 7 8 9 10 11 12 | if ( $pipe instanceof Closure) {
return call_user_func( $pipe , $passable , $stack );
} else {
list( $name , $parameters ) = $this ->parsePipeString( $pipe );
return call_user_func_array([ $this ->container->make( $name ), $this ->method],
array_merge ([ $passable , $stack ], $parameters ));
}
|
Salin selepas log masuk
再看一张图片:
每一次迭代传入上一次的闭包和需要执行的中间件,由于反转了数组,基于栈先进后出的特性,所以中间件3第一个被包装,中间件1就在最外层了。要记得,arrary_reduce他不执行中间件代码,而是包装中间件。
看到这里应该明白了,array_reduce最后会返回func3,那么call_user_func(func3,$this->passable)实际就是
return call_user_func($middleware[0]->handle, $this->passable, func2);
而我们的中间件中的handle代码是:
1 2 3 | public function handle( $request , Closure $next ) {
return $next ( $request );
}
|
Salin selepas log masuk
这里就相当于return func2($request),这里的$request就是经过上一个中间件处理过的。所以正果中间件的过程就完了,理解起来会有点绕,只要记得最后是由最外面的call_user_func来执行中间件代码的
相关推荐:
Laravel优化之分割路由文件
Laravel使用Pagination插件实现自定义分页
laravel编写APP接口(API)
Atas ialah kandungan terperinci 探究Laravel的中间件是如何实现的. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!