PHP DIY系列之自定義設定和路由

2020-07-16 10:05:59


我們已經開發完成,但我們還需要更多。比如自定義設定和路由。

app資料夾下新建Config.php

<?php/**
 *自定義設定
 */return [
    'debug' => false,
    'route' => [
        '' => 'demo/welcome',
        'test' => 'demo/test',
    ],];

新建DemoController(app/Https/Controllers目錄下)

<?php/**
 * Demo控制器
 */namespace AppHttpsControllers;use LibraryHttpsController;class DemoController extends Controller{
    public function welcome($params)
    {
        return $this->response->json(['hello' => 'welcome']);
    }

    public function test($params)
    {
        return $this->response->json($params);
    }}

修改入口檔案index.php,加入載入設定程式碼:

... 省略程式碼
// 載入設定
$config = require SF_LIBRARY_PATH.'Config.php';
$appConfig = file_exists($appConfigPath = SF_APP_PATH.'Config.php') ? require $appConfigPath : [];
$config = array_merge($config, $appConfig);
$config['debug'] = ($config['debug']?? SF_DEBUG);
...省略程式碼

解析路由部分也加入自定義路由處理:

// Application...省略程式碼
public function handleRequest(Request $request){
    $route = $request->resolve($this->_config['route']??[]);

    $response = $request->runAction($route);
    /**
     * 執行結果賦值給$response->data,並返回給response物件
     */
    if ($response instanceof Response) {
        return $response;
    }

    throw new SaiException('Content format error');}
    ...省略程式碼
    public function resolve($route=[])  {  
    $this->route = $route;  // 自定義路由  
    return $this->getPathUrl();  }
    // Request
    ...省略程式碼public function runAction($route){
    if (array_key_exists($route, $this->_route)) {
        $route = $this->_route[$route];
    }

    $match = explode('/', $route);
    $match = array_filter($match);
    ...省略程式碼

儲存後開啟瀏覽器看看效果:

image

image

這裡雖然有自定義路由,但是我們有時候需要禁止預設路由,所以我們不妨增加設定引數defaultRoute,用來控制是否開啟預設路由。

我們修改一下路由解析的程式碼:

//Application...省略程式碼
public function handleRequest(Request $request){
    $route = $request->resolve($this->_config['route']??[]);

    $response = $request->runAction($route, $this->_config['defaultRoute']??true);
    /**
     * 執行結果賦值給$response->data,並返回給response物件
     */
    if ($response instanceof Response) {
        return $response;
    }

    throw new SaiException('Content format error');}
    ...省略程式碼
...省略程式碼
public function runAction($route, $defaultRoute){
    if (array_key_exists($route, $this->_route)) {
        $route = $this->_route[$route];
    } elseif (!$defaultRoute) {
        throw new NotFoundException("route not found:".$route);
    }
    ...省略程式碼

我們在app下面的Config,加入:

return [
    'debug' => false,
    'route' => [
        '' => 'demo/welcome',
        'test' => 'demo/test',
    ],
    'defaultRoute' => false,];

我們開啟瀏覽器輸入saif.com/login

報錯如下:

Array
(
    [line] => 137
    [msg] => route not found:login
    [code] => 404
    [file] => library/Https/Request.php
)

以上就是PHP DIY系列之自定義設定和路由的詳細內容,更多請關注TW511.COM其它相關文章!