stwarog / uow-fuel
Unit of Work feature for Fuel's PHP ORM.
Requires
- php: >=8.0.0
- fuel/core: ^1.8 | dev-1.9/develop
- fuel/orm: ^1.8 | dev-1.9/develop
- stwarog/uow: ^2.0.0
Requires (Dev)
- phpstan/phpstan: ^0.12.90
- phpunit/phpunit: 7.1.3
- squizlabs/php_codesniffer: ^3.6
- symfony/var-dumper: ^5.1
This package is auto-updated.
Last update: 2025-03-28 04:49:49 UTC
README
Foreword
This package is an extension for UOW Core for Fuel PHP Framework. At this moment it supports ORM models (with relations).
Zero configuration installation
composer require stwarog/uow-fuel
Just find some place to initialize this package (wrap it to the singleton or use dependency injection container), then call:
FuelEntityManager::forge($db, $config = []);
DB must be a reference to your instance of this class (it is globally available in Fuel). UOW Core will use existing (and configured) object to build queries based on resolved criteria.
Take a look at configuration guide to change default behaviour of package.
The problem & Goal
Fuel's ORM is convenient in use. We can use OOP syntax to handle relations, batch update etc.
Assuming we have Todo
model with many Lines
, let's compare result of test below:
Fuel's way
DB::start_transation(); try { $todo = Model_Todo::query()->related('lines')->where('id', 1)->get_one(); $todo->status = 2; foreach ($todo->lines as $line) { $rand = rand(0, 5); $line->content = 'changed' . $rand; } $todo->save(); } catch (Exception $e) { DB::rollback_transation(); throw $e; } DB::commit_transation();
but the problem is that the Fuel will produce for example (writing part):
# transaction start UPDATE `todo_table` SET `status` = 2 WHERE `id` = 1; UPDATE `lines_table` SET `content` = changed1 WHERE `id` = 1; UPDATE `lines_table` SET `content` = changed2 WHERE `id` = 2; UPDATE `lines_table` SET `content` = changed1 WHERE `id` = 3; UPDATE `lines_table` SET `content` = changed4 WHERE `id` = 4; ... UPDATE `lines_table` SET `content` = changed1 WHERE `id` = 150; # transaction commit
In case we have much more related lines it might be a huge performance hit.
"Unit of Work" approach
Let's refactor code above to this plugin syntax:
$entityManager = FuelEntityManager::forge($db, $config = []); $todo = Model_Todo::query()->related('lines')->where('id', 1)->get_one(); $todo->status = 2; foreach ($todo->lines as $line) { $rand = rand(0, 5); $line->content = 'changed' . $rand; } $entityManager->save($todo); $entityManager->flush(); # or inline $entityManager->save($todo, $flush = true)
Script will group changed table columns & fields and built query in more elegant way! All will be wrapped in transaction out of the box.
# transaction start UPDATE `todo_table` SET `status` = 2 WHERE `id` IN (1); UPDATE `lines_table` SET `content` = changed1 WHERE `id` IN (1,2,3,4,5,6,7,8,9...10); UPDATE `lines_table` SET `content` = changed2 WHERE `id` IN (11,12,13,14,15,16,17,18,19...100); # transaction commit
Of course these examples are trivial. In real life each model may have a lots of nested relations. Entity Manager will take care how final query should looks like.
Contribution
Please take a look at core contribution guide.
License
MIT
Change Log
1.4.0 (2021-07-21)
- Upgraded core package to 1.4.0
- Implemented no longer new in FuelModelAdapter.php
- Unit tests configuration + pseudo Mock of Fuel`s ORM
1.3.1 (2021-07-10)
- Upgraded core package to 1.3.1
1.3.0 (2021-06-23)
- Upgraded core package to 1.3.0
- Reduced phpstan errors to 2
1.2.0 (2021-06-21)
- upgraded core package to 1.2.0
- added ./tests to .gitignore
- installed & configured PHPCS, PHPSTAN
1.1.3 (2021-01-04)
- 398d1247 used the most recent version of uow core
1.1.2 (2021-01-03)
- a0bf93b7 used array_diff_assoc instead of array_diff due no columns were checked