tobento/service-requester

A PSR-7 server request wrapper class providing simplified methods.

1.0.2 2023-04-23 07:41 UTC

This package is auto-updated.

Last update: 2024-04-23 10:26:56 UTC


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();

Credits