tobento / service-requester
A PSR-7 server request wrapper class providing simplified methods.
Requires
- php: >=8.0
- psr/http-message: ^1.0
- tobento/service-collection: ^1.0
Requires (Dev)
- nyholm/psr7: ^1.4
- phpunit/phpunit: ^9.5
- vimeo/psalm: ^4.0
README
A PSR-7 server request wrapper class providing simplified methods.
Table of Contents
Getting started
Add the latest version of the requester service project running this command.
composer require tobento/service-requester
Requirements
- PHP 8.0 or greater
Highlights
- Framework-agnostic, will work with any project
- Decoupled design
Documentation
Create Requester
use Tobento\Service\Requester\Requester; use Tobento\Service\Requester\RequesterInterface; use Nyholm\Psr7\Factory\Psr17Factory; // Any PSR-7 server request $serverRequest = (new Psr17Factory())->createServerRequest( method: 'GET', uri: 'https://example.com', ); $requester = new Requester($serverRequest); var_dump($requester instanceof RequesterInterface); // bool(true)
Available Methods
method
Returns the HTTP method in uppercase such as GET, POST, PUT...
var_dump($requester->method()); // string(3) "GET"
isSecure
Returns whether the request is secure or not.
var_dump($requester->isSecure()); // bool(false)
isContentType
Determine if the request is of the specified content type.
var_dump($requester->isContentType('application/json')); // bool(false)
isReading
Determine if the HTTP request is a reading request which is the case if the method is one of HEAD, GET and OPTIONS.
var_dump($requester->isReading()); // bool(true)
isPrefetch
Determine if the HTTP request is a prefetch call.
var_dump($requester->isPrefetch()); // bool(false)
isAjax
Check if request was via AJAX.
var_dump($requester->isAjax()); // bool(false)
isJson
Determine if the request is sending JSON.
var_dump($requester->isJson()); // bool(false)
wantsJson
Determine if the request is asking for JSON.
var_dump($requester->wantsJson()); // bool(false)
json
Returns the request JSON payload.
Check out the Collection Service to learn more about the Collection in general.
use Tobento\Service\Collection\Collection; var_dump($requester->json() instanceof Collection); // bool(true)
input
Returns the request input data. Depending on the content type and method, it returns the parsed body data or the query params.
Check out the Collection Service to learn more about the Collection in general.
use Tobento\Service\Collection\Collection; var_dump($requester->input() instanceof Collection); // bool(true)
uri
Returns the Uri.
use Psr\Http\Message\UriInterface; var_dump($requester->uri() instanceof UriInterface); // bool(true)
request
Returns the server request.
use Psr\Http\Message\ServerRequestInterface; var_dump($requester->request() instanceof ServerRequestInterface); // bool(true)
acceptHeader
Returns the accept header instance.
use Tobento\Service\Requester\AcceptHeader; use Tobento\Service\Requester\AcceptHeaderItem; var_dump($requester->acceptHeader() instanceof AcceptHeader); // bool(true) var_dump($requester->acceptHeader()->has('application/json')); // bool(true) var_dump($requester->acceptHeader()->get('application/json')); // null|AcceptHeaderItem // returns all items. $items = $requester->acceptHeader()->all(); // returns the first item found or null. $firstItem = $requester->acceptHeader()->first(); // returns true if first item is application/json, otherwise false. $requester->acceptHeader()->firstIs('application/json'); // filter items returning a new instance. $acceptHeader = $requester->acceptHeader()->filter( fn(AcceptHeaderItem $a): bool => $a->quality() > 0.5 ); // sort items returning a new instance. $acceptHeader = $requester->acceptHeader()->sort( fn(AcceptHeaderItem $a, AcceptHeaderItem $b) => $b->quality() <=> $a->quality() ); // sorts by highest quality returning a new instance. $acceptHeader = $requester->acceptHeader()->sortByQuality();