fet / laravel-cookie-consent
A simple Laravel wrapper around the orestbida/cookieconsent package.
Requires
- php: ^8.1
- fet/laravel-php-to-js: ^0.2
- illuminate/events: ^10.0|^11.0|^12.0
- illuminate/support: ^10.0|^11.0|^12.0
Requires (Dev)
- mockery/mockery: ^1.4
- orchestra/testbench: ^8.0|^9.0|^10.0
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^10.0|^11.0
README
The fet/laravel-cookie-consent
package is a simple Laravel wrapper around the orestbida/cookieconsent package.
Installation
composer require fet/laravel-cookie-consent
php artisan vendor:publish --provider="Fet\CookieConsent\CookieConsentServiceProvider" --tag="config"
Configuration
// config/cookieconsent.php return [ 'enable' => true, 'routes' => [ 'post' => '', 'redirect' => '', ], 'paths' => [ 'exclude' => [] ], 'config' => [], ];
The configuration consists of four keys: enable
, routes
, paths
and config
. The config
value is an array representation of the Configuration object and is passed to the CookieConsent package as JSON. Feel free to configure the package as you like.
POST Route
The Callback/Events are not directly configurable. Instead you can define a routes.post
which corresponds to an existing route name which is then called via POST request when the events onFirstConsent
or onChange
are triggered.
If the
routes.post
is empty, no POST request is sent.
The data received by the controller looks like this:
{ "consentId": "xxx", "acceptType": "all", "acceptedCategories": [ "necessary", "analytics" ], "rejectedCategories": [] }
Redirect Route
If you want to perform a page redirect after the user has made the cookie consent choice, you can provide a route name to routes.redirect
.
If the
routes.redirect
is empty, no redirect is made.
Exclude Paths
To exclude the cookie consent from appearing on certain URL paths, add those paths to the paths.exclude
configuration array.
You can use valid regex patterns. For example, to exclude all
/admin/*
paths, addadmin(\/.*)?
to the exclude array.
Events
Sometimes you may need to change the configuration, after the application is booted. You can do so by listening to the \Fet\CookieConsent\Events\ConfigLoaded
event.
use Fet\CookieConsent\Events\ConfigLoaded; Event::listen(function (ConfigLoaded $event) { $config = $event->cookieConsent->config; // make changes to the $config array $event->cookieConsent->config = $config; });
Tests
Run the tests with:
composer test