psg/psr-101
Composer 安装命令:
composer require psg/psr-101
包简介
PSR 15 remake into AppInterface
README 文档
README
==== This is not a FIG PSR and has not undergone the rigorous process to become one ====
PSR 101
This is a rewrite of PSR 15, and an inclusion of PSR 17 into the MiddlewareAppInterface. Various ideas went into this:
- Because the inteface method parameters must match (see PSR 100 README), and because PSR 101 middleware required the handler to be the extended version of the RequestionHandlerInterface, PSR 15 could not be extended for the middleware interfaces
- To write standardized middleware, the method of using PSR 17 factories should be standardized
- To do this, the MiddlewareAppInterface provides access to those factories
- Some middleware does not care about the App, it only wants a closure for a
nextcall. This type of middleware is separately provided for asMiddlewareNextInterface- Apps should handle this sort of middleware by detecting which type of middleware and applying correctly
- Middleware is expected with MiddlewareAppInterface. As such there are methods for adding, removing and checking middleware.
- These methods are the uncontexted
has,add,remove. The expectation here is that frameworks will generally not have these methods on their $app object (b/c they are too general), but that, it would make sense for these methods to refer to middleware. Further, to add something likeaddMiddlewareto the interface potentially conflicts with existing methods on $app objects of frameworks.
- These methods are the uncontexted
Use
Let's see a middleware based on this PSR 101
use Psg\Psr100\Factory\Psr100Factory; use Psg\Http\Message\{ResponseInterface, ServerRequestInterface}; use Psg\Http\Server\{MiddlewareAppInterface, MiddlewareInterface, MiddlewareNextInterface}; class App extends Psr100Factory implements MiddlewareAppInterface{ public $middleware; public function __construct(){ $this->middleware = new \SplObjectStorage(); } public function handle(\Psr\Http\Message\ServerRequestInterface $request): ResponseInterface { $middleware = $this->middleware->current(); $this->middleware->next(); return $middleware->process($request, $this); } public function add($middleware){ $this->middleware->attach($middleware); } public function remove($middleware){ $this->middleware->detach($middleware); } public function has($middleware){ return $this->middleware->contains($middleware); } } class Control implements MiddlewareInterface { public function process(ServerRequestInterface $request, MiddlewareAppInterface $app): ResponseInterface { return $app->createResponse(200)->withBody($app->createStream('there is one name in programming, and that name is bill')); } } class MiddleOut implements MiddlewareInterface { public function process(ServerRequestInterface $request, MiddlewareAppInterface $app): ResponseInterface { $response = $app->handle($request); $only_bob = preg_replace('/bill/i', 'bob', (string)$response->getbody()); $new_stream = $response->getBody()->create($only_bob); return $response->withBody($new_stream); } } $App = new App; $App->add(new MiddleOut); $App->add(new Control); $App->middleware->rewind(); $response = $App->handle($App->createServerRequest('get', 'http://bobery.com/')); echo (string)$response->getBody(); #> there is one name in programming, and that name is bob
psg/psr-101 适用场景与选型建议
psg/psr-101 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 07 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「http」 「response」 「request」 「factory」 「psr」 「http-message」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 psg/psr-101 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 psg/psr-101 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 psg/psr-101 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
HTTP request logger middleware for Laravel
Class to generate a standard structure for api json responses
Adds request-parameter validation to the SLIM 3.x PHP framework
http客户端
Easily add Excepct-CT header to your project
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-07-09