webwings/mysql-session-handler
Composer 安装命令:
composer require webwings/mysql-session-handler
包简介
MySQL session handler for Nette Framework with optionally encrypted storage
README 文档
README
Custom PHP session handler for Nette Framework that uses MySQL database for storage.
Requirements
- nette/utils 2.4+
- PHP 7.3+
Installation
Preferred way to install webwings/mysql-session-handler is by using Composer:
$ composer require webwings/mysql-session-handler
Setup
After installation:
-
Create the table sessions using SQL in sql/create.sql.
-
Register an extension in config.neon:
extensions: sessionHandler: Webwings\Session\DI\MysqlSessionHandlerExtension
- Setup DatabaseStorage
sessionHandler: storage: Webwings\Session\Storage\DibiDatabaseStorage(@dibi.connection, 'sessions')
Features
- For security reasons, Session ID is stored in the database as an SHA-256 hash.
- Supports encrypted session storage via spaze/encryption which uses paragonie/halite which uses Sodium.
- Events that allow you to add additional columns to the session storage table for example.
- Multi-Master Replication friendly (tested in Master-Master row-based replication setup).
Encrypted session storage
Follow the guide at spaze/encryption to define a new encryption key.
Define a new service:
sessionEncryption: \Spaze\Encryption\Symmetric\StaticKey('session', %encryption.keys%, %encryption.activeKeyIds%)
Add the new encryption service to the session handler:
sessionHandler:
encryptionService: @sessionEncryption
Migration from unecrypted to encrypted session storage is not (yet?) supported.
Events
onBeforeDataWrite
The event occurs before session data is written to the session table, both for a new session (when a new row is inserted) or an existing session (a row us updated). The event is not triggered when just the session timestamp is updated without any change in the session data.
You can add a new column by calling setAdditionalData() in the event handler:
setAdditionalData(string $key, $value): void
Use it to store for example user id to which the session belongs to.
Credits
This is heavily based on MySQL Session handler by Pematon (Marián Černý & Peter Knut & Michal Špaček) thanks!
统计信息
- 总下载量: 439
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-04-27