国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

laravel框架學習--中間件middleware

Pandaaa / 2534人閱讀

摘要:好久沒有寫文章了,記錄一下這段時間學習的東西吧中間件是個非常方便的東西,能將一些邏輯實現解耦,并且在中,中間件的編寫也是非常的方便。對于的中間件,他的實現原理也是和這個一樣的。

好久沒有寫文章了,記錄一下這段時間學習的東西吧
laravel中間件是個非常方便的東西,能將一些邏輯實現解耦,并且在laravel中,
中間件的編寫也是非常的方便。誰用誰知道。

1.裝飾器模式

laravel中的中間件使用的就是裝飾器模式,什么是裝飾器模式,先去了解一下吧,這里大概說一下,就是這個模式主要的就是用于解決 當一個類需要動態擴展功能的時候,使用繼承的方式會讓子類膨脹,并且這個擴展的功能是個公用功能的情況下,不利于功能的復用以及代碼的解耦。

在laravel,使用對于使用這種模式的功能,稱為請求處理管道,也就是pipeline

//公共接口
interface middleware {
        public static function handle(Closure $next);
    }
//裝飾器1
class MiddleStepOne implements middleware{
        public static function handle(Closure $next) {
            echo "前期處理的第一步"."
"; $next(); echo "后期處理的第一步"."
"; } } //裝飾器2 class MiddleStepTwo implements middleware{ public static function handle(Closure $next) { echo "前期處理的第二步"."
"; $next(); echo "后期處理的第二步"."
"; } } function goFunc() { return function ($step,$className) { return function () use ($step,$className) { return $className::handle($step); }; }; } $pip = array( MiddleStepOne::class, MiddleStepTwo::class, ); $pip = array_reverse($pip); //反轉數組,以求達到要求的順序運行 $first = function (){ echo "前期處理完畢"."
"; }; //實際要處理的函數 $a = array_reduce($pip,goFunc(),$first); //遍歷pip數組,并將first作為第一個參數傳遞進去 $a(); //執行

輸出

這個就是一個簡單的基于裝飾器模式的管道。他的本質其實就是基于閉包和遞歸。

通過分析這個程序,對于最終生成的$a變量,它的值大概是這樣的 MiddleStepOne.handle(MiddleStepTwo.handle(first)),當執行的時候因為在handle中有個next()函數的存在,所以這是一個遞歸的調用。對于laravel的中間件,他的實現原理也是和這個一樣的。

2.laravel中的中間件和請求處理管道

在laravel中,我們我們可以通過設置中間件來在請求執行之前做一些預先的處理。

從請求入口 public/index.php開始

重要的是這段代碼:即 處理請求,返回請求的響應
$response = $kernel->handle(

$request = IlluminateHttpRequest::capture() //創建一個請求實例

);

接著我們進入kernel中看他的具體實現 IlluminateFoundationHttpKernel.php中


關于dispatchToRouter()函數請大家自己去看,這里就不多說了。

接下來就是激動人心的PipeLine類了,

container = $container;
    }

    /**
     * Set the object being sent through the pipeline.
     *
     * @param  mixed  $passable
     * @return $this
     */
    public function send($passable)
    {
        $this->passable = $passable;

        return $this;
    }

    /**
     * Set the array of pipes.
     *
     * @param  array|mixed  $pipes
     * @return $this
     */
    public function through($pipes)
    {
        $this->pipes = is_array($pipes) ? $pipes : func_get_args();

        return $this;
    }

    /**
     * Set the method to call on the pipes.
     *
     * @param  string  $method
     * @return $this
     */
    public function via($method)
    {
        $this->method = $method;

        return $this;
    }

    /**
     * Run the pipeline with a final destination callback.
     *
     * @param  Closure  $destination
     * @return mixed
     */
    public function then(Closure $destination)
    {
        $pipeline = array_reduce(
            array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
        );

        return $pipeline($this->passable);
    }

    /**
     * Get the final piece of the Closure onion.
     *
     * @param  Closure  $destination
     * @return Closure
     */
    protected function prepareDestination(Closure $destination)
    {
        return function ($passable) use ($destination) {
            return $destination($passable);
        };
    }

    /**
     * Get a Closure that represents a slice of the application onion.
     *
     * @return Closure
     */
    protected function carry()
    {
        return function ($stack, $pipe) {
            return function ($passable) use ($stack, $pipe) {
                if (is_callable($pipe)) {
                    // If the pipe is an instance of a Closure, we will just call it directly but
                    // otherwise we"ll resolve the pipes out of the container and call it with
                    // the appropriate method and arguments, returning the results back out.
                    //如果pip也就中間件函數是一個閉包可調用函數,就直接返回這個閉包函數就行了
                    //這里我還沒有找到對應的使用場景,后續補充
                    return $pipe($passable, $stack);
                } elseif (! is_object($pipe)) {
                    list($name, $parameters) = $this->parsePipeString($pipe);

                    // If the pipe is a string we will parse the string and resolve the class out
                    // of the dependency injection container. We can then build a callable and
                    // execute the pipe function giving in the parameters that are required.
                    $pipe = $this->getContainer()->make($name);

                    $parameters = array_merge([$passable, $stack], $parameters);
                } else {
                    // If the pipe is already an object we"ll just make a callable and pass it to
                    // the pipe as-is. There is no need to do any extra parsing and formatting
                    // since the object we"re given was already a fully instantiated object.
                    $parameters = [$passable, $stack];
                }

                return method_exists($pipe, $this->method)
                                ? $pipe->{$this->method}(...$parameters)
                                : $pipe(...$parameters);
            };
        };
    }

    /**
     * Parse full pipe string to get name and parameters.
     *
     * @param  string $pipe
     * @return array
     */
    protected function parsePipeString($pipe)
    {
        list($name, $parameters) = array_pad(explode(":", $pipe, 2), 2, []);

        if (is_string($parameters)) {
            $parameters = explode(",", $parameters);
        }

        return [$name, $parameters];
    }

    /**
     * Get the container instance.
     *
     * @return IlluminateContractsContainerContainer
     * @throws RuntimeException
     */
    protected function getContainer()
    {
        if (! $this->container) {
            throw new RuntimeException("A container instance has not been passed to the Pipeline.");
        }

        return $this->container;
    }
}

總的來說pipeLine類的實現和我之前寫的修飾器是差不多,這里主要麻煩的地方就在于就在于
protected function carry()函數內部,對于當pip是閉包,字符串,還有對象的處理。

之前覺得laravel的中間件是個很神秘的東西,但是看了之后才覺得也就那樣,很精巧,在實際開發中這種模式也是很有幫助的,例如我們目前用的一個gateway項目,因為沒有使用任何框架,所以將判斷條件剝離,寫入到中間件中, 這樣實現了一定程度上的模塊化編程。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/29482.html

相關文章

  • Laravel學習筆記六-權限管理與間件Middleware

    摘要:而日志中間件則可以記錄所有傳入應用程序的請求。框架已經內置了一些中間件,包括維護身份驗證保護,等等。所有的中間件都放在目錄內。在中可以使用授權策略來對用戶的操作權限進行驗證,在用戶未經授權進行操作時將返回異常。 這一節我們將給相關的動作頁面添加權限,如已經登錄的用戶將不會看到注冊、登錄按鈕,更不會對別人的個人資料進行編輯操作,除非是管理員,這里我們將借助Laravel提供的中間件Mid...

    RobinTang 評論0 收藏0
  • laravel框架應用和composer擴展包開發

    摘要:官方地址是目前最流行的框架,發展勢頭迅猛,應用非常廣泛,有豐富的擴展包可以應付你能想到的各種應用場景,框架思想前衛,跟隨時代潮流,提倡優雅代碼,自稱為工匠,其中的模板引擎容器以及擴展包為業務的開發提供了極大的便利。 laravel5.5+ laravel官方地址 laravel是目前最流行的php框架,發展勢頭迅猛,應用非常廣泛,有豐富的擴展包可以應付你能想到的各種應用場景,lara...

    shevy 評論0 收藏0
  • lumen5.5學習(三)

    摘要:接著上篇分割線是的實例,但是文件中找不到方法在類內部看到,打開找到了方法,方法注釋寫的是主要用于運行應用以及發送響應主要看方法 接著上篇$app->run();--------------------分割線------------------------ $app是Application的實例,但是Application.php文件中找不到run方法在類內部看到use Concerns...

    svtter 評論0 收藏0
  • Laravel學習筆記之Middleware源碼解析

    摘要:學習筆記之已經聊過使用了來設計,看源碼發現其巧妙用了和的一些數組函數來設計。開發環境內置函數和看源碼之前,先看下這幾個內置函數的使用。學習筆記之實例化源碼解析已經聊過的實例化,得到中的變量,即的實例化對象。后面再學習下的源碼,到時見。 說明:本文主要學習Laravel的Middleware的源碼設計思想,并將學習心得分享出來,希望對別人有所幫助。Laravel學習筆記之Decorato...

    _Dreams 評論0 收藏0
  • Laravel學習筆記之Route,Middleware和Controller參數傳遞

    摘要:本文主要學習總結下間參數傳遞。開發時經常碰到類似場景有時需要在中讀取中設置的和,有時也需要在中讀取中設置的參數。總結下這幾個知識點,便于查閱。 本文主要學習總結下Route,Middleware,Controller間參數傳遞。開發時經常碰到類似場景:有時需要在Middleware中讀取Route中設置的middleware parameter和route parameter,有時也需...

    zhangyucha0 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<