wyrihaximus / react-http-middleware-custom-request-body-parsers
react/http middleware for custom request body parsers
Fund package maintenance!
WyriHaximus
Installs: 6 165
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 4
Forks: 2
Open Issues: 3
Requires
- php: ^8 || ^7.4
- ancarda/psr7-string-stream: ^1.3
- psr/http-message: ^1.0.1
- react/http: ^1.7
- react/promise: ^2.8
- ringcentral/psr7: ^1.3
- thecodingmachine/safe: ^2 || ^1.3.3
Requires (Dev)
- wyrihaximus/async-test-utilities: ^3.4.24
This package is auto-updated.
Last update: 2024-11-05 07:51:46 UTC
README
Install
To install via Composer, use the command below, it will automatically detect the latest version and bind it with ^
.
composer require wyrihaximus/react-http-middleware-custom-request-body-parsers
This middleware parser allows you to define custom parsers for content types. For example the following
example adds a parser for the type str/rot13
. So when a request comes in with the Content-Type
header
str/rot13
the passed parser will be executed:
Usage
$parsersMiddleware = new CustomRequestBodyParsers(); $parsersMiddleware->addType('str/rot13', function (ServerRequestInterface $request) { $body = (string)$request->getBody()); return $request->withParsedBody(str_rot13($body)); }); $server = new Server([ $parsersMiddleware, /** Other middleware */ ]);
License
The MIT License (MIT)
Copyright (c) 2017 Cees-Jan Kiewiet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.