Search by

fiberphp / http

fiberphp

🌐 FiberPHP HTTP 子系统 —— 基于 Workerman 协议实现,支持请求/响应/中间件、协程管道、协程隔离。

dev-master 2026-09-09 08:17 UTC

This package is auto-updated.

Last update: 2026-09-09 08:43:58 UTC


README

FiberPHP 框架的 HTTP 子系统。基于 Workerman 协议层实现请求/响应/中间件,集成 Pipeline 协程管道与 Context 协程隔离,每个请求在独立 Fiber 中执行,中间件内可安全挂起做异步 I/O。

特性

  • 协程隔离:每个请求 startScope 开启独立 Context,endScope 必清理,防跨请求泄漏
  • Pipeline 管道:全局中间件按声明顺序串接,支持 Fiber::suspend() 挂起/恢复
  • 中间件双源config/http.php 显式声明 + #[Package(middleware: [...])] 子包声明,自动合并去重
  • 异常兜底Handler 优先 App\ExceptionHandlerrenderHttp() 按契约接口(HttpCodeAware / UserFacingMessage / ValidationErrorsAware)分层渲染,不依赖具体异常类
  • 响应策略:keep-alive / chunked / close 自动判定,支持 If-Modified-Since 304 协商缓存
  • URI 安全:拦截路径穿越(/../\\0)、空路径、反斜杠
  • 辅助函数request() / input() / response() / json() / xml() / redirect() / errcode()

环境要求

  • PHP >= 8.3
  • ext-json
  • workerman/workerman ^5.1
  • 依赖 fiberphp/frameworkfiberphp/configfiberphp/containerfiberphp/contractfiberphp/discoveryfiberphp/supportpsr/log

安装

composer require fiberphp/http

安装后通过 PackageManifest 自动注册 HttpProviderconfig/http.php 作为包默认配置由 config 包自动合并(装包即用,应用在自己的 config/http.php 放同名键覆盖);config/process/http.php 属进程配置(保留目录不合并),由安装钩子幂等发布到应用 config/process/

配置

config/http.php — 控制器目录与中间件

return [
    // 控制器目录(应用骨架默认约定,可按需调整)
    'controller_path' => app_path('Controller'),

    'middleware' => [
        // 全局中间件类列表(对所有请求生效,按声明顺序串接)
        'global' => [
            // \App\Middleware\Cors::class,
            // \App\Middleware\Auth::class,
        ],
        // 中间件别名映射(路由/控制器中间件字符串先查别名再当类名)
        'aliases' => [],
    ],
];

中间件类需实现 FiberPHP\Http\Contract\MiddlewareInterfaceprocess(Request, callable): Response 方法。

config/process/http.php — Worker 进程

use FiberPHP\Http\Http;
use FiberPHP\Http\Request;

// 监听地址与 Worker 进程数支持环境变量覆盖(.env):
// SERVER_LISTEN=http://0.0.0.0:8080  SERVER_COUNT=auto(auto=按 CPU 核心数)
$listen = (string) env('SERVER_LISTEN', 'http://0.0.0.0:8787');
$count  = env('SERVER_COUNT', 'auto');

return [
    'http' => [
        'enable' => true,
        'handler' => Http::class,
        'listen' => $listen,
        'count' => $count === 'auto' ? max(1, cpu_count()) : (int) $count,
        'constructor' => [
            'requestClass' => Request::class,
        ],
    ],
];

请求生命周期

onMessage
  ├─ Context::startScope(Request)        // 开启协程 scope,注入 Request
  ├─ unsafeUri()                         // 拦截路径穿越 → 400/404
  ├─ Pipeline::build(middleware, handler) // 串接中间件 + handler
  │   ├─ Middleware A::process()
  │   ├─ Middleware B::process()
  │   └─ RequestHandlerInterface::handle()  // 路由分发(fiberphp/router 提供)
  ├─ Http::send(connection, response)     // keep-alive/chunked/close
  └─ Context::endScope()                  // 清理 scope + onDestroy 回调

使用

请求参数

// 获取全部参数
$params = request()->all();

// 单个参数(先 GET 后 POST,缺失返回默认值)
$id = request()->input('id', 0);

// 仅取 / 排除指定键
$data = request()->only(['name', 'email']);
$data = request()->except(['password']);

响应构造

// 纯文本
return response('hello');

// JSON
return json(['code' => 0, 'data' => $list]);

// XML
return xml($xmlElement);

// 重定向
return redirect('/login');

// 链式调用
return response('OK')
    ->withHeaders(['X-Trace-Id' => $traceId])
    ->withStatus(200);

文件响应

// 静态文件(命中 If-Modified-Since 返回 304)
return response()->file('/path/to/file.txt');

上传文件

$file = request()->file('avatar');

if ($file->isValid()) {
    $tmpPath = $file->getFileName();           // 临时文件路径
    $originalName = $file->getUploadName();     // 客户端原始文件名
    $extension = $file->getUploadExtension();  // 扩展名
    // 业务侧自行处理 move_uploaded_file / SplFileObject
}

客户端 IP

// 直连 IP
$ip = request()->getRemoteIp();

// 真实 IP(safeMode 下仅信任内网代理头)
$ip = request()->getRealIp();        // safeMode=true(默认)
$ip = request()->getRealIp(false);   // 信任所有代理头

请求判定

request()->isGet();
request()->isPost();
request()->isAjax();
request()->isPjax();
request()->expectsJson();   // AJAX 非 PJAX 或 Accept: json

中间件

namespace App\Middleware;

use FiberPHP\Http\Contract\MiddlewareInterface;
use FiberPHP\Http\Request;
use FiberPHP\Http\Response;

class Auth implements MiddlewareInterface
{
    public function process(Request $request, callable $handler): Response
    {
        $token = $request->header('Authorization');
        if (!$token) {
            return json(['code' => 401, 'msg' => 'Unauthorized'], 401);
        }

        return $handler($request);  // 传递给下一层
    }
}

注册到 config/http.php

'middleware' => [
    \App\Middleware\Auth::class,
],

路由 handler

未安装 fiberphp/router 时,在容器中绑定 RequestHandlerInterface 实现自定义调度:

// App\Provider 中
$container->singleton(RequestHandlerInterface::class, MyHandler::class);

安装 fiberphp/router 后,默认 handler 自动接管路由分发。

异常处理

业务/传输层异常统一使用 FiberPHP\Http\Exception 下两个类(继承框架异常基类,消息默认透传):

use FiberPHP\Http\Exception\HttpException;
use FiberPHP\Http\Exception\NotFoundHttpException;

// 404:URL 指向的资源不存在(路由未命中时框架内部也抛这个类)
throw new NotFoundHttpException('商品不存在');

// 任意 4xx/5xx:业务规则违反、限流、认证失败等
throw new HttpException(400, '分类编码已存在');
throw new HttpException(429, '请求过于频繁', headers: ['Retry-After' => '60']);

// 字段级校验失败由 fiberphp/validate 抛 ValidateException(422,自动携带 errors 明细)

渲染规则(Handler 按契约接口探测,与具体类解耦):

异常情形HTTP 状态码响应体 msg说明
NotFoundHttpException404异常消息资源/路由不存在
HttpException($code, ...)传入码异常消息消息透传,headers 随响应下发
ValidateException(validate 包)422异常消息 + errors 字段明细实现 ValidationErrorsAware
实现 HttpCodeAware 的其他异常(如 DB 异常)接口声明码debug 透传,生产 Server Error未实现 UserFacingMessage 不透传
其他 Throwable500debug 透传,生产 Server Error防内部细节泄漏

响应体业务码 code 与 HTTP 状态码正交:默认 1,构造第三参可传业务码(永不回退 HTTP 数字)。 debug=true 时响应体附带 file / line / trace 及异常 context 数据。

errcode() 助手 —— 配置驱动的业务错误码

需要稳定业务码(监控聚合、前后端联调)时,用助手按 config/error.php 消息字典抛出(HTTP 恒 400):

errcode(10401);                       // 消息查配置,未配置回退 '业务错误'
errcode(10401, '分类【水果】已存在');  // 显式覆盖消息
// config/error.php
return [
    'codes' => [
        10401 => '分类编码已存在',
    ],
];

约定:errcode() 只表达业务拒绝(400);404 用 NotFoundHttpException,422 用 validate 校验。

应用可创建 App\ExceptionHandler 继承 FiberPHP\Http\Exception\Handler,覆盖 renderHttp() 实现自定义渲染。

License

MIT