Download the PHP package katalam/laravel-cookieless-session without Composer
On this page you can find all versions of the php package katalam/laravel-cookieless-session. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download katalam/laravel-cookieless-session
More information about katalam/laravel-cookieless-session
Files in katalam/laravel-cookieless-session
Package laravel-cookieless-session
Short Description This is my package laravel-cookieless-session
License MIT
Homepage https://github.com/katalam/laravel-cookieless-session
Informations about the package laravel-cookieless-session
This is my package laravel-cookieless-session
Installation
You can install the package via composer:
You can publish the config file with:
This is the contents of the published config file:
Usage
Inside bootstrap/app.php
replace the StartSession
middleware with the one provided by this package.
or use the middleware directly in your routes
Documentation
The package aims to provide a way to have a website without the ability to dispatch cookies and have a session at the same time. This is useful for websites that need to be GDPR-compliant and do not want to store any cookies on the user's device.
The technical implementation is based on the following principles:
We have a (new) Middleware named StartSession
that is responsible for starting the session. We overwrite the default StartSession
Middleware provided by Laravel at two points:
- We check the presence of cookies in the request and start the session normally if they are present.
- We also check the presence of a header or a parameter in the request. If they are present, we start the session with the (encrypted) session id provided in the header or parameter.
- We also do not send the session cookie in the response if the session was started with a header or parameter.
Now we need to understand two things:
- How is the session data stored?
- How is a user authenticated?
The session data is with various drivers stored in a persistent storage connected to the webserver. The session is identified by a unique string. We encrypt this string and send it to the client in some way. The client sends this string back to the server in the request. We decrypt this string and use it to identify the session. This is secure because the string is encrypted the same way as the session id in the cookie.
The user is authenticated by the session.
We pass the request inside the SessionGuard.php
where
we check if the session has a user id inside the payload attribute.
To determine the key inside the payload for the user id, we have a combination of the word login,
the name of the auth guard and a hash of the absolute namespace from the auth guard.
This is to ensure that the key is unique for each auth guard.
What we essentially do is to replace the session cookie with a header or parameter. The rest of the internal handling of the session is the same as with the session cookie.
Testing
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Bruno Görß
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-cookieless-session with dependencies
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0||^12.0