zjkiza / tmp-storage-bundle
The bundle for temporary storage data which needs to be preserved between stateless requests.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.1
- ext-json: *
- doctrine/dbal: ^2.0|^3.0|^4.0
- doctrine/orm: ^2.6
- doctrine/persistence: ^1.0|^2.0|^3.0
- ramsey/uuid: ^3.0|^4.0
- symfony/config: ^6.0|^7.0
- symfony/console: ^6.0|^7.0
- symfony/dependency-injection: ^6.0|^7.0
- symfony/http-foundation: ^6.0|^7.0
- symfony/http-kernel: ^6.0|^7.0
Requires (Dev)
- dama/doctrine-test-bundle: ^8.0
- doctrine/doctrine-bundle: ^2.12
- doctrine/doctrine-fixtures-bundle: ^3.5
- ekino/phpstan-banned-code: ^1.0
- friendsofphp/php-cs-fixer: ^3.52
- matthiasnoback/symfony-dependency-injection-test: ^5.1
- pdepend/pdepend: ^2.16
- phploc/phploc: ^7.0
- phpmd/phpmd: ^2.15
- phpstan/phpstan: ^1.10
- phpstan/phpstan-phpunit: ^1.3
- phpstan/phpstan-symfony: ^1.3
- phpunit/phpunit: ^9.6
- psalm/plugin-phpunit: ^0.19.0
- psalm/plugin-symfony: ^5.2
- ramsey/uuid-doctrine: ^2.0
- rector/rector: ^1.0
- symfony/framework-bundle: ^7.0
- symfony/phpunit-bridge: ^6.0
- symfony/property-info: ^7.0
- vimeo/psalm: ^5.6.0
README
The TMP Storage Bundle is used to store temporary state between two stateless requests. Common use cases include:
- SSO Login: During single sign-on, user data can be temporarily stored as an object in TMP Storage. A generated ID links the data, ensuring sensitive user information is not exposed in the URL. The ID is verified upon login, and the stored object is retrieved to complete the process.
- Password Reset: User data can be saved as an object in TMP Storage, and a reset link is generated with a unique ID. When the user clicks the link, they are directed to a page where the ID is verified, and the stored object is retrieved to facilitate password reset.
- Unsubscribe Links: User information is stored temporarily in TMP Storage, and an unsubscribe link is generated with a unique ID. When the user clicks the link, they are directed to the unsubscribe page, where the ID is verified, and the object is retrieved to process the request.
This bundle allows you to securely store objects in a temporary storage database, retrievable using randomly generated keys.
About the Bundle
The bundle defines the interface Zjk\TmpStorage\Contract\TmpStorageInterface
with the following methods:
-
public function storage(object $tmp, int $ttl = 604800): string
Stores an object in the database. The$ttl
parameter specifies the object's time-to-live in seconds (default: one week). -
public function fetch(string $id, bool $remove = true): object
Retrieves an object from the database by its ID. The$remove
parameter determines whether the object is deleted immediately after retrieval. Set$remove
tofalse
to keep the object. -
public function remove(string $id): void
Removes an object from the database if$remove
was previously set tofalse
. -
public function clearGarbage(): void
Performs maintenance to remove invalid or expired records, ensuring database cleanliness.
Maintenance Command
A terminal command is available for manual or scheduled garbage collection. It invokes the clearGarbage
method:
bin/console zjkiza:tmp-storage:maintenance
Installation
Add the bundle to your project using Composer:
composer require zjkiza/tmp-storage-bundle
Symfony integration
The bundle integrates seamlessly with Symfony, wiring up all necessary classes. Follow these steps to set it up:
- Register the Bundle
<?php declare(strict_types=1); return [ // other bundles Zjk\TmpStorage\Bridge\Symfony\ZJKizaTmpStorageBundle::class => ['all' => true], ];
- Configure the Bundle
By default, the bundle uses a database table named zjkiza_tmp_storage
and the doctrine.dbal.default_connection
. To customize these settings, create a zjkiza_tmp_storage.yaml
configuration file in the config/packages directory with the following parameters:
zjkiza_tmp_storage: dbal: table_name: your_table_name connection: ~
Replace your_table_name with your desired table name and configure the database connection as needed.
- Generating the Required Table
To create the necessary table in the database, run the following command in your terminal:
bin/console doctrine:schema:update
This command instructs Doctrine to generate the table based on the bundle's configuration.
Working with the bundle
use Zjk\TmpStorage\Contract\TmpStorageInterface class MyService { private TmpStorageInterface $storage; public function __construct(TmpStorageInterface $storage) { $this->storage = $storage; } public function register(): string { $dto = new RegisterDto('test@text.com', 'lorem123'); return $this->storage->storage($dto); } public function login(string $id): void { $dto = $this->storage->fetch($id); ...... } }