fanout / laravel-grip
GRIP for Laravel
Installs: 10 399
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 7
Forks: 1
Open Issues: 0
Requires
- fanout/grip: ^1.1.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.5
- ramsey/uuid: ^4.2
This package is auto-updated.
Last update: 2024-11-16 00:51:02 UTC
README
GRIP library for Laravel, provided as a Laravel package.
Minimum supported version of Laravel is 7.0, but it may work with older versions.
Supported GRIP servers include:
This library also supports legacy services hosted by Fanout Cloud.
Authors: Katsuyuki Omuro komuro@fastly.com, Madeline Boby maddie.boby@fastly.com
Introduction
GRIP is a protocol that enables a web service to delegate realtime push behavior to a proxy component, using HTTP and headers.
laravel-grip
parses the Grip-Sig
header in any requests to detect if they came
through a GRIP proxy, and provides your route handler with tools to handle such requests.
This includes access to information about whether the current request is proxied or is signed,
as well as methods to issue any hold instructions to the GRIP proxy.
Additionally, laravel-grip
also handles
WebSocket-Over-HTTP processing so
that WebSocket connections managed by the GRIP proxy can be controlled by your route handlers.
Installation
Install the library.
composer require fanout/laravel-grip
This brings in the library, as well as installs the middleware into your Laravel application's stack by using the providers mechanism of Composer.
Configuration
laravel-grip
can be configured by adding a file called ./config/grip.php
to your Laravel
application. It should look like this:
<?php return [ 'grip' => /* string, array, or array of arrays */, 'prefix' => /* string. defaults to the empty string */, 'grip_proxy_required' => /* boolean, defaults to false */, ];
Available options:
The grip
parameter may be provided as any of the following:
- An object with the following fields:
-
An array of such objects.
-
A GRIP URI, which is a string that encodes the above as a single string.
Handling a route
The middleware will automatically be installed before all of your routes.
When your route runs, you will have access to the following facades:
Grip
, GripInstruct
, GripPublisher
, and GripWebSocket
.
While Grip
will be available in all requests, the others will be available only when
applicable based on configuration and the current request.
The Grip
facade provides the following functions:
When the current request is proxied, then the GripInstruct
facade is available and provides
the same functions as GripInstruct
in fanout/grip
.
When the current requiest is called over WebSocket-over-HTTP, then the GripWebSocket
facade
is available and provides the same functions as WebSocketContext
in fanout/grip
.
To publish messages, use the GripPublisher
facade. It provides the same functions as Publisher
in fanout/grip
. Use it to publish messages using the endpoints and prefix specified in the
./config/grip.php
file.
Examples
This repository contains examples to illustrate the use of laravel-grip
found in the examples
directory. For details on each example, please read the README.md
files in the corresponding
directories.
Testing
Run tests using the following command:
./vendor/bin/phpunit