Laravel 不同生產環境伺服器的判斷

沈益飛發表於2019-10-14

專案的前期為了開發速度會使用單一應用,就是一個 Laravel 框架實現 API 和後臺介面。

使用者體量上來後,一臺伺服器不夠了,專案就採用了 API 和 後臺介面分開放到不同的伺服器上面。

發現路由數量變多後影響到了效能,這個時候需要區別不同伺服器去載入不同的路由。

如何去別不同的伺服器區別環境,但是又要區別是生產環境。

程式碼實現

可以使用app()->environment();方法實現,生產環境和測試環境的區別。

檢視程式碼後發現可以使用更多的方法。

/**
 * 獲取或檢查當前應用程式環境。
 *
 * @return string|bool
 */
public function environment()
{
    // 返回傳遞給函式的引數數量
    if (func_num_args() > 0) {
        // 如果第一個引數是陣列就去第一個,不是的話取全部的。
        $patterns = is_array(func_get_arg(0)) ? func_get_arg(0) : func_get_args();

        return Str::is($patterns, $this['env']);
    }

    return $this['env'];
}

Str::is 函式判斷給定的字串是否匹配給定的模式。星號 * 可以用來表示萬用字元:

# 判斷在 API 環境
app()->environment("production.api");
# 判斷在 ADMIN 環境
app()->environment("production.admin");
# 判斷在所有環境
app()->environment("production.*");

修改 RouteServiceProvider 檔案

/**
 * Define the routes for the application.
 */
public function map()
{
    // 公共路由

    if (app()->environment('production.api')) {
        # production api 路由
        $this->mapApiRoutes();
    } elseif (app()->environment('production.admin')) {
        # production admin 路由
        $this->mapAdminRoutes();
    } else {
        # local testing stanging 環境下載入所有路由
        $this->mapApiRoutes();

        $this->mapAdminRoutes();
    }
}

相關文章