php laravel請求處理管道(裝飾者模式)

2020-07-16 10:05:50
laravel的中介軟體使用了裝飾者模式。比如,驗證維護模式,cookie加密,開啟對談等等。這些處理有些在響應前,有些在響應之後,使用裝飾者模式動態減少或增加功能,使得框架可延伸性大大增強。

接下來簡單舉個例子,使用裝飾者模式實現維護Session實現。

一、沒有使用裝飾者模式,需要對模組(WelcomeController::index方法)進行修改。

class WelcomeController
{
    public function index()
    {
        echo 'session start.', PHP_EOL;
        echo 'hello!', PHP_EOL;
        echo 'session close.', PHP_EOL;
    }
}

二、使用裝飾者模式,$pipeList表示需要執行的中介軟體陣列。關鍵在於使用了array_reduce函數。

class WelcomeController
{
    public function index()
    {
        echo 'hello!', PHP_EOL;
    }
}
interface Middleware
{
    public function handle(Closure $next);
}
class Seesion implements Middleware
{
    public function handle(Closure $next)
    {
        echo 'session start.', PHP_EOL;
        $next();
        echo 'session close.', PHP_EOL;
    }
}
$pipeList = [
    "Seesion",
];
 
function _go($step, $className)
{
    return function () use ($step, $className) {
        $o = new $className();
        return $o->handle($step);
    };
}
 
$go = array_reduce($pipeList, '_go', function () {
    return call_user_func([new WelcomeController(), 'index']);
});
$go();

以上就是php laravel請求處理管道(裝飾者模式)的詳細內容,更多請關注TW511.COM其它相關文章!