首頁  >  文章  >  php框架  >  一種顆粒度很小的 Laravel 路由檔案劃分方式(翻譯)

一種顆粒度很小的 Laravel 路由檔案劃分方式(翻譯)

藏色散人
藏色散人轉載
2020-04-09 11:44:502935瀏覽

我估計我們所有人都遇到過這樣的情況,即我們有一個寫滿路由的超大檔案。不騙你,這讓我很長一段時間幾近抓狂,我不得不想個辦法解決這個問題。因此,這就是我最終用來構造路由文件的方法。

推薦教學:《laravel教學

最初,我想到了利用路由組方法可以接收文件,這就是 laravel 在 RouteServiceProvider 處拆分路由的方式。

<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
    /**
     * This namespace is applied to your controller routes.
     *
     * In addition, it is set as the URL generator&#39;s root namespace.
     *
     * @var string
     */
    protected $namespace = &#39;App\Http\Controllers&#39;;
    /**
     * Define your route model bindings, pattern filters, etc.
     *
     * @return void
     */
    public function boot()
    {
        //
        parent::boot();
    }
    /**
     * Define the routes for the application.
     *
     * @return void
     */
    public function map()
    {
        $this->mapApiRoutes();
        $this->mapWebRoutes();
        //
    }
    /**
     * Define the "web" routes for the application.
     *
     * These routes all receive session state, CSRF protection, etc.
     *
     * @return void
     */
    protected function mapWebRoutes()
    {
        Route::middleware(&#39;web&#39;)
             ->namespace($this->namespace)
             ->group(base_path(&#39;routes/web.php&#39;));
    }
    /**
     * Define the "api" routes for the application.
     *
     * These routes are typically stateless.
     *
     * @return void
     */
    protected function mapApiRoutes()
    {
        Route::prefix(&#39;api&#39;)
             ->middleware(&#39;api&#39;)
             ->namespace($this->namespace)
             ->group(base_path(&#39;routes/api.php&#39;));
    }
}

我將與使用者相關的路由抽象化到了一個名為 users.php 的檔案中,並將 mapApiRoutes 複製為 mapUsersRoutes 並指向到我的 users.php 檔案。

 /**
     * Define the routes for the application.
     *
     * @return void
     */
    public function map()
    {
        $this->mapApiRoutes();
        $this->mapWebRoutes();
        $this->mapUsersRoutes();
        //
    }
/**
     * Define the "api" routes for the application.
     *
     * These routes are typically stateless.
     *
     * @return void
     */
    protected function mapUsersRoutes()
    {
        Route::prefix(&#39;api&#39;)
             ->middleware(&#39;api&#39;)
             ->namespace($this->namespace)
             ->group(base_path(&#39;routes/users.php&#39;));
    }

我知道您在想什麼,顯然,這並不是最好的解決方案,因為每當我們需要建立新檔案時,都必須像之前一樣註冊它。因此,我不得不改進這個最初的想法。

我想到了將整個應用程式中的公共部分拆分成單獨的路由文件,並且我想到我們的所有路由都不能超出已認證、訪客和公共路由的範圍。

我將路由資料夾的結構優化成下面這樣:

├── routes   
│   ├── api    
│   │   ├── public
│   |   │   ├── users.php 
│   │   ├── auth
│   |   │   ├── users.php 
│   │   ├── guest
│   |   │   ├── users.php

乍一看,您可能會認為「嗯,它並沒有太大變化,我們還是需要去映射這些文件」。但是,實際上我們可以利用 php 原生提供的名為 glob 的函數,這是一個開箱即用的解決方案,因為我們沒有與 laravel 的解決方案耦合。

glob 接收一個正規則,並且可以在與我們的正規則相符的路徑下找到檔案名稱。因此,我們的路由是在特定資料夾下組織的,我們現在可以在這些資料夾下找到所有文件,並將它們註冊到其中間件。

<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
    /**
     * This namespace is applied to your controller routes.
     *
     * In addition, it is set as the URL generator&#39;s root namespace.
     *
     * @var string
     */
    protected $namespace = &#39;App\Http\Controllers&#39;;
    /**
     * Define the routes for the application.
     *
     * @return void
     */
    public function map()
    {
        $this->mapAuthRoutes();
        $this->mapGuestRoutes();
        $this->mapPublicRoutes();
//        $this->mapWebRoutes();
        //
    }
    /**
     * Define the "web" routes for the application.
     *
     * These routes all receive session state, CSRF protection, etc.
     *
     * @return void
     */
    protected function mapWebRoutes()
    {
        Route::middleware(&#39;web&#39;)
            ->namespace($this->namespace)
            ->group(base_path(&#39;routes/web.php&#39;));
    }
    /**
     * Define the "api" routes for the application.
     *
     * These routes are typically stateless.
     *
     * @return void
     */
    protected function mapAuthRoutes()
    {
        foreach (glob(base_path(&#39;routes/api/auth/*.php&#39;)) as $file) {
            Route::prefix(&#39;api&#39;)
                ->middleware([&#39;api&#39;, &#39;auth:api&#39;])
                ->group($file);
        }
    }
    protected function mapGuestRoutes()
    {
        foreach (glob(base_path(&#39;routes/api/guest/*.php&#39;)) as $file) {
            Route::prefix(&#39;api&#39;)
                ->middleware([&#39;api&#39;, &#39;guest:api&#39;])
                ->group($file);
        }
    }
    protected function mapPublicRoutes()
    {
        foreach (glob(base_path(&#39;routes/api/public/*.php&#39;)) as $file) {
            Route::prefix(&#39;api&#39;)
                ->middleware(&#39;api&#39;)
                ->group($file);
        }
    }
}

現在,無論何時我們創建一個新文件,foreach 都會找到它,因為它是使用正則匹配(該文件位於對應的路徑下,並且具有PHP 擴展名,因此它與我們的正規匹配)。簡直太騷了!但請稍等片刻。

這些文件將如何註冊?

如果您研究過 laravel 的生命週期,您就知道服務提供者是 laravel 請求的生命週期的一部分,我們可以利用此功能動態註冊我們的路線。

就是這樣!我希望您喜歡它。

原文網址:https://dev.to/secmohammed/how-to-separa...

翻譯網址:https://learnku.com/laravel/t /42989

以上是一種顆粒度很小的 Laravel 路由檔案劃分方式(翻譯)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:learnku.com。如有侵權,請聯絡admin@php.cn刪除