Download the PHP package thijsferyn/edgestash-blade without Composer

On this page you can find all versions of the php package thijsferyn/edgestash-blade. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package edgestash-blade

EdgestashBlade

The EdgestashBlade is a Laravel package that adds Edgestash support to Blade.

Edgestash is a Varnish Enterprise module that processes Mustache templates on the edge.

Edgestash allows for JSON data to be composed into a response using Mustache syntax, ex: {{variable}}. Each response can be assigned its own JSON object for truly dynamic responses. JSON can either be fetched from a backend or generated via VCL and any number of JSONs can be assigned to a template.

This package offers a couple of custom Blade directives that facilitate the use of Edgestash in an unobtrusive way, allowing you to efficiently cache personalized data.

Installation

You can install EdgestashBlade with Composer and this package listed on Packagist. Please run the following command to install the package in your Laravel application:

Once the dependencies are installed, you will need to register ThijsFeryn\EdgestashBlade\Middleware\EdgestashBladeMiddleware as middleware in your Kernel.php

How does Edgestash work?

The VCL example on the Edgestash documentation page shows how the Mustache template and the JSON data are cached separately.

VCL stands for Varnish Configuration Language and is the domain-specific programming language that controls the behavior of Varnish.

The edgestash.parse_response() method will process the template and identify the placeholders that require parsing.

Edgestash offers 3 different ways to ingest JSON data used to replace the template placeholders:

Once the JSON is injected, the edgestash.execute() method is executed, the turn the JSON and the template into personalized output.

How do you trigger Edgestash from Blade templates?

The @edgestash directive

The custom @edgestash Blade directive will emit an unparsed Mustache variable, will perform the content negotiation with Varnish and will automatically provide the JSON endpoint.

Here's an example:

This example will emit a {{ username }} variable. Although Blade has similar syntax to Mustache, the variable will not be parsed by Blade.

The /session endpoint containing JSON data will be sent to Varnish. Varnish will process that JSON data, look for the username property and parse it into the {{ username }} variable.

The @edgestashIfDetected directive

The @edgestashIfDetected directive is similar to the @edgestash directive, but it adds a fail safe: if Edgestash is not automatically detected, the value of the 1st argument is returned instead.

Here's an example:

In this example, @edgestashIfDetected will return the $username variable if it didn't detect an Edgestash-supported Varnish server.

However, if it did detect an Edgestash-supported Varnish server, it will output {{ username }} and and send the /session endpoint to Varnish.

The @isEdgestash conditional directive

Although the @edgestash directive is an ideal way to introduce Edgestash in a non-obtrusive way, unfortunately sometimes Edgestash integration requires some custom template code.

Fortunately, the @isEdgestash conditional directive allows you to detect whether or not the application sits behind and Edgestash-supported Varnish server. This is the same logic that the @edgestashIfDetected directive uses under the hood for detection.

Here's an example:

Mustache conditions and loops

Edgestash supports the full Mustache syntax and can handle conditions and loops.

Here's an example of an if-else-statement using Edgestash:

So if the username property is detected in the JSON data, the username will be printed. If not, we'll refer to the user as a guest.

Please not that a JSON endpoint should only be registered once. Subsequently, the url argument can be left blank. However, if the same endpoint is registered multiple times, it will cause no harm since duplicates are removed.

Here's an example of a loop using Edgestash:

In this example, we loop over a collection of user objects and list the usernames. The output of the /users endpoint could look like this:

The final output would then be:

Multiple JSON endpoints

This Edgestash integration allows for multiple JSON endpoints. Duplicate values are removed and the output of all endpoints is merged into a single JSON object.

Here's an example:

How does the EdgestashBlade interact with Varnish?

As previously mentioned, the edgestash filter works in a non-obtrusive way. This means it can detect whether or not it sits behind an Edgestash-supported Varnish server.

Edgestash detection

In order to announce Edgestash support, Varnish will send the following request header to your origin server containing the application:

Surrogate-Capability: edgestash="EDGESTASH/2.1"

This Laravel package looks for this header and if it finds it, Edgestash is supported.

On the way back, Varnish needs to know when it should consider the output to be a Mustache template. The EdgestashBlade bundle does this by sending the following response header back to Varnish:

Surrogate-Control: edgestash="EDGESTASH/2.1"

When Varnish detects this response header, it executes the edgestash.parse_response() method internally.

Detection happens automatically and the header negotiation is done in EdgestashBladeMiddleware.php

Processing JSON endpoints

When the edgestash directive is invoked with a valid URL argument, the URL is added as an internal HTTP request argument.

The argument is processed by EdgestashBladeServiceProvider.php and the URL (or URLs) are exposed using a Link header.

Here's an example of such a Link header:

The link header has a rel=edgestash property, making it easy to find when the Link header contains other non-related data.

This is what it would look like when multiple JSON endpoints are registered:

When Edgestash output is detected by Varnish and the Link header is parsed, Varnish will trigger the edgestash.add_json_url_csv method to retrieve the JSON data through the endpoints. And finally the edgestash.execute() method is executed that parses the JSON and adds it to the cached template's placeholders.

Varnish requirements

Edgestash is a proprietary VMOD that is developed and maintained by Varnish Software. This module is automatically packaged when you sign-up for Varnish Enterprise.

If you do not have a Varnish Enterprise license, you can also try out Varnish Enterprise and Edgestash using one of our Cloud images on AWS, Azure or Google Cloud.

The minimal VCL required to use the EdgestashBlade is stored in default.vcl


All versions of edgestash-blade with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
laravel/framework Version ^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package thijsferyn/edgestash-blade contains the following files

Loading the files please wait ....