Introduction

The Basics

The design philosophy behind the request preconditions Evaluator is to evaluate an incoming conditional requestopen in new window, e.g. If-Match, against the requested resource.

In general, when a precondition is evaluated either of the following will happen:

  • When it passes (true):
    • Evaluator continues to evaluate another precondition (if requested).
    • Or it returns a changed resource (e.g. a state change or perhaps entirely modified resource).
  • When it fails (false):

All preconditions are evaluated in accordance with RFC 9110's order of precedenceopen in new window. See supported preconditions for additional information.

How to Evaluate

Http Conditional Requests are always specific to the requested resource and the Http Methodopen in new window. It is therefore recommended that you evaluate the requested resource inside your Form Requestopen in new window. The following shows an example request:

Request

use Aedart\Contracts\ETags\HasEtag;
use Aedart\Contracts\ETags\Preconditions\ResourceContext;
use Aedart\ETags\Preconditions\Evaluator;
use Aedart\ETags\Preconditions\Resources\GenericResource;
use Illuminate\Contracts\Validation\Validator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Http\FormRequest;

class ShowUserRequest extends FormRequest
{
    public ResourceContext $resource;

    protected function prepareForValidation()
    {
        // 1) Find requested resource or fail.
        $model = $this->findOrFailModel();

        // 2) Wrap it inside a Resource Context
        $resource = $this->makeResourceContext($model);

        // 3) Evaluate request's preconditions against resource...
        $this->resource = Evaluator::make($this)
            ->evaluate($resource);
    }

    protected function makeResourceContext(Model & HasEtag $model): ResourceContext
    {
        return new GenericResource(
            data: $model,
            etag: fn () => $model->getStrongEtag(),
            lastModifiedDate: $model->updated_at
        );
    }

    protected function findOrFailModel(): Model & HasEtag
    {
        // ...not shown ...
    }
}

Route or Controller Action

In your controller or route action, you can then return the requested resource with cache headers.

use Illuminate\Support\Facades\Route;

Route::get('/user/{id}', function (ShowUserRequest $request) {
    $resource = $request->resource;
    $payload = $resource
        ->data()
        ->toArray();

    return response()
        ->json($payload)
        ->withCache(
            etag: fn () => $resource->etag(),
            lastModified: $resource->lastModifiedDate(),
            private: true
        );
})->name('users.show');

Responses

Whenever a request without preconditions is received by your application, your application will return the requested resource, along with a few cache headers. For instance:

Request (without precondition)

GET /users/42 HTTP/1.1

Response (with cache headers)

HTTP/1.1 200 OK
Cache-Control: private
Etag: "a81283f2670a78cd4c5a2e56cb0cd4ef5e357eb1"
Last-Modified: Sun, 15 Jan 2023 16:13:23 GMT
Content-Type: application/json

{"id":42,"name":"John Doe","age":31,"updated_at":"2023-01-15T16:13:23.000000Z"}

However, when a request contains a preconditions, e.g. If-None-Matchopen in new window, then it is processed. In the example below, the precondition fails because the etag value matches the resource's etag. Therefore, a 304 Not Modifiedopen in new window response is returned.

Request (with precondition)

GET /users/42 HTTP/1.1
If-None-Match: "a81283f2670a78cd4c5a2e56cb0cd4ef5e357eb1"

Response (If-None-Match precondition failed)

HTTP/1.1 304 Not Modified

The controller or route action is never executed. Instead, an exception is thrown and your application converts it into an appropriate response. If the precondition had passed instead, then controller or route action would have been processed (in this example).

The Evaluator

You are free to implement the evaluation logic as you see fit, within your application. The previous shown examples are only meant to demonstrate the general process. The rest is up to you. To instantiate an Evaluator instance, invoke the Evaluator::make() method.

The method accepts 3 arguments:

  • Request $request: the incoming request.
  • string[]|Precondition[] $preconditions = []: (optional) list of preconditions to evaluate.
    • Defaults to RFC 9110 + extension preconditions, when none are given.
  • Actions|null $actions = null: (optional) "abort" or "state change" actions instance.
    • Defaults to a default actions instance, when none is given.
use Aedart\ETags\Preconditions\Evaluator;

// Create evaluator instance (with defaults)
$evaluator = Evaluator::make($request);

// ...Or when you have custom preconditions / actions
$evaluator = Evaluator::make(
    reqeust: $request,
    preconditions: $myPreconditionsArray,
    actions: $myActions
);

Once you have instantiated an evaluator instance, use the evaluate() method to evaluate request's preconditions against the requested resource. The method accepts a ResourceContext instance and will either return the resource (possible changed), or throw a HttpException.

$evaluator->evaluate($resource);

Exception Handling

Whenever the Evaluator throws an exception, your Laravel application's exception handler will process it and create an appropriate response. Please read Laravel's exception handler documentationopen in new window for additional information.